mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-22 05:03:42 +00:00
IS translation openstreetmap addon THX Sveinn í Felli
This commit is contained in:
parent
6e8f7d78b8
commit
2e88375ec7
2 changed files with 60 additions and 8 deletions
46
openstreetmap/lang/is/messages.po
Normal file
46
openstreetmap/lang/is/messages.po
Normal file
|
@ -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."
|
|
@ -1,8 +1,14 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$a->strings["Submit"] = "Senda inn";
|
if(! function_exists("string_plural_select_is")) {
|
||||||
$a->strings["Tile Server URL"] = "";
|
function string_plural_select_is($n){
|
||||||
$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "";
|
$n = intval($n);
|
||||||
$a->strings["Default zoom"] = "Sjálfgefin þysjun";
|
return ($n % 10 != 1 || $n % 100 == 11);;
|
||||||
$a->strings["The default zoom level. (1:world, 18:highest)"] = "Sjálfgefna þysjunar sig. (1:heimur, 18:mest)";
|
}}
|
||||||
$a->strings["Settings updated."] = "Stillingar uppfærðar";
|
;
|
||||||
|
$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.";
|
||||||
|
|
Loading…
Reference in a new issue