Skip to content

Commit

Permalink
Apply format
Browse files Browse the repository at this point in the history
  • Loading branch information
nd0ut committed Dec 13, 2024
1 parent 45dbb04 commit 1628323
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion pt.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ l10n.translations.pt = {
button: "Conectar ao %source",
facebookButton: "Continuar com o Facebook",
note: "Nós abriremos uma nova página para conectar sua conta %source.",
cookieWarning: "Você bloqueou cookies de terceiros em seu navegador. A autorização requer cookies de terceiros, pelo menos para o domínio <code>social.uploadcare.com</code>.",
cookieWarning:
"Você bloqueou cookies de terceiros em seu navegador. A autorização requer cookies de terceiros, pelo menos para o domínio <code>social.uploadcare.com</code>.",
cookieRetry: "Desbloqueei os cookies e quero tentar novamente.",
},
pagination: {
Expand Down
6 changes: 3 additions & 3 deletions uk.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,11 +172,11 @@ l10n.translations.uk = {
// Pluralization rules taken from:
// http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html
l10n.pluralize.uk = function (n) {
return ((n / 10) % 10 | 0) == 1 || n % 10 == 0 || n % 10 > 4
return (((n / 10) % 10) | 0) == 1 || n % 10 == 0 || n % 10 > 4
? "many"
: n % 10 == 1
? "one"
: "few";
? "one"
: "few";
};

l10n.date.uk = function (d) {
Expand Down

0 comments on commit 1628323

Please sign in to comment.