Skip to content

Commit

Permalink
[339] fix: notes shared plural
Browse files Browse the repository at this point in the history
  • Loading branch information
maelchiotti committed Jan 2, 2025
1 parent f48429f commit 9c66edc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/l10n/translations/app_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@
"@dialog_delete": {
"description": "Title of the the dialog to delete one or multiple notes (moving them to the bin), and text for the confirmation button."
},
"dialog_delete_body": "Do you really want to delete {count} {count, plural, zero{} one{note} other{notes}}? You can restore {count, plural, zero{} one{it} other{them}} from the bin.",
"dialog_delete_body": "Do you really want to delete {count} {count, plural, one{note} other{notes}}? You can restore {count, plural, one{it} other{them}} from the bin.",
"@dialog_delete_body": {
"description": "Text for the dialog to confirm the deletion of one or multiple notes.",
"placeholders": {
Expand All @@ -761,7 +761,7 @@
"@dialog_permanently_delete": {
"description": "Title of the the dialog to permanently delete one or multiple notes, and text for the confirmation button."
},
"dialog_permanently_delete_body": "Do you really want to permanently delete {count} {count, plural, zero{} one{note} other{notes}}? You will not be able to restore {count, plural, zero{} one{it} other{them}}.",
"dialog_permanently_delete_body": "Do you really want to permanently delete {count} {count, plural, one{note} other{notes}}? You will not be able to restore {count, plural, one{it} other{them}}.",
"@dialog_permanently_delete_body": {
"description": "Text for the dialog to confirm the permanent deletion of one or multiple notes.",
"placeholders": {
Expand All @@ -775,7 +775,7 @@
"@dialog_restore": {
"description": "Title of the the dialog to restore one or multiple notes from the bin, and text for the confirmation button."
},
"dialog_restore_body": "Do you really want to restore {count} {count, plural, zero{} one{note} other{notes}}?",
"dialog_restore_body": "Do you really want to restore {count} {count, plural, one{note} other{notes}}?",
"@dialog_restore_body": {
"description": "Text for the dialog to confirm restoring one or multiple notes from the bin.",
"placeholders": {
Expand All @@ -797,7 +797,7 @@
"@dialog_delete_label": {
"description": "Title of the the dialog to delete one or multiple labels, and text for the confirmation button."
},
"dialog_delete_label_body": "Do you really want to delete {count} {count, plural, zero{} one{label} other{labels}}? {count, plural, zero{} one{It} other{They}} will be removed from the notes where you added {count, plural, zero{} one{it} other{them}}.",
"dialog_delete_label_body": "Do you really want to delete {count} {count, plural, one{label} other{labels}}? {count, plural, one{It} other{They}} will be removed from the notes where you added {count, plural, one{it} other{them}}.",
"@dialog_delete_label_body": {
"description": "Text for the dialog to confirm the deletion of one or multiple notes.",
"placeholders": {
Expand Down Expand Up @@ -887,7 +887,7 @@
"@action_share": {
"description": "Swipe or menu action to share a note."
},
"action_share_subject": "{count} notes shared from Material Notes",
"action_share_subject": "{count} {count, plural, one{note} other{notes}} shared from Material Notes",
"@action_share_subject": {
"description": "Subject of the text that is shared when multiple notes are shared at the same time.",
"placeholders": {
Expand Down
1 change: 1 addition & 0 deletions scripts/mimir/fdroid_build_mimir.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ x64() {
echo "Building mimir for x64"

bash scripts/build-android.sh x64
ls -l -R

mkdirJniLibs x86_64
mv platform-build/jniLibs/x86_64/libembedded_milli.so "$PUB_CACHE"/hosted/pub.dev/flutter_mimir-*/android/src/main/jniLibs/x86_64/
Expand Down

0 comments on commit 9c66edc

Please sign in to comment.