IS translation update startpage THX Sveinn í Felli
parent
51f3270687
commit
2851ad5315
|
@ -0,0 +1,36 @@
|
||||||
|
# ADDON startpage
|
||||||
|
# Copyright (C)
|
||||||
|
# This file is distributed under the same license as the Friendica startpage 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 09:48+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"
|
||||||
|
|
||||||
|
#: startpage.php:83
|
||||||
|
msgid "Startpage Settings"
|
||||||
|
msgstr "Stillingar upphafssíðu"
|
||||||
|
|
||||||
|
#: startpage.php:85
|
||||||
|
msgid "Home page to load after login - leave blank for profile wall"
|
||||||
|
msgstr "Heimasíða sem á að hlaða inn eftir innskráningu - skilja eftir autt til að fá forsíðu notanda"
|
||||||
|
|
||||||
|
#: startpage.php:88
|
||||||
|
msgid "Examples: "network" or "notifications/system""
|
||||||
|
msgstr "Dæmi: "netkerfi" eða "tilkynningar/kerfi""
|
||||||
|
|
||||||
|
#: startpage.php:92
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "Senda inn"
|
|
@ -1,6 +1,12 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$a->strings["Startpage Settings"] = "";
|
if(! function_exists("string_plural_select_is")) {
|
||||||
$a->strings["Home page to load after login - leave blank for profile wall"] = "";
|
function string_plural_select_is($n){
|
||||||
$a->strings["Examples: "network" or "notifications/system""] = "";
|
$n = intval($n);
|
||||||
$a->strings["Submit"] = "Senda inn";
|
return ($n % 10 != 1 || $n % 100 == 11);;
|
||||||
|
}}
|
||||||
|
;
|
||||||
|
$a->strings["Startpage Settings"] = "Stillingar upphafssíðu";
|
||||||
|
$a->strings["Home page to load after login - leave blank for profile wall"] = "Heimasíða sem á að hlaða inn eftir innskráningu - skilja eftir autt til að fá forsíðu notanda";
|
||||||
|
$a->strings["Examples: "network" or "notifications/system""] = "Dæmi: "netkerfi" eða "tilkynningar/kerfi"";
|
||||||
|
$a->strings["Submit"] = "Senda inn";
|
||||||
|
|
Loading…
Reference in New Issue