forked from friendica/deprecated-addons
deprecated the NOTIMELINE addon
This commit is contained in:
parent
12274063bb
commit
483e8e9755
33 changed files with 647 additions and 0 deletions
36
notimeline/lang/cs/messages.po
Normal file
36
notimeline/lang/cs/messages.po
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
# ADDON notimeline
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica notimeline addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Michal Šupler <msupler@gmail.com>, 2014-2015
|
||||
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: 2015-02-11 19:38+0000\n"
|
||||
"Last-Translator: Michal Šupler <msupler@gmail.com>\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#: notimeline.php:32
|
||||
msgid "No Timeline settings updated."
|
||||
msgstr "Nastavení No Timeline aktualizováno."
|
||||
|
||||
#: notimeline.php:56
|
||||
msgid "No Timeline Settings"
|
||||
msgstr "Nastavení No Timeline"
|
||||
|
||||
#: notimeline.php:58
|
||||
msgid "Disable Archive selector on profile wall"
|
||||
msgstr "Znemožnit použití archivu na této profilové zdi."
|
||||
|
||||
#: notimeline.php:64
|
||||
msgid "Submit"
|
||||
msgstr "Odeslat"
|
||||
11
notimeline/lang/cs/strings.php
Normal file
11
notimeline/lang/cs/strings.php
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_cs")) {
|
||||
function string_plural_select_cs($n){
|
||||
$n = intval($n);
|
||||
if (($n==1)) { return 0; } else if (($n>=2 && $n<=4)) { return 1; } else { return 2; }
|
||||
}}
|
||||
$a->strings['No Timeline settings updated.'] = 'Nastavení No Timeline aktualizováno.';
|
||||
$a->strings['No Timeline Settings'] = 'Nastavení No Timeline';
|
||||
$a->strings['Disable Archive selector on profile wall'] = 'Znemožnit použití archivu na této profilové zdi.';
|
||||
$a->strings['Submit'] = 'Odeslat';
|
||||
Loading…
Add table
Add a link
Reference in a new issue