diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2023-01-26 20:07:02 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-01-27 08:00:07 +0100 |
commit | 03243df16a12b6bfeabdb03513e4f97c0e86adf0 (patch) | |
tree | ae91b17ae222f2bd1037c84f4d1342cf3c7451d6 /view/nb-no/hstrings.php | |
parent | 2805520d1bcb2640fc079d54f5f230f7b87d1f84 (diff) | |
download | volse-hubzilla-03243df16a12b6bfeabdb03513e4f97c0e86adf0.tar.gz volse-hubzilla-03243df16a12b6bfeabdb03513e4f97c0e86adf0.tar.bz2 volse-hubzilla-03243df16a12b6bfeabdb03513e4f97c0e86adf0.zip |
translations: Fix timeago for nb_NO.
(cherry picked from commit 9065a90ac020643bb459bb0e3934d40e14a1de41)
Diffstat (limited to 'view/nb-no/hstrings.php')
-rw-r--r-- | view/nb-no/hstrings.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/view/nb-no/hstrings.php b/view/nb-no/hstrings.php index ceb56ce8f..389215806 100644 --- a/view/nb-no/hstrings.php +++ b/view/nb-no/hstrings.php @@ -2,10 +2,10 @@ if(! function_exists("string_plural_select_nb_no")) { function string_plural_select_nb_no($n){ - return ($n != 1); + return ($n != 1 ? 1 : 0); }} App::$rtl = 0; -App::$strings["plural_function_code"] = "(n != 1)"; +App::$strings["plural_function_code"] = "(n != 1 ? 1 : 0)"; App::$strings["Default"] = "Standard"; App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla standard)"; App::$strings["Submit"] = "Lagre"; @@ -1112,7 +1112,7 @@ App::$strings["%d years"] = array( ); App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["timeago.suffixAgo"] = ""; +App::$strings["timeago.suffixAgo"] = "siden"; App::$strings["timeago.suffixFromNow"] = ""; App::$strings["less than a minute"] = "mindre enn ett minutt"; App::$strings["about a minute"] = "omtrent et minutt"; |