Skip to content

Commit

Permalink
intl: fix casing in legal & notebooks strings (#7142)
Browse files Browse the repository at this point in the history
Signed-off-by: 01zulfi <[email protected]>
  • Loading branch information
01zulfi authored Dec 26, 2024
1 parent b296f5d commit 59d3e06
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
12 changes: 9 additions & 3 deletions packages/intl/locale/en.po
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: @lingui/cli\n"
"Language: en\n"
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
"Plural-Forms: \n"

#: src/strings.ts:817
msgid "— not just the"
Expand Down Expand Up @@ -3179,8 +3185,8 @@ msgid "Learn more about Notesnook Monograph"
msgstr "Learn more about Notesnook Monograph"

#: src/strings.ts:1537
msgid "legal"
msgstr "legal"
msgid "Legal"
msgstr "Legal"

#: src/strings.ts:468
msgid "Let us know if you have faced any issue/bug while using Notesnook. We will try to fix it as soon as possible."
Expand Down Expand Up @@ -3827,12 +3833,12 @@ msgstr "Notebook"
msgid "notebooks"
msgstr "notebooks"

#: src/strings.ts:258
#: src/strings.ts:316
#: src/strings.ts:1495
msgid "Notebooks"
msgstr "Notebooks"

#: src/strings.ts:258
#: src/strings.ts:1769
msgid "NOTEBOOKS"
msgstr "NOTEBOOKS"
Expand Down
10 changes: 8 additions & 2 deletions packages/intl/locale/pseudo-LOCALE.po
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: @lingui/cli\n"
"Language: pseudo-LOCALE\n"
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
"Plural-Forms: \n"

#: src/strings.ts:817
msgid "— not just the"
Expand Down Expand Up @@ -3165,7 +3171,7 @@ msgid "Learn more about Notesnook Monograph"
msgstr ""

#: src/strings.ts:1537
msgid "legal"
msgid "Legal"
msgstr ""

#: src/strings.ts:468
Expand Down Expand Up @@ -3813,12 +3819,12 @@ msgstr ""
msgid "notebooks"
msgstr ""

#: src/strings.ts:258
#: src/strings.ts:316
#: src/strings.ts:1495
msgid "Notebooks"
msgstr ""

#: src/strings.ts:258
#: src/strings.ts:1769
msgid "NOTEBOOKS"
msgstr ""
Expand Down
4 changes: 2 additions & 2 deletions packages/intl/src/strings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export const strings = {
t`or email us at`
],
migrationFailed: () => t`Migration failed`,
notebooks: () => t`NOTEBOOKS`,
notebooks: () => t`Notebooks`,
syncingHeading: () => t`Syncing your data`,
syncingDesc: () => t`Please wait while we sync all your data.`,
downloadingAttachments: () => t`Downloading attachments`,
Expand Down Expand Up @@ -1534,7 +1534,7 @@ For example:
dateError: () => t`Reminder time cannot be earlier than the current time.`,
failedToDecryptBackup: () => t`Failed to decrypt backup`,
backupDirectoryNotSelected: () => t`Backup directory not selected`,
legal: () => t`legal`,
legal: () => t`Legal`,
days: (days: number) =>
plural(days, {
one: `1 day`,
Expand Down

0 comments on commit 59d3e06

Please sign in to comment.