]> git.mxchange.org Git - friendica-addons.git/commitdiff
IS translation openstreetmap addon THX Sveinn í Felli
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 25 May 2018 08:27:12 +0000 (10:27 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 25 May 2018 08:27:12 +0000 (10:27 +0200)
openstreetmap/lang/is/messages.po [new file with mode: 0644]
openstreetmap/lang/is/strings.php

diff --git a/openstreetmap/lang/is/messages.po b/openstreetmap/lang/is/messages.po
new file mode 100644 (file)
index 0000000..77b7cb7
--- /dev/null
@@ -0,0 +1,46 @@
+# ADDON openstreetmap
+# Copyright (C)
+# This file is distributed under the same license as the Friendica openstreetmap addon package.
+# 
+# 
+# Translators:
+# Sveinn í Felli <sv1@fellsnet.is>, 2018
+msgid ""
+msgstr ""
+"Project-Id-Version: friendica\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-02-27 05:01-0500\n"
+"PO-Revision-Date: 2018-05-24 15:14+0000\n"
+"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
+"Language-Team: Icelandic (http://www.transifex.com/Friendica/friendica/language/is/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: is\n"
+"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
+
+#: openstreetmap.php:94
+msgid "Submit"
+msgstr "Senda inn"
+
+#: openstreetmap.php:95
+msgid "Tile Server URL"
+msgstr "Slóð á kortaflísamiðlara"
+
+#: openstreetmap.php:95
+msgid ""
+"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
+"target=\"_blank\">public tile servers</a>"
+msgstr "Listi yfir <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">opinbera kortaflísamiðlara</a>"
+
+#: openstreetmap.php:96
+msgid "Default zoom"
+msgstr "Sjálfgefinn aðdráttur"
+
+#: openstreetmap.php:96
+msgid "The default zoom level. (1:world, 18:highest)"
+msgstr "Sjálfgefið aðdráttarstig. (1:heimur, 18:mest)"
+
+#: openstreetmap.php:104
+msgid "Settings updated."
+msgstr "Stillingar uppfærðar."
index dc717efb074f71d0c8f84b63f6322fadde80045c..d14a77135f9ac538bfd699aa878d6250d82b12d1 100644 (file)
@@ -1,8 +1,14 @@
-<?php\r
-\r
-$a->strings["Submit"] = "Senda inn";\r
-$a->strings["Tile Server URL"] = "";\r
-$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "";\r
-$a->strings["Default zoom"] = "Sjálfgefin þysjun";\r
-$a->strings["The default zoom level. (1:world, 18:highest)"] = "Sjálfgefna þysjunar sig. (1:heimur, 18:mest)";\r
-$a->strings["Settings updated."] = "Stillingar uppfærðar";\r
+<?php
+
+if(! function_exists("string_plural_select_is")) {
+function string_plural_select_is($n){
+       $n = intval($n);
+       return ($n % 10 != 1 || $n % 100 == 11);;
+}}
+;
+$a->strings["Submit"] = "Senda inn";
+$a->strings["Tile Server URL"] = "Slóð á kortaflísamiðlara";
+$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "Listi yfir <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">opinbera kortaflísamiðlara</a>";
+$a->strings["Default zoom"] = "Sjálfgefinn aðdráttur";
+$a->strings["The default zoom level. (1:world, 18:highest)"] = "Sjálfgefið aðdráttarstig. (1:heimur, 18:mest)";
+$a->strings["Settings updated."] = "Stillingar uppfærðar.";