Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

πŸš€: 0.1.0-pre.1 #16

Merged
merged 27 commits into from
Jun 25, 2022
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
e15ddde
✍:: Add copyright to files
TheAwiteb Jun 24, 2022
5679648
Merge pull request #7 from TheAwiteb/add-copyright
TheAwiteb Jun 24, 2022
73e1d06
✨: Add default value for path
TheAwiteb Jun 24, 2022
c5eaadb
✍:: Update `README.md`
TheAwiteb Jun 24, 2022
7e12514
Merge pull request #8 from TheAwiteb/default-path
TheAwiteb Jun 24, 2022
c2754d2
✨: Improve errors
TheAwiteb Jun 24, 2022
16ef3da
Merge pull request #9 from TheAwiteb/improve-errors
TheAwiteb Jun 24, 2022
a5f1b17
✨: Add new error (for `delete` command)
TheAwiteb Jun 24, 2022
1dd57ac
✨: Improve `delete` command
TheAwiteb Jun 24, 2022
1c0a7ca
🧹: Rust clippy
TheAwiteb Jun 24, 2022
54f6885
Merge pull request #10 from TheAwiteb/improve-delete-command
TheAwiteb Jun 24, 2022
6f70a9c
βš™: Rename `Release` workflow to `Release/Publish`
TheAwiteb Jun 24, 2022
875d21f
βš™: Add `πŸ’‘ improvements` label to categories
TheAwiteb Jun 25, 2022
5ae5d17
✨: Add tests
TheAwiteb Jun 25, 2022
a4b478d
✨: Delete language function
TheAwiteb Jun 25, 2022
10795a4
✨: Add `DeleteFileError` error
TheAwiteb Jun 25, 2022
2d885de
✨: Add subcommands of `delete` command
TheAwiteb Jun 25, 2022
f2a44a4
Merge pull request #12 from TheAwiteb/delete-lang
TheAwiteb Jun 25, 2022
f5d8ff0
Merge pull request #13 from TheAwiteb/dev
TheAwiteb Jun 25, 2022
dd7dd10
✨: Update `delete` function name to `delete_key`
TheAwiteb Jun 25, 2022
27410e1
πŸ§ͺ: Add `delete_language` test
TheAwiteb Jun 25, 2022
0a49481
🧹: Rust clippy
TheAwiteb Jun 25, 2022
b943de0
Merge pull request #11 from TheAwiteb/tests
TheAwiteb Jun 25, 2022
0affe3a
🧹: Improve errors name
TheAwiteb Jun 25, 2022
6833ce4
Merge pull request #14 from TheAwiteb/improve-errors-name
TheAwiteb Jun 25, 2022
0a72ee0
βš™: Add issue template
TheAwiteb Jun 25, 2022
99296c3
πŸš€: Bump version to `0.1.0-pre.1`
TheAwiteb Jun 25, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
🧹: Rust clippy
  • Loading branch information
TheAwiteb committed Jun 24, 2022
commit 1c0a7cac30b41c0dd1f41d1f72d9a56484d01fc6
2 changes: 1 addition & 1 deletion src/cli/sub_commands/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ impl Translations {

/// Delete translation
pub fn delete_translation(&mut self, key: &str) -> I18nResult<()> {
if self.languages.len() > 0 {
if !self.languages.is_empty() {
if self
.languages
.iter()
Expand Down