Closed
Bug 1422791
Opened 8 years ago
Closed 8 years ago
[kn] Strings longer than allowed in pipnss.properties
Categories
(Mozilla Localizations :: kn / Kannada, defect)
Mozilla Localizations
kn / Kannada
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: flod, Assigned: flod)
Details
pipnss.properties includes a few special strings with hard length limits
https://hg.mozilla.org/l10n/gecko-strings/file/default/security/manager/chrome/pipnss/pipnss.properties#l10
Once converted to UTF-8, the string needs to be shorter than the specified limit (32 or 64 bytes), otherwise it will be truncated in the interface.
There are currently some strings in your localization that exceed this limit and need to be fixed:
- Fips140SlotDescription (FIPS 140 ಕ್ರಿಪ್ಟೋಗ್ರಾಫಿಕ್, ಕೀಲಿ ಹಾಗು ಪ್ರಮಾಣಪತ್ರ ಸೇವೆಗಳು) is longer than 64 bytes (current length: 137 bytes)
- Fips140TokenDescription (ತಂತ್ರಾಂಶ ಸುರಕ್ಷತಾ ಸಾಧನ (FIPS)) is longer than 32 bytes (current length: 69 bytes)
- InternalToken (ತಂತ್ರಾಂಶ ಸುರಕ್ಷತಾ ಸಾಧನ) is longer than 32 bytes (current length: 62 bytes)
- LibraryDescription (PSM ಆಂತರಿಕ ಕ್ರಿಪ್ಟೋ ಸೇವೆಗಳು) is longer than 32 bytes (current length: 69 bytes)
- SlotDescription (PSM ಆಂತರಿಕ ಕ್ರಿಪ್ಟೋಗ್ರಾಫಿಕ್ ಸೇವೆಗಳು) is longer than 64 bytes (current length: 93 bytes)
- TokenDescription (ಸಾಮಾನ್ಯ(Generic) ಕ್ರಿಪ್ಟೋ ಸೇವೆಗಳು) is longer than 32 bytes (current length: 77 bytes)
- TokenDescription (ಸಾಮಾನ್ಯ(Generic) ಕ್ರಿಪ್ಟೋ ಸೇವೆಗಳು) is longer than 32 bytes (current length: 77 bytes)
Strings are available in this file in Pontoon
https://pontoon.mozilla.org/kn/firefox/security/manager/chrome/pipnss/pipnss.properties/
***
HOW TO FIX THIS BUG
To check the length of a string, you can use the Browser Console in Firefox:
1. Open Tools->Web Developer->Browser Console
2. In the input field at the bottom of the window copy and paste the following code, replacing YOURSTRING with your actual translation, keeping the surrounding quotes
(new TextEncoder('utf-8').encode('YOURSTRING')).length
3. Press enter
The number displayed is the current string length.
One important consideration: it might be impossible for some languages to come up with a reasonable translation within these limits, since the length in bytes does not match the length in characters. For example: "cookie" is 6 bytes, "కుకీలు" is 18 bytes.
In this case, it's better to keep the English text than a translation that won't be understandable because of truncations.
| Assignee | ||
Comment 1•8 years ago
|
||
Updated list:
- Fips140SlotDescription (FIPS 140 ಕ್ರಿಪ್ಟೋಗ್ರಾಫಿಕ್, ಕೀಲಿ ಹಾಗು ಪ್ರಮಾಣಪತ್ರ ಸೇವೆಗಳು) is longer than 64 bytes (current length: 137 bytes)
- Fips140TokenDescription (ತಂತ್ರಾಂಶ ಸುರಕ್ಷತಾ ಸಾಧನ (FIPS)) is longer than 32 bytes (current length: 69 bytes)
- InternalToken (ತಂತ್ರಾಂಶ ಸುರಕ್ಷತಾ ಸಾಧನ) is longer than 32 bytes (current length: 62 bytes)
- LibraryDescription (PSM ಆಂತರಿಕ ಕ್ರಿಪ್ಟೋ ಸೇವೆಗಳು) is longer than 32 bytes (current length: 69 bytes)
- PrivateTokenDescription (ತಂತ್ರಾಂಶ ಸುರಕ್ಷತಾ ಸಾಧನ) is longer than 32 bytes (current length: 62 bytes)
- SlotDescription (PSM ಆಂತರಿಕ ಕ್ರಿಪ್ಟೋಗ್ರಾಫಿಕ್ ಸೇವೆಗಳು) is longer than 64 bytes (current length: 93 bytes)
- TokenDescription (ಸಾಮಾನ್ಯ(Generic) ಕ್ರಿಪ್ಟೋ ಸೇವೆಗಳು) is longer than 32 bytes (current length: 77 bytes)
| Assignee | ||
Comment 2•8 years ago
|
||
I'm reverting all these strings to English, since it seems impossible to translate these strings in a non Latin script and remain within the 32/64 byte limits.
Assignee: nobody → francesco.lodolo
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•