mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-21 22:43:41 +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
|
||||
|
||||
$a->strings["Submit"] = "Senda inn";
|
||||
$a->strings["Tile Server URL"] = "";
|
||||
$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "";
|
||||
$a->strings["Default zoom"] = "Sjálfgefin þysjun";
|
||||
$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";
|
||||
<?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.";
|
||||
|
|
Loading…
Reference in a new issue