mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 00:48:55 +00:00
CS gnot addon
This commit is contained in:
parent
af81c197c0
commit
f8b1f15c0c
2 changed files with 14 additions and 12 deletions
|
@ -2,12 +2,13 @@
|
|||
|
||||
if(! function_exists("string_plural_select_cs")) {
|
||||
function string_plural_select_cs($n){
|
||||
return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
|
||||
$n = intval($n);
|
||||
return ($n == 1 && $n % 1 == 0) ? 0 : ($n >= 2 && $n <= 4 && $n % 1 == 0) ? 1: ($n % 1 != 0 ) ? 2 : 3;;
|
||||
}}
|
||||
;
|
||||
$a->strings["Gnot settings updated."] = "Nastavení Gnot aktualizováno.";
|
||||
$a->strings["Gnot Settings"] = "Nastavení Gnot";
|
||||
$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Umožnit řetězení emailových komentářových notifikací na Gmailu a anonymizací řádky předmětu.";
|
||||
$a->strings["Enable this addon?"] = "Povolit tento addon/rozšíření?";
|
||||
$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Umožnit řetězení emailových komentářových oznámení na Gmailu a anonymizací řádky předmětu.";
|
||||
$a->strings["Enable this addon?"] = "Povolit tento doplněk?";
|
||||
$a->strings["Submit"] = "Odeslat";
|
||||
$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "[Friendica:Upozornění] Komentář ke konverzaci #%d";
|
||||
$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "[Friendica:Oznámení] Komentář ke konverzaci #%d";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue