Compare commits
2 commits
2025.07-rc
...
develop
| Author | SHA1 | Date | |
|---|---|---|---|
| cf8c798c76 | |||
| 324bc97c52 |
736 changed files with 1598 additions and 22691 deletions
|
|
@ -1,115 +0,0 @@
|
|||
# This prevents executing this pipeline at other servers than ci.friendi.ca
|
||||
labels:
|
||||
location: friendica
|
||||
type: releaser
|
||||
|
||||
skip_clone: true
|
||||
|
||||
steps:
|
||||
clone_friendica_base:
|
||||
image: alpine/git
|
||||
commands:
|
||||
- git config --global user.email "no-reply@friendi.ca"
|
||||
- git config --global user.name "Friendica"
|
||||
- git config --global --add safe.directory $CI_WORKSPACE
|
||||
- git clone https://github.com/friendica/friendica.git .
|
||||
- git checkout $CI_COMMIT_BRANCH
|
||||
when:
|
||||
repo: friendica/friendica-addons
|
||||
branch: [ develop, '*-rc' ]
|
||||
event: push
|
||||
clone_friendica_addon:
|
||||
image: alpine/git
|
||||
commands:
|
||||
- git config --global user.email "no-reply@friendi.ca"
|
||||
- git config --global user.name "Friendica"
|
||||
- git clone $CI_REPO_CLONE_URL addon
|
||||
- cd addon/
|
||||
- git checkout $CI_COMMIT_BRANCH
|
||||
- git fetch origin $CI_COMMIT_REF
|
||||
- git merge $CI_COMMIT_SHA
|
||||
when:
|
||||
repo: friendica/friendica-addons
|
||||
branch: [ develop, '*-rc' ]
|
||||
event: push
|
||||
restore_cache:
|
||||
image: meltwater/drone-cache:dev
|
||||
settings:
|
||||
backend: "filesystem"
|
||||
restore: true
|
||||
cache_key: "{{ .Repo.Name }}_php7.4_{{ arch }}_{{ os }}"
|
||||
archive_format: "gzip"
|
||||
mount:
|
||||
- '.composer'
|
||||
volumes:
|
||||
- /tmp/drone-cache:/tmp/cache
|
||||
when:
|
||||
repo: friendica/friendica-addons
|
||||
branch: [ develop, '*-rc' ]
|
||||
event: push
|
||||
composer_install:
|
||||
image: friendicaci/php8.2:php8.2.28
|
||||
commands:
|
||||
- export COMPOSER_HOME=.composer
|
||||
- composer validate
|
||||
- composer install --no-dev --optimize-autoloader
|
||||
volumes:
|
||||
- /etc/hosts:/etc/hosts
|
||||
when:
|
||||
repo: friendica/friendica-addons
|
||||
branch: [ develop, '*-rc' ]
|
||||
event: push
|
||||
create_artifacts:
|
||||
image: debian
|
||||
commands:
|
||||
- apt-get update
|
||||
- apt-get install bzip2
|
||||
- mkdir ./build
|
||||
- export VERSION="$(cat VERSION)"
|
||||
- export RELEASE="friendica-all-in-one-$VERSION"
|
||||
- export ARTIFACT="$RELEASE.tar.gz"
|
||||
- tar
|
||||
--exclude='.tx'
|
||||
--exclude='.git'
|
||||
--exclude='.editorconfig'
|
||||
--exclude='.gitattributes'
|
||||
--exclude='.gitignore'
|
||||
--exclude='.woodpecker'
|
||||
--exclude='**/*/messages.po'
|
||||
-cvzf ./build/$ARTIFACT /
|
||||
- cd ./build
|
||||
- sha256sum "$ARTIFACT" > "$ARTIFACT.sum256"
|
||||
- chmod 664 ./*
|
||||
- ls -lh
|
||||
- cat "$ARTIFACT.sum256"
|
||||
- sha256sum "$ARTIFACT"
|
||||
when:
|
||||
repo: friendica/friendica-addons
|
||||
branch: [ develop, '*-rc' ]
|
||||
event: push
|
||||
sign_artifacts:
|
||||
image: plugins/gpgsign
|
||||
settings:
|
||||
key:
|
||||
from_secret: gpg_key
|
||||
passphrase:
|
||||
from_secret: gpg_password
|
||||
files:
|
||||
- build/*
|
||||
exclude:
|
||||
- build/*.sum256
|
||||
detach_sign: true
|
||||
when:
|
||||
repo: friendica/friendica-addons
|
||||
branch: [ develop, '*-rc' ]
|
||||
event: push
|
||||
publish_artifacts:
|
||||
image: alpine
|
||||
commands:
|
||||
- cp -fr build/* /tmp/friendica_files/
|
||||
volumes:
|
||||
- files:/tmp/friendica_files
|
||||
when:
|
||||
repo: friendica/friendica-addons
|
||||
branch: [ develop, '*-rc' ]
|
||||
event: push
|
||||
|
|
@ -24,6 +24,6 @@ See the [documentation](https://github.com/friendica/friendica/blob/stable/doc/A
|
|||
## Translation
|
||||
|
||||
Addons can be translated like any other part of Friendica.
|
||||
Translation for addons is done at [the Transifex Friendica page](https://app.transifex.com/Friendica/friendica/dashboard/).
|
||||
Translation for addons is done at [the Transifex Friendica page](https://www.transifex.com/Friendica/friendica/dashboard/).
|
||||
|
||||
Read more about the workflow in the [Friendica translation documentation](https://github.com/friendica/friendica/blob/stable/doc/translations.md#addon).
|
||||
|
|
|
|||
|
|
@ -120,22 +120,21 @@ function advancedcontentfilter_prepare_body_content_filter(&$hook_data)
|
|||
$expressionLanguage = new ExpressionLanguage\ExpressionLanguage();
|
||||
}
|
||||
|
||||
$uid = $hook_data['uid'] ?? DI::userSession()->getLocalUserId();
|
||||
if (!$uid) {
|
||||
if (!DI::userSession()->getLocalUserId()) {
|
||||
return;
|
||||
}
|
||||
|
||||
$vars = advancedcontentfilter_get_filter_fields($hook_data['item']);
|
||||
|
||||
$rules = DI::cache()->get('rules_' . $uid);
|
||||
$rules = DI::cache()->get('rules_' . DI::userSession()->getLocalUserId());
|
||||
if (!isset($rules)) {
|
||||
$rules = DBA::toArray(DBA::select(
|
||||
'advancedcontentfilter_rules',
|
||||
['name', 'expression', 'serialized'],
|
||||
['uid' => $uid, 'active' => true]
|
||||
['uid' => DI::userSession()->getLocalUserId(), 'active' => true]
|
||||
));
|
||||
|
||||
DI::cache()->set('rules_' . $uid, $rules);
|
||||
DI::cache()->set('rules_' . DI::userSession()->getLocalUserId(), $rules);
|
||||
}
|
||||
|
||||
if ($rules) {
|
||||
|
|
|
|||
|
|
@ -1,161 +0,0 @@
|
|||
# ADDON advancedcontentfilter
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica advancedcontentfilter addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-05-11 08:54-0400\n"
|
||||
"PO-Revision-Date: 2018-05-24 06:41+0000\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/Friendica/teams/12172/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: advancedcontentfilter.php:154
|
||||
#, php-format
|
||||
msgid "Filtered by rule: %s"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:170 advancedcontentfilter.php:225
|
||||
msgid "Advanced Content Filter"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:224
|
||||
msgid "Back to Addon Settings"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:226
|
||||
msgid "Add a Rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:227
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:228
|
||||
msgid ""
|
||||
"Add and manage your personal content filter rules in this screen. Rules have"
|
||||
" a name and an arbitrary expression that will be matched against post data. "
|
||||
"For a complete reference of the available operations and variables, check "
|
||||
"the help page."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:229
|
||||
msgid "Your rules"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:230
|
||||
msgid ""
|
||||
"You have no rules yet! Start adding one by clicking on the button above next"
|
||||
" to the title."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:231
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:232
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:233
|
||||
msgid "Disable this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:234
|
||||
msgid "Enable this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:235
|
||||
msgid "Edit this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:236
|
||||
msgid "Edit the rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:237
|
||||
msgid "Save this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:238
|
||||
msgid "Delete this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:239
|
||||
msgid "Rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:240
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:241
|
||||
msgid "Add new rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:242
|
||||
msgid "Rule Name"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:243
|
||||
msgid "Rule Expression"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:244
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:295
|
||||
msgid "This addon requires this node having at least one post"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:325 advancedcontentfilter.php:336
|
||||
#: advancedcontentfilter.php:347 advancedcontentfilter.php:383
|
||||
#: advancedcontentfilter.php:414 advancedcontentfilter.php:437
|
||||
msgid "You must be logged in to use this method"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:351 advancedcontentfilter.php:387
|
||||
#: advancedcontentfilter.php:418
|
||||
msgid "Invalid form security token, please refresh the page."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:363
|
||||
msgid "The rule name and expression are required."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:377
|
||||
msgid "Rule successfully added"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:391 advancedcontentfilter.php:422
|
||||
msgid "Rule doesn't exist or doesn't belong to you."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:408
|
||||
msgid "Rule successfully updated"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:431
|
||||
msgid "Rule successfully deleted"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:441
|
||||
msgid "Missing argument: guid."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:449
|
||||
#, php-format
|
||||
msgid "Unknown post with guid: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/middlewares.php:49
|
||||
msgid "Method not found"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,161 +0,0 @@
|
|||
# ADDON advancedcontentfilter
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica advancedcontentfilter addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-05-11 08:54-0400\n"
|
||||
"PO-Revision-Date: 2018-05-24 06:41+0000\n"
|
||||
"Language-Team: Esperanto (https://app.transifex.com/Friendica/teams/12172/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: advancedcontentfilter.php:154
|
||||
#, php-format
|
||||
msgid "Filtered by rule: %s"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:170 advancedcontentfilter.php:225
|
||||
msgid "Advanced Content Filter"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:224
|
||||
msgid "Back to Addon Settings"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:226
|
||||
msgid "Add a Rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:227
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:228
|
||||
msgid ""
|
||||
"Add and manage your personal content filter rules in this screen. Rules have"
|
||||
" a name and an arbitrary expression that will be matched against post data. "
|
||||
"For a complete reference of the available operations and variables, check "
|
||||
"the help page."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:229
|
||||
msgid "Your rules"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:230
|
||||
msgid ""
|
||||
"You have no rules yet! Start adding one by clicking on the button above next"
|
||||
" to the title."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:231
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:232
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:233
|
||||
msgid "Disable this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:234
|
||||
msgid "Enable this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:235
|
||||
msgid "Edit this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:236
|
||||
msgid "Edit the rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:237
|
||||
msgid "Save this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:238
|
||||
msgid "Delete this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:239
|
||||
msgid "Rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:240
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:241
|
||||
msgid "Add new rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:242
|
||||
msgid "Rule Name"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:243
|
||||
msgid "Rule Expression"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:244
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:295
|
||||
msgid "This addon requires this node having at least one post"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:325 advancedcontentfilter.php:336
|
||||
#: advancedcontentfilter.php:347 advancedcontentfilter.php:383
|
||||
#: advancedcontentfilter.php:414 advancedcontentfilter.php:437
|
||||
msgid "You must be logged in to use this method"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:351 advancedcontentfilter.php:387
|
||||
#: advancedcontentfilter.php:418
|
||||
msgid "Invalid form security token, please refresh the page."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:363
|
||||
msgid "The rule name and expression are required."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:377
|
||||
msgid "Rule successfully added"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:391 advancedcontentfilter.php:422
|
||||
msgid "Rule doesn't exist or doesn't belong to you."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:408
|
||||
msgid "Rule successfully updated"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:431
|
||||
msgid "Rule successfully deleted"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:441
|
||||
msgid "Missing argument: guid."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:449
|
||||
#, php-format
|
||||
msgid "Unknown post with guid: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/middlewares.php:49
|
||||
msgid "Method not found"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_eo")) {
|
||||
function string_plural_select_eo($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,161 +0,0 @@
|
|||
# ADDON advancedcontentfilter
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica advancedcontentfilter addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-05-11 08:54-0400\n"
|
||||
"PO-Revision-Date: 2018-05-24 06:41+0000\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/Friendica/teams/12172/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: advancedcontentfilter.php:154
|
||||
#, php-format
|
||||
msgid "Filtered by rule: %s"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:170 advancedcontentfilter.php:225
|
||||
msgid "Advanced Content Filter"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:224
|
||||
msgid "Back to Addon Settings"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:226
|
||||
msgid "Add a Rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:227
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:228
|
||||
msgid ""
|
||||
"Add and manage your personal content filter rules in this screen. Rules have"
|
||||
" a name and an arbitrary expression that will be matched against post data. "
|
||||
"For a complete reference of the available operations and variables, check "
|
||||
"the help page."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:229
|
||||
msgid "Your rules"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:230
|
||||
msgid ""
|
||||
"You have no rules yet! Start adding one by clicking on the button above next"
|
||||
" to the title."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:231
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:232
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:233
|
||||
msgid "Disable this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:234
|
||||
msgid "Enable this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:235
|
||||
msgid "Edit this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:236
|
||||
msgid "Edit the rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:237
|
||||
msgid "Save this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:238
|
||||
msgid "Delete this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:239
|
||||
msgid "Rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:240
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:241
|
||||
msgid "Add new rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:242
|
||||
msgid "Rule Name"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:243
|
||||
msgid "Rule Expression"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:244
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:295
|
||||
msgid "This addon requires this node having at least one post"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:325 advancedcontentfilter.php:336
|
||||
#: advancedcontentfilter.php:347 advancedcontentfilter.php:383
|
||||
#: advancedcontentfilter.php:414 advancedcontentfilter.php:437
|
||||
msgid "You must be logged in to use this method"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:351 advancedcontentfilter.php:387
|
||||
#: advancedcontentfilter.php:418
|
||||
msgid "Invalid form security token, please refresh the page."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:363
|
||||
msgid "The rule name and expression are required."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:377
|
||||
msgid "Rule successfully added"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:391 advancedcontentfilter.php:422
|
||||
msgid "Rule doesn't exist or doesn't belong to you."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:408
|
||||
msgid "Rule successfully updated"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:431
|
||||
msgid "Rule successfully deleted"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:441
|
||||
msgid "Missing argument: guid."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:449
|
||||
#, php-format
|
||||
msgid "Unknown post with guid: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/middlewares.php:49
|
||||
msgid "Method not found"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,161 +0,0 @@
|
|||
# ADDON advancedcontentfilter
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica advancedcontentfilter addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-05-11 08:54-0400\n"
|
||||
"PO-Revision-Date: 2018-05-24 06:41+0000\n"
|
||||
"Language-Team: Gaelic, Scottish (https://app.transifex.com/Friendica/teams/12172/gd/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gd\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
|
||||
|
||||
#: advancedcontentfilter.php:154
|
||||
#, php-format
|
||||
msgid "Filtered by rule: %s"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:170 advancedcontentfilter.php:225
|
||||
msgid "Advanced Content Filter"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:224
|
||||
msgid "Back to Addon Settings"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:226
|
||||
msgid "Add a Rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:227
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:228
|
||||
msgid ""
|
||||
"Add and manage your personal content filter rules in this screen. Rules have"
|
||||
" a name and an arbitrary expression that will be matched against post data. "
|
||||
"For a complete reference of the available operations and variables, check "
|
||||
"the help page."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:229
|
||||
msgid "Your rules"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:230
|
||||
msgid ""
|
||||
"You have no rules yet! Start adding one by clicking on the button above next"
|
||||
" to the title."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:231
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:232
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:233
|
||||
msgid "Disable this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:234
|
||||
msgid "Enable this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:235
|
||||
msgid "Edit this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:236
|
||||
msgid "Edit the rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:237
|
||||
msgid "Save this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:238
|
||||
msgid "Delete this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:239
|
||||
msgid "Rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:240
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:241
|
||||
msgid "Add new rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:242
|
||||
msgid "Rule Name"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:243
|
||||
msgid "Rule Expression"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:244
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:295
|
||||
msgid "This addon requires this node having at least one post"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:325 advancedcontentfilter.php:336
|
||||
#: advancedcontentfilter.php:347 advancedcontentfilter.php:383
|
||||
#: advancedcontentfilter.php:414 advancedcontentfilter.php:437
|
||||
msgid "You must be logged in to use this method"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:351 advancedcontentfilter.php:387
|
||||
#: advancedcontentfilter.php:418
|
||||
msgid "Invalid form security token, please refresh the page."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:363
|
||||
msgid "The rule name and expression are required."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:377
|
||||
msgid "Rule successfully added"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:391 advancedcontentfilter.php:422
|
||||
msgid "Rule doesn't exist or doesn't belong to you."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:408
|
||||
msgid "Rule successfully updated"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:431
|
||||
msgid "Rule successfully deleted"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:441
|
||||
msgid "Missing argument: guid."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:449
|
||||
#, php-format
|
||||
msgid "Unknown post with guid: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/middlewares.php:49
|
||||
msgid "Method not found"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_gd")) {
|
||||
function string_plural_select_gd($n){
|
||||
$n = intval($n);
|
||||
if (($n==1 || $n==11)) { return 0; } else if (($n==2 || $n==12)) { return 1; } else if (($n > 2 && $n < 20)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -1,161 +0,0 @@
|
|||
# ADDON advancedcontentfilter
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica advancedcontentfilter addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-05-11 08:54-0400\n"
|
||||
"PO-Revision-Date: 2018-05-24 06:41+0000\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/Friendica/teams/12172/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"
|
||||
|
||||
#: advancedcontentfilter.php:154
|
||||
#, php-format
|
||||
msgid "Filtered by rule: %s"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:170 advancedcontentfilter.php:225
|
||||
msgid "Advanced Content Filter"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:224
|
||||
msgid "Back to Addon Settings"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:226
|
||||
msgid "Add a Rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:227
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:228
|
||||
msgid ""
|
||||
"Add and manage your personal content filter rules in this screen. Rules have"
|
||||
" a name and an arbitrary expression that will be matched against post data. "
|
||||
"For a complete reference of the available operations and variables, check "
|
||||
"the help page."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:229
|
||||
msgid "Your rules"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:230
|
||||
msgid ""
|
||||
"You have no rules yet! Start adding one by clicking on the button above next"
|
||||
" to the title."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:231
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:232
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:233
|
||||
msgid "Disable this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:234
|
||||
msgid "Enable this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:235
|
||||
msgid "Edit this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:236
|
||||
msgid "Edit the rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:237
|
||||
msgid "Save this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:238
|
||||
msgid "Delete this rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:239
|
||||
msgid "Rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:240
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:241
|
||||
msgid "Add new rule"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:242
|
||||
msgid "Rule Name"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:243
|
||||
msgid "Rule Expression"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:244
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:295
|
||||
msgid "This addon requires this node having at least one post"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:325 advancedcontentfilter.php:336
|
||||
#: advancedcontentfilter.php:347 advancedcontentfilter.php:383
|
||||
#: advancedcontentfilter.php:414 advancedcontentfilter.php:437
|
||||
msgid "You must be logged in to use this method"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:351 advancedcontentfilter.php:387
|
||||
#: advancedcontentfilter.php:418
|
||||
msgid "Invalid form security token, please refresh the page."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:363
|
||||
msgid "The rule name and expression are required."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:377
|
||||
msgid "Rule successfully added"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:391 advancedcontentfilter.php:422
|
||||
msgid "Rule doesn't exist or doesn't belong to you."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:408
|
||||
msgid "Rule successfully updated"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:431
|
||||
msgid "Rule successfully deleted"
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:441
|
||||
msgid "Missing argument: guid."
|
||||
msgstr ""
|
||||
|
||||
#: advancedcontentfilter.php:449
|
||||
#, php-format
|
||||
msgid "Unknown post with guid: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/middlewares.php:49
|
||||
msgid "Method not found"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_is")) {
|
||||
function string_plural_select_is($n){
|
||||
$n = intval($n);
|
||||
return intval($n % 10 != 1 || $n % 100 == 11);
|
||||
}}
|
||||
|
|
@ -6,7 +6,7 @@
|
|||
# Translators:
|
||||
# Waldemar Stoczkowski, 2018
|
||||
# Joe Doe, 2021
|
||||
# Bartosz Kozień, 2025
|
||||
# Piotr Strębski <strebski@gmail.com>, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
|
|
@ -15,8 +15,8 @@ msgstr ""
|
|||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-05-11 08:54-0400\n"
|
||||
"PO-Revision-Date: 2018-05-24 06:41+0000\n"
|
||||
"Last-Translator: Bartosz Kozień, 2025\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/Friendica/teams/12172/pl/)\n"
|
||||
"Last-Translator: Piotr Strębski <strebski@gmail.com>, 2022\n"
|
||||
"Language-Team: Polish (https://www.transifex.com/Friendica/teams/12172/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
|
@ -126,7 +126,7 @@ msgstr "Anuluj"
|
|||
|
||||
#: advancedcontentfilter.php:295
|
||||
msgid "This addon requires this node having at least one post"
|
||||
msgstr "Ten dodatek wymaga, aby ta instancja miała co najmniej jeden wpis"
|
||||
msgstr "Ten dodatek wymaga, aby ten węzeł miał co najmniej jeden wpis"
|
||||
|
||||
#: advancedcontentfilter.php:325 advancedcontentfilter.php:336
|
||||
#: advancedcontentfilter.php:347 advancedcontentfilter.php:383
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ $a->strings['Add new rule'] = 'Dodaj nową regułę';
|
|||
$a->strings['Rule Name'] = 'Nazwa reguły';
|
||||
$a->strings['Rule Expression'] = 'Wyrażanie reguły';
|
||||
$a->strings['Cancel'] = 'Anuluj';
|
||||
$a->strings['This addon requires this node having at least one post'] = 'Ten dodatek wymaga, aby ta instancja miała co najmniej jeden wpis';
|
||||
$a->strings['This addon requires this node having at least one post'] = 'Ten dodatek wymaga, aby ten węzeł miał co najmniej jeden wpis';
|
||||
$a->strings['You must be logged in to use this method'] = 'Musisz być zalogowany, aby skorzystać z tej metody';
|
||||
$a->strings['Invalid form security token, please refresh the page.'] = 'Nieprawidłowy token zabezpieczający formularz, odśwież stronę.';
|
||||
$a->strings['The rule name and expression are required.'] = 'Nazwa reguły i wyrażenie są wymagane.';
|
||||
|
|
|
|||
|
|
@ -1,66 +0,0 @@
|
|||
# ADDON blackout
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica blackout addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:19+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: blackout.php:97
|
||||
msgid ""
|
||||
"The end-date is prior to the start-date of the blackout, you should fix "
|
||||
"this."
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:99
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please double check the current settings for the blackout. It will begin on "
|
||||
"<strong>%s</strong> and end on <strong>%s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:102
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:103
|
||||
msgid "Redirect URL"
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:103
|
||||
msgid "All your visitors from the web will be redirected to this URL."
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:104
|
||||
msgid "Begin of the Blackout"
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:104
|
||||
msgid ""
|
||||
"Format is <tt>YYYY-MM-DD hh:mm</tt>; <em>YYYY</em> year, <em>MM</em> month, "
|
||||
"<em>DD</em> day, <em>hh</em> hour and <em>mm</em> minute."
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:105
|
||||
msgid "End of the Blackout"
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:107
|
||||
msgid ""
|
||||
"<strong>Note</strong>: The redirect will be active from the moment you press"
|
||||
" the submit button. Users currently logged in will <strong>not</strong> be "
|
||||
"thrown out but can't login again after logging out while the blackout is "
|
||||
"still in place."
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,66 +0,0 @@
|
|||
# ADDON blackout
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica blackout addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:19+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: blackout.php:97
|
||||
msgid ""
|
||||
"The end-date is prior to the start-date of the blackout, you should fix "
|
||||
"this."
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:99
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please double check the current settings for the blackout. It will begin on "
|
||||
"<strong>%s</strong> and end on <strong>%s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:102
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:103
|
||||
msgid "Redirect URL"
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:103
|
||||
msgid "All your visitors from the web will be redirected to this URL."
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:104
|
||||
msgid "Begin of the Blackout"
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:104
|
||||
msgid ""
|
||||
"Format is <tt>YYYY-MM-DD hh:mm</tt>; <em>YYYY</em> year, <em>MM</em> month, "
|
||||
"<em>DD</em> day, <em>hh</em> hour and <em>mm</em> minute."
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:105
|
||||
msgid "End of the Blackout"
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:107
|
||||
msgid ""
|
||||
"<strong>Note</strong>: The redirect will be active from the moment you press"
|
||||
" the submit button. Users currently logged in will <strong>not</strong> be "
|
||||
"thrown out but can't login again after logging out while the blackout is "
|
||||
"still in place."
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,3 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_eo")) {
|
||||
function string_plural_select_eo($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Submit"] = "Sendi";
|
||||
|
|
|
|||
|
|
@ -1,66 +0,0 @@
|
|||
# ADDON blackout
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica blackout addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:19+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Estonian (http://app.transifex.com/Friendica/friendica/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: blackout.php:97
|
||||
msgid ""
|
||||
"The end-date is prior to the start-date of the blackout, you should fix "
|
||||
"this."
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:99
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please double check the current settings for the blackout. It will begin on "
|
||||
"<strong>%s</strong> and end on <strong>%s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:102
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:103
|
||||
msgid "Redirect URL"
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:103
|
||||
msgid "All your visitors from the web will be redirected to this URL."
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:104
|
||||
msgid "Begin of the Blackout"
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:104
|
||||
msgid ""
|
||||
"Format is <tt>YYYY-MM-DD hh:mm</tt>; <em>YYYY</em> year, <em>MM</em> month, "
|
||||
"<em>DD</em> day, <em>hh</em> hour and <em>mm</em> minute."
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:105
|
||||
msgid "End of the Blackout"
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:107
|
||||
msgid ""
|
||||
"<strong>Note</strong>: The redirect will be active from the moment you press"
|
||||
" the submit button. Users currently logged in will <strong>not</strong> be "
|
||||
"thrown out but can't login again after logging out while the blackout is "
|
||||
"still in place."
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,66 +0,0 @@
|
|||
# ADDON blackout
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica blackout addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:19+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Gaelic, Scottish (http://app.transifex.com/Friendica/friendica/language/gd/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gd\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
|
||||
|
||||
#: blackout.php:97
|
||||
msgid ""
|
||||
"The end-date is prior to the start-date of the blackout, you should fix "
|
||||
"this."
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:99
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please double check the current settings for the blackout. It will begin on "
|
||||
"<strong>%s</strong> and end on <strong>%s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:102
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:103
|
||||
msgid "Redirect URL"
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:103
|
||||
msgid "All your visitors from the web will be redirected to this URL."
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:104
|
||||
msgid "Begin of the Blackout"
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:104
|
||||
msgid ""
|
||||
"Format is <tt>YYYY-MM-DD hh:mm</tt>; <em>YYYY</em> year, <em>MM</em> month, "
|
||||
"<em>DD</em> day, <em>hh</em> hour and <em>mm</em> minute."
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:105
|
||||
msgid "End of the Blackout"
|
||||
msgstr ""
|
||||
|
||||
#: blackout.php:107
|
||||
msgid ""
|
||||
"<strong>Note</strong>: The redirect will be active from the moment you press"
|
||||
" the submit button. Users currently logged in will <strong>not</strong> be "
|
||||
"thrown out but can't login again after logging out while the blackout is "
|
||||
"still in place."
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_gd")) {
|
||||
function string_plural_select_gd($n){
|
||||
$n = intval($n);
|
||||
if (($n==1 || $n==11)) { return 0; } else if (($n==2 || $n==12)) { return 1; } else if (($n > 2 && $n < 20)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -138,7 +138,7 @@ function bluesky_follow(array &$hook_data)
|
|||
}
|
||||
|
||||
DI::logger()->debug('Check if contact is bluesky', ['data' => $hook_data]);
|
||||
$contact = DBA::selectFirst('contact', [], ['network' => Protocol::BLUESKY, 'nurl' => Strings::normaliseLink($hook_data['url']), 'uid' => [0, $hook_data['uid']]]);
|
||||
$contact = DBA::selectFirst('contact', [], ['network' => Protocol::BLUESKY, 'url' => $hook_data['url'], 'uid' => [0, $hook_data['uid']]]);
|
||||
if (empty($contact)) {
|
||||
return;
|
||||
}
|
||||
|
|
@ -553,10 +553,6 @@ function bluesky_send(array &$b)
|
|||
return;
|
||||
}
|
||||
|
||||
if (Item::isGroupPost($b['uri-id'])) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($b['gravity'] != Item::GRAVITY_PARENT) {
|
||||
DI::logger()->debug('Got comment', ['item' => $b]);
|
||||
|
||||
|
|
|
|||
|
|
@ -1,23 +0,0 @@
|
|||
# ADDON buglink
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica buglink addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:27+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: buglink.php:20
|
||||
msgid "Report Bug"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
# ADDON buglink
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica buglink addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:27+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: buglink.php:20
|
||||
msgid "Report Bug"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,3 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_eo")) {
|
||||
function string_plural_select_eo($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Report Bug"] = "Skribi cimraporton";
|
||||
|
|
|
|||
|
|
@ -1,23 +0,0 @@
|
|||
# ADDON buglink
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica buglink addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:27+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Estonian (http://app.transifex.com/Friendica/friendica/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: buglink.php:20
|
||||
msgid "Report Bug"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,54 +0,0 @@
|
|||
# ADDON catavatar
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica catavatar addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2018-04-07 05:23+0000\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/Friendica/teams/12172/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: catavatar.php:48
|
||||
msgid "Set default profile avatar or randomize the cat."
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:53
|
||||
msgid "Cat Avatar Settings"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:56
|
||||
msgid "Use Cat as Avatar"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:57
|
||||
msgid "Another random Cat!"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:58
|
||||
msgid "Reset to email Cat"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:77
|
||||
msgid "The cat hadn't found itself."
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:86
|
||||
msgid "There was an error, the cat ran away."
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:92
|
||||
msgid "Profile Photos"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:102
|
||||
msgid "Meow!"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,54 +0,0 @@
|
|||
# ADDON catavatar
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica catavatar addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2018-04-07 05:23+0000\n"
|
||||
"Language-Team: Esperanto (https://app.transifex.com/Friendica/teams/12172/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: catavatar.php:48
|
||||
msgid "Set default profile avatar or randomize the cat."
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:53
|
||||
msgid "Cat Avatar Settings"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:56
|
||||
msgid "Use Cat as Avatar"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:57
|
||||
msgid "Another random Cat!"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:58
|
||||
msgid "Reset to email Cat"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:77
|
||||
msgid "The cat hadn't found itself."
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:86
|
||||
msgid "There was an error, the cat ran away."
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:92
|
||||
msgid "Profile Photos"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:102
|
||||
msgid "Meow!"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_eo")) {
|
||||
function string_plural_select_eo($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,54 +0,0 @@
|
|||
# ADDON catavatar
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica catavatar addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2018-04-07 05:23+0000\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/Friendica/teams/12172/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: catavatar.php:48
|
||||
msgid "Set default profile avatar or randomize the cat."
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:53
|
||||
msgid "Cat Avatar Settings"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:56
|
||||
msgid "Use Cat as Avatar"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:57
|
||||
msgid "Another random Cat!"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:58
|
||||
msgid "Reset to email Cat"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:77
|
||||
msgid "The cat hadn't found itself."
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:86
|
||||
msgid "There was an error, the cat ran away."
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:92
|
||||
msgid "Profile Photos"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:102
|
||||
msgid "Meow!"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,54 +0,0 @@
|
|||
# ADDON catavatar
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica catavatar addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2018-04-07 05:23+0000\n"
|
||||
"Language-Team: Gaelic, Scottish (https://app.transifex.com/Friendica/teams/12172/gd/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gd\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
|
||||
|
||||
#: catavatar.php:48
|
||||
msgid "Set default profile avatar or randomize the cat."
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:53
|
||||
msgid "Cat Avatar Settings"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:56
|
||||
msgid "Use Cat as Avatar"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:57
|
||||
msgid "Another random Cat!"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:58
|
||||
msgid "Reset to email Cat"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:77
|
||||
msgid "The cat hadn't found itself."
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:86
|
||||
msgid "There was an error, the cat ran away."
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:92
|
||||
msgid "Profile Photos"
|
||||
msgstr ""
|
||||
|
||||
#: catavatar.php:102
|
||||
msgid "Meow!"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_gd")) {
|
||||
function string_plural_select_gd($n){
|
||||
$n = intval($n);
|
||||
if (($n==1 || $n==11)) { return 0; } else if (($n==2 || $n==12)) { return 1; } else if (($n > 2 && $n < 20)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
# ADDON cookienotice
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica cookienotice addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2019-01-23 16:01+0000\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/Friendica/teams/12172/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: cookienotice.php:42
|
||||
msgid ""
|
||||
"This website uses cookies. If you continue browsing this website, you agree "
|
||||
"to the usage of cookies."
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:43 cookienotice.php:108
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:47
|
||||
msgid ""
|
||||
"<b>Configure your cookie usage notice.</b> It should just be a notice, "
|
||||
"saying that the website uses cookies. It is shown as long as a user didnt "
|
||||
"confirm clicking the OK button."
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:48
|
||||
msgid "Cookie Usage Notice"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:49
|
||||
msgid "OK Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:50
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:107
|
||||
msgid ""
|
||||
"This website uses cookies to recognize revisiting and logged in users. You "
|
||||
"accept the usage of these cookies by continue browsing this website."
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
# ADDON cookienotice
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica cookienotice addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2019-01-23 16:01+0000\n"
|
||||
"Language-Team: Esperanto (https://app.transifex.com/Friendica/teams/12172/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: cookienotice.php:42
|
||||
msgid ""
|
||||
"This website uses cookies. If you continue browsing this website, you agree "
|
||||
"to the usage of cookies."
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:43 cookienotice.php:108
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:47
|
||||
msgid ""
|
||||
"<b>Configure your cookie usage notice.</b> It should just be a notice, "
|
||||
"saying that the website uses cookies. It is shown as long as a user didnt "
|
||||
"confirm clicking the OK button."
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:48
|
||||
msgid "Cookie Usage Notice"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:49
|
||||
msgid "OK Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:50
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:107
|
||||
msgid ""
|
||||
"This website uses cookies to recognize revisiting and logged in users. You "
|
||||
"accept the usage of these cookies by continue browsing this website."
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_eo")) {
|
||||
function string_plural_select_eo($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
# ADDON cookienotice
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica cookienotice addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2019-01-23 16:01+0000\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/Friendica/teams/12172/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: cookienotice.php:42
|
||||
msgid ""
|
||||
"This website uses cookies. If you continue browsing this website, you agree "
|
||||
"to the usage of cookies."
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:43 cookienotice.php:108
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:47
|
||||
msgid ""
|
||||
"<b>Configure your cookie usage notice.</b> It should just be a notice, "
|
||||
"saying that the website uses cookies. It is shown as long as a user didnt "
|
||||
"confirm clicking the OK button."
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:48
|
||||
msgid "Cookie Usage Notice"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:49
|
||||
msgid "OK Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:50
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:107
|
||||
msgid ""
|
||||
"This website uses cookies to recognize revisiting and logged in users. You "
|
||||
"accept the usage of these cookies by continue browsing this website."
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -6,7 +6,6 @@
|
|||
# Translators:
|
||||
# Vladimir Núñez <lapoubelle111@gmail.com>, 2019
|
||||
# bob lebonche <lebonche@tutanota.com>, 2021
|
||||
# cracrayol, 2025
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
|
|
@ -15,8 +14,8 @@ msgstr ""
|
|||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2019-01-23 16:01+0000\n"
|
||||
"Last-Translator: cracrayol, 2025\n"
|
||||
"Language-Team: French (https://app.transifex.com/Friendica/teams/12172/fr/)\n"
|
||||
"Last-Translator: bob lebonche <lebonche@tutanota.com>, 2021\n"
|
||||
"Language-Team: French (https://www.transifex.com/Friendica/teams/12172/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
|
@ -56,7 +55,7 @@ msgstr "Bouton OK Texte "
|
|||
|
||||
#: cookienotice.php:50
|
||||
msgid "Save Settings"
|
||||
msgstr "Sauvegarder les paramètres "
|
||||
msgstr "Sauvegarder les réglages"
|
||||
|
||||
#: cookienotice.php:107
|
||||
msgid ""
|
||||
|
|
@ -64,5 +63,5 @@ msgid ""
|
|||
"accept the usage of these cookies by continue browsing this website."
|
||||
msgstr ""
|
||||
"Ce site utilise des cookies pour reconnaître les visiteurs et les "
|
||||
"utilisateurs connectés. Vous acceptez l'utilisation de ces cookies en "
|
||||
"utilisateurs connectés. Vous accepter l'utilisation de ces cookies en "
|
||||
"continuant sur ce site."
|
||||
|
|
|
|||
|
|
@ -10,5 +10,5 @@ $a->strings['OK'] = 'Ok';
|
|||
$a->strings['<b>Configure your cookie usage notice.</b> It should just be a notice, saying that the website uses cookies. It is shown as long as a user didnt confirm clicking the OK button.'] = '<b>Configurez votre politique d\'utilisation des cookies.</b> Cela devrait juste être un avertissement, signalant l\'utilisation de cookies par le site. Cela sera affiché tant que l\'utilisateur n\'aura pas confirmé en cliquant sur le bouton OK.';
|
||||
$a->strings['Cookie Usage Notice'] = 'Politique d\'utilisation des cookies.';
|
||||
$a->strings['OK Button Text'] = 'Bouton OK Texte ';
|
||||
$a->strings['Save Settings'] = 'Sauvegarder les paramètres ';
|
||||
$a->strings['This website uses cookies to recognize revisiting and logged in users. You accept the usage of these cookies by continue browsing this website.'] = 'Ce site utilise des cookies pour reconnaître les visiteurs et les utilisateurs connectés. Vous acceptez l\'utilisation de ces cookies en continuant sur ce site.';
|
||||
$a->strings['Save Settings'] = 'Sauvegarder les réglages';
|
||||
$a->strings['This website uses cookies to recognize revisiting and logged in users. You accept the usage of these cookies by continue browsing this website.'] = 'Ce site utilise des cookies pour reconnaître les visiteurs et les utilisateurs connectés. Vous accepter l\'utilisation de ces cookies en continuant sur ce site.';
|
||||
|
|
|
|||
|
|
@ -1,53 +0,0 @@
|
|||
# ADDON cookienotice
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica cookienotice addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2019-01-23 16:01+0000\n"
|
||||
"Language-Team: Gaelic, Scottish (https://app.transifex.com/Friendica/teams/12172/gd/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gd\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
|
||||
|
||||
#: cookienotice.php:42
|
||||
msgid ""
|
||||
"This website uses cookies. If you continue browsing this website, you agree "
|
||||
"to the usage of cookies."
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:43 cookienotice.php:108
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:47
|
||||
msgid ""
|
||||
"<b>Configure your cookie usage notice.</b> It should just be a notice, "
|
||||
"saying that the website uses cookies. It is shown as long as a user didnt "
|
||||
"confirm clicking the OK button."
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:48
|
||||
msgid "Cookie Usage Notice"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:49
|
||||
msgid "OK Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:50
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:107
|
||||
msgid ""
|
||||
"This website uses cookies to recognize revisiting and logged in users. You "
|
||||
"accept the usage of these cookies by continue browsing this website."
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_gd")) {
|
||||
function string_plural_select_gd($n){
|
||||
$n = intval($n);
|
||||
if (($n==1 || $n==11)) { return 0; } else if (($n==2 || $n==12)) { return 1; } else if (($n > 2 && $n < 20)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
# ADDON cookienotice
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica cookienotice addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2019-01-23 16:01+0000\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/Friendica/teams/12172/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"
|
||||
|
||||
#: cookienotice.php:42
|
||||
msgid ""
|
||||
"This website uses cookies. If you continue browsing this website, you agree "
|
||||
"to the usage of cookies."
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:43 cookienotice.php:108
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:47
|
||||
msgid ""
|
||||
"<b>Configure your cookie usage notice.</b> It should just be a notice, "
|
||||
"saying that the website uses cookies. It is shown as long as a user didnt "
|
||||
"confirm clicking the OK button."
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:48
|
||||
msgid "Cookie Usage Notice"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:49
|
||||
msgid "OK Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:50
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:107
|
||||
msgid ""
|
||||
"This website uses cookies to recognize revisiting and logged in users. You "
|
||||
"accept the usage of these cookies by continue browsing this website."
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_is")) {
|
||||
function string_plural_select_is($n){
|
||||
$n = intval($n);
|
||||
return intval($n % 10 != 1 || $n % 100 == 11);
|
||||
}}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
# ADDON cookienotice
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica cookienotice addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2019-01-23 16:01+0000\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/Friendica/teams/12172/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#: cookienotice.php:42
|
||||
msgid ""
|
||||
"This website uses cookies. If you continue browsing this website, you agree "
|
||||
"to the usage of cookies."
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:43 cookienotice.php:108
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:47
|
||||
msgid ""
|
||||
"<b>Configure your cookie usage notice.</b> It should just be a notice, "
|
||||
"saying that the website uses cookies. It is shown as long as a user didnt "
|
||||
"confirm clicking the OK button."
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:48
|
||||
msgid "Cookie Usage Notice"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:49
|
||||
msgid "OK Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:50
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: cookienotice.php:107
|
||||
msgid ""
|
||||
"This website uses cookies to recognize revisiting and logged in users. You "
|
||||
"accept the usage of these cookies by continue browsing this website."
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_ru")) {
|
||||
function string_plural_select_ru($n){
|
||||
$n = intval($n);
|
||||
if ($n%10==1 && $n%100!=11) { return 0; } else if ($n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14)) { return 1; } else if ($n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -1,123 +0,0 @@
|
|||
# ADDON curweather
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica curweather addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:34+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: curweather.php:47
|
||||
msgid "Error fetching weather data. Error was: "
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:130
|
||||
msgid "Current Weather"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:137
|
||||
msgid "Relative Humidity"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:138
|
||||
msgid "Pressure"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:139
|
||||
msgid "Wind"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:140
|
||||
msgid "Last Updated"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:141
|
||||
msgid "Data by"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:142
|
||||
msgid "Show on map"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:147
|
||||
msgid "There was a problem accessing the weather data. But have a look"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:149
|
||||
msgid "at OpenWeatherMap"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:178
|
||||
msgid "No APPID found, please contact your admin to obtain one."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:188
|
||||
msgid "Enter either the name of your location or the zip code."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:189
|
||||
msgid "Your Location"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:189
|
||||
msgid ""
|
||||
"Identifier of your location (name or zip code), e.g. <em>Berlin,DE</em> or "
|
||||
"<em>14476,DE</em>."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:190
|
||||
msgid "Units"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:190
|
||||
msgid "select if the temperature should be displayed in °C or °F"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:191
|
||||
msgid "Show weather data"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:196
|
||||
msgid "Current Weather Settings"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:227
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:230
|
||||
msgid "Caching Interval"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:232
|
||||
msgid ""
|
||||
"For how long should the weather data be cached? Choose according your "
|
||||
"OpenWeatherMap account type."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:233
|
||||
msgid "no cache"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:234 curweather.php:235 curweather.php:236 curweather.php:237
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:240
|
||||
msgid "Your APPID"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:240
|
||||
msgid "Your API key provided by OpenWeatherMap"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,123 +0,0 @@
|
|||
# ADDON curweather
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica curweather addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:34+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: curweather.php:47
|
||||
msgid "Error fetching weather data. Error was: "
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:130
|
||||
msgid "Current Weather"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:137
|
||||
msgid "Relative Humidity"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:138
|
||||
msgid "Pressure"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:139
|
||||
msgid "Wind"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:140
|
||||
msgid "Last Updated"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:141
|
||||
msgid "Data by"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:142
|
||||
msgid "Show on map"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:147
|
||||
msgid "There was a problem accessing the weather data. But have a look"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:149
|
||||
msgid "at OpenWeatherMap"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:178
|
||||
msgid "No APPID found, please contact your admin to obtain one."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:188
|
||||
msgid "Enter either the name of your location or the zip code."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:189
|
||||
msgid "Your Location"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:189
|
||||
msgid ""
|
||||
"Identifier of your location (name or zip code), e.g. <em>Berlin,DE</em> or "
|
||||
"<em>14476,DE</em>."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:190
|
||||
msgid "Units"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:190
|
||||
msgid "select if the temperature should be displayed in °C or °F"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:191
|
||||
msgid "Show weather data"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:196
|
||||
msgid "Current Weather Settings"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:227
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:230
|
||||
msgid "Caching Interval"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:232
|
||||
msgid ""
|
||||
"For how long should the weather data be cached? Choose according your "
|
||||
"OpenWeatherMap account type."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:233
|
||||
msgid "no cache"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:234 curweather.php:235 curweather.php:236 curweather.php:237
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:240
|
||||
msgid "Your APPID"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:240
|
||||
msgid "Your API key provided by OpenWeatherMap"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,3 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_eo")) {
|
||||
function string_plural_select_eo($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Submit"] = "Sendi";
|
||||
|
|
|
|||
|
|
@ -1,123 +0,0 @@
|
|||
# ADDON curweather
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica curweather addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:34+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Estonian (http://app.transifex.com/Friendica/friendica/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: curweather.php:47
|
||||
msgid "Error fetching weather data. Error was: "
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:130
|
||||
msgid "Current Weather"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:137
|
||||
msgid "Relative Humidity"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:138
|
||||
msgid "Pressure"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:139
|
||||
msgid "Wind"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:140
|
||||
msgid "Last Updated"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:141
|
||||
msgid "Data by"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:142
|
||||
msgid "Show on map"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:147
|
||||
msgid "There was a problem accessing the weather data. But have a look"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:149
|
||||
msgid "at OpenWeatherMap"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:178
|
||||
msgid "No APPID found, please contact your admin to obtain one."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:188
|
||||
msgid "Enter either the name of your location or the zip code."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:189
|
||||
msgid "Your Location"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:189
|
||||
msgid ""
|
||||
"Identifier of your location (name or zip code), e.g. <em>Berlin,DE</em> or "
|
||||
"<em>14476,DE</em>."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:190
|
||||
msgid "Units"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:190
|
||||
msgid "select if the temperature should be displayed in °C or °F"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:191
|
||||
msgid "Show weather data"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:196
|
||||
msgid "Current Weather Settings"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:227
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:230
|
||||
msgid "Caching Interval"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:232
|
||||
msgid ""
|
||||
"For how long should the weather data be cached? Choose according your "
|
||||
"OpenWeatherMap account type."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:233
|
||||
msgid "no cache"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:234 curweather.php:235 curweather.php:236 curweather.php:237
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:240
|
||||
msgid "Your APPID"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:240
|
||||
msgid "Your API key provided by OpenWeatherMap"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,123 +0,0 @@
|
|||
# ADDON curweather
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica curweather addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:34+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Gaelic, Scottish (http://app.transifex.com/Friendica/friendica/language/gd/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gd\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
|
||||
|
||||
#: curweather.php:47
|
||||
msgid "Error fetching weather data. Error was: "
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:130
|
||||
msgid "Current Weather"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:137
|
||||
msgid "Relative Humidity"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:138
|
||||
msgid "Pressure"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:139
|
||||
msgid "Wind"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:140
|
||||
msgid "Last Updated"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:141
|
||||
msgid "Data by"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:142
|
||||
msgid "Show on map"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:147
|
||||
msgid "There was a problem accessing the weather data. But have a look"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:149
|
||||
msgid "at OpenWeatherMap"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:178
|
||||
msgid "No APPID found, please contact your admin to obtain one."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:188
|
||||
msgid "Enter either the name of your location or the zip code."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:189
|
||||
msgid "Your Location"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:189
|
||||
msgid ""
|
||||
"Identifier of your location (name or zip code), e.g. <em>Berlin,DE</em> or "
|
||||
"<em>14476,DE</em>."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:190
|
||||
msgid "Units"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:190
|
||||
msgid "select if the temperature should be displayed in °C or °F"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:191
|
||||
msgid "Show weather data"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:196
|
||||
msgid "Current Weather Settings"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:227
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:230
|
||||
msgid "Caching Interval"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:232
|
||||
msgid ""
|
||||
"For how long should the weather data be cached? Choose according your "
|
||||
"OpenWeatherMap account type."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:233
|
||||
msgid "no cache"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:234 curweather.php:235 curweather.php:236 curweather.php:237
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:240
|
||||
msgid "Your APPID"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:240
|
||||
msgid "Your API key provided by OpenWeatherMap"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_gd")) {
|
||||
function string_plural_select_gd($n){
|
||||
$n = intval($n);
|
||||
if (($n==1 || $n==11)) { return 0; } else if (($n==2 || $n==12)) { return 1; } else if (($n > 2 && $n < 20)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -1,123 +0,0 @@
|
|||
# ADDON curweather
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica curweather addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:34+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Icelandic (http://app.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"
|
||||
|
||||
#: curweather.php:47
|
||||
msgid "Error fetching weather data. Error was: "
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:130
|
||||
msgid "Current Weather"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:137
|
||||
msgid "Relative Humidity"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:138
|
||||
msgid "Pressure"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:139
|
||||
msgid "Wind"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:140
|
||||
msgid "Last Updated"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:141
|
||||
msgid "Data by"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:142
|
||||
msgid "Show on map"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:147
|
||||
msgid "There was a problem accessing the weather data. But have a look"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:149
|
||||
msgid "at OpenWeatherMap"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:178
|
||||
msgid "No APPID found, please contact your admin to obtain one."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:188
|
||||
msgid "Enter either the name of your location or the zip code."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:189
|
||||
msgid "Your Location"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:189
|
||||
msgid ""
|
||||
"Identifier of your location (name or zip code), e.g. <em>Berlin,DE</em> or "
|
||||
"<em>14476,DE</em>."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:190
|
||||
msgid "Units"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:190
|
||||
msgid "select if the temperature should be displayed in °C or °F"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:191
|
||||
msgid "Show weather data"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:196
|
||||
msgid "Current Weather Settings"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:227
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:230
|
||||
msgid "Caching Interval"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:232
|
||||
msgid ""
|
||||
"For how long should the weather data be cached? Choose according your "
|
||||
"OpenWeatherMap account type."
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:233
|
||||
msgid "no cache"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:234 curweather.php:235 curweather.php:236 curweather.php:237
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:240
|
||||
msgid "Your APPID"
|
||||
msgstr ""
|
||||
|
||||
#: curweather.php:240
|
||||
msgid "Your API key provided by OpenWeatherMap"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,3 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_is")) {
|
||||
function string_plural_select_is($n){
|
||||
$n = intval($n);
|
||||
return intval($n % 10 != 1 || $n % 100 == 11);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Submit"] = "Senda inn";
|
||||
|
|
|
|||
|
|
@ -195,10 +195,6 @@ function diaspora_send(array &$b)
|
|||
return;
|
||||
}
|
||||
|
||||
if (Item::isGroupPost($b['uri-id'])) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($b['parent'] != $b['id']) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,101 +0,0 @@
|
|||
# ADDON diaspora
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica diaspora addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-06-03 15:48-0400\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:39+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: diaspora.php:43
|
||||
msgid "Post to Diaspora"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:66
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please remember: You can always be reached from Diaspora with your Friendica"
|
||||
" handle <strong>%s</strong>. "
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:67
|
||||
msgid ""
|
||||
"This connector is only meant if you still want to use your old Diaspora "
|
||||
"account for some time. "
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:68
|
||||
#, php-format
|
||||
msgid ""
|
||||
"However, it is preferred that you tell your Diaspora contacts the new handle"
|
||||
" <strong>%s</strong> instead."
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:78
|
||||
msgid "All aspects"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:79
|
||||
msgid "Public"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:85
|
||||
msgid "Post to aspect:"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:86
|
||||
#, php-format
|
||||
msgid "Connected with your Diaspora account <strong>%s</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:89
|
||||
msgid ""
|
||||
"Can't login to your Diaspora account. Please check handle (in the format "
|
||||
"user@domain.tld) and password."
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:96
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:97
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:103
|
||||
msgid "Enable Diaspora Post Addon"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:104
|
||||
msgid "Diaspora handle"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:105
|
||||
msgid "Diaspora password"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:105
|
||||
msgid ""
|
||||
"Privacy notice: Your Diaspora password will be stored unencrypted to "
|
||||
"authenticate you with your Diaspora pod. This means your Friendica node "
|
||||
"administrator can have access to it."
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:107
|
||||
msgid "Post to Diaspora by default"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:112
|
||||
msgid "Diaspora Export"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,101 +0,0 @@
|
|||
# ADDON diaspora
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica diaspora addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-06-03 15:48-0400\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:39+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: diaspora.php:43
|
||||
msgid "Post to Diaspora"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:66
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please remember: You can always be reached from Diaspora with your Friendica"
|
||||
" handle <strong>%s</strong>. "
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:67
|
||||
msgid ""
|
||||
"This connector is only meant if you still want to use your old Diaspora "
|
||||
"account for some time. "
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:68
|
||||
#, php-format
|
||||
msgid ""
|
||||
"However, it is preferred that you tell your Diaspora contacts the new handle"
|
||||
" <strong>%s</strong> instead."
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:78
|
||||
msgid "All aspects"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:79
|
||||
msgid "Public"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:85
|
||||
msgid "Post to aspect:"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:86
|
||||
#, php-format
|
||||
msgid "Connected with your Diaspora account <strong>%s</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:89
|
||||
msgid ""
|
||||
"Can't login to your Diaspora account. Please check handle (in the format "
|
||||
"user@domain.tld) and password."
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:96
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:97
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:103
|
||||
msgid "Enable Diaspora Post Addon"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:104
|
||||
msgid "Diaspora handle"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:105
|
||||
msgid "Diaspora password"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:105
|
||||
msgid ""
|
||||
"Privacy notice: Your Diaspora password will be stored unencrypted to "
|
||||
"authenticate you with your Diaspora pod. This means your Friendica node "
|
||||
"administrator can have access to it."
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:107
|
||||
msgid "Post to Diaspora by default"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:112
|
||||
msgid "Diaspora Export"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_eo")) {
|
||||
function string_plural_select_eo($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,101 +0,0 @@
|
|||
# ADDON diaspora
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica diaspora addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-06-03 15:48-0400\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:39+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Estonian (http://app.transifex.com/Friendica/friendica/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: diaspora.php:43
|
||||
msgid "Post to Diaspora"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:66
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please remember: You can always be reached from Diaspora with your Friendica"
|
||||
" handle <strong>%s</strong>. "
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:67
|
||||
msgid ""
|
||||
"This connector is only meant if you still want to use your old Diaspora "
|
||||
"account for some time. "
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:68
|
||||
#, php-format
|
||||
msgid ""
|
||||
"However, it is preferred that you tell your Diaspora contacts the new handle"
|
||||
" <strong>%s</strong> instead."
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:78
|
||||
msgid "All aspects"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:79
|
||||
msgid "Public"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:85
|
||||
msgid "Post to aspect:"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:86
|
||||
#, php-format
|
||||
msgid "Connected with your Diaspora account <strong>%s</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:89
|
||||
msgid ""
|
||||
"Can't login to your Diaspora account. Please check handle (in the format "
|
||||
"user@domain.tld) and password."
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:96
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:97
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:103
|
||||
msgid "Enable Diaspora Post Addon"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:104
|
||||
msgid "Diaspora handle"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:105
|
||||
msgid "Diaspora password"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:105
|
||||
msgid ""
|
||||
"Privacy notice: Your Diaspora password will be stored unencrypted to "
|
||||
"authenticate you with your Diaspora pod. This means your Friendica node "
|
||||
"administrator can have access to it."
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:107
|
||||
msgid "Post to Diaspora by default"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:112
|
||||
msgid "Diaspora Export"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,101 +0,0 @@
|
|||
# ADDON diaspora
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica diaspora addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-06-03 15:48-0400\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:39+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Gaelic, Scottish (http://app.transifex.com/Friendica/friendica/language/gd/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gd\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
|
||||
|
||||
#: diaspora.php:43
|
||||
msgid "Post to Diaspora"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:66
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please remember: You can always be reached from Diaspora with your Friendica"
|
||||
" handle <strong>%s</strong>. "
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:67
|
||||
msgid ""
|
||||
"This connector is only meant if you still want to use your old Diaspora "
|
||||
"account for some time. "
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:68
|
||||
#, php-format
|
||||
msgid ""
|
||||
"However, it is preferred that you tell your Diaspora contacts the new handle"
|
||||
" <strong>%s</strong> instead."
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:78
|
||||
msgid "All aspects"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:79
|
||||
msgid "Public"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:85
|
||||
msgid "Post to aspect:"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:86
|
||||
#, php-format
|
||||
msgid "Connected with your Diaspora account <strong>%s</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:89
|
||||
msgid ""
|
||||
"Can't login to your Diaspora account. Please check handle (in the format "
|
||||
"user@domain.tld) and password."
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:96
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:97
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:103
|
||||
msgid "Enable Diaspora Post Addon"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:104
|
||||
msgid "Diaspora handle"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:105
|
||||
msgid "Diaspora password"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:105
|
||||
msgid ""
|
||||
"Privacy notice: Your Diaspora password will be stored unencrypted to "
|
||||
"authenticate you with your Diaspora pod. This means your Friendica node "
|
||||
"administrator can have access to it."
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:107
|
||||
msgid "Post to Diaspora by default"
|
||||
msgstr ""
|
||||
|
||||
#: diaspora.php:112
|
||||
msgid "Diaspora Export"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_gd")) {
|
||||
function string_plural_select_gd($n){
|
||||
$n = intval($n);
|
||||
if (($n==1 || $n==11)) { return 0; } else if (($n==2 || $n==12)) { return 1; } else if (($n > 2 && $n < 20)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -4,101 +4,100 @@
|
|||
#
|
||||
#
|
||||
# Translators:
|
||||
# Bartosz Kozień, 2025
|
||||
# Piotr Strebski <strebski@gmail.com>, 2022
|
||||
# Piotr Strębski <strebski@gmail.com>, 2022
|
||||
# Waldemar Stoczkowski, 2018,2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-06-03 15:48-0400\n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:39+0000\n"
|
||||
"Last-Translator: Bartosz Kozień, 2025\n"
|
||||
"Language-Team: Polish (http://app.transifex.com/Friendica/friendica/language/pl/)\n"
|
||||
"Last-Translator: Piotr Strębski <strebski@gmail.com>, 2022\n"
|
||||
"Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#: diaspora.php:43
|
||||
#: diaspora.php:44
|
||||
msgid "Post to Diaspora"
|
||||
msgstr "Napisz do Diaspory"
|
||||
|
||||
#: diaspora.php:66
|
||||
#: diaspora.php:67
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please remember: You can always be reached from Diaspora with your Friendica"
|
||||
" handle <strong>%s</strong>. "
|
||||
msgstr "Pamiętaj: Zawsze można do Ciebie dotrzeć z Diaspory za pomocą uchwytu Friendica <strong>%s</strong>. "
|
||||
|
||||
#: diaspora.php:67
|
||||
#: diaspora.php:68
|
||||
msgid ""
|
||||
"This connector is only meant if you still want to use your old Diaspora "
|
||||
"account for some time. "
|
||||
msgstr "Ten łącznik jest przeznaczony do tego, gdy nadal chcesz korzystać ze starego konta Diaspora przez jakiś czas."
|
||||
|
||||
#: diaspora.php:68
|
||||
#: diaspora.php:69
|
||||
#, php-format
|
||||
msgid ""
|
||||
"However, it is preferred that you tell your Diaspora contacts the new handle"
|
||||
" <strong>%s</strong> instead."
|
||||
msgstr "Jednak zaleca się, aby zamiast tego poinformować swoją Diasporę o kontakt z nowym uchwytem <strong>%s</strong>."
|
||||
|
||||
#: diaspora.php:78
|
||||
#: diaspora.php:79
|
||||
msgid "All aspects"
|
||||
msgstr "Wszystkie aspekty"
|
||||
|
||||
#: diaspora.php:79
|
||||
#: diaspora.php:80
|
||||
msgid "Public"
|
||||
msgstr "Publiczny"
|
||||
|
||||
#: diaspora.php:85
|
||||
#: diaspora.php:86
|
||||
msgid "Post to aspect:"
|
||||
msgstr "Napisz do aspektu:"
|
||||
|
||||
#: diaspora.php:86
|
||||
#: diaspora.php:87
|
||||
#, php-format
|
||||
msgid "Connected with your Diaspora account <strong>%s</strong>"
|
||||
msgstr "Połączony ze swoim kontem Diaspora <strong>%s</strong>"
|
||||
|
||||
#: diaspora.php:89
|
||||
#: diaspora.php:90
|
||||
msgid ""
|
||||
"Can't login to your Diaspora account. Please check handle (in the format "
|
||||
"user@domain.tld) and password."
|
||||
msgstr "Nie można zalogować się na Twoje konto w Diasporze. Sprawdź uchwyt (w formacie użytkownik@domena.tld) i hasło."
|
||||
|
||||
#: diaspora.php:96
|
||||
#: diaspora.php:97
|
||||
msgid "Information"
|
||||
msgstr "Informacja"
|
||||
|
||||
#: diaspora.php:97
|
||||
#: diaspora.php:98
|
||||
msgid "Error"
|
||||
msgstr "Błąd"
|
||||
|
||||
#: diaspora.php:103
|
||||
#: diaspora.php:104
|
||||
msgid "Enable Diaspora Post Addon"
|
||||
msgstr "Włącz dodatek Diaspora"
|
||||
|
||||
#: diaspora.php:104
|
||||
#: diaspora.php:105
|
||||
msgid "Diaspora handle"
|
||||
msgstr "Uchwyt Diaspory"
|
||||
|
||||
#: diaspora.php:105
|
||||
#: diaspora.php:106
|
||||
msgid "Diaspora password"
|
||||
msgstr "Hasło Diaspora"
|
||||
|
||||
#: diaspora.php:105
|
||||
#: diaspora.php:106
|
||||
msgid ""
|
||||
"Privacy notice: Your Diaspora password will be stored unencrypted to "
|
||||
"authenticate you with your Diaspora pod. This means your Friendica node "
|
||||
"administrator can have access to it."
|
||||
msgstr "Informacja o prywatności: Twoje hasło Diaspora będzie przechowywane w postaci niezaszyfrowanej w celu uwierzytelnienia użytkownika w instancji Diaspora. Oznacza to, że administrator instancji Friendica może mieć do niego dostęp."
|
||||
msgstr "Informacja o ochronie prywatności: Twoje hasło Diaspora będzie przechowywane w postaci niezaszyfrowanej w celu uwierzytelnienia użytkownika za pomocą Diaspora. Oznacza to, że administrator węzła Friendica może mieć do niego dostęp."
|
||||
|
||||
#: diaspora.php:107
|
||||
#: diaspora.php:108
|
||||
msgid "Post to Diaspora by default"
|
||||
msgstr "Wyślij domyślnie do Diaspory"
|
||||
|
||||
#: diaspora.php:112
|
||||
#: diaspora.php:113
|
||||
msgid "Diaspora Export"
|
||||
msgstr "Eksportuj do Diaspory"
|
||||
|
|
|
|||
|
|
@ -19,6 +19,6 @@ $a->strings['Error'] = 'Błąd';
|
|||
$a->strings['Enable Diaspora Post Addon'] = 'Włącz dodatek Diaspora';
|
||||
$a->strings['Diaspora handle'] = 'Uchwyt Diaspory';
|
||||
$a->strings['Diaspora password'] = 'Hasło Diaspora';
|
||||
$a->strings['Privacy notice: Your Diaspora password will be stored unencrypted to authenticate you with your Diaspora pod. This means your Friendica node administrator can have access to it.'] = 'Informacja o prywatności: Twoje hasło Diaspora będzie przechowywane w postaci niezaszyfrowanej w celu uwierzytelnienia użytkownika w instancji Diaspora. Oznacza to, że administrator instancji Friendica może mieć do niego dostęp.';
|
||||
$a->strings['Privacy notice: Your Diaspora password will be stored unencrypted to authenticate you with your Diaspora pod. This means your Friendica node administrator can have access to it.'] = 'Informacja o ochronie prywatności: Twoje hasło Diaspora będzie przechowywane w postaci niezaszyfrowanej w celu uwierzytelnienia użytkownika za pomocą Diaspora. Oznacza to, że administrator węzła Friendica może mieć do niego dostęp.';
|
||||
$a->strings['Post to Diaspora by default'] = 'Wyślij domyślnie do Diaspory';
|
||||
$a->strings['Diaspora Export'] = 'Eksportuj do Diaspory';
|
||||
|
|
|
|||
|
|
@ -125,10 +125,6 @@ function dwpost_send(array &$b)
|
|||
return;
|
||||
}
|
||||
|
||||
if (Item::isGroupPost($b['uri-id'])) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($b['parent'] != $b['id']) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,43 +0,0 @@
|
|||
# ADDON dwpost
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica dwpost addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:41+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: dwpost.php:43
|
||||
msgid "Post to Dreamwidth"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:63
|
||||
msgid "Enable Dreamwidth Post Addon"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:64
|
||||
msgid "Dreamwidth username"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:65
|
||||
msgid "Dreamwidth password"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:66
|
||||
msgid "Post to Dreamwidth by default"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:71
|
||||
msgid "Dreamwidth Export"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
# ADDON dwpost
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica dwpost addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:41+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: dwpost.php:43
|
||||
msgid "Post to Dreamwidth"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:63
|
||||
msgid "Enable Dreamwidth Post Addon"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:64
|
||||
msgid "Dreamwidth username"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:65
|
||||
msgid "Dreamwidth password"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:66
|
||||
msgid "Post to Dreamwidth by default"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:71
|
||||
msgid "Dreamwidth Export"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,9 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_eo")) {
|
||||
function string_plural_select_eo($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Post to Dreamwidth"] = "Afiŝi al Dreamwidth";
|
||||
$a->strings["Dreamwidth Post Settings"] = "Agordoj por Afiŝoj al Dreamwidth";
|
||||
$a->strings["Enable dreamwidth Post Addon"] = "Ŝalti la Dreamwidth Kromprogramon";
|
||||
$a->strings["dreamwidth username"] = "Dreamwidth salutnomo";
|
||||
$a->strings["dreamwidth password"] = "Dreamwidth pasvorto";
|
||||
$a->strings["Post to dreamwidth by default"] = "Defaŭlte afiŝi al Dreamwidth";
|
||||
$a->strings["Submit"] = "Sendi";
|
||||
|
|
|
|||
|
|
@ -1,44 +0,0 @@
|
|||
# ADDON dwpost
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica dwpost addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Rain Hawk, 2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:41+0000\n"
|
||||
"Last-Translator: Rain Hawk, 2020\n"
|
||||
"Language-Team: Estonian (http://app.transifex.com/Friendica/friendica/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: dwpost.php:43
|
||||
msgid "Post to Dreamwidth"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:63
|
||||
msgid "Enable Dreamwidth Post Addon"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:64
|
||||
msgid "Dreamwidth username"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:65
|
||||
msgid "Dreamwidth password"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:66
|
||||
msgid "Post to Dreamwidth by default"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:71
|
||||
msgid "Dreamwidth Export"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
# ADDON dwpost
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica dwpost addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:41+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Gaelic, Scottish (http://app.transifex.com/Friendica/friendica/language/gd/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gd\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
|
||||
|
||||
#: dwpost.php:43
|
||||
msgid "Post to Dreamwidth"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:63
|
||||
msgid "Enable Dreamwidth Post Addon"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:64
|
||||
msgid "Dreamwidth username"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:65
|
||||
msgid "Dreamwidth password"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:66
|
||||
msgid "Post to Dreamwidth by default"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:71
|
||||
msgid "Dreamwidth Export"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_gd")) {
|
||||
function string_plural_select_gd($n){
|
||||
$n = intval($n);
|
||||
if (($n==1 || $n==11)) { return 0; } else if (($n==2 || $n==12)) { return 1; } else if (($n > 2 && $n < 20)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
# ADDON dwpost
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica dwpost addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2014-06-22 11:41+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Icelandic (http://app.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"
|
||||
|
||||
#: dwpost.php:43
|
||||
msgid "Post to Dreamwidth"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:63
|
||||
msgid "Enable Dreamwidth Post Addon"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:64
|
||||
msgid "Dreamwidth username"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:65
|
||||
msgid "Dreamwidth password"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:66
|
||||
msgid "Post to Dreamwidth by default"
|
||||
msgstr ""
|
||||
|
||||
#: dwpost.php:71
|
||||
msgid "Dreamwidth Export"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,9 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_is")) {
|
||||
function string_plural_select_is($n){
|
||||
$n = intval($n);
|
||||
return intval($n % 10 != 1 || $n % 100 == 11);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Post to Dreamwidth"] = "";
|
||||
$a->strings["Dreamwidth Post Settings"] = "";
|
||||
$a->strings["Enable dreamwidth Post Addon"] = "";
|
||||
$a->strings["dreamwidth username"] = "";
|
||||
$a->strings["dreamwidth password"] = "";
|
||||
$a->strings["Post to dreamwidth by default"] = "";
|
||||
$a->strings["Submit"] = "Senda inn";
|
||||
|
|
|
|||
|
|
@ -1,47 +0,0 @@
|
|||
# ADDON forumdirectory
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica forumdirectory addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-22 12:31+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: forumdirectory.php:33 forumdirectory.php:137
|
||||
msgid "Forum Directory"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:53
|
||||
msgid "Public access denied."
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:125
|
||||
msgid "No entries (some entries may be hidden)."
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:131
|
||||
msgid "Global Directory"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:133
|
||||
msgid "Find on this site"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:135
|
||||
msgid "Results for:"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:139
|
||||
msgid "Find"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,47 +0,0 @@
|
|||
# ADDON forumdirectory
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica forumdirectory addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-22 12:31+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: forumdirectory.php:33 forumdirectory.php:137
|
||||
msgid "Forum Directory"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:53
|
||||
msgid "Public access denied."
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:125
|
||||
msgid "No entries (some entries may be hidden)."
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:131
|
||||
msgid "Global Directory"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:133
|
||||
msgid "Find on this site"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:135
|
||||
msgid "Results for:"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:139
|
||||
msgid "Find"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,16 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_eo")) {
|
||||
function string_plural_select_eo($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Public access denied."] = "Publika atingo ne permesita.";
|
||||
$a->strings["Global Directory"] = "Tutmonda Katalogo";
|
||||
$a->strings["Find on this site"] = "Trovi en ĉi retejo";
|
||||
$a->strings["Finding: "] = "Trovata:";
|
||||
$a->strings["Site Directory"] = "Reteja Katalogo";
|
||||
$a->strings["Find"] = "Trovi";
|
||||
$a->strings["Age: "] = "Aĝo:";
|
||||
$a->strings["Gender: "] = "Sekso:";
|
||||
$a->strings["Location:"] = "Loko:";
|
||||
$a->strings["Gender:"] = "Sekso:";
|
||||
$a->strings["Status:"] = "Stato:";
|
||||
$a->strings["Homepage:"] = "Hejmpaĝo:";
|
||||
$a->strings["About:"] = "Pri:";
|
||||
$a->strings["No entries (some entries may be hidden)."] = "Neniom da afiŝoj (kelkaj afiŝoj eble ne estas videbla).";
|
||||
|
|
|
|||
|
|
@ -1,47 +0,0 @@
|
|||
# ADDON forumdirectory
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica forumdirectory addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-22 12:31+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Estonian (http://app.transifex.com/Friendica/friendica/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: forumdirectory.php:33 forumdirectory.php:137
|
||||
msgid "Forum Directory"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:53
|
||||
msgid "Public access denied."
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:125
|
||||
msgid "No entries (some entries may be hidden)."
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:131
|
||||
msgid "Global Directory"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:133
|
||||
msgid "Find on this site"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:135
|
||||
msgid "Results for:"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:139
|
||||
msgid "Find"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,47 +0,0 @@
|
|||
# ADDON forumdirectory
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica forumdirectory addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-22 12:31+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Gaelic, Scottish (http://app.transifex.com/Friendica/friendica/language/gd/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gd\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
|
||||
|
||||
#: forumdirectory.php:33 forumdirectory.php:137
|
||||
msgid "Forum Directory"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:53
|
||||
msgid "Public access denied."
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:125
|
||||
msgid "No entries (some entries may be hidden)."
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:131
|
||||
msgid "Global Directory"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:133
|
||||
msgid "Find on this site"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:135
|
||||
msgid "Results for:"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:139
|
||||
msgid "Find"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_gd")) {
|
||||
function string_plural_select_gd($n){
|
||||
$n = intval($n);
|
||||
if (($n==1 || $n==11)) { return 0; } else if (($n==2 || $n==12)) { return 1; } else if (($n > 2 && $n < 20)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -1,47 +0,0 @@
|
|||
# ADDON forumdirectory
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica forumdirectory addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-22 12:31+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Icelandic (http://app.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"
|
||||
|
||||
#: forumdirectory.php:33 forumdirectory.php:137
|
||||
msgid "Forum Directory"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:53
|
||||
msgid "Public access denied."
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:125
|
||||
msgid "No entries (some entries may be hidden)."
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:131
|
||||
msgid "Global Directory"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:133
|
||||
msgid "Find on this site"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:135
|
||||
msgid "Results for:"
|
||||
msgstr ""
|
||||
|
||||
#: forumdirectory.php:139
|
||||
msgid "Find"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,16 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_is")) {
|
||||
function string_plural_select_is($n){
|
||||
$n = intval($n);
|
||||
return intval($n % 10 != 1 || $n % 100 == 11);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Public access denied."] = "Alemennings aðgangur ekki veittur.";
|
||||
$a->strings["Global Directory"] = "Heims tengiliða skrá";
|
||||
$a->strings["Find on this site"] = "Leita á þessum vef";
|
||||
$a->strings["Finding: "] = "Niðurstöður:";
|
||||
$a->strings["Site Directory"] = "Vef tengiliða skrá";
|
||||
$a->strings["Find"] = "Finna";
|
||||
$a->strings["Age: "] = "Aldur:";
|
||||
$a->strings["Gender: "] = "Kyn:";
|
||||
$a->strings["Location:"] = "Staðsetning:";
|
||||
$a->strings["Gender:"] = "Kyn:";
|
||||
$a->strings["Status:"] = "Staða:";
|
||||
$a->strings["Homepage:"] = "Heimasíða:";
|
||||
$a->strings["About:"] = "Um:";
|
||||
$a->strings["No entries (some entries may be hidden)."] = "Engar færslur (sumar geta verið faldar).";
|
||||
|
|
|
|||
|
|
@ -1,34 +0,0 @@
|
|||
# ADDON fromapp
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica fromapp addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-22 12:33+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: fromapp.php:45
|
||||
msgid ""
|
||||
"The application name you would like to show your posts originating from. "
|
||||
"Separate different app names with a comma. A random one will then be "
|
||||
"selected for every posting."
|
||||
msgstr ""
|
||||
|
||||
#: fromapp.php:46
|
||||
msgid "Use this application name even if another application was used."
|
||||
msgstr ""
|
||||
|
||||
#: fromapp.php:51
|
||||
msgid "FromApp Settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
# ADDON fromapp
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica fromapp addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-22 12:33+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: fromapp.php:45
|
||||
msgid ""
|
||||
"The application name you would like to show your posts originating from. "
|
||||
"Separate different app names with a comma. A random one will then be "
|
||||
"selected for every posting."
|
||||
msgstr ""
|
||||
|
||||
#: fromapp.php:46
|
||||
msgid "Use this application name even if another application was used."
|
||||
msgstr ""
|
||||
|
||||
#: fromapp.php:51
|
||||
msgid "FromApp Settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_eo")) {
|
||||
function string_plural_select_eo($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Fromapp settings updated."] = "";
|
||||
$a->strings["FromApp Settings"] = "";
|
||||
$a->strings["The application name you would like to show your posts originating from."] = "";
|
||||
$a->strings["Use this application name even if another application was used."] = "";
|
||||
$a->strings["Submit"] = "Sendi";
|
||||
|
|
|
|||
|
|
@ -1,34 +0,0 @@
|
|||
# ADDON fromapp
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica fromapp addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-22 12:33+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Estonian (http://app.transifex.com/Friendica/friendica/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: fromapp.php:45
|
||||
msgid ""
|
||||
"The application name you would like to show your posts originating from. "
|
||||
"Separate different app names with a comma. A random one will then be "
|
||||
"selected for every posting."
|
||||
msgstr ""
|
||||
|
||||
#: fromapp.php:46
|
||||
msgid "Use this application name even if another application was used."
|
||||
msgstr ""
|
||||
|
||||
#: fromapp.php:51
|
||||
msgid "FromApp Settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
# ADDON fromapp
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica fromapp addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-22 12:33+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Gaelic, Scottish (http://app.transifex.com/Friendica/friendica/language/gd/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gd\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
|
||||
|
||||
#: fromapp.php:45
|
||||
msgid ""
|
||||
"The application name you would like to show your posts originating from. "
|
||||
"Separate different app names with a comma. A random one will then be "
|
||||
"selected for every posting."
|
||||
msgstr ""
|
||||
|
||||
#: fromapp.php:46
|
||||
msgid "Use this application name even if another application was used."
|
||||
msgstr ""
|
||||
|
||||
#: fromapp.php:51
|
||||
msgid "FromApp Settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_gd")) {
|
||||
function string_plural_select_gd($n){
|
||||
$n = intval($n);
|
||||
if (($n==1 || $n==11)) { return 0; } else if (($n==2 || $n==12)) { return 1; } else if (($n > 2 && $n < 20)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
# ADDON fromapp
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica fromapp addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-22 12:33+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Icelandic (http://app.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"
|
||||
|
||||
#: fromapp.php:45
|
||||
msgid ""
|
||||
"The application name you would like to show your posts originating from. "
|
||||
"Separate different app names with a comma. A random one will then be "
|
||||
"selected for every posting."
|
||||
msgstr ""
|
||||
|
||||
#: fromapp.php:46
|
||||
msgid "Use this application name even if another application was used."
|
||||
msgstr ""
|
||||
|
||||
#: fromapp.php:51
|
||||
msgid "FromApp Settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_is")) {
|
||||
function string_plural_select_is($n){
|
||||
$n = intval($n);
|
||||
return intval($n % 10 != 1 || $n % 100 == 11);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Fromapp settings updated."] = "";
|
||||
$a->strings["FromApp Settings"] = "";
|
||||
$a->strings["The application name you would like to show your posts originating from."] = "";
|
||||
$a->strings["Use this application name even if another application was used."] = "";
|
||||
$a->strings["Submit"] = "Senda inn";
|
||||
|
|
|
|||
|
|
@ -1,33 +0,0 @@
|
|||
# ADDON geonames
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica geonames addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:27+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: geonames.php:135
|
||||
msgid ""
|
||||
"Replace numerical coordinates by the nearest populated location name in your"
|
||||
" posts."
|
||||
msgstr ""
|
||||
|
||||
#: geonames.php:136
|
||||
msgid "Enable Geonames Addon"
|
||||
msgstr ""
|
||||
|
||||
#: geonames.php:141
|
||||
msgid "Geonames Settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
# ADDON geonames
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica geonames addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Rafael Garau, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:27+0000\n"
|
||||
"Last-Translator: Rafael Garau, 2018\n"
|
||||
"Language-Team: Catalan (http://app.transifex.com/Friendica/friendica/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: geonames.php:135
|
||||
msgid ""
|
||||
"Replace numerical coordinates by the nearest populated location name in your"
|
||||
" posts."
|
||||
msgstr ""
|
||||
|
||||
#: geonames.php:136
|
||||
msgid "Enable Geonames Addon"
|
||||
msgstr "Activa els Ajustos de Geonoms"
|
||||
|
||||
#: geonames.php:141
|
||||
msgid "Geonames Settings"
|
||||
msgstr "Ajustos de Geonoms"
|
||||
|
|
@ -1,9 +1,6 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_ca")) {
|
||||
function string_plural_select_ca($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
$a->strings['Enable Geonames Addon'] = 'Activa els Ajustos de Geonoms';
|
||||
$a->strings['Geonames Settings'] = 'Ajustos de Geonoms';
|
||||
<?php
|
||||
|
||||
$a->strings["Geonames settings updated."] = "Actualitzada la configuració de Geonames.";
|
||||
$a->strings["Geonames Settings"] = "Configuració de Geonames";
|
||||
$a->strings["Enable Geonames Addon"] = "Habilitar Addon de Geonames";
|
||||
$a->strings["Submit"] = "Enviar";
|
||||
|
|
|
|||
|
|
@ -1,33 +0,0 @@
|
|||
# ADDON geonames
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica geonames addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:27+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: geonames.php:135
|
||||
msgid ""
|
||||
"Replace numerical coordinates by the nearest populated location name in your"
|
||||
" posts."
|
||||
msgstr ""
|
||||
|
||||
#: geonames.php:136
|
||||
msgid "Enable Geonames Addon"
|
||||
msgstr ""
|
||||
|
||||
#: geonames.php:141
|
||||
msgid "Geonames Settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,6 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_eo")) {
|
||||
function string_plural_select_eo($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Geonames settings updated."] = "Ĝidatigis la Geonames agordojn.";
|
||||
$a->strings["Geonames Settings"] = "Geonames Agordoj";
|
||||
$a->strings["Enable Geonames Addon"] = "Ŝalti la Geonames Kromprogramon";
|
||||
$a->strings["Submit"] = "Sendi";
|
||||
|
|
|
|||
|
|
@ -1,33 +0,0 @@
|
|||
# ADDON geonames
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica geonames addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:27+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Estonian (http://app.transifex.com/Friendica/friendica/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: geonames.php:135
|
||||
msgid ""
|
||||
"Replace numerical coordinates by the nearest populated location name in your"
|
||||
" posts."
|
||||
msgstr ""
|
||||
|
||||
#: geonames.php:136
|
||||
msgid "Enable Geonames Addon"
|
||||
msgstr ""
|
||||
|
||||
#: geonames.php:141
|
||||
msgid "Geonames Settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
# ADDON geonames
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica geonames addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:27+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Gaelic, Scottish (http://app.transifex.com/Friendica/friendica/language/gd/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gd\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
|
||||
|
||||
#: geonames.php:135
|
||||
msgid ""
|
||||
"Replace numerical coordinates by the nearest populated location name in your"
|
||||
" posts."
|
||||
msgstr ""
|
||||
|
||||
#: geonames.php:136
|
||||
msgid "Enable Geonames Addon"
|
||||
msgstr ""
|
||||
|
||||
#: geonames.php:141
|
||||
msgid "Geonames Settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_gd")) {
|
||||
function string_plural_select_gd($n){
|
||||
$n = intval($n);
|
||||
if (($n==1 || $n==11)) { return 0; } else if (($n==2 || $n==12)) { return 1; } else if (($n > 2 && $n < 20)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
# ADDON gnot
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica gnot addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:30+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: gnot.php:63
|
||||
msgid ""
|
||||
"Allows threading of email comment notifications on Gmail and anonymising the"
|
||||
" subject line."
|
||||
msgstr ""
|
||||
|
||||
#: gnot.php:64
|
||||
msgid "Enable this addon?"
|
||||
msgstr ""
|
||||
|
||||
#: gnot.php:69
|
||||
msgid "Gnot Settings"
|
||||
msgstr ""
|
||||
|
||||
#: gnot.php:79
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] Comment to conversation #%d"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
# ADDON gnot
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica gnot addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:30+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: gnot.php:63
|
||||
msgid ""
|
||||
"Allows threading of email comment notifications on Gmail and anonymising the"
|
||||
" subject line."
|
||||
msgstr ""
|
||||
|
||||
#: gnot.php:64
|
||||
msgid "Enable this addon?"
|
||||
msgstr ""
|
||||
|
||||
#: gnot.php:69
|
||||
msgid "Gnot Settings"
|
||||
msgstr ""
|
||||
|
||||
#: gnot.php:79
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] Comment to conversation #%d"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,8 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_eo")) {
|
||||
function string_plural_select_eo($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Gnot settings updated."] = "Ĝisdatigis Gnot agordojn.";
|
||||
$a->strings["Gnot Settings"] = "Agordoj por Gnot";
|
||||
$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Permesas la ĉenadon de retpoŝtaj atentigoj pri komentoj ĉe Gmail kan anonimigado de la temlinio.";
|
||||
$a->strings["Enable this addon?"] = "Ŝalti tiun kromprogramon?";
|
||||
$a->strings["Submit"] = "Sendi";
|
||||
$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "[Friendica:Atentigo] Komento pri konversacio #%d";
|
||||
|
|
|
|||
|
|
@ -1,39 +0,0 @@
|
|||
# ADDON gnot
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica gnot addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Rain Hawk, 2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:30+0000\n"
|
||||
"Last-Translator: Rain Hawk, 2020\n"
|
||||
"Language-Team: Estonian (http://app.transifex.com/Friendica/friendica/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: gnot.php:63
|
||||
msgid ""
|
||||
"Allows threading of email comment notifications on Gmail and anonymising the"
|
||||
" subject line."
|
||||
msgstr ""
|
||||
|
||||
#: gnot.php:64
|
||||
msgid "Enable this addon?"
|
||||
msgstr ""
|
||||
|
||||
#: gnot.php:69
|
||||
msgid "Gnot Settings"
|
||||
msgstr ""
|
||||
|
||||
#: gnot.php:79
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] Comment to conversation #%d"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
# ADDON gnot
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica gnot addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:30+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Gaelic, Scottish (http://app.transifex.com/Friendica/friendica/language/gd/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gd\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
|
||||
|
||||
#: gnot.php:63
|
||||
msgid ""
|
||||
"Allows threading of email comment notifications on Gmail and anonymising the"
|
||||
" subject line."
|
||||
msgstr ""
|
||||
|
||||
#: gnot.php:64
|
||||
msgid "Enable this addon?"
|
||||
msgstr ""
|
||||
|
||||
#: gnot.php:69
|
||||
msgid "Gnot Settings"
|
||||
msgstr ""
|
||||
|
||||
#: gnot.php:79
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] Comment to conversation #%d"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_gd")) {
|
||||
function string_plural_select_gd($n){
|
||||
$n = intval($n);
|
||||
if (($n==1 || $n==11)) { return 0; } else if (($n==2 || $n==12)) { return 1; } else if (($n > 2 && $n < 20)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
# ADDON gnot
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica gnot addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:30+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Icelandic (http://app.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"
|
||||
|
||||
#: gnot.php:63
|
||||
msgid ""
|
||||
"Allows threading of email comment notifications on Gmail and anonymising the"
|
||||
" subject line."
|
||||
msgstr ""
|
||||
|
||||
#: gnot.php:64
|
||||
msgid "Enable this addon?"
|
||||
msgstr ""
|
||||
|
||||
#: gnot.php:69
|
||||
msgid "Gnot Settings"
|
||||
msgstr ""
|
||||
|
||||
#: gnot.php:79
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] Comment to conversation #%d"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,8 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_is")) {
|
||||
function string_plural_select_is($n){
|
||||
$n = intval($n);
|
||||
return intval($n % 10 != 1 || $n % 100 == 11);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Gnot settings updated."] = "";
|
||||
$a->strings["Gnot Settings"] = "";
|
||||
$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "";
|
||||
$a->strings["Enable this addon?"] = "";
|
||||
$a->strings["Submit"] = "Senda inn";
|
||||
$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "";
|
||||
|
|
|
|||
|
|
@ -1,70 +0,0 @@
|
|||
# ADDON gravatar
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica gravatar addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:33+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: gravatar.php:78
|
||||
msgid "generic profile image"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:79
|
||||
msgid "random geometric pattern"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:80
|
||||
msgid "monster face"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:81
|
||||
msgid "computer generated face"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:82
|
||||
msgid "retro arcade style face"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:96
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:96
|
||||
msgid ""
|
||||
"Libravatar addon is installed, too. Please disable Libravatar addon or this "
|
||||
"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
|
||||
"nothing was found at Libravatar."
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:102
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:103
|
||||
msgid "Default avatar image"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:103
|
||||
msgid "Select default avatar image if none was found at Gravatar. See README"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:104
|
||||
msgid "Rating of images"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:104
|
||||
msgid "Select the appropriate avatar rating for your site. See README"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,70 +0,0 @@
|
|||
# ADDON gravatar
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica gravatar addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:33+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: gravatar.php:78
|
||||
msgid "generic profile image"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:79
|
||||
msgid "random geometric pattern"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:80
|
||||
msgid "monster face"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:81
|
||||
msgid "computer generated face"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:82
|
||||
msgid "retro arcade style face"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:96
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:96
|
||||
msgid ""
|
||||
"Libravatar addon is installed, too. Please disable Libravatar addon or this "
|
||||
"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
|
||||
"nothing was found at Libravatar."
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:102
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:103
|
||||
msgid "Default avatar image"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:103
|
||||
msgid "Select default avatar image if none was found at Gravatar. See README"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:104
|
||||
msgid "Rating of images"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:104
|
||||
msgid "Select the appropriate avatar rating for your site. See README"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,15 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_eo")) {
|
||||
function string_plural_select_eo($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["generic profile image"] = "komuna profilbildo";
|
||||
$a->strings["random geometric pattern"] = "loteca geometria skemo";
|
||||
$a->strings["monster face"] = "monstrobildo";
|
||||
$a->strings["computer generated face"] = "komputita vizaĝo";
|
||||
$a->strings["retro arcade style face"] = "retrostila videoludstila vizaĝo";
|
||||
$a->strings["Information"] = "Informo";
|
||||
$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "La Libravatar kromprogramo estas ankaŭ instaltga. Bonvolu malŝalti la Libravatar kromprogramon.<br>La Libravatar kromprogramo retropaŝos al Gravatar se neniu troveblis ĉe Libravatar.";
|
||||
$a->strings["Submit"] = "Sendi";
|
||||
$a->strings["Default avatar image"] = "Defaŭlta avatarbildo";
|
||||
$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "Elektu defaŭltan avatarbildon se neniu troviĝis ĉe Gravatar. Vidu README.";
|
||||
$a->strings["Rating of images"] = "Pritakso de bildoj";
|
||||
$a->strings["Select the appropriate avatar rating for your site. See README"] = "Elektu la ĝustan pritakson de via avataro por via retejo. Vidu README.";
|
||||
$a->strings["Gravatar settings updated."] = "Gravatar agordoj ĝisdatigitaj.";
|
||||
|
|
|
|||
|
|
@ -1,71 +0,0 @@
|
|||
# ADDON gravatar
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica gravatar addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Rain Hawk, 2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:33+0000\n"
|
||||
"Last-Translator: Rain Hawk, 2020\n"
|
||||
"Language-Team: Estonian (http://app.transifex.com/Friendica/friendica/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: gravatar.php:78
|
||||
msgid "generic profile image"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:79
|
||||
msgid "random geometric pattern"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:80
|
||||
msgid "monster face"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:81
|
||||
msgid "computer generated face"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:82
|
||||
msgid "retro arcade style face"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:96
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:96
|
||||
msgid ""
|
||||
"Libravatar addon is installed, too. Please disable Libravatar addon or this "
|
||||
"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
|
||||
"nothing was found at Libravatar."
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:102
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:103
|
||||
msgid "Default avatar image"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:103
|
||||
msgid "Select default avatar image if none was found at Gravatar. See README"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:104
|
||||
msgid "Rating of images"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:104
|
||||
msgid "Select the appropriate avatar rating for your site. See README"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,70 +0,0 @@
|
|||
# ADDON gravatar
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica gravatar addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:33+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Gaelic, Scottish (http://app.transifex.com/Friendica/friendica/language/gd/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gd\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
|
||||
|
||||
#: gravatar.php:78
|
||||
msgid "generic profile image"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:79
|
||||
msgid "random geometric pattern"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:80
|
||||
msgid "monster face"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:81
|
||||
msgid "computer generated face"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:82
|
||||
msgid "retro arcade style face"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:96
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:96
|
||||
msgid ""
|
||||
"Libravatar addon is installed, too. Please disable Libravatar addon or this "
|
||||
"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
|
||||
"nothing was found at Libravatar."
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:102
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:103
|
||||
msgid "Default avatar image"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:103
|
||||
msgid "Select default avatar image if none was found at Gravatar. See README"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:104
|
||||
msgid "Rating of images"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:104
|
||||
msgid "Select the appropriate avatar rating for your site. See README"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_gd")) {
|
||||
function string_plural_select_gd($n){
|
||||
$n = intval($n);
|
||||
if (($n==1 || $n==11)) { return 0; } else if (($n==2 || $n==12)) { return 1; } else if (($n > 2 && $n < 20)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -1,70 +0,0 @@
|
|||
# ADDON gravatar
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica gravatar addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:33+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Icelandic (http://app.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"
|
||||
|
||||
#: gravatar.php:78
|
||||
msgid "generic profile image"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:79
|
||||
msgid "random geometric pattern"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:80
|
||||
msgid "monster face"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:81
|
||||
msgid "computer generated face"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:82
|
||||
msgid "retro arcade style face"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:96
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:96
|
||||
msgid ""
|
||||
"Libravatar addon is installed, too. Please disable Libravatar addon or this "
|
||||
"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
|
||||
"nothing was found at Libravatar."
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:102
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:103
|
||||
msgid "Default avatar image"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:103
|
||||
msgid "Select default avatar image if none was found at Gravatar. See README"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:104
|
||||
msgid "Rating of images"
|
||||
msgstr ""
|
||||
|
||||
#: gravatar.php:104
|
||||
msgid "Select the appropriate avatar rating for your site. See README"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,15 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_is")) {
|
||||
function string_plural_select_is($n){
|
||||
$n = intval($n);
|
||||
return intval($n % 10 != 1 || $n % 100 == 11);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["generic profile image"] = "";
|
||||
$a->strings["random geometric pattern"] = "";
|
||||
$a->strings["monster face"] = "";
|
||||
$a->strings["computer generated face"] = "";
|
||||
$a->strings["retro arcade style face"] = "";
|
||||
$a->strings["Information"] = "";
|
||||
$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
|
||||
$a->strings["Submit"] = "Senda inn";
|
||||
$a->strings["Default avatar image"] = "";
|
||||
$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "";
|
||||
$a->strings["Rating of images"] = "";
|
||||
$a->strings["Select the appropriate avatar rating for your site. See README"] = "";
|
||||
$a->strings["Gravatar settings updated."] = "";
|
||||
|
|
|
|||
|
|
@ -1,27 +0,0 @@
|
|||
# ADDON group_text
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica group_text addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:35+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: group_text.php:58
|
||||
msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
|
||||
msgstr ""
|
||||
|
||||
#: group_text.php:63
|
||||
msgid "Group Text"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
# ADDON group_text
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica group_text addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:35+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: group_text.php:58
|
||||
msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
|
||||
msgstr ""
|
||||
|
||||
#: group_text.php:63
|
||||
msgid "Group Text"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,5 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_eo")) {
|
||||
function string_plural_select_eo($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Group Text"] = "";
|
||||
$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "";
|
||||
$a->strings["Submit"] = "Sendi";
|
||||
|
|
|
|||
|
|
@ -1,28 +0,0 @@
|
|||
# ADDON group_text
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica group_text addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Rain Hawk, 2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:35+0000\n"
|
||||
"Last-Translator: Rain Hawk, 2020\n"
|
||||
"Language-Team: Estonian (http://app.transifex.com/Friendica/friendica/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: group_text.php:58
|
||||
msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
|
||||
msgstr ""
|
||||
|
||||
#: group_text.php:63
|
||||
msgid "Group Text"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
# ADDON group_text
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica group_text addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:35+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Gaelic, Scottish (http://app.transifex.com/Friendica/friendica/language/gd/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gd\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
|
||||
|
||||
#: group_text.php:58
|
||||
msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
|
||||
msgstr ""
|
||||
|
||||
#: group_text.php:63
|
||||
msgid "Group Text"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_gd")) {
|
||||
function string_plural_select_gd($n){
|
||||
$n = intval($n);
|
||||
if (($n==1 || $n==11)) { return 0; } else if (($n==2 || $n==12)) { return 1; } else if (($n > 2 && $n < 20)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
# ADDON group_text
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica group_text addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:35+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Icelandic (http://app.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"
|
||||
|
||||
#: group_text.php:58
|
||||
msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
|
||||
msgstr ""
|
||||
|
||||
#: group_text.php:63
|
||||
msgid "Group Text"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,5 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_is")) {
|
||||
function string_plural_select_is($n){
|
||||
$n = intval($n);
|
||||
return intval($n % 10 != 1 || $n % 100 == 11);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Group Text"] = "";
|
||||
$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "";
|
||||
$a->strings["Submit"] = "Senda inn";
|
||||
|
|
|
|||
|
|
@ -1,58 +0,0 @@
|
|||
# ADDON ifttt
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica ifttt addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2017-11-27 10:37+0000\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/Friendica/teams/12172/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ifttt.php:52
|
||||
msgid ""
|
||||
"Create an account at <a href=\"http://www.ifttt.com\">IFTTT</a>. Create "
|
||||
"three Facebook recipes that are connected with <a "
|
||||
"href=\"https://ifttt.com/maker\">Maker</a> (In the form \"if Facebook then "
|
||||
"Maker\") with the following parameters:"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:53
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:54
|
||||
msgid "Method"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:55
|
||||
msgid "Content Type"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:56
|
||||
msgid "Body for \"new status message\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:57
|
||||
msgid "Body for \"new photo upload\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:58
|
||||
msgid "Body for \"new link post\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:68
|
||||
msgid "IFTTT Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:71
|
||||
msgid "Generate new key"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,66 +0,0 @@
|
|||
# ADDON ifttt
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica ifttt addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Rafael Garau, 2018
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2017-11-27 10:37+0000\n"
|
||||
"Last-Translator: Rafael Garau, 2018\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/Friendica/teams/12172/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ifttt.php:52
|
||||
msgid ""
|
||||
"Create an account at <a href=\"http://www.ifttt.com\">IFTTT</a>. Create "
|
||||
"three Facebook recipes that are connected with <a "
|
||||
"href=\"https://ifttt.com/maker\">Maker</a> (In the form \"if Facebook then "
|
||||
"Maker\") with the following parameters:"
|
||||
msgstr ""
|
||||
"Crear un compte en <a href=\"http://www.ifttt.com\">IFTTT</a>. Crear tres "
|
||||
"fórmules per Facebook que estiguin connectades amb <a "
|
||||
"href=\"https://ifttt.com/maker\">Maker</a> (de la següent forma \"si "
|
||||
"Facebook llavors Maker\") amb els següents paràmetres:"
|
||||
|
||||
#: ifttt.php:53
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:54
|
||||
msgid "Method"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:55
|
||||
msgid "Content Type"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:56
|
||||
msgid "Body for \"new status message\""
|
||||
msgstr "Cos pel \"nou missatge de estatus\""
|
||||
|
||||
#: ifttt.php:57
|
||||
msgid "Body for \"new photo upload\""
|
||||
msgstr "Cos per la \"nova foto pujada\""
|
||||
|
||||
#: ifttt.php:58
|
||||
msgid "Body for \"new link post\""
|
||||
msgstr "Cos pel \"nou enllaç de l'enviament\""
|
||||
|
||||
#: ifttt.php:68
|
||||
msgid "IFTTT Mirror"
|
||||
msgstr "Espill IFTTT"
|
||||
|
||||
#: ifttt.php:71
|
||||
msgid "Generate new key"
|
||||
msgstr "Generar nova clau"
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_ca")) {
|
||||
function string_plural_select_ca($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
$a->strings['Create an account at <a href="http://www.ifttt.com">IFTTT</a>. Create three Facebook recipes that are connected with <a href="https://ifttt.com/maker">Maker</a> (In the form "if Facebook then Maker") with the following parameters:'] = 'Crear un compte en <a href="http://www.ifttt.com">IFTTT</a>. Crear tres fórmules per Facebook que estiguin connectades amb <a href="https://ifttt.com/maker">Maker</a> (de la següent forma "si Facebook llavors Maker") amb els següents paràmetres:';
|
||||
$a->strings['Body for "new status message"'] = 'Cos pel "nou missatge de estatus"';
|
||||
$a->strings['Body for "new photo upload"'] = 'Cos per la "nova foto pujada"';
|
||||
$a->strings['Body for "new link post"'] = 'Cos pel "nou enllaç de l\'enviament"';
|
||||
$a->strings['IFTTT Mirror'] = 'Espill IFTTT';
|
||||
$a->strings['Generate new key'] = 'Generar nova clau';
|
||||
|
|
@ -1,58 +0,0 @@
|
|||
# ADDON ifttt
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica ifttt addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2017-11-27 10:37+0000\n"
|
||||
"Language-Team: Esperanto (https://app.transifex.com/Friendica/teams/12172/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ifttt.php:52
|
||||
msgid ""
|
||||
"Create an account at <a href=\"http://www.ifttt.com\">IFTTT</a>. Create "
|
||||
"three Facebook recipes that are connected with <a "
|
||||
"href=\"https://ifttt.com/maker\">Maker</a> (In the form \"if Facebook then "
|
||||
"Maker\") with the following parameters:"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:53
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:54
|
||||
msgid "Method"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:55
|
||||
msgid "Content Type"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:56
|
||||
msgid "Body for \"new status message\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:57
|
||||
msgid "Body for \"new photo upload\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:58
|
||||
msgid "Body for \"new link post\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:68
|
||||
msgid "IFTTT Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:71
|
||||
msgid "Generate new key"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_eo")) {
|
||||
function string_plural_select_eo($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,58 +0,0 @@
|
|||
# ADDON ifttt
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica ifttt addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2017-11-27 10:37+0000\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/Friendica/teams/12172/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ifttt.php:52
|
||||
msgid ""
|
||||
"Create an account at <a href=\"http://www.ifttt.com\">IFTTT</a>. Create "
|
||||
"three Facebook recipes that are connected with <a "
|
||||
"href=\"https://ifttt.com/maker\">Maker</a> (In the form \"if Facebook then "
|
||||
"Maker\") with the following parameters:"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:53
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:54
|
||||
msgid "Method"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:55
|
||||
msgid "Content Type"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:56
|
||||
msgid "Body for \"new status message\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:57
|
||||
msgid "Body for \"new photo upload\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:58
|
||||
msgid "Body for \"new link post\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:68
|
||||
msgid "IFTTT Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:71
|
||||
msgid "Generate new key"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,58 +0,0 @@
|
|||
# ADDON ifttt
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica ifttt addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2017-11-27 10:37+0000\n"
|
||||
"Language-Team: Gaelic, Scottish (https://app.transifex.com/Friendica/teams/12172/gd/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gd\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
|
||||
|
||||
#: ifttt.php:52
|
||||
msgid ""
|
||||
"Create an account at <a href=\"http://www.ifttt.com\">IFTTT</a>. Create "
|
||||
"three Facebook recipes that are connected with <a "
|
||||
"href=\"https://ifttt.com/maker\">Maker</a> (In the form \"if Facebook then "
|
||||
"Maker\") with the following parameters:"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:53
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:54
|
||||
msgid "Method"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:55
|
||||
msgid "Content Type"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:56
|
||||
msgid "Body for \"new status message\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:57
|
||||
msgid "Body for \"new photo upload\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:58
|
||||
msgid "Body for \"new link post\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:68
|
||||
msgid "IFTTT Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:71
|
||||
msgid "Generate new key"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_gd")) {
|
||||
function string_plural_select_gd($n){
|
||||
$n = intval($n);
|
||||
if (($n==1 || $n==11)) { return 0; } else if (($n==2 || $n==12)) { return 1; } else if (($n > 2 && $n < 20)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -1,58 +0,0 @@
|
|||
# ADDON ifttt
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica ifttt addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2017-11-27 10:37+0000\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/Friendica/teams/12172/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"
|
||||
|
||||
#: ifttt.php:52
|
||||
msgid ""
|
||||
"Create an account at <a href=\"http://www.ifttt.com\">IFTTT</a>. Create "
|
||||
"three Facebook recipes that are connected with <a "
|
||||
"href=\"https://ifttt.com/maker\">Maker</a> (In the form \"if Facebook then "
|
||||
"Maker\") with the following parameters:"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:53
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:54
|
||||
msgid "Method"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:55
|
||||
msgid "Content Type"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:56
|
||||
msgid "Body for \"new status message\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:57
|
||||
msgid "Body for \"new photo upload\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:58
|
||||
msgid "Body for \"new link post\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:68
|
||||
msgid "IFTTT Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:71
|
||||
msgid "Generate new key"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_is")) {
|
||||
function string_plural_select_is($n){
|
||||
$n = intval($n);
|
||||
return intval($n % 10 != 1 || $n % 100 == 11);
|
||||
}}
|
||||
|
|
@ -1,67 +0,0 @@
|
|||
# ADDON ifttt
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica ifttt addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# fabrixxm <fabrix.xm@gmail.com>, 2018
|
||||
# Sylke Vicious <silkevicious@gmail.com>, 2023
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2017-11-27 10:37+0000\n"
|
||||
"Last-Translator: Sylke Vicious <silkevicious@gmail.com>, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/Friendica/teams/12172/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#: ifttt.php:52
|
||||
msgid ""
|
||||
"Create an account at <a href=\"http://www.ifttt.com\">IFTTT</a>. Create "
|
||||
"three Facebook recipes that are connected with <a "
|
||||
"href=\"https://ifttt.com/maker\">Maker</a> (In the form \"if Facebook then "
|
||||
"Maker\") with the following parameters:"
|
||||
msgstr ""
|
||||
"Crea un accout su <a href=\"http://www.ifttt.com\">IFTTT</a>. Crea tre "
|
||||
"ricette Facebook collegate con <a "
|
||||
"href=\"https://ifttt.com/maker\">Maker</a> (del tipo \"if Facebook then "
|
||||
"Maker\") con i seguenti parametri:"
|
||||
|
||||
#: ifttt.php:53
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
#: ifttt.php:54
|
||||
msgid "Method"
|
||||
msgstr "Metodo"
|
||||
|
||||
#: ifttt.php:55
|
||||
msgid "Content Type"
|
||||
msgstr "Tipo di Contenuto"
|
||||
|
||||
#: ifttt.php:56
|
||||
msgid "Body for \"new status message\""
|
||||
msgstr "Contenuto per \"nuovo messaggio di stato\""
|
||||
|
||||
#: ifttt.php:57
|
||||
msgid "Body for \"new photo upload\""
|
||||
msgstr "Contenuto per \"nuova foto caricata\""
|
||||
|
||||
#: ifttt.php:58
|
||||
msgid "Body for \"new link post\""
|
||||
msgstr "Contenuto per \"nuovo collegamento\""
|
||||
|
||||
#: ifttt.php:68
|
||||
msgid "IFTTT Mirror"
|
||||
msgstr "Mirror IFTTT"
|
||||
|
||||
#: ifttt.php:71
|
||||
msgid "Generate new key"
|
||||
msgstr "Genera una nuova chiave"
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_it")) {
|
||||
function string_plural_select_it($n){
|
||||
$n = intval($n);
|
||||
if ($n == 1) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else { return 2; }
|
||||
}}
|
||||
$a->strings['Create an account at <a href="http://www.ifttt.com">IFTTT</a>. Create three Facebook recipes that are connected with <a href="https://ifttt.com/maker">Maker</a> (In the form "if Facebook then Maker") with the following parameters:'] = 'Crea un accout su <a href="http://www.ifttt.com">IFTTT</a>. Crea tre ricette Facebook collegate con <a href="https://ifttt.com/maker">Maker</a> (del tipo "if Facebook then Maker") con i seguenti parametri:';
|
||||
$a->strings['URL'] = 'URL';
|
||||
$a->strings['Method'] = 'Metodo';
|
||||
$a->strings['Content Type'] = 'Tipo di Contenuto';
|
||||
$a->strings['Body for "new status message"'] = 'Contenuto per "nuovo messaggio di stato"';
|
||||
$a->strings['Body for "new photo upload"'] = 'Contenuto per "nuova foto caricata"';
|
||||
$a->strings['Body for "new link post"'] = 'Contenuto per "nuovo collegamento"';
|
||||
$a->strings['IFTTT Mirror'] = 'Mirror IFTTT';
|
||||
$a->strings['Generate new key'] = 'Genera una nuova chiave';
|
||||
|
|
@ -1,62 +0,0 @@
|
|||
# ADDON ifttt
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica ifttt addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Jeroen De Meerleer <me@jeroened.be>, 2018
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2017-11-27 10:37+0000\n"
|
||||
"Last-Translator: Jeroen De Meerleer <me@jeroened.be>, 2018\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/Friendica/teams/12172/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ifttt.php:52
|
||||
msgid ""
|
||||
"Create an account at <a href=\"http://www.ifttt.com\">IFTTT</a>. Create "
|
||||
"three Facebook recipes that are connected with <a "
|
||||
"href=\"https://ifttt.com/maker\">Maker</a> (In the form \"if Facebook then "
|
||||
"Maker\") with the following parameters:"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:53
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:54
|
||||
msgid "Method"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:55
|
||||
msgid "Content Type"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:56
|
||||
msgid "Body for \"new status message\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:57
|
||||
msgid "Body for \"new photo upload\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:58
|
||||
msgid "Body for \"new link post\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:68
|
||||
msgid "IFTTT Mirror"
|
||||
msgstr "IFTTT Mirror"
|
||||
|
||||
#: ifttt.php:71
|
||||
msgid "Generate new key"
|
||||
msgstr ""
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_nl")) {
|
||||
function string_plural_select_nl($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
$a->strings['IFTTT Mirror'] = 'IFTTT Mirror';
|
||||
|
|
@ -1,58 +0,0 @@
|
|||
# ADDON ifttt
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica ifttt addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2017-11-27 10:37+0000\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/Friendica/teams/12172/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#: ifttt.php:52
|
||||
msgid ""
|
||||
"Create an account at <a href=\"http://www.ifttt.com\">IFTTT</a>. Create "
|
||||
"three Facebook recipes that are connected with <a "
|
||||
"href=\"https://ifttt.com/maker\">Maker</a> (In the form \"if Facebook then "
|
||||
"Maker\") with the following parameters:"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:53
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:54
|
||||
msgid "Method"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:55
|
||||
msgid "Content Type"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:56
|
||||
msgid "Body for \"new status message\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:57
|
||||
msgid "Body for \"new photo upload\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:58
|
||||
msgid "Body for \"new link post\""
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:68
|
||||
msgid "IFTTT Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: ifttt.php:71
|
||||
msgid "Generate new key"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_ru")) {
|
||||
function string_plural_select_ru($n){
|
||||
$n = intval($n);
|
||||
if ($n%10==1 && $n%100!=11) { return 0; } else if ($n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14)) { return 1; } else if ($n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -122,10 +122,6 @@ function ijpost_send(array &$b)
|
|||
return;
|
||||
}
|
||||
|
||||
if (Item::isGroupPost($b['uri-id'])) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($b['parent'] != $b['id']) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,43 +0,0 @@
|
|||
# ADDON ijpost
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica ijpost addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:37+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ijpost.php:42
|
||||
msgid "Post to Insanejournal"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:61
|
||||
msgid "Enable InsaneJournal Post Addon"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:62
|
||||
msgid "InsaneJournal username"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:63
|
||||
msgid "InsaneJournal password"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:64
|
||||
msgid "Post to InsaneJournal by default"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:69
|
||||
msgid "InsaneJournal Export"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
# ADDON ijpost
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica ijpost addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:37+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ijpost.php:42
|
||||
msgid "Post to Insanejournal"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:61
|
||||
msgid "Enable InsaneJournal Post Addon"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:62
|
||||
msgid "InsaneJournal username"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:63
|
||||
msgid "InsaneJournal password"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:64
|
||||
msgid "Post to InsaneJournal by default"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:69
|
||||
msgid "InsaneJournal Export"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,9 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_eo")) {
|
||||
function string_plural_select_eo($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Post to Insanejournal"] = "Afiŝi al Insanejournal";
|
||||
$a->strings["InsaneJournal Post Settings"] = "Agordoj pri Insaenejournal Afiŝoj";
|
||||
$a->strings["Enable InsaneJournal Post Addon"] = "Ŝalti la InsaneJournal afiŝo kromprogramon.";
|
||||
$a->strings["InsaneJournal username"] = "Salutnomo ĉe InsaneJournal";
|
||||
$a->strings["InsaneJournal password"] = "Pasvorto ĉe InsaneJournal";
|
||||
$a->strings["Post to InsaneJournal by default"] = "Defaŭlte afiŝi ĉe InsaneJournal";
|
||||
$a->strings["Submit"] = "Sendi";
|
||||
|
|
|
|||
|
|
@ -1,44 +0,0 @@
|
|||
# ADDON ijpost
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica ijpost addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Rain Hawk, 2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:37+0000\n"
|
||||
"Last-Translator: Rain Hawk, 2020\n"
|
||||
"Language-Team: Estonian (http://app.transifex.com/Friendica/friendica/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ijpost.php:42
|
||||
msgid "Post to Insanejournal"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:61
|
||||
msgid "Enable InsaneJournal Post Addon"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:62
|
||||
msgid "InsaneJournal username"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:63
|
||||
msgid "InsaneJournal password"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:64
|
||||
msgid "Post to InsaneJournal by default"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:69
|
||||
msgid "InsaneJournal Export"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
# ADDON ijpost
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica ijpost addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:37+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Gaelic, Scottish (http://app.transifex.com/Friendica/friendica/language/gd/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gd\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
|
||||
|
||||
#: ijpost.php:42
|
||||
msgid "Post to Insanejournal"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:61
|
||||
msgid "Enable InsaneJournal Post Addon"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:62
|
||||
msgid "InsaneJournal username"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:63
|
||||
msgid "InsaneJournal password"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:64
|
||||
msgid "Post to InsaneJournal by default"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:69
|
||||
msgid "InsaneJournal Export"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_gd")) {
|
||||
function string_plural_select_gd($n){
|
||||
$n = intval($n);
|
||||
if (($n==1 || $n==11)) { return 0; } else if (($n==2 || $n==12)) { return 1; } else if (($n > 2 && $n < 20)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
# ADDON ijpost
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica ijpost addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:37+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Icelandic (http://app.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"
|
||||
|
||||
#: ijpost.php:42
|
||||
msgid "Post to Insanejournal"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:61
|
||||
msgid "Enable InsaneJournal Post Addon"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:62
|
||||
msgid "InsaneJournal username"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:63
|
||||
msgid "InsaneJournal password"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:64
|
||||
msgid "Post to InsaneJournal by default"
|
||||
msgstr ""
|
||||
|
||||
#: ijpost.php:69
|
||||
msgid "InsaneJournal Export"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,9 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_is")) {
|
||||
function string_plural_select_is($n){
|
||||
$n = intval($n);
|
||||
return intval($n % 10 != 1 || $n % 100 == 11);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Post to Insanejournal"] = "";
|
||||
$a->strings["InsaneJournal Post Settings"] = "";
|
||||
$a->strings["Enable InsaneJournal Post Addon"] = "";
|
||||
$a->strings["InsaneJournal username"] = "";
|
||||
$a->strings["InsaneJournal password"] = "";
|
||||
$a->strings["Post to InsaneJournal by default"] = "";
|
||||
$a->strings["Submit"] = "Senda inn";
|
||||
|
|
|
|||
|
|
@ -1,84 +0,0 @@
|
|||
# ADDON impressum
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica impressum addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:39+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: impressum.php:53
|
||||
msgid "Impressum"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:66 impressum.php:68 impressum.php:99
|
||||
msgid "Site Owner"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:66 impressum.php:103
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:71 impressum.php:101
|
||||
msgid "Postal Address"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:77
|
||||
msgid ""
|
||||
"The impressum addon needs to be configured!<br />Please add at least the "
|
||||
"<tt>owner</tt> variable to your config file. For other variables please "
|
||||
"refer to the README file of the addon."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:98
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:99
|
||||
msgid "The page operators name."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:100
|
||||
msgid "Site Owners Profile"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:100
|
||||
msgid "Profile address of the operator."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:101
|
||||
msgid "How to contact the operator via snail mail. You can use BBCode here."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:102
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:102
|
||||
msgid ""
|
||||
"Additional notes that are displayed beneath the contact information. You can"
|
||||
" use BBCode here."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:103
|
||||
msgid "How to contact the operator via email. (will be displayed obfuscated)"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:104
|
||||
msgid "Footer note"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:104
|
||||
msgid "Text for the footer. You can use BBCode here."
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,84 +0,0 @@
|
|||
# ADDON impressum
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica impressum addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:39+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: impressum.php:53
|
||||
msgid "Impressum"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:66 impressum.php:68 impressum.php:99
|
||||
msgid "Site Owner"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:66 impressum.php:103
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:71 impressum.php:101
|
||||
msgid "Postal Address"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:77
|
||||
msgid ""
|
||||
"The impressum addon needs to be configured!<br />Please add at least the "
|
||||
"<tt>owner</tt> variable to your config file. For other variables please "
|
||||
"refer to the README file of the addon."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:98
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:99
|
||||
msgid "The page operators name."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:100
|
||||
msgid "Site Owners Profile"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:100
|
||||
msgid "Profile address of the operator."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:101
|
||||
msgid "How to contact the operator via snail mail. You can use BBCode here."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:102
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:102
|
||||
msgid ""
|
||||
"Additional notes that are displayed beneath the contact information. You can"
|
||||
" use BBCode here."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:103
|
||||
msgid "How to contact the operator via email. (will be displayed obfuscated)"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:104
|
||||
msgid "Footer note"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:104
|
||||
msgid "Text for the footer. You can use BBCode here."
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,18 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_eo")) {
|
||||
function string_plural_select_eo($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Impressum"] = "Kolofono";
|
||||
$a->strings["Site Owner"] = "Proprietulo de la paĝo";
|
||||
$a->strings["Email Address"] = "Retpoŝta Adreso";
|
||||
$a->strings["Postal Address"] = "Poŝta Adreso";
|
||||
$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "La kolofono (impressum) kromprogramo bezonas agordojn!<br />Bonvolu aldoni minimume la <tt>owner</tt> variablon al via agorda dosiero. Por aliaj variabloj, bonvolu legi la README dosieron de la kromprogramo.";
|
||||
$a->strings["Settings updated."] = "Agordoj ĝisdatigita.";
|
||||
$a->strings["Submit"] = "Sendi";
|
||||
$a->strings["The page operators name."] = "La nomo de la funkciigisto de la retejo.";
|
||||
$a->strings["Site Owners Profile"] = "Profilo de la Proprietulo de la Retejo";
|
||||
$a->strings["Profile address of the operator."] = "La profilo de la funkciigisto de la retejo.";
|
||||
$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "Kiel poŝte kontakti la funkciigisto de la retejo. Vi eblas uzi BBCode ĉi tie.";
|
||||
$a->strings["Notes"] = "Notoj";
|
||||
$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "Pli da notoj kiuj aperas sub la kontaktinformoj. Vi eblas uzi BBCode ĉi tie.";
|
||||
$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Kiel kontakti la funkciigiston de la retejo per retpoŝto. (montriĝos vuale) ";
|
||||
$a->strings["Footer note"] = "Paĝpiednoto";
|
||||
$a->strings["Text for the footer. You can use BBCode here."] = "Teksto por la paĝpiedo. Vie eblas uzi BBCode ĉi tie.";
|
||||
|
|
|
|||
|
|
@ -1,85 +0,0 @@
|
|||
# ADDON impressum
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica impressum addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Rain Hawk, 2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:39+0000\n"
|
||||
"Last-Translator: Rain Hawk, 2020\n"
|
||||
"Language-Team: Estonian (http://app.transifex.com/Friendica/friendica/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: impressum.php:53
|
||||
msgid "Impressum"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:66 impressum.php:68 impressum.php:99
|
||||
msgid "Site Owner"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:66 impressum.php:103
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:71 impressum.php:101
|
||||
msgid "Postal Address"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:77
|
||||
msgid ""
|
||||
"The impressum addon needs to be configured!<br />Please add at least the "
|
||||
"<tt>owner</tt> variable to your config file. For other variables please "
|
||||
"refer to the README file of the addon."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:98
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:99
|
||||
msgid "The page operators name."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:100
|
||||
msgid "Site Owners Profile"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:100
|
||||
msgid "Profile address of the operator."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:101
|
||||
msgid "How to contact the operator via snail mail. You can use BBCode here."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:102
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:102
|
||||
msgid ""
|
||||
"Additional notes that are displayed beneath the contact information. You can"
|
||||
" use BBCode here."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:103
|
||||
msgid "How to contact the operator via email. (will be displayed obfuscated)"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:104
|
||||
msgid "Footer note"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:104
|
||||
msgid "Text for the footer. You can use BBCode here."
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,84 +0,0 @@
|
|||
# ADDON impressum
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica impressum addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:39+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Gaelic, Scottish (http://app.transifex.com/Friendica/friendica/language/gd/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gd\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
|
||||
|
||||
#: impressum.php:53
|
||||
msgid "Impressum"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:66 impressum.php:68 impressum.php:99
|
||||
msgid "Site Owner"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:66 impressum.php:103
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:71 impressum.php:101
|
||||
msgid "Postal Address"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:77
|
||||
msgid ""
|
||||
"The impressum addon needs to be configured!<br />Please add at least the "
|
||||
"<tt>owner</tt> variable to your config file. For other variables please "
|
||||
"refer to the README file of the addon."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:98
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:99
|
||||
msgid "The page operators name."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:100
|
||||
msgid "Site Owners Profile"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:100
|
||||
msgid "Profile address of the operator."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:101
|
||||
msgid "How to contact the operator via snail mail. You can use BBCode here."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:102
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:102
|
||||
msgid ""
|
||||
"Additional notes that are displayed beneath the contact information. You can"
|
||||
" use BBCode here."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:103
|
||||
msgid "How to contact the operator via email. (will be displayed obfuscated)"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:104
|
||||
msgid "Footer note"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:104
|
||||
msgid "Text for the footer. You can use BBCode here."
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_gd")) {
|
||||
function string_plural_select_gd($n){
|
||||
$n = intval($n);
|
||||
if (($n==1 || $n==11)) { return 0; } else if (($n==2 || $n==12)) { return 1; } else if (($n > 2 && $n < 20)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -1,84 +0,0 @@
|
|||
# ADDON impressum
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica impressum addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:39+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Icelandic (http://app.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"
|
||||
|
||||
#: impressum.php:53
|
||||
msgid "Impressum"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:66 impressum.php:68 impressum.php:99
|
||||
msgid "Site Owner"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:66 impressum.php:103
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:71 impressum.php:101
|
||||
msgid "Postal Address"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:77
|
||||
msgid ""
|
||||
"The impressum addon needs to be configured!<br />Please add at least the "
|
||||
"<tt>owner</tt> variable to your config file. For other variables please "
|
||||
"refer to the README file of the addon."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:98
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:99
|
||||
msgid "The page operators name."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:100
|
||||
msgid "Site Owners Profile"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:100
|
||||
msgid "Profile address of the operator."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:101
|
||||
msgid "How to contact the operator via snail mail. You can use BBCode here."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:102
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:102
|
||||
msgid ""
|
||||
"Additional notes that are displayed beneath the contact information. You can"
|
||||
" use BBCode here."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:103
|
||||
msgid "How to contact the operator via email. (will be displayed obfuscated)"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:104
|
||||
msgid "Footer note"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:104
|
||||
msgid "Text for the footer. You can use BBCode here."
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,18 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_is")) {
|
||||
function string_plural_select_is($n){
|
||||
$n = intval($n);
|
||||
return intval($n % 10 != 1 || $n % 100 == 11);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Impressum"] = "Impressum";
|
||||
$a->strings["Site Owner"] = "Eigandi vefs";
|
||||
$a->strings["Email Address"] = "Póstfang";
|
||||
$a->strings["Postal Address"] = "Heimilisfang";
|
||||
$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Það þarf að stilla Impressum viðbótina! <br />Vinsamlegast bætið allavega við <tt>eiganda</tt> breytunni ";
|
||||
$a->strings["Settings updated."] = "Stillingar uppfærðar";
|
||||
$a->strings["Submit"] = "Senda inn";
|
||||
$a->strings["The page operators name."] = "";
|
||||
$a->strings["Site Owners Profile"] = "Forsíða eiganda vefs";
|
||||
$a->strings["Profile address of the operator."] = "";
|
||||
$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "";
|
||||
$a->strings["Notes"] = "Glósur";
|
||||
$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "";
|
||||
$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "";
|
||||
$a->strings["Footer note"] = "";
|
||||
$a->strings["Text for the footer. You can use BBCode here."] = "";
|
||||
|
|
|
|||
|
|
@ -1,84 +0,0 @@
|
|||
# ADDON impressum
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica impressum addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:39+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Russian (http://app.transifex.com/Friendica/friendica/language/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#: impressum.php:53
|
||||
msgid "Impressum"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:66 impressum.php:68 impressum.php:99
|
||||
msgid "Site Owner"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:66 impressum.php:103
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:71 impressum.php:101
|
||||
msgid "Postal Address"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:77
|
||||
msgid ""
|
||||
"The impressum addon needs to be configured!<br />Please add at least the "
|
||||
"<tt>owner</tt> variable to your config file. For other variables please "
|
||||
"refer to the README file of the addon."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:98
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:99
|
||||
msgid "The page operators name."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:100
|
||||
msgid "Site Owners Profile"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:100
|
||||
msgid "Profile address of the operator."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:101
|
||||
msgid "How to contact the operator via snail mail. You can use BBCode here."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:102
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:102
|
||||
msgid ""
|
||||
"Additional notes that are displayed beneath the contact information. You can"
|
||||
" use BBCode here."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:103
|
||||
msgid "How to contact the operator via email. (will be displayed obfuscated)"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:104
|
||||
msgid "Footer note"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:104
|
||||
msgid "Text for the footer. You can use BBCode here."
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,18 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_ru")) {
|
||||
function string_plural_select_ru($n){
|
||||
$n = intval($n);
|
||||
if ($n%10==1 && $n%100!=11) { return 0; } else if ($n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14)) { return 1; } else if ($n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)) { return 2; } else { return 3; }
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Impressum"] = "Impressum";
|
||||
$a->strings["Site Owner"] = "Владелец сайта";
|
||||
$a->strings["Email Address"] = "Адрес электронной почты";
|
||||
$a->strings["Postal Address"] = "Почтовый адрес";
|
||||
$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Расширение Impressum должно быть настроено!<br /> Пожалуйста, добавьте по крайней мере переменную <tt>владельца</tt> в ваш конфигурационный файл. Описание других переменных можно найти в файле README для расширения.";
|
||||
$a->strings["Settings updated."] = "Настройки обновлены.";
|
||||
$a->strings["Submit"] = "Подтвердить";
|
||||
$a->strings["The page operators name."] = "";
|
||||
$a->strings["Site Owners Profile"] = "Профиль владельцев сайта";
|
||||
$a->strings["Profile address of the operator."] = "";
|
||||
$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "";
|
||||
$a->strings["Notes"] = "Заметки";
|
||||
$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "";
|
||||
$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "";
|
||||
$a->strings["Footer note"] = "";
|
||||
$a->strings["Text for the footer. You can use BBCode here."] = "";
|
||||
|
|
|
|||
|
|
@ -1,23 +0,0 @@
|
|||
# ADDON infiniteimprobabilitydrive
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica infiniteimprobabilitydrive addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:41+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: infiniteimprobabilitydrive.php:18
|
||||
msgid "Infinite Improbability Drive"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
# ADDON infiniteimprobabilitydrive
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica infiniteimprobabilitydrive addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:41+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: infiniteimprobabilitydrive.php:18
|
||||
msgid "Infinite Improbability Drive"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,3 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_eo")) {
|
||||
function string_plural_select_eo($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Infinite Improbability Drive"] = "Senfina Probableca Pelilo";
|
||||
|
|
|
|||
|
|
@ -1,23 +0,0 @@
|
|||
# ADDON infiniteimprobabilitydrive
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica infiniteimprobabilitydrive addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:41+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Estonian (http://app.transifex.com/Friendica/friendica/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: infiniteimprobabilitydrive.php:18
|
||||
msgid "Infinite Improbability Drive"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_et")) {
|
||||
function string_plural_select_et($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
# ADDON infiniteimprobabilitydrive
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica infiniteimprobabilitydrive addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:41+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Gaelic, Scottish (http://app.transifex.com/Friendica/friendica/language/gd/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gd\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
|
||||
|
||||
#: infiniteimprobabilitydrive.php:18
|
||||
msgid "Infinite Improbability Drive"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_gd")) {
|
||||
function string_plural_select_gd($n){
|
||||
$n = intval($n);
|
||||
if (($n==1 || $n==11)) { return 0; } else if (($n==2 || $n==12)) { return 1; } else if (($n > 2 && $n < 20)) { return 2; } else { return 3; }
|
||||
}}
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
# ADDON infiniteimprobabilitydrive
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica infiniteimprobabilitydrive addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:41+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Icelandic (http://app.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"
|
||||
|
||||
#: infiniteimprobabilitydrive.php:18
|
||||
msgid "Infinite Improbability Drive"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,3 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_is")) {
|
||||
function string_plural_select_is($n){
|
||||
$n = intval($n);
|
||||
return intval($n % 10 != 1 || $n % 100 == 11);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["Infinite Improbability Drive"] = "";
|
||||
|
|
|
|||
|
|
@ -1,62 +0,0 @@
|
|||
# ADDON irc
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica irc addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:41+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: irc.php:32
|
||||
msgid ""
|
||||
"Here you can change the system wide settings for the channels to "
|
||||
"automatically join and access via the side bar. Note the changes you do "
|
||||
"here, only effect the channel selection if you are logged in."
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:33 irc.php:133
|
||||
msgid "Channel(s) to auto connect (comma separated)"
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:33 irc.php:133
|
||||
msgid ""
|
||||
"List of channels that shall automatically connected to when the app is "
|
||||
"launched."
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:34 irc.php:134
|
||||
msgid "Popular Channels (comma separated)"
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:34 irc.php:134
|
||||
msgid ""
|
||||
"List of popular channels, will be displayed at the side and hotlinked for "
|
||||
"easy joining."
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:39
|
||||
msgid "IRC Settings"
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:60
|
||||
msgid "IRC Chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:88
|
||||
msgid "Popular Channels"
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:132
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_bg")) {
|
||||
function string_plural_select_bg($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
|
|
@ -1,62 +0,0 @@
|
|||
# ADDON irc
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica irc addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:41+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Catalan (http://app.transifex.com/Friendica/friendica/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: irc.php:32
|
||||
msgid ""
|
||||
"Here you can change the system wide settings for the channels to "
|
||||
"automatically join and access via the side bar. Note the changes you do "
|
||||
"here, only effect the channel selection if you are logged in."
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:33 irc.php:133
|
||||
msgid "Channel(s) to auto connect (comma separated)"
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:33 irc.php:133
|
||||
msgid ""
|
||||
"List of channels that shall automatically connected to when the app is "
|
||||
"launched."
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:34 irc.php:134
|
||||
msgid "Popular Channels (comma separated)"
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:34 irc.php:134
|
||||
msgid ""
|
||||
"List of popular channels, will be displayed at the side and hotlinked for "
|
||||
"easy joining."
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:39
|
||||
msgid "IRC Settings"
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:60
|
||||
msgid "IRC Chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:88
|
||||
msgid "Popular Channels"
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:132
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,9 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_ca")) {
|
||||
function string_plural_select_ca($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
<?php
|
||||
|
||||
$a->strings["IRC Settings"] = "Ajustos de IRC";
|
||||
$a->strings["Channel(s) to auto connect (comma separated)"] = "Canal(s) per auto connectar (separats per comes)";
|
||||
$a->strings["Popular Channels (comma separated)"] = "Canals Populars (separats per comes)";
|
||||
$a->strings["Submit"] = "Enviar";
|
||||
$a->strings["IRC settings saved."] = "Ajustos del IRC guardats.";
|
||||
$a->strings["IRC Chatroom"] = "IRC Chatroom";
|
||||
$a->strings["Popular Channels"] = "Canals Populars";
|
||||
|
|
|
|||
|
|
@ -1,62 +0,0 @@
|
|||
# ADDON irc
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica irc addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:41+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: irc.php:32
|
||||
msgid ""
|
||||
"Here you can change the system wide settings for the channels to "
|
||||
"automatically join and access via the side bar. Note the changes you do "
|
||||
"here, only effect the channel selection if you are logged in."
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:33 irc.php:133
|
||||
msgid "Channel(s) to auto connect (comma separated)"
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:33 irc.php:133
|
||||
msgid ""
|
||||
"List of channels that shall automatically connected to when the app is "
|
||||
"launched."
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:34 irc.php:134
|
||||
msgid "Popular Channels (comma separated)"
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:34 irc.php:134
|
||||
msgid ""
|
||||
"List of popular channels, will be displayed at the side and hotlinked for "
|
||||
"easy joining."
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:39
|
||||
msgid "IRC Settings"
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:60
|
||||
msgid "IRC Chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:88
|
||||
msgid "Popular Channels"
|
||||
msgstr ""
|
||||
|
||||
#: irc.php:132
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue