From d1bac4f620924a72f78faf84f7c92764f53bd182 Mon Sep 17 00:00:00 2001 From: Philipp Date: Thu, 6 Jan 2022 23:11:59 +0100 Subject: [PATCH 1/8] Fixing CI Changed_Files --- .woodpecker/.code_standards_check.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.woodpecker/.code_standards_check.yml b/.woodpecker/.code_standards_check.yml index df81376f..069e9657 100644 --- a/.woodpecker/.code_standards_check.yml +++ b/.woodpecker/.code_standards_check.yml @@ -55,7 +55,12 @@ pipeline: image: friendicaci/php-cs commands: - cd addon/ - - export CHANGED_FILES="$(git diff --name-status ${CI_PREV_COMMIT_SHA}..${CI_COMMIT_SHA} | grep ^A | cut -f2 | sed -e "s/^/addon\\//")" + - if [ ! -z "$${CI_COMMIT_PULL_REQUEST}" ]; then + git fetch --no-tags origin ${CI_COMMIT_TARGET_BRANCH}; + export CHANGED_FILES="$(git diff --name-status $(git merge-base FETCH_HEAD origin/${CI_COMMIT_TARGET_BRANCH})..${CI_COMMIT_SHA} | grep ^A | cut -f2 | sed -e "s/^/addon\\//")"; + else + export CHANGED_FILES="$(git diff --name-status ${CI_COMMIT_SHA} | grep ^A | cut -f2 | sed -e "s/^/addon\\//")"; + fi - cd ../ - /check-php-cs.sh when: From 327bfcb2b59a9d3e2a99b8b2f41185629197da47 Mon Sep 17 00:00:00 2001 From: Gidi Kroon Date: Fri, 7 Jan 2022 02:14:24 +0100 Subject: [PATCH 2/8] Add name check for webdav configuration options The webdav_storage addon should check whether it should provide its config options and its instance based on the provided `$data['name']`. Not doing this will override the configuration and instance of another storage add-on. --- webdav_storage/webdav_storage.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/webdav_storage/webdav_storage.php b/webdav_storage/webdav_storage.php index 7686ca9f..a93caeff 100644 --- a/webdav_storage/webdav_storage.php +++ b/webdav_storage/webdav_storage.php @@ -26,11 +26,15 @@ function webdav_storage_uninstall() function webdav_storage_instance(App $a, array &$data) { - $config = new WebDavConfig(DI::l10n(), DI::config(), DI::httpClient()); - $data['storage'] = new WebDav($config->getUrl(), $config->getAuthOptions(), DI::httpClient(), DI::logger()); + if ($data['name'] == WebDav::getName()) { + $config = new WebDavConfig(DI::l10n(), DI::config(), DI::httpClient()); + $data['storage'] = new WebDav($config->getUrl(), $config->getAuthOptions(), DI::httpClient(), DI::logger()); + } } function webdav_storage_config(App $a, array &$data) { - $data['storage_config'] = new WebDavConfig(DI::l10n(), DI::config(), DI::httpClient()); + if ($data['name'] == WebDav::getName()) { + $data['storage_config'] = new WebDavConfig(DI::l10n(), DI::config(), DI::httpClient()); + } } From e46bff23d5497afe239c6e4c1f3c828d03b27ab6 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Fri, 7 Jan 2022 12:34:28 +0100 Subject: [PATCH 3/8] [twitter] Abort follow process on API call failure - Prevents users without a connected Twitter account from visibly following a Twitter contact --- twitter/twitter.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/twitter/twitter.php b/twitter/twitter.php index 33af5663..d9f1310a 100644 --- a/twitter/twitter.php +++ b/twitter/twitter.php @@ -157,7 +157,10 @@ function twitter_follow(App $a, array &$contact) $uid = $a->getLoggedInUserId(); - twitter_api_contact('friendships/create', ['network' => Protocol::TWITTER, 'nick' => $nickname], $uid); + if (!twitter_api_contact('friendships/create', ['network' => Protocol::TWITTER, 'nick' => $nickname], $uid)) { + $contact = null; + return; + } $user = twitter_fetchuser($nickname); From 34437e368f24adbcd418bd82e6de41d839b1bc05 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Wed, 19 Jan 2022 09:49:56 -0500 Subject: [PATCH 4/8] [langfilter] Improve language detection by removing contiguous whitespace from the message - HTML-heavy posts had several superfluous whitespace character putting them over the minimum message length --- langfilter/langfilter.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/langfilter/langfilter.php b/langfilter/langfilter.php index c75a07b5..9d7b20a9 100644 --- a/langfilter/langfilter.php +++ b/langfilter/langfilter.php @@ -119,11 +119,13 @@ function langfilter_prepare_body_content_filter(App $a, &$hook_data) return; } - if (!empty($hook_data['item']['rendered-html'])) { - $naked_body = strip_tags($hook_data['item']['rendered-html']); - } else { - $naked_body = BBCode::toPlaintext($hook_data['item']['body'], false); - } + $naked_body = strip_tags( + $hook_data['item']['rendered-html'] + ??''?: // Equivalent of !empty() + BBCode::convert($hook_data['item']['body'], false, BBCode::INTERNAL, true) + ); + + $naked_body = preg_replace('#\s+#', ' ', trim($naked_body)); // Don't filter if body lenght is below minimum $minlen = DI::pConfig()->get(local_user(), 'langfilter', 'minlength', 32); From b6d03e10b687708ea0d1c55e06f08a822ede72a0 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Thu, 20 Jan 2022 09:23:31 -0500 Subject: [PATCH 5/8] [langfilter] Prevent image proxifying while converting text for language detection --- langfilter/langfilter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/langfilter/langfilter.php b/langfilter/langfilter.php index 9d7b20a9..a9b76265 100644 --- a/langfilter/langfilter.php +++ b/langfilter/langfilter.php @@ -122,7 +122,7 @@ function langfilter_prepare_body_content_filter(App $a, &$hook_data) $naked_body = strip_tags( $hook_data['item']['rendered-html'] ??''?: // Equivalent of !empty() - BBCode::convert($hook_data['item']['body'], false, BBCode::INTERNAL, true) + BBCode::convert($hook_data['item']['body'], false, BBCode::ACTIVITYPUB, true) ); $naked_body = preg_replace('#\s+#', ' ', trim($naked_body)); From 631b45675579edfa041c1fc6cbfd15f11c4103d4 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 22 Jan 2022 18:50:50 +0100 Subject: [PATCH 6/8] =?UTF-8?q?SV=20addon=20translation=20update=20THX=20K?= =?UTF-8?q?ristoffer=20Grundstr=C3=B6m?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- advancedcontentfilter/lang/sv/messages.po | 86 ++--- advancedcontentfilter/lang/sv/strings.php | 2 - blackout/lang/sv/messages.po | 45 +-- blackout/lang/sv/strings.php | 4 - blockem/lang/sv/messages.po | 34 +- blockem/lang/sv/strings.php | 5 +- catavatar/lang/sv/messages.po | 58 +++ catavatar/lang/sv/strings.php | 10 + cookienotice/lang/sv/messages.po | 53 +++ cookienotice/lang/sv/strings.php | 7 + curweather/lang/sv/messages.po | 125 +++++++ curweather/lang/sv/strings.php | 25 +- diaspora/lang/sv/messages.po | 102 ++++++ diaspora/lang/sv/strings.php | 8 + dwpost/lang/sv/messages.po | 43 +++ dwpost/lang/sv/strings.php | 10 +- forumdirectory/lang/sv/messages.po | 49 +++ forumdirectory/lang/sv/strings.php | 27 +- fromapp/lang/sv/messages.po | 34 ++ fromapp/lang/sv/strings.php | 10 +- geonames/lang/sv/messages.po | 33 ++ geonames/lang/sv/strings.php | 10 +- gnot/lang/sv/messages.po | 39 ++ gnot/lang/sv/strings.php | 11 +- gravatar/lang/sv/messages.po | 71 ++++ gravatar/lang/sv/strings.php | 14 +- group_text/lang/sv/messages.po | 28 ++ group_text/lang/sv/strings.php | 11 +- ifttt/lang/sv/messages.po | 58 +++ ifttt/lang/sv/strings.php | 7 + ijpost/lang/sv/messages.po | 44 +++ ijpost/lang/sv/strings.php | 12 +- impressum/lang/sv/messages.po | 86 +++++ impressum/lang/sv/strings.php | 18 +- .../lang/sv/messages.po | 23 ++ .../lang/sv/strings.php | 9 +- irc/lang/sv/messages.po | 63 ++++ irc/lang/sv/strings.php | 16 +- js_upload/lang/sv/messages.po | 58 +++ js_upload/lang/sv/strings.php | 24 +- krynn/lang/sv/messages.po | 27 ++ krynn/lang/sv/strings.php | 10 +- libertree/lang/sv/messages.po | 43 +++ libertree/lang/sv/strings.php | 10 +- libravatar/lang/sv/messages.po | 71 ++++ libravatar/lang/sv/strings.php | 14 +- ljpost/lang/sv/messages.po | 44 +++ ljpost/lang/sv/strings.php | 12 +- mailstream/lang/sv/messages.po | 98 +++++ mailstream/lang/sv/strings.php | 19 + mathjax/lang/sv/messages.po | 32 ++ mathjax/lang/sv/strings.php | 13 +- morechoice/lang/sv/messages.po | 338 ++++++++++++++++++ morechoice/lang/sv/strings.php | 7 + morepokes/lang/sv/messages.po | 167 +++++++++ morepokes/lang/sv/strings.php | 26 +- newmemberwidget/lang/sv/messages.po | 76 ++++ newmemberwidget/lang/sv/strings.php | 12 + notifyall/lang/sv/messages.po | 56 +++ notifyall/lang/sv/strings.php | 7 + nsfw/lang/sv/messages.po | 54 +++ nsfw/lang/sv/strings.php | 11 +- numfriends/lang/sv/messages.po | 27 ++ numfriends/lang/sv/strings.php | 10 +- openstreetmap/lang/sv/messages.po | 66 ++++ openstreetmap/lang/sv/strings.php | 13 +- pageheader/lang/sv/messages.po | 37 ++ pageheader/lang/sv/strings.php | 10 +- piwik/lang/sv/messages.po | 61 ++++ piwik/lang/sv/strings.php | 12 +- planets/lang/sv/messages.po | 27 ++ planets/lang/sv/strings.php | 10 +- public_server/lang/sv/messages.po | 49 +++ public_server/lang/sv/strings.php | 12 +- pumpio/lang/sv/messages.po | 95 +++++ pumpio/lang/sv/strings.php | 15 + qcomment/lang/sv/messages.po | 46 +++ qcomment/lang/sv/strings.php | 13 +- randplace/lang/sv/messages.po | 27 ++ randplace/lang/sv/strings.php | 12 +- rendertime/lang/sv/messages.po | 53 +++ rendertime/lang/sv/strings.php | 9 +- securemail/lang/sv/messages.po | 50 +++ securemail/lang/sv/strings.php | 7 + showmore/lang/sv/messages.po | 36 ++ showmore/lang/sv/strings.php | 11 +- smileybutton/lang/sv/messages.po | 36 ++ smileybutton/lang/sv/strings.php | 9 + startpage/lang/sv/messages.po | 31 ++ startpage/lang/sv/strings.php | 10 +- statusnet/lang/sv/messages.po | 175 +++++++++ statusnet/lang/sv/strings.php | 28 +- superblock/lang/sv/messages.po | 31 ++ superblock/lang/sv/strings.php | 10 +- testdrive/lang/sv/messages.po | 41 +++ testdrive/lang/sv/strings.php | 11 +- tictac/lang/sv/messages.po | 74 ++++ tictac/lang/sv/strings.php | 28 +- tumblr/lang/sv/messages.po | 73 ++++ tumblr/lang/sv/strings.php | 14 +- twitter/lang/sv/messages.po | 147 ++++++++ twitter/lang/sv/strings.php | 22 +- viewsrc/lang/sv/messages.po | 22 ++ viewsrc/lang/sv/strings.php | 9 +- webrtc/lang/sv/messages.po | 56 +++ webrtc/lang/sv/strings.php | 9 + windowsphonepush/lang/sv/messages.po | 35 ++ windowsphonepush/lang/sv/strings.php | 7 + wppost/lang/sv/messages.po | 69 ++++ wppost/lang/sv/strings.php | 10 +- 110 files changed, 3910 insertions(+), 274 deletions(-) create mode 100644 catavatar/lang/sv/messages.po create mode 100644 catavatar/lang/sv/strings.php create mode 100644 cookienotice/lang/sv/messages.po create mode 100644 cookienotice/lang/sv/strings.php create mode 100644 curweather/lang/sv/messages.po create mode 100644 diaspora/lang/sv/messages.po create mode 100644 diaspora/lang/sv/strings.php create mode 100644 dwpost/lang/sv/messages.po create mode 100644 forumdirectory/lang/sv/messages.po create mode 100644 fromapp/lang/sv/messages.po create mode 100644 geonames/lang/sv/messages.po create mode 100644 gnot/lang/sv/messages.po create mode 100644 gravatar/lang/sv/messages.po create mode 100644 group_text/lang/sv/messages.po create mode 100644 ifttt/lang/sv/messages.po create mode 100644 ifttt/lang/sv/strings.php create mode 100644 ijpost/lang/sv/messages.po create mode 100644 impressum/lang/sv/messages.po create mode 100644 infiniteimprobabilitydrive/lang/sv/messages.po create mode 100644 irc/lang/sv/messages.po create mode 100644 js_upload/lang/sv/messages.po create mode 100644 krynn/lang/sv/messages.po create mode 100644 libertree/lang/sv/messages.po create mode 100644 libravatar/lang/sv/messages.po create mode 100644 ljpost/lang/sv/messages.po create mode 100644 mailstream/lang/sv/messages.po create mode 100644 mailstream/lang/sv/strings.php create mode 100644 mathjax/lang/sv/messages.po create mode 100644 morechoice/lang/sv/messages.po create mode 100644 morechoice/lang/sv/strings.php create mode 100644 morepokes/lang/sv/messages.po create mode 100644 newmemberwidget/lang/sv/messages.po create mode 100644 newmemberwidget/lang/sv/strings.php create mode 100644 notifyall/lang/sv/messages.po create mode 100644 notifyall/lang/sv/strings.php create mode 100644 nsfw/lang/sv/messages.po create mode 100644 numfriends/lang/sv/messages.po create mode 100644 openstreetmap/lang/sv/messages.po create mode 100644 pageheader/lang/sv/messages.po create mode 100644 piwik/lang/sv/messages.po create mode 100644 planets/lang/sv/messages.po create mode 100644 public_server/lang/sv/messages.po create mode 100644 pumpio/lang/sv/messages.po create mode 100644 pumpio/lang/sv/strings.php create mode 100644 qcomment/lang/sv/messages.po create mode 100644 randplace/lang/sv/messages.po create mode 100644 rendertime/lang/sv/messages.po create mode 100644 securemail/lang/sv/messages.po create mode 100644 securemail/lang/sv/strings.php create mode 100644 showmore/lang/sv/messages.po create mode 100644 smileybutton/lang/sv/messages.po create mode 100644 smileybutton/lang/sv/strings.php create mode 100644 startpage/lang/sv/messages.po create mode 100644 statusnet/lang/sv/messages.po create mode 100644 superblock/lang/sv/messages.po create mode 100644 testdrive/lang/sv/messages.po create mode 100644 tictac/lang/sv/messages.po create mode 100644 tumblr/lang/sv/messages.po create mode 100644 twitter/lang/sv/messages.po create mode 100644 viewsrc/lang/sv/messages.po create mode 100644 webrtc/lang/sv/messages.po create mode 100644 webrtc/lang/sv/strings.php create mode 100644 windowsphonepush/lang/sv/messages.po create mode 100644 windowsphonepush/lang/sv/strings.php create mode 100644 wppost/lang/sv/messages.po diff --git a/advancedcontentfilter/lang/sv/messages.po b/advancedcontentfilter/lang/sv/messages.po index 49deb133..b5c58624 100644 --- a/advancedcontentfilter/lang/sv/messages.po +++ b/advancedcontentfilter/lang/sv/messages.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-04-17 04:04+0200\n" +"POT-Creation-Date: 2021-11-21 19:13-0500\n" "PO-Revision-Date: 2018-05-24 06:41+0000\n" "Last-Translator: Bjoessi , 2019\n" "Language-Team: Swedish (https://www.transifex.com/Friendica/teams/12172/sv/)\n" @@ -21,44 +21,40 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: advancedcontentfilter.php:134 +#: advancedcontentfilter.php:154 #, php-format msgid "Filtered by rule: %s" msgstr "Filtrerat efter regel: %s" -#: advancedcontentfilter.php:147 advancedcontentfilter.php:204 +#: advancedcontentfilter.php:170 advancedcontentfilter.php:225 msgid "Advanced Content Filter" msgstr "Avancerat innehållsfiter" -#: advancedcontentfilter.php:203 +#: advancedcontentfilter.php:224 msgid "Back to Addon Settings" msgstr "TIllbaka till Tilläggsinställningar" -#: advancedcontentfilter.php:205 +#: advancedcontentfilter.php:226 msgid "Add a Rule" msgstr "Lägg till en regel" -#: advancedcontentfilter.php:206 +#: advancedcontentfilter.php:227 msgid "Help" msgstr "Hjälp" -#: advancedcontentfilter.php:207 +#: 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." +"the help page." msgstr "" -"Lägg till och hantera dina personliga regler för innehållsfilter i det här " -"fönstret. Regler har ett namn och ett valfritt uttryck och kommer jämföras " -"mot inläggets innehåll. Förteckning av alla operander och variabler finns " -"att hitta på hjälpsidan." -#: advancedcontentfilter.php:208 +#: advancedcontentfilter.php:229 msgid "Your rules" msgstr "Dina regler" -#: advancedcontentfilter.php:209 +#: advancedcontentfilter.php:230 msgid "" "You have no rules yet! Start adding one by clicking on the button above next" " to the title." @@ -66,110 +62,102 @@ msgstr "" "Du har inga regler än! Lägg till regler genom att klicka på knappen ovanför," " bredvid överskriften." -#: advancedcontentfilter.php:210 +#: advancedcontentfilter.php:231 msgid "Disabled" msgstr "Inaktiverad" -#: advancedcontentfilter.php:211 +#: advancedcontentfilter.php:232 msgid "Enabled" msgstr "Aktiverad" -#: advancedcontentfilter.php:212 +#: advancedcontentfilter.php:233 msgid "Disable this rule" msgstr "Inaktivera den här regeln" -#: advancedcontentfilter.php:213 +#: advancedcontentfilter.php:234 msgid "Enable this rule" msgstr "Aktivera den här regeln" -#: advancedcontentfilter.php:214 +#: advancedcontentfilter.php:235 msgid "Edit this rule" msgstr "Redigera den här regeln" -#: advancedcontentfilter.php:215 +#: advancedcontentfilter.php:236 msgid "Edit the rule" msgstr "Redigera den här regeln" -#: advancedcontentfilter.php:216 +#: advancedcontentfilter.php:237 msgid "Save this rule" msgstr "Spara den här regeln" -#: advancedcontentfilter.php:217 +#: advancedcontentfilter.php:238 msgid "Delete this rule" msgstr "Ta bort den här regeln" -#: advancedcontentfilter.php:218 +#: advancedcontentfilter.php:239 msgid "Rule" msgstr "Regel" -#: advancedcontentfilter.php:219 +#: advancedcontentfilter.php:240 msgid "Close" msgstr "Stäng" -#: advancedcontentfilter.php:220 +#: advancedcontentfilter.php:241 msgid "Add new rule" msgstr "Lägg till ny regel" -#: advancedcontentfilter.php:221 +#: advancedcontentfilter.php:242 msgid "Rule Name" msgstr "Regelnamn" -#: advancedcontentfilter.php:222 +#: advancedcontentfilter.php:243 msgid "Rule Expression" msgstr "Regeluttryck" -#: advancedcontentfilter.php:223 -msgid "" -"

Examples:

  • author_link == "
    -"'https://friendica.mrpetovan.com/profile/hypolite'
  • tags
" -msgstr "" -"

Exempel:

  • author_link == "
    -"'https://friendica.mrpetovan.com/profile/hypolite'
  • taggar
" - -#: advancedcontentfilter.php:224 +#: advancedcontentfilter.php:244 msgid "Cancel" msgstr "Avbryt" -#: advancedcontentfilter.php:290 advancedcontentfilter.php:301 -#: advancedcontentfilter.php:312 advancedcontentfilter.php:346 -#: advancedcontentfilter.php:375 advancedcontentfilter.php:396 +#: advancedcontentfilter.php:312 advancedcontentfilter.php:323 +#: advancedcontentfilter.php:334 advancedcontentfilter.php:370 +#: advancedcontentfilter.php:401 advancedcontentfilter.php:424 msgid "You must be logged in to use this method" msgstr "Du måste vara inloggad för att använda den här funktionen" -#: advancedcontentfilter.php:316 advancedcontentfilter.php:350 -#: advancedcontentfilter.php:379 +#: advancedcontentfilter.php:338 advancedcontentfilter.php:374 +#: advancedcontentfilter.php:405 msgid "Invalid form security token, please refresh the page." msgstr "Felaktigt säkerhetsformulärstecken, vänligen uppdatera sidan." -#: advancedcontentfilter.php:328 +#: advancedcontentfilter.php:350 msgid "The rule name and expression are required." msgstr "Regelns namn och uttryck krävs." -#: advancedcontentfilter.php:340 +#: advancedcontentfilter.php:364 msgid "Rule successfully added" msgstr "Regeln kunde läggas till" -#: advancedcontentfilter.php:354 advancedcontentfilter.php:383 +#: advancedcontentfilter.php:378 advancedcontentfilter.php:409 msgid "Rule doesn't exist or doesn't belong to you." msgstr "Regeln finns inte eller tillhör inte dig." -#: advancedcontentfilter.php:369 +#: advancedcontentfilter.php:395 msgid "Rule successfully updated" msgstr "Uppdatering av regel lyckades" -#: advancedcontentfilter.php:390 +#: advancedcontentfilter.php:418 msgid "Rule successfully deleted" msgstr "Borttagning av regel lyckades" -#: advancedcontentfilter.php:400 +#: advancedcontentfilter.php:428 msgid "Missing argument: guid." msgstr "Argument saknas: guid." -#: advancedcontentfilter.php:406 +#: advancedcontentfilter.php:436 #, php-format msgid "Unknown post with guid: %s" msgstr "Okänt inlägg med guid: %s" -#: src/middlewares.php:28 +#: src/middlewares.php:49 msgid "Method not found" msgstr "Metod hittades inte" diff --git a/advancedcontentfilter/lang/sv/strings.php b/advancedcontentfilter/lang/sv/strings.php index 3eeb98e6..48cf9565 100644 --- a/advancedcontentfilter/lang/sv/strings.php +++ b/advancedcontentfilter/lang/sv/strings.php @@ -10,7 +10,6 @@ $a->strings['Advanced Content Filter'] = 'Avancerat innehållsfiter'; $a->strings['Back to Addon Settings'] = 'TIllbaka till Tilläggsinställningar'; $a->strings['Add a Rule'] = 'Lägg till en regel'; $a->strings['Help'] = 'Hjälp'; -$a->strings['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.'] = 'Lägg till och hantera dina personliga regler för innehållsfilter i det här fönstret. Regler har ett namn och ett valfritt uttryck och kommer jämföras mot inläggets innehåll. Förteckning av alla operander och variabler finns att hitta på hjälpsidan.'; $a->strings['Your rules'] = 'Dina regler'; $a->strings['You have no rules yet! Start adding one by clicking on the button above next to the title.'] = 'Du har inga regler än! Lägg till regler genom att klicka på knappen ovanför, bredvid överskriften.'; $a->strings['Disabled'] = 'Inaktiverad'; @@ -26,7 +25,6 @@ $a->strings['Close'] = 'Stäng'; $a->strings['Add new rule'] = 'Lägg till ny regel'; $a->strings['Rule Name'] = 'Regelnamn'; $a->strings['Rule Expression'] = 'Regeluttryck'; -$a->strings['

Examples:

  • author_link == \'https://friendica.mrpetovan.com/profile/hypolite\'
  • tags
'] = '

Exempel:

  • author_link == \'https://friendica.mrpetovan.com/profile/hypolite\'
  • taggar
'; $a->strings['Cancel'] = 'Avbryt'; $a->strings['You must be logged in to use this method'] = 'Du måste vara inloggad för att använda den här funktionen'; $a->strings['Invalid form security token, please refresh the page.'] = 'Felaktigt säkerhetsformulärstecken, vänligen uppdatera sidan.'; diff --git a/blackout/lang/sv/messages.po b/blackout/lang/sv/messages.po index 31931bf7..ee58b960 100644 --- a/blackout/lang/sv/messages.po +++ b/blackout/lang/sv/messages.po @@ -4,16 +4,16 @@ # # # Translators: -# Jonatan Nyberg, 2017 +# efef6ec5b435a041fce803c7f8af77d2_2341d43, 2017 # Tim Stahel , 2018 # Bjoessi , 2019 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-12 09:26+0100\n" -"PO-Revision-Date: 2019-04-04 20:32+0000\n" -"Last-Translator: Bjoessi \n" +"POT-Creation-Date: 2021-02-01 18:15+0100\n" +"PO-Revision-Date: 2021-01-04 08:29+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,48 +21,49 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blackout.php:101 +#: blackout.php:97 msgid "" -"The end-date is prior to the start-date of the blackout, you should fix this" -msgstr "Slutdatumet ligger före startdatumet för nedsläckningen, du bör rätta detta." +"The end-date is prior to the start-date of the blackout, you should fix " +"this." +msgstr "" -#: blackout.php:103 +#: blackout.php:99 #, php-format msgid "" -"Please double check that the current settings for the blackout. Begin will " -"be %s and it will end %s." -msgstr "Vänligen försäkra dig om att inställningarna för nedsläckningen är korrekt. Början %s och slut %s." +"Please double check the current settings for the blackout. It will begin on " +"%s and end on %s." +msgstr "" -#: blackout.php:106 +#: blackout.php:102 msgid "Save Settings" msgstr "Spara inställningar" -#: blackout.php:107 +#: blackout.php:103 msgid "Redirect URL" msgstr "Omdirigera URL" -#: blackout.php:107 -msgid "all your visitors from the web will be redirected to this URL" -msgstr "alla dina besökare från webben kommer omdirigeras till denna URL" +#: blackout.php:103 +msgid "All your visitors from the web will be redirected to this URL." +msgstr "" -#: blackout.php:108 +#: blackout.php:104 msgid "Begin of the Blackout" msgstr "Start på nedsläckningen" -#: blackout.php:108 +#: blackout.php:104 msgid "" "Format is YYYY-MM-DD hh:mm; YYYY year, MM month, " "DD day, hh hour and mm minute." msgstr "Formatet är ÅÅÅÅ-MM-DD tt:mm; ÅÅÅÅ år, MM månad, DD dag, tt timme och mm minut." -#: blackout.php:109 +#: blackout.php:105 msgid "End of the Blackout" msgstr "Slut på nedsläckningen" -#: blackout.php:111 +#: blackout.php:107 msgid "" "Note: The redirect will be active from the moment you press" " the submit button. Users currently logged in will not be " -"thrown out but can't login again after logging out should the blackout is " +"thrown out but can't login again after logging out while the blackout is " "still in place." -msgstr "Observera: Hänvisningen kommer att träda i kraft när du trycker på skicka-knappen. Användare som just nu är inloggade kommer inte bli utkastade men kan inte logga in igen efter utloggning om nedsläckningen fortfarande är i kraft. " +msgstr "" diff --git a/blackout/lang/sv/strings.php b/blackout/lang/sv/strings.php index b8cc1939..86792904 100644 --- a/blackout/lang/sv/strings.php +++ b/blackout/lang/sv/strings.php @@ -5,12 +5,8 @@ function string_plural_select_sv($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['The end-date is prior to the start-date of the blackout, you should fix this'] = 'Slutdatumet ligger före startdatumet för nedsläckningen, du bör rätta detta.'; -$a->strings['Please double check that the current settings for the blackout. Begin will be %s and it will end %s.'] = 'Vänligen försäkra dig om att inställningarna för nedsläckningen är korrekt. Början %s och slut %s.'; $a->strings['Save Settings'] = 'Spara inställningar'; $a->strings['Redirect URL'] = 'Omdirigera URL'; -$a->strings['all your visitors from the web will be redirected to this URL'] = 'alla dina besökare från webben kommer omdirigeras till denna URL'; $a->strings['Begin of the Blackout'] = 'Start på nedsläckningen'; $a->strings['Format is YYYY-MM-DD hh:mm; YYYY year, MM month, DD day, hh hour and mm minute.'] = 'Formatet är ÅÅÅÅ-MM-DD tt:mm; ÅÅÅÅ år, MM månad, DD dag, tt timme och mm minut.'; $a->strings['End of the Blackout'] = 'Slut på nedsläckningen'; -$a->strings['Note: The redirect will be active from the moment you press the submit button. Users currently logged in will not be thrown out but can\'t login again after logging out should the blackout is still in place.'] = 'Observera: Hänvisningen kommer att träda i kraft när du trycker på skicka-knappen. Användare som just nu är inloggade kommer inte bli utkastade men kan inte logga in igen efter utloggning om nedsläckningen fortfarande är i kraft. '; diff --git a/blockem/lang/sv/messages.po b/blockem/lang/sv/messages.po index a474f815..ede8ee94 100644 --- a/blockem/lang/sv/messages.po +++ b/blockem/lang/sv/messages.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-08-17 10:23+0200\n" -"PO-Revision-Date: 2019-08-20 07:51+0000\n" -"Last-Translator: Bjoessi \n" +"POT-Creation-Date: 2021-11-21 19:13-0500\n" +"PO-Revision-Date: 2021-12-22 15:27+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,41 +19,29 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blockem.php:54 blockem.php:58 -msgid "Blockem" -msgstr "BLOCKEM" - -#: blockem.php:62 +#: blockem.php:39 msgid "" "Hides user's content by collapsing posts. Also replaces their avatar with " "generic image." msgstr "Döljer användares inlägg genom sammanslagning nedåt. Användarens profilbild ersätts med en standardbild." -#: blockem.php:63 +#: blockem.php:40 msgid "Comma separated profile URLS:" msgstr "Kommaseparerade profiladresser:" -#: blockem.php:67 -msgid "Save Settings" -msgstr "Spara inställningar" +#: blockem.php:45 +msgid "Blockem" +msgstr "BLOCKEM" -#: blockem.php:81 -msgid "BLOCKEM Settings saved." -msgstr "BLOCKEM Inställningar sparade." - -#: blockem.php:143 +#: blockem.php:120 #, php-format msgid "Filtered user: %s" msgstr "Filtrerat på användare:%s" -#: blockem.php:202 +#: blockem.php:183 msgid "Unblock Author" msgstr "Avblockera författare" -#: blockem.php:204 +#: blockem.php:185 msgid "Block Author" msgstr "Blockera författare" - -#: blockem.php:244 -msgid "blockem settings updated" -msgstr "BLOCKEM Inställningar uppdaterade" diff --git a/blockem/lang/sv/strings.php b/blockem/lang/sv/strings.php index 967c7e46..724e2d23 100644 --- a/blockem/lang/sv/strings.php +++ b/blockem/lang/sv/strings.php @@ -5,12 +5,9 @@ function string_plural_select_sv($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Blockem'] = 'BLOCKEM'; $a->strings['Hides user\'s content by collapsing posts. Also replaces their avatar with generic image.'] = 'Döljer användares inlägg genom sammanslagning nedåt. Användarens profilbild ersätts med en standardbild.'; $a->strings['Comma separated profile URLS:'] = 'Kommaseparerade profiladresser:'; -$a->strings['Save Settings'] = 'Spara inställningar'; -$a->strings['BLOCKEM Settings saved.'] = 'BLOCKEM Inställningar sparade.'; +$a->strings['Blockem'] = 'BLOCKEM'; $a->strings['Filtered user: %s'] = 'Filtrerat på användare:%s'; $a->strings['Unblock Author'] = 'Avblockera författare'; $a->strings['Block Author'] = 'Blockera författare'; -$a->strings['blockem settings updated'] = 'BLOCKEM Inställningar uppdaterade'; diff --git a/catavatar/lang/sv/messages.po b/catavatar/lang/sv/messages.po new file mode 100644 index 00000000..c53de04d --- /dev/null +++ b/catavatar/lang/sv/messages.po @@ -0,0 +1,58 @@ +# ADDON catavatar +# Copyright (C) +# This file is distributed under the same license as the Friendica catavatar addon package. +# +# +# Translators: +# Bjoessi , 2019 +# +#, 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" +"Last-Translator: Bjoessi , 2019\n" +"Language-Team: Swedish (https://www.transifex.com/Friendica/teams/12172/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\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 "Inställningar för profilkatt" + +#: catavatar.php:56 +msgid "Use Cat as Avatar" +msgstr "Använd katt som profilbild" + +#: catavatar.php:57 +msgid "Another random Cat!" +msgstr "" + +#: catavatar.php:58 +msgid "Reset to email Cat" +msgstr "Återställ till epost-katt" + +#: 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 "" diff --git a/catavatar/lang/sv/strings.php b/catavatar/lang/sv/strings.php new file mode 100644 index 00000000..1bdcc993 --- /dev/null +++ b/catavatar/lang/sv/strings.php @@ -0,0 +1,10 @@ +strings['Cat Avatar Settings'] = 'Inställningar för profilkatt'; +$a->strings['Use Cat as Avatar'] = 'Använd katt som profilbild'; +$a->strings['Reset to email Cat'] = 'Återställ till epost-katt'; diff --git a/cookienotice/lang/sv/messages.po b/cookienotice/lang/sv/messages.po new file mode 100644 index 00000000..185ae4d0 --- /dev/null +++ b/cookienotice/lang/sv/messages.po @@ -0,0 +1,53 @@ +# 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: Swedish (https://www.transifex.com/Friendica/teams/12172/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\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 "" +"Configure your cookie usage notice. 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 "" diff --git a/cookienotice/lang/sv/strings.php b/cookienotice/lang/sv/strings.php new file mode 100644 index 00000000..72e9772f --- /dev/null +++ b/cookienotice/lang/sv/strings.php @@ -0,0 +1,7 @@ +, 2019 +# Kristoffer Grundström , 2022 +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: 2022-01-16 01:04+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\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 "Nuvarande väder" + +#: curweather.php:137 +msgid "Relative Humidity" +msgstr "Relativ luftfuktighet" + +#: curweather.php:138 +msgid "Pressure" +msgstr "Tryck" + +#: curweather.php:139 +msgid "Wind" +msgstr "Vind" + +#: curweather.php:140 +msgid "Last Updated" +msgstr "Uppdaterades senast" + +#: curweather.php:141 +msgid "Data by" +msgstr "Data av" + +#: curweather.php:142 +msgid "Show on map" +msgstr "Visa på karta" + +#: curweather.php:147 +msgid "There was a problem accessing the weather data. But have a look" +msgstr "" + +#: curweather.php:149 +msgid "at OpenWeatherMap" +msgstr "vid OpenWeatherMap" + +#: 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 "Din plats" + +#: curweather.php:189 +msgid "" +"Identifier of your location (name or zip code), e.g. Berlin,DE or " +"14476,DE." +msgstr "" + +#: curweather.php:190 +msgid "Units" +msgstr "Enheter" + +#: curweather.php:190 +msgid "select if the temperature should be displayed in °C or °F" +msgstr "" + +#: curweather.php:191 +msgid "Show weather data" +msgstr "Visa väder-data" + +#: curweather.php:196 +msgid "Current Weather Settings" +msgstr "" + +#: curweather.php:227 +msgid "Save Settings" +msgstr "Spara inställningar" + +#: 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 "ingen cache" + +#: curweather.php:234 curweather.php:235 curweather.php:236 curweather.php:237 +msgid "minutes" +msgstr "minuter" + +#: curweather.php:240 +msgid "Your APPID" +msgstr "Ditt APP-ID" + +#: curweather.php:240 +msgid "Your API key provided by OpenWeatherMap" +msgstr "" diff --git a/curweather/lang/sv/strings.php b/curweather/lang/sv/strings.php index 3ec569a7..a27e6649 100644 --- a/curweather/lang/sv/strings.php +++ b/curweather/lang/sv/strings.php @@ -1,3 +1,22 @@ -strings["Submit"] = "Spara"; +strings['Current Weather'] = 'Nuvarande väder'; +$a->strings['Relative Humidity'] = 'Relativ luftfuktighet'; +$a->strings['Pressure'] = 'Tryck'; +$a->strings['Wind'] = 'Vind'; +$a->strings['Last Updated'] = 'Uppdaterades senast'; +$a->strings['Data by'] = 'Data av'; +$a->strings['Show on map'] = 'Visa på karta'; +$a->strings['at OpenWeatherMap'] = 'vid OpenWeatherMap'; +$a->strings['Your Location'] = 'Din plats'; +$a->strings['Units'] = 'Enheter'; +$a->strings['Show weather data'] = 'Visa väder-data'; +$a->strings['Save Settings'] = 'Spara inställningar'; +$a->strings['no cache'] = 'ingen cache'; +$a->strings['minutes'] = 'minuter'; +$a->strings['Your APPID'] = 'Ditt APP-ID'; diff --git a/diaspora/lang/sv/messages.po b/diaspora/lang/sv/messages.po new file mode 100644 index 00000000..b23149c9 --- /dev/null +++ b/diaspora/lang/sv/messages.po @@ -0,0 +1,102 @@ +# ADDON diaspora +# Copyright (C) +# This file is distributed under the same license as the Friendica diaspora addon package. +# +# +# Translators: +# Kristoffer Grundström , 2022 +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: 2022-01-15 23:38+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: diaspora.php:44 +msgid "Post to Diaspora" +msgstr "" + +#: diaspora.php:67 +#, php-format +msgid "" +"Please remember: You can always be reached from Diaspora with your Friendica" +" handle %s. " +msgstr "" + +#: diaspora.php:68 +msgid "" +"This connector is only meant if you still want to use your old Diaspora " +"account for some time. " +msgstr "" + +#: diaspora.php:69 +#, php-format +msgid "" +"However, it is preferred that you tell your Diaspora contacts the new handle" +" %s instead." +msgstr "" + +#: diaspora.php:79 +msgid "All aspects" +msgstr "" + +#: diaspora.php:80 +msgid "Public" +msgstr "" + +#: diaspora.php:86 +msgid "Post to aspect:" +msgstr "" + +#: diaspora.php:87 +#, php-format +msgid "Connected with your Diaspora account %s" +msgstr "" + +#: diaspora.php:90 +msgid "" +"Can't login to your Diaspora account. Please check handle (in the format " +"user@domain.tld) and password." +msgstr "" + +#: diaspora.php:97 +msgid "Information" +msgstr "" + +#: diaspora.php:98 +msgid "Error" +msgstr "" + +#: diaspora.php:104 +msgid "Enable Diaspora Post Addon" +msgstr "" + +#: diaspora.php:105 +msgid "Diaspora handle" +msgstr "" + +#: diaspora.php:106 +msgid "Diaspora password" +msgstr "Lösenord för Diaspora" + +#: 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 "" + +#: diaspora.php:108 +msgid "Post to Diaspora by default" +msgstr "" + +#: diaspora.php:113 +msgid "Diaspora Export" +msgstr "" diff --git a/diaspora/lang/sv/strings.php b/diaspora/lang/sv/strings.php new file mode 100644 index 00000000..0a2ccf31 --- /dev/null +++ b/diaspora/lang/sv/strings.php @@ -0,0 +1,8 @@ +strings['Diaspora password'] = 'Lösenord för Diaspora'; diff --git a/dwpost/lang/sv/messages.po b/dwpost/lang/sv/messages.po new file mode 100644 index 00000000..6e3aa388 --- /dev/null +++ b/dwpost/lang/sv/messages.po @@ -0,0 +1,43 @@ +# 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: 2021-12-22 16:17+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\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 "" diff --git a/dwpost/lang/sv/strings.php b/dwpost/lang/sv/strings.php index 3ec569a7..72e9772f 100644 --- a/dwpost/lang/sv/strings.php +++ b/dwpost/lang/sv/strings.php @@ -1,3 +1,7 @@ -strings["Submit"] = "Spara"; +, 2019 +# Kristoffer Grundström , 2022 +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: 2022-01-15 23:39+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: forumdirectory.php:33 forumdirectory.php:137 +msgid "Forum Directory" +msgstr "Forum-mapp" + +#: forumdirectory.php:53 +msgid "Public access denied." +msgstr "Publik åtkomst nekades." + +#: forumdirectory.php:125 +msgid "No entries (some entries may be hidden)." +msgstr "Inget att visa. (Man kan välja att inte synas här)" + +#: forumdirectory.php:131 +msgid "Global Directory" +msgstr "Medlemskatalog för flera sajter (global)" + +#: forumdirectory.php:133 +msgid "Find on this site" +msgstr "Hitta på den här sidan" + +#: forumdirectory.php:135 +msgid "Results for:" +msgstr "" + +#: forumdirectory.php:139 +msgid "Find" +msgstr "Sök" diff --git a/forumdirectory/lang/sv/strings.php b/forumdirectory/lang/sv/strings.php index 70a9ca5a..0f06eaa3 100644 --- a/forumdirectory/lang/sv/strings.php +++ b/forumdirectory/lang/sv/strings.php @@ -1,14 +1,13 @@ -strings["Global Directory"] = "Medlemskatalog för flera sajter (global)"; -$a->strings["Finding: "] = "Hittar: "; -$a->strings["Site Directory"] = "Medlemskatalog"; -$a->strings["Find"] = "Sök"; -$a->strings["Age: "] = "Ålder: "; -$a->strings["Gender: "] = "Kön: "; -$a->strings["Location:"] = "Plats:"; -$a->strings["Gender:"] = "Kön:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Hemsida:"; -$a->strings["About:"] = "Om:"; -$a->strings["No entries (some entries may be hidden)."] = "Inget att visa. (Man kan välja att inte synas här)"; +strings['Forum Directory'] = 'Forum-mapp'; +$a->strings['Public access denied.'] = 'Publik åtkomst nekades.'; +$a->strings['No entries (some entries may be hidden).'] = 'Inget att visa. (Man kan välja att inte synas här)'; +$a->strings['Global Directory'] = 'Medlemskatalog för flera sajter (global)'; +$a->strings['Find on this site'] = 'Hitta på den här sidan'; +$a->strings['Find'] = 'Sök'; diff --git a/fromapp/lang/sv/messages.po b/fromapp/lang/sv/messages.po new file mode 100644 index 00000000..bc9e43fe --- /dev/null +++ b/fromapp/lang/sv/messages.po @@ -0,0 +1,34 @@ +# 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: 2021-12-22 15:15+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\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 "" diff --git a/fromapp/lang/sv/strings.php b/fromapp/lang/sv/strings.php index 3ec569a7..72e9772f 100644 --- a/fromapp/lang/sv/strings.php +++ b/fromapp/lang/sv/strings.php @@ -1,3 +1,7 @@ -strings["Submit"] = "Spara"; +\n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\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 "" diff --git a/geonames/lang/sv/strings.php b/geonames/lang/sv/strings.php index 3ec569a7..72e9772f 100644 --- a/geonames/lang/sv/strings.php +++ b/geonames/lang/sv/strings.php @@ -1,3 +1,7 @@ -strings["Submit"] = "Spara"; +, 2022 +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: 2022-01-15 23:39+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\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-inställningar" + +#: gnot.php:79 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%d" +msgstr "" diff --git a/gnot/lang/sv/strings.php b/gnot/lang/sv/strings.php index 3ec569a7..41d1308a 100644 --- a/gnot/lang/sv/strings.php +++ b/gnot/lang/sv/strings.php @@ -1,3 +1,8 @@ -strings["Submit"] = "Spara"; +strings['Gnot Settings'] = 'Gnot-inställningar'; diff --git a/gravatar/lang/sv/messages.po b/gravatar/lang/sv/messages.po new file mode 100644 index 00000000..f2f70a19 --- /dev/null +++ b/gravatar/lang/sv/messages.po @@ -0,0 +1,71 @@ +# ADDON gravatar +# Copyright (C) +# This file is distributed under the same license as the Friendica gravatar addon package. +# +# +# Translators: +# Kristoffer Grundström , 2022 +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: 2022-01-16 00:35+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\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 "monsteransikte" + +#: gravatar.php:81 +msgid "computer generated face" +msgstr "datorgenererat ansikte" + +#: gravatar.php:82 +msgid "retro arcade style face" +msgstr "" + +#: gravatar.php:96 +msgid "Information" +msgstr "Information" + +#: gravatar.php:96 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
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 "Betygssättning av bilder" + +#: gravatar.php:104 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "" diff --git a/gravatar/lang/sv/strings.php b/gravatar/lang/sv/strings.php index 3ec569a7..a2137fa7 100644 --- a/gravatar/lang/sv/strings.php +++ b/gravatar/lang/sv/strings.php @@ -1,3 +1,11 @@ -strings["Submit"] = "Spara"; +strings['monster face'] = 'monsteransikte'; +$a->strings['computer generated face'] = 'datorgenererat ansikte'; +$a->strings['Information'] = 'Information'; +$a->strings['Rating of images'] = 'Betygssättning av bilder'; diff --git a/group_text/lang/sv/messages.po b/group_text/lang/sv/messages.po new file mode 100644 index 00000000..8ddc1806 --- /dev/null +++ b/group_text/lang/sv/messages.po @@ -0,0 +1,28 @@ +# ADDON group_text +# Copyright (C) +# This file is distributed under the same license as the Friendica group_text addon package. +# +# +# Translators: +# Kristoffer Grundström , 2022 +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: 2022-01-16 00:35+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\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 "Grupptext" diff --git a/group_text/lang/sv/strings.php b/group_text/lang/sv/strings.php index 3ec569a7..5d5e98db 100644 --- a/group_text/lang/sv/strings.php +++ b/group_text/lang/sv/strings.php @@ -1,3 +1,8 @@ -strings["Submit"] = "Spara"; +strings['Group Text'] = 'Grupptext'; diff --git a/ifttt/lang/sv/messages.po b/ifttt/lang/sv/messages.po new file mode 100644 index 00000000..26ae0d88 --- /dev/null +++ b/ifttt/lang/sv/messages.po @@ -0,0 +1,58 @@ +# 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: Swedish (https://www.transifex.com/Friendica/teams/12172/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ifttt.php:52 +msgid "" +"Create an account at IFTTT. Create " +"three Facebook recipes that are connected with Maker (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 "" diff --git a/ifttt/lang/sv/strings.php b/ifttt/lang/sv/strings.php new file mode 100644 index 00000000..72e9772f --- /dev/null +++ b/ifttt/lang/sv/strings.php @@ -0,0 +1,7 @@ +, 2022 +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: 2022-01-16 00:35+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\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 "Användarnamn för InsaneJournal" + +#: ijpost.php:63 +msgid "InsaneJournal password" +msgstr "Lösenord för InsaneJournal" + +#: ijpost.php:64 +msgid "Post to InsaneJournal by default" +msgstr "" + +#: ijpost.php:69 +msgid "InsaneJournal Export" +msgstr "" diff --git a/ijpost/lang/sv/strings.php b/ijpost/lang/sv/strings.php index 3ec569a7..132ff892 100644 --- a/ijpost/lang/sv/strings.php +++ b/ijpost/lang/sv/strings.php @@ -1,3 +1,9 @@ -strings["Submit"] = "Spara"; +strings['InsaneJournal username'] = 'Användarnamn för InsaneJournal'; +$a->strings['InsaneJournal password'] = 'Lösenord för InsaneJournal'; diff --git a/impressum/lang/sv/messages.po b/impressum/lang/sv/messages.po new file mode 100644 index 00000000..0eb8b906 --- /dev/null +++ b/impressum/lang/sv/messages.po @@ -0,0 +1,86 @@ +# ADDON impressum +# Copyright (C) +# This file is distributed under the same license as the Friendica impressum addon package. +# +# +# Translators: +# Hypolite Petovan , 2019 +# Kristoffer Grundström , 2022 +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: 2022-01-16 00:37+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: impressum.php:53 +msgid "Impressum" +msgstr "Intryck" + +#: impressum.php:66 impressum.php:68 impressum.php:99 +msgid "Site Owner" +msgstr "Sidans ägare" + +#: impressum.php:66 impressum.php:103 +msgid "Email Address" +msgstr "E-postadress" + +#: impressum.php:71 impressum.php:101 +msgid "Postal Address" +msgstr "Postadress" + +#: impressum.php:77 +msgid "" +"The impressum addon needs to be configured!
Please add at least the " +"owner 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 "Hur man kontaktar operatören via snigelpost. Du kan använda BB-kod här." + +#: impressum.php:102 +msgid "Notes" +msgstr "Anteckningar" + +#: 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 "Fotnotering" + +#: impressum.php:104 +msgid "Text for the footer. You can use BBCode here." +msgstr "" diff --git a/impressum/lang/sv/strings.php b/impressum/lang/sv/strings.php index 1942b0b1..0c7d419e 100644 --- a/impressum/lang/sv/strings.php +++ b/impressum/lang/sv/strings.php @@ -1,4 +1,14 @@ -strings["Settings updated."] = "Inställningarna har uppdaterats."; -$a->strings["Submit"] = "Spara"; +strings['Impressum'] = 'Intryck'; +$a->strings['Site Owner'] = 'Sidans ägare'; +$a->strings['Email Address'] = 'E-postadress'; +$a->strings['Postal Address'] = 'Postadress'; +$a->strings['How to contact the operator via snail mail. You can use BBCode here.'] = 'Hur man kontaktar operatören via snigelpost. Du kan använda BB-kod här.'; +$a->strings['Notes'] = 'Anteckningar'; +$a->strings['Footer note'] = 'Fotnotering'; diff --git a/infiniteimprobabilitydrive/lang/sv/messages.po b/infiniteimprobabilitydrive/lang/sv/messages.po new file mode 100644 index 00000000..1aa843f0 --- /dev/null +++ b/infiniteimprobabilitydrive/lang/sv/messages.po @@ -0,0 +1,23 @@ +# 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 \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: infiniteimprobabilitydrive.php:18 +msgid "Infinite Improbability Drive" +msgstr "" diff --git a/infiniteimprobabilitydrive/lang/sv/strings.php b/infiniteimprobabilitydrive/lang/sv/strings.php index ab4fa67a..72e9772f 100644 --- a/infiniteimprobabilitydrive/lang/sv/strings.php +++ b/infiniteimprobabilitydrive/lang/sv/strings.php @@ -1,2 +1,7 @@ -, 2022 +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: 2022-01-16 01:02+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\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 "Kanal(er) att ansluta till automatiskt (separerade med komma)" + +#: 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 "Populära kanaler (separerade med komma)" + +#: 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-inställningar" + +#: irc.php:60 +msgid "IRC Chatroom" +msgstr "Chatt-rum för IRC" + +#: irc.php:88 +msgid "Popular Channels" +msgstr "Populära kanaler" + +#: irc.php:132 +msgid "Save Settings" +msgstr "Spara inställningar" diff --git a/irc/lang/sv/strings.php b/irc/lang/sv/strings.php index 3ec569a7..36294e00 100644 --- a/irc/lang/sv/strings.php +++ b/irc/lang/sv/strings.php @@ -1,3 +1,13 @@ -strings["Submit"] = "Spara"; +strings['Channel(s) to auto connect (comma separated)'] = 'Kanal(er) att ansluta till automatiskt (separerade med komma)'; +$a->strings['Popular Channels (comma separated)'] = 'Populära kanaler (separerade med komma)'; +$a->strings['IRC Settings'] = 'IRC-inställningar'; +$a->strings['IRC Chatroom'] = 'Chatt-rum för IRC'; +$a->strings['Popular Channels'] = 'Populära kanaler'; +$a->strings['Save Settings'] = 'Spara inställningar'; diff --git a/js_upload/lang/sv/messages.po b/js_upload/lang/sv/messages.po new file mode 100644 index 00000000..39e52d1a --- /dev/null +++ b/js_upload/lang/sv/messages.po @@ -0,0 +1,58 @@ +# ADDON js_upload +# Copyright (C) +# This file is distributed under the same license as the Friendica js_upload addon package. +# +# +# Translators: +# Kristoffer Grundström , 2022 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-03-23 23:53-0400\n" +"PO-Revision-Date: 2022-01-16 00:41+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js_upload.php:34 +msgid "Select files for upload" +msgstr "" + +#: js_upload.php:35 +msgid "Drop files here to upload" +msgstr "Släpp filer här för att ladda upp" + +#: js_upload.php:36 +msgid "Cancel" +msgstr "Avbryt" + +#: js_upload.php:37 +msgid "Failed" +msgstr "Misslyckades" + +#: js_upload.php:215 +msgid "No files were uploaded." +msgstr "Inga filer laddades upp." + +#: js_upload.php:221 +msgid "Uploaded file is empty" +msgstr "Den uppladdade filen är tom" + +#: js_upload.php:233 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: js_upload.php:245 +#, php-format +msgid "File has an invalid extension, it should be one of %s." +msgstr "" + +#: js_upload.php:256 +msgid "Upload was cancelled, or server error encountered" +msgstr "Uppladdningen avbröts, eller så uppstod det ett server-fel" diff --git a/js_upload/lang/sv/strings.php b/js_upload/lang/sv/strings.php index c8a07875..58f76539 100644 --- a/js_upload/lang/sv/strings.php +++ b/js_upload/lang/sv/strings.php @@ -1,11 +1,13 @@ -strings["Upload a file"] = "Ladda upp en fil"; -$a->strings["Drop files here to upload"] = "Dra filer som ska laddas upp hit"; -$a->strings["Cancel"] = "Avbryt"; -$a->strings["Failed"] = "Misslyckades"; -$a->strings["No files were uploaded."] = "Inga filer laddades upp."; -$a->strings["Uploaded file is empty"] = "Den uppladdade filen är tom"; -$a->strings["Image exceeds size limit of "] = "Bilden överskrider den tillåtna storleken "; -$a->strings["File has an invalid extension, it should be one of "] = "Otillåten filnamnsändelse, det ska vara "; -$a->strings["Upload was cancelled, or server error encountered"] = "Serverfel eller avbruten uppladdning"; +strings['Drop files here to upload'] = 'Släpp filer här för att ladda upp'; +$a->strings['Cancel'] = 'Avbryt'; +$a->strings['Failed'] = 'Misslyckades'; +$a->strings['No files were uploaded.'] = 'Inga filer laddades upp.'; +$a->strings['Uploaded file is empty'] = 'Den uppladdade filen är tom'; +$a->strings['Upload was cancelled, or server error encountered'] = 'Uppladdningen avbröts, eller så uppstod det ett server-fel'; diff --git a/krynn/lang/sv/messages.po b/krynn/lang/sv/messages.po new file mode 100644 index 00000000..b03e0835 --- /dev/null +++ b/krynn/lang/sv/messages.po @@ -0,0 +1,27 @@ +# ADDON krynn +# Copyright (C) +# This file is distributed under the same license as the Friendica krynn 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: 2021-12-22 16:22+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: krynn.php:127 +msgid "Enable Krynn Addon" +msgstr "" + +#: krynn.php:132 +msgid "Krynn Settings" +msgstr "" diff --git a/krynn/lang/sv/strings.php b/krynn/lang/sv/strings.php index 3ec569a7..72e9772f 100644 --- a/krynn/lang/sv/strings.php +++ b/krynn/lang/sv/strings.php @@ -1,3 +1,7 @@ -strings["Submit"] = "Spara"; +\n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: libertree.php:39 +msgid "Post to libertree" +msgstr "" + +#: libertree.php:60 +msgid "Enable Libertree Post Addon" +msgstr "" + +#: libertree.php:61 +msgid "Libertree site URL" +msgstr "" + +#: libertree.php:62 +msgid "Libertree API token" +msgstr "" + +#: libertree.php:63 +msgid "Post to Libertree by default" +msgstr "" + +#: libertree.php:68 +msgid "Libertree Export" +msgstr "" diff --git a/libertree/lang/sv/strings.php b/libertree/lang/sv/strings.php index 3ec569a7..72e9772f 100644 --- a/libertree/lang/sv/strings.php +++ b/libertree/lang/sv/strings.php @@ -1,3 +1,7 @@ -strings["Submit"] = "Spara"; +, 2022 +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: 2022-01-16 00:42+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: libravatar.php:68 +msgid "generic profile image" +msgstr "generisk profilbild" + +#: libravatar.php:69 +msgid "random geometric pattern" +msgstr "" + +#: libravatar.php:70 +msgid "monster face" +msgstr "monsteransikte" + +#: libravatar.php:71 +msgid "computer generated face" +msgstr "datorgenererat ansikte" + +#: libravatar.php:72 +msgid "retro arcade style face" +msgstr "" + +#: libravatar.php:73 +msgid "roboter face" +msgstr "" + +#: libravatar.php:74 +msgid "retro adventure game character" +msgstr "" + +#: libravatar.php:78 +msgid "Information" +msgstr "Information" + +#: libravatar.php:78 +msgid "" +"Gravatar addon is installed. Please disable the Gravatar addon.
The " +"Libravatar addon will fall back to Gravatar if nothing was found at " +"Libravatar." +msgstr "" + +#: libravatar.php:83 +msgid "Save Settings" +msgstr "" + +#: libravatar.php:84 +msgid "Default avatar image" +msgstr "" + +#: libravatar.php:84 +msgid "Select default avatar image if none was found. See README" +msgstr "" diff --git a/libravatar/lang/sv/strings.php b/libravatar/lang/sv/strings.php index 3ec569a7..5e2e590c 100644 --- a/libravatar/lang/sv/strings.php +++ b/libravatar/lang/sv/strings.php @@ -1,3 +1,11 @@ -strings["Submit"] = "Spara"; +strings['generic profile image'] = 'generisk profilbild'; +$a->strings['monster face'] = 'monsteransikte'; +$a->strings['computer generated face'] = 'datorgenererat ansikte'; +$a->strings['Information'] = 'Information'; diff --git a/ljpost/lang/sv/messages.po b/ljpost/lang/sv/messages.po new file mode 100644 index 00000000..21e1eeb7 --- /dev/null +++ b/ljpost/lang/sv/messages.po @@ -0,0 +1,44 @@ +# ADDON ljpost +# Copyright (C) +# This file is distributed under the same license as the Friendica ljpost addon package. +# +# +# Translators: +# Kristoffer Grundström , 2022 +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: 2022-01-16 00:43+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ljpost.php:43 +msgid "Post to LiveJournal" +msgstr "" + +#: ljpost.php:63 +msgid "Enable LiveJournal Post Addon" +msgstr "" + +#: ljpost.php:64 +msgid "LiveJournal username" +msgstr "Användarnamn för LiveJournal" + +#: ljpost.php:65 +msgid "LiveJournal password" +msgstr "Lösenord för LiveJournal" + +#: ljpost.php:66 +msgid "Post to LiveJournal by default" +msgstr "" + +#: ljpost.php:71 +msgid "LiveJournal Export" +msgstr "" diff --git a/ljpost/lang/sv/strings.php b/ljpost/lang/sv/strings.php index 3ec569a7..b8b84b75 100644 --- a/ljpost/lang/sv/strings.php +++ b/ljpost/lang/sv/strings.php @@ -1,3 +1,9 @@ -strings["Submit"] = "Spara"; +strings['LiveJournal username'] = 'Användarnamn för LiveJournal'; +$a->strings['LiveJournal password'] = 'Lösenord för LiveJournal'; diff --git a/mailstream/lang/sv/messages.po b/mailstream/lang/sv/messages.po new file mode 100644 index 00000000..75f6e24a --- /dev/null +++ b/mailstream/lang/sv/messages.po @@ -0,0 +1,98 @@ +# ADDON mailstream +# Copyright (C) +# This file is distributed under the same license as the Friendica mailstream addon package. +# +# +# Translators: +# Kristoffer Grundström , 2022 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-11-21 19:15-0500\n" +"PO-Revision-Date: 2022-01-16 00:44+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: mailstream.php:77 +msgid "From Address" +msgstr "Från adress" + +#: mailstream.php:79 +msgid "Email address that stream items will appear to be from." +msgstr "" + +#: mailstream.php:82 +msgid "Save Settings" +msgstr "Spara inställningar" + +#: mailstream.php:301 +msgid "Re:" +msgstr "Re:" + +#: mailstream.php:314 mailstream.php:317 +msgid "Friendica post" +msgstr "Friendica-inlägg" + +#: mailstream.php:320 +msgid "Diaspora post" +msgstr "Diaspora-inlägg" + +#: mailstream.php:330 +msgid "Feed item" +msgstr "" + +#: mailstream.php:333 +msgid "Email" +msgstr "E-post" + +#: mailstream.php:335 +msgid "Friendica Item" +msgstr "Friendica-objekt" + +#: mailstream.php:404 +msgid "Upstream" +msgstr "Uppströms" + +#: mailstream.php:405 +msgid "Local" +msgstr "Lokal" + +#: mailstream.php:481 +msgid "Enabled" +msgstr "Aktiverad" + +#: mailstream.php:486 +msgid "Email Address" +msgstr "E-postadress" + +#: mailstream.php:488 +msgid "Leave blank to use your account email address" +msgstr "Lämna tom för att använda ditt kontos e-postadress" + +#: mailstream.php:492 +msgid "Exclude Likes" +msgstr "" + +#: mailstream.php:494 +msgid "Check this to omit mailing \"Like\" notifications" +msgstr "" + +#: mailstream.php:498 +msgid "Attach Images" +msgstr "" + +#: mailstream.php:500 +msgid "" +"Download images in posts and attach them to the email. Useful for reading " +"email while offline." +msgstr "" + +#: mailstream.php:507 +msgid "Mail Stream Settings" +msgstr "" diff --git a/mailstream/lang/sv/strings.php b/mailstream/lang/sv/strings.php new file mode 100644 index 00000000..6e0503c2 --- /dev/null +++ b/mailstream/lang/sv/strings.php @@ -0,0 +1,19 @@ +strings['From Address'] = 'Från adress'; +$a->strings['Save Settings'] = 'Spara inställningar'; +$a->strings['Re:'] = 'Re:'; +$a->strings['Friendica post'] = 'Friendica-inlägg'; +$a->strings['Diaspora post'] = 'Diaspora-inlägg'; +$a->strings['Email'] = 'E-post'; +$a->strings['Friendica Item'] = 'Friendica-objekt'; +$a->strings['Upstream'] = 'Uppströms'; +$a->strings['Local'] = 'Lokal'; +$a->strings['Enabled'] = 'Aktiverad'; +$a->strings['Email Address'] = 'E-postadress'; +$a->strings['Leave blank to use your account email address'] = 'Lämna tom för att använda ditt kontos e-postadress'; diff --git a/mathjax/lang/sv/messages.po b/mathjax/lang/sv/messages.po new file mode 100644 index 00000000..8180d9ba --- /dev/null +++ b/mathjax/lang/sv/messages.po @@ -0,0 +1,32 @@ +# ADDON mathjax +# Copyright (C) +# This file is distributed under the same license as the Friendica mathjax addon package. +# +# +# Translators: +# Hypolite Petovan , 2019 +# Kristoffer Grundström , 2022 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-11-21 19:15-0500\n" +"PO-Revision-Date: 2022-01-16 00:45+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: mathjax.php:42 +msgid "" +"The MathJax addon renders mathematical formulae written using the LaTeX " +"syntax surrounded by the usual $$ or an eqnarray block in the postings of " +"your wall,network tab and private mail." +msgstr "" + +#: mathjax.php:43 +msgid "Use the MathJax renderer" +msgstr "Använd renderaren MathJax" diff --git a/mathjax/lang/sv/strings.php b/mathjax/lang/sv/strings.php index 18cbdda8..f92d3125 100644 --- a/mathjax/lang/sv/strings.php +++ b/mathjax/lang/sv/strings.php @@ -1,5 +1,8 @@ -strings["Settings"] = "Inställningar"; -$a->strings["Submit"] = "Spara"; -$a->strings["Settings updated."] = "Inställningarna har uppdaterats."; +strings['Use the MathJax renderer'] = 'Använd renderaren MathJax'; diff --git a/morechoice/lang/sv/messages.po b/morechoice/lang/sv/messages.po new file mode 100644 index 00000000..8166e7a6 --- /dev/null +++ b/morechoice/lang/sv/messages.po @@ -0,0 +1,338 @@ +# ADDON morechoice +# Copyright (C) +# This file is distributed under the same license as the Friendica morechoice 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: 2018-08-07 18:18+0000\n" +"Language-Team: Swedish (https://www.transifex.com/Friendica/teams/12172/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: morechoice.php:22 +msgid "Androgyne" +msgstr "" + +#: morechoice.php:23 +msgid "Bear" +msgstr "" + +#: morechoice.php:24 +msgid "Bigender" +msgstr "" + +#: morechoice.php:25 +msgid "Cross dresser" +msgstr "" + +#: morechoice.php:26 +msgid "Drag queen" +msgstr "" + +#: morechoice.php:27 +msgid "Eunuch" +msgstr "" + +#: morechoice.php:28 +msgid "Faux queen" +msgstr "" + +#: morechoice.php:29 +msgid "Gender fluid" +msgstr "" + +#: morechoice.php:30 +msgid "Kathoey" +msgstr "" + +#: morechoice.php:31 +msgid "Lady" +msgstr "" + +#: morechoice.php:32 +msgid "Lipstick lesbian" +msgstr "" + +#: morechoice.php:33 +msgid "Metrosexual" +msgstr "" + +#: morechoice.php:34 +msgid "Monk" +msgstr "" + +#: morechoice.php:35 +msgid "Nun" +msgstr "" + +#: morechoice.php:36 +msgid "Soft butch" +msgstr "" + +#: morechoice.php:37 +msgid "Stone femme" +msgstr "" + +#: morechoice.php:38 +msgid "Tomboy" +msgstr "" + +#: morechoice.php:39 +msgid "Transman" +msgstr "" + +#: morechoice.php:40 +msgid "Transwoman" +msgstr "" + +#: morechoice.php:41 +msgid "Transvesti" +msgstr "" + +#: morechoice.php:42 +msgid "Trigender" +msgstr "" + +#: morechoice.php:43 +msgid "Can't remember" +msgstr "" + +#: morechoice.php:44 +msgid "Hard to tell these days" +msgstr "" + +#: morechoice.php:48 +msgid "Girls with big tits" +msgstr "" + +#: morechoice.php:49 +msgid "Millionaires" +msgstr "" + +#: morechoice.php:50 +msgid "Guys with big schlongs" +msgstr "" + +#: morechoice.php:51 +msgid "Easy women" +msgstr "" + +#: morechoice.php:52 +msgid "People with impaired mobility" +msgstr "" + +#: morechoice.php:53 +msgid "Amputees" +msgstr "" + +#: morechoice.php:54 +msgid "Statues, mannequins and immobility" +msgstr "" + +#: morechoice.php:55 +msgid "Pain" +msgstr "" + +#: morechoice.php:56 +msgid "Trans men" +msgstr "" + +#: morechoice.php:57 +msgid "Older women" +msgstr "" + +#: morechoice.php:58 +msgid "Asphyxiation" +msgstr "" + +#: morechoice.php:59 +msgid "In public" +msgstr "" + +#: morechoice.php:60 +msgid "In danger" +msgstr "" + +#: morechoice.php:61 +msgid "Pretending to be male" +msgstr "" + +#: morechoice.php:62 +msgid "Pretending to be female" +msgstr "" + +#: morechoice.php:63 +msgid "Breats" +msgstr "" + +#: morechoice.php:64 +msgid "Scat" +msgstr "" + +#: morechoice.php:65 +msgid "Crying" +msgstr "" + +#: morechoice.php:66 +msgid "Nappies/Diapers" +msgstr "" + +#: morechoice.php:67 +msgid "Trees" +msgstr "" + +#: morechoice.php:68 +msgid "Vomit" +msgstr "" + +#: morechoice.php:69 +msgid "Murder" +msgstr "" + +#: morechoice.php:70 +msgid "Fat people" +msgstr "" + +#: morechoice.php:71 +msgid "Feet" +msgstr "" + +#: morechoice.php:72 +msgid "Covered in insects" +msgstr "" + +#: morechoice.php:73 +msgid "Turning a human being into furniture" +msgstr "" + +#: morechoice.php:74 +msgid "Elderly people" +msgstr "" + +#: morechoice.php:75 +msgid "Transgender people" +msgstr "" + +#: morechoice.php:76 +msgid "Criminals" +msgstr "" + +#: morechoice.php:77 +msgid "Stealing" +msgstr "" + +#: morechoice.php:78 +msgid "Breast milk" +msgstr "" + +#: morechoice.php:79 +msgid "Immersing genitals in liquids" +msgstr "" + +#: morechoice.php:80 +msgid "Giants" +msgstr "" + +#: morechoice.php:81 +msgid "Masochism" +msgstr "" + +#: morechoice.php:82 +msgid "Cars" +msgstr "" + +#: morechoice.php:83 +msgid "Menstruation" +msgstr "" + +#: morechoice.php:84 +msgid "Mucus" +msgstr "" + +#: morechoice.php:85 +msgid "Obscene language" +msgstr "" + +#: morechoice.php:86 +msgid "Noses" +msgstr "" + +#: morechoice.php:87 +msgid "Navels" +msgstr "" + +#: morechoice.php:88 +msgid "Corpses" +msgstr "" + +#: morechoice.php:89 +msgid "Smells" +msgstr "" + +#: morechoice.php:90 +msgid "Buttocks" +msgstr "" + +#: morechoice.php:91 +msgid "Nonliving objects" +msgstr "" + +#: morechoice.php:92 +msgid "Sleeping people" +msgstr "" + +#: morechoice.php:93 +msgid "Urination" +msgstr "" + +#: morechoice.php:94 +msgid "Eating people" +msgstr "" + +#: morechoice.php:95 +msgid "Being eaten" +msgstr "" + +#: morechoice.php:96 +msgid "Animals" +msgstr "" + +#: morechoice.php:97 +msgid "I'd rather just have some chocolate" +msgstr "" + +#: morechoice.php:101 +msgid "Married to my job" +msgstr "" + +#: morechoice.php:102 +msgid "Polygamist" +msgstr "" + +#: morechoice.php:103 +msgid "Half married" +msgstr "" + +#: morechoice.php:104 +msgid "Living in the past" +msgstr "" + +#: morechoice.php:105 +msgid "Pretending to be over my ex" +msgstr "" + +#: morechoice.php:106 +msgid "Hurt in the past" +msgstr "" + +#: morechoice.php:107 +msgid "Wallowing in self-pity" +msgstr "" diff --git a/morechoice/lang/sv/strings.php b/morechoice/lang/sv/strings.php new file mode 100644 index 00000000..72e9772f --- /dev/null +++ b/morechoice/lang/sv/strings.php @@ -0,0 +1,7 @@ +, 2022 +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: 2022-01-16 00:48+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: morepokes.php:19 +msgid "bitchslap" +msgstr "" + +#: morepokes.php:19 +msgid "bitchslapped" +msgstr "" + +#: morepokes.php:20 +msgid "shag" +msgstr "" + +#: morepokes.php:20 +msgid "shagged" +msgstr "" + +#: morepokes.php:21 +msgid "do something obscenely biological to" +msgstr "gör något biologiskt obscent med" + +#: morepokes.php:21 +msgid "did something obscenely biological to" +msgstr "" + +#: morepokes.php:22 +msgid "point out the poke feature to" +msgstr "" + +#: morepokes.php:22 +msgid "pointed out the poke feature to" +msgstr "" + +#: morepokes.php:23 +msgid "declare undying love for" +msgstr "" + +#: morepokes.php:23 +msgid "declared undying love for" +msgstr "" + +#: morepokes.php:24 +msgid "patent" +msgstr "patent" + +#: morepokes.php:24 +msgid "patented" +msgstr "patenterad" + +#: morepokes.php:25 +msgid "stroke beard" +msgstr "stryk skägget" + +#: morepokes.php:25 +msgid "stroked their beard at" +msgstr "" + +#: morepokes.php:26 +msgid "" +"bemoan the declining standards of modern secondary and tertiary education to" +msgstr "" + +#: morepokes.php:26 +msgid "" +"bemoans the declining standards of modern secondary and tertiary education " +"to" +msgstr "" + +#: morepokes.php:27 +msgid "hug" +msgstr "krama" + +#: morepokes.php:27 +msgid "hugged" +msgstr "kramad" + +#: morepokes.php:28 +msgid "kiss" +msgstr "pussa" + +#: morepokes.php:28 +msgid "kissed" +msgstr "pussad" + +#: morepokes.php:29 +msgid "raise eyebrows at" +msgstr "höj ögonbryn vid" + +#: morepokes.php:29 +msgid "raised their eyebrows at" +msgstr "" + +#: morepokes.php:30 +msgid "insult" +msgstr "förolämpa" + +#: morepokes.php:30 +msgid "insulted" +msgstr "förolämpad" + +#: morepokes.php:31 +msgid "praise" +msgstr "hylla" + +#: morepokes.php:31 +msgid "praised" +msgstr "hyllad" + +#: morepokes.php:32 +msgid "be dubious of" +msgstr "" + +#: morepokes.php:32 +msgid "was dubious of" +msgstr "" + +#: morepokes.php:33 +msgid "eat" +msgstr "ät" + +#: morepokes.php:33 +msgid "ate" +msgstr "åt" + +#: morepokes.php:34 +msgid "giggle and fawn at" +msgstr "" + +#: morepokes.php:34 +msgid "giggled and fawned at" +msgstr "" + +#: morepokes.php:35 +msgid "doubt" +msgstr "tveka" + +#: morepokes.php:35 +msgid "doubted" +msgstr "tvekade" + +#: morepokes.php:36 +msgid "glare" +msgstr "" + +#: morepokes.php:36 +msgid "glared at" +msgstr "" diff --git a/morepokes/lang/sv/strings.php b/morepokes/lang/sv/strings.php index ab4fa67a..159f427a 100644 --- a/morepokes/lang/sv/strings.php +++ b/morepokes/lang/sv/strings.php @@ -1,2 +1,24 @@ -strings['do something obscenely biological to'] = 'gör något biologiskt obscent med'; +$a->strings['patent'] = 'patent'; +$a->strings['patented'] = 'patenterad'; +$a->strings['stroke beard'] = 'stryk skägget'; +$a->strings['hug'] = 'krama'; +$a->strings['hugged'] = 'kramad'; +$a->strings['kiss'] = 'pussa'; +$a->strings['kissed'] = 'pussad'; +$a->strings['raise eyebrows at'] = 'höj ögonbryn vid'; +$a->strings['insult'] = 'förolämpa'; +$a->strings['insulted'] = 'förolämpad'; +$a->strings['praise'] = 'hylla'; +$a->strings['praised'] = 'hyllad'; +$a->strings['eat'] = 'ät'; +$a->strings['ate'] = 'åt'; +$a->strings['doubt'] = 'tveka'; +$a->strings['doubted'] = 'tvekade'; diff --git a/newmemberwidget/lang/sv/messages.po b/newmemberwidget/lang/sv/messages.po new file mode 100644 index 00000000..0d6171b2 --- /dev/null +++ b/newmemberwidget/lang/sv/messages.po @@ -0,0 +1,76 @@ +# ADDON newmemberwidget +# Copyright (C) +# This file is distributed under the same license as the Friendica newmemberwidget addon package. +# +# +# Translators: +# Kristoffer Grundström , 2022 +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: 2022-01-16 00:48+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: newmemberwidget.php:29 +msgid "New Member" +msgstr "Ny medlem" + +#: newmemberwidget.php:30 +msgid "Tips for New Members" +msgstr "Tips för nya medlemmar" + +#: newmemberwidget.php:33 +msgid "Global Support Forum" +msgstr "" + +#: newmemberwidget.php:37 +msgid "Local Support Forum" +msgstr "Lokalt hjälpforum" + +#: newmemberwidget.php:65 +msgid "Save Settings" +msgstr "Spara inställningar" + +#: newmemberwidget.php:66 +msgid "Message" +msgstr "Meddelande" + +#: newmemberwidget.php:66 +msgid "Your message for new members. You can use bbcode here." +msgstr "" + +#: newmemberwidget.php:67 +msgid "Add a link to global support forum" +msgstr "" + +#: newmemberwidget.php:67 +msgid "Should a link to the global support forum be displayed?" +msgstr "" + +#: newmemberwidget.php:68 +msgid "Add a link to the local support forum" +msgstr "" + +#: newmemberwidget.php:68 +msgid "" +"If you have a local support forum and want to have a link displayed in the " +"widget, check this box." +msgstr "" + +#: newmemberwidget.php:69 +msgid "Name of the local support group" +msgstr "" + +#: newmemberwidget.php:69 +msgid "" +"If you checked the above, specify the nickname of the local support" +" group here (i.e. helpers)" +msgstr "" diff --git a/newmemberwidget/lang/sv/strings.php b/newmemberwidget/lang/sv/strings.php new file mode 100644 index 00000000..38292306 --- /dev/null +++ b/newmemberwidget/lang/sv/strings.php @@ -0,0 +1,12 @@ +strings['New Member'] = 'Ny medlem'; +$a->strings['Tips for New Members'] = 'Tips för nya medlemmar'; +$a->strings['Local Support Forum'] = 'Lokalt hjälpforum'; +$a->strings['Save Settings'] = 'Spara inställningar'; +$a->strings['Message'] = 'Meddelande'; diff --git a/notifyall/lang/sv/messages.po b/notifyall/lang/sv/messages.po new file mode 100644 index 00000000..cda04485 --- /dev/null +++ b/notifyall/lang/sv/messages.po @@ -0,0 +1,56 @@ +# ADDON notifyall +# Copyright (C) +# This file is distributed under the same license as the Friendica notifyall 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: 2016-08-14 19:29+0000\n" +"Language-Team: Swedish (https://www.transifex.com/Friendica/teams/12172/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: NotifyAllEmail.php:40 +#, php-format +msgid "%s Administrator" +msgstr "" + +#: NotifyAllEmail.php:42 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: notifyall.php:22 +msgid "Send email to all members" +msgstr "" + +#: notifyall.php:49 +msgid "No recipients found." +msgstr "" + +#: notifyall.php:59 +msgid "Emails sent" +msgstr "" + +#: notifyall.php:69 +msgid "Send email to all members of this Friendica instance." +msgstr "" + +#: notifyall.php:74 +msgid "Message subject" +msgstr "" + +#: notifyall.php:75 +msgid "Test mode (only send to administrator)" +msgstr "" + +#: notifyall.php:76 +msgid "Submit" +msgstr "" diff --git a/notifyall/lang/sv/strings.php b/notifyall/lang/sv/strings.php new file mode 100644 index 00000000..72e9772f --- /dev/null +++ b/notifyall/lang/sv/strings.php @@ -0,0 +1,7 @@ +, 2022 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-11-21 19:15-0500\n" +"PO-Revision-Date: 2022-01-16 00:49+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: nsfw.php:65 +msgid "" +"This addon searches for specified words/text in posts and collapses them. It" +" can be used to filter content tagged with for instance #NSFW that may be " +"deemed inappropriate at certain times or places, such as being at work. It " +"is also useful for hiding irrelevant or annoying content from direct view." +msgstr "" + +#: nsfw.php:66 +msgid "Enable Content filter" +msgstr "Aktivera innehållsfilter" + +#: nsfw.php:67 +msgid "Comma separated list of keywords to hide" +msgstr "" + +#: nsfw.php:67 +msgid "Use /expression/ to provide regular expressions" +msgstr "" + +#: nsfw.php:72 +msgid "Content Filter (NSFW and more)" +msgstr "" + +#: nsfw.php:140 +#, php-format +msgid "Filtered tag: %s" +msgstr "" + +#: nsfw.php:142 +#, php-format +msgid "Filtered word: %s" +msgstr "" diff --git a/nsfw/lang/sv/strings.php b/nsfw/lang/sv/strings.php index 3ec569a7..fec01347 100644 --- a/nsfw/lang/sv/strings.php +++ b/nsfw/lang/sv/strings.php @@ -1,3 +1,8 @@ -strings["Submit"] = "Spara"; +strings['Enable Content filter'] = 'Aktivera innehållsfilter'; diff --git a/numfriends/lang/sv/messages.po b/numfriends/lang/sv/messages.po new file mode 100644 index 00000000..c2646b29 --- /dev/null +++ b/numfriends/lang/sv/messages.po @@ -0,0 +1,27 @@ +# ADDON numfriends +# Copyright (C) +# This file is distributed under the same license as the Friendica numfriends addon package. +# +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-11-21 19:15-0500\n" +"PO-Revision-Date: 2021-12-22 15:27+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: numfriends.php:55 +msgid "How many contacts to display on profile sidebar" +msgstr "" + +#: numfriends.php:60 +msgid "Numfriends Settings" +msgstr "" diff --git a/numfriends/lang/sv/strings.php b/numfriends/lang/sv/strings.php index 3ec569a7..72e9772f 100644 --- a/numfriends/lang/sv/strings.php +++ b/numfriends/lang/sv/strings.php @@ -1,3 +1,7 @@ -strings["Submit"] = "Spara"; +, 2019 +# Kristoffer Grundström , 2022 +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: 2022-01-16 00:49+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: openstreetmap.php:167 +msgid "View Larger" +msgstr "" + +#: openstreetmap.php:194 +msgid "Submit" +msgstr "Spara" + +#: openstreetmap.php:195 +msgid "Tile Server URL" +msgstr "" + +#: openstreetmap.php:195 +msgid "" +"A list of public tile servers" +msgstr "" + +#: openstreetmap.php:196 +msgid "Nominatim (reverse geocoding) Server URL" +msgstr "" + +#: openstreetmap.php:196 +msgid "" +"A list of Nominatim servers" +msgstr "" + +#: openstreetmap.php:197 +msgid "Default zoom" +msgstr "Standardzoom" + +#: openstreetmap.php:197 +msgid "" +"The default zoom level. (1:world, 18:highest, also depends on tile server)" +msgstr "" + +#: openstreetmap.php:198 +msgid "Include marker on map" +msgstr "" + +#: openstreetmap.php:198 +msgid "Include a marker on the map." +msgstr "" diff --git a/openstreetmap/lang/sv/strings.php b/openstreetmap/lang/sv/strings.php index dcd4e821..5ecb9e95 100644 --- a/openstreetmap/lang/sv/strings.php +++ b/openstreetmap/lang/sv/strings.php @@ -1,4 +1,9 @@ -strings["Submit"] = "Spara"; -$a->strings["Settings updated."] = "Inställningarna har uppdaterats."; +strings['Submit'] = 'Spara'; +$a->strings['Default zoom'] = 'Standardzoom'; diff --git a/pageheader/lang/sv/messages.po b/pageheader/lang/sv/messages.po new file mode 100644 index 00000000..22b437f9 --- /dev/null +++ b/pageheader/lang/sv/messages.po @@ -0,0 +1,37 @@ +# ADDON pageheader +# Copyright (C) +# This file is distributed under the same license as the Friendica pageheader 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: 2021-02-01 20:21+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: pageheader.php:36 +msgid "\"pageheader\" Settings" +msgstr "" + +#: pageheader.php:37 +msgid "Message" +msgstr "" + +#: pageheader.php:37 +msgid "" +"Message to display on every page on this server (or put a pageheader.html " +"file in your docroot)" +msgstr "" + +#: pageheader.php:38 +msgid "Save Settings" +msgstr "" diff --git a/pageheader/lang/sv/strings.php b/pageheader/lang/sv/strings.php index 3ec569a7..72e9772f 100644 --- a/pageheader/lang/sv/strings.php +++ b/pageheader/lang/sv/strings.php @@ -1,3 +1,7 @@ -strings["Submit"] = "Spara"; +, 2019 +# Kristoffer Grundström , 2022 +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: 2022-01-16 01:06+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: piwik.php:87 +msgid "" +"This website is tracked using the Matomo" +" analytics tool." +msgstr "" + +#: piwik.php:90 +#, php-format +msgid "" +"If you do not want that your visits are logged in this way you can set a cookie to prevent Matomo / Piwik from tracking further " +"visits of the site (opt-out)." +msgstr "" + +#: piwik.php:97 +msgid "Save Settings" +msgstr "Spara inställningar" + +#: piwik.php:98 +msgid "Matomo (Piwik) Base URL" +msgstr "" + +#: piwik.php:98 +msgid "" +"Absolute path to your Matomo (Piwik) installation. (without protocol " +"(http/s), with trailing slash)" +msgstr "" + +#: piwik.php:99 +msgid "Site ID" +msgstr "" + +#: piwik.php:100 +msgid "Show opt-out cookie link?" +msgstr "" + +#: piwik.php:101 +msgid "Asynchronous tracking" +msgstr "" diff --git a/piwik/lang/sv/strings.php b/piwik/lang/sv/strings.php index dcd4e821..21e4e59f 100644 --- a/piwik/lang/sv/strings.php +++ b/piwik/lang/sv/strings.php @@ -1,4 +1,8 @@ -strings["Submit"] = "Spara"; -$a->strings["Settings updated."] = "Inställningarna har uppdaterats."; +strings['Save Settings'] = 'Spara inställningar'; diff --git a/planets/lang/sv/messages.po b/planets/lang/sv/messages.po new file mode 100644 index 00000000..4d959f63 --- /dev/null +++ b/planets/lang/sv/messages.po @@ -0,0 +1,27 @@ +# ADDON planets +# Copyright (C) +# This file is distributed under the same license as the Friendica planets addon package. +# +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-11-21 19:15-0500\n" +"PO-Revision-Date: 2021-12-22 16:22+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: planets.php:126 +msgid "Enable Planets Addon" +msgstr "" + +#: planets.php:131 +msgid "Planets Settings" +msgstr "" diff --git a/planets/lang/sv/strings.php b/planets/lang/sv/strings.php index 3ec569a7..72e9772f 100644 --- a/planets/lang/sv/strings.php +++ b/planets/lang/sv/strings.php @@ -1,3 +1,7 @@ -strings["Submit"] = "Spara"; +, 2022 +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: 2022-01-16 00:50+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: public_server.php:64 +msgid "Administrator" +msgstr "Administratör" + +#: public_server.php:118 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "" + +#: public_server.php:119 +msgid "Your Friendica account is about to expire." +msgstr "Ditt Friendica-konto är på väg att sluta gälla." + +#: public_server.php:120 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days" +msgstr "" + +#: public_server.php:158 +msgid "Save Settings" +msgstr "" + +#: public_server.php:160 +msgid "Set any of these options to 0 to deactivate it." +msgstr "" diff --git a/public_server/lang/sv/strings.php b/public_server/lang/sv/strings.php index ea2177b9..dae623b9 100644 --- a/public_server/lang/sv/strings.php +++ b/public_server/lang/sv/strings.php @@ -1,3 +1,9 @@ -strings["Administrator"] = "Admin"; +strings['Administrator'] = 'Administratör'; +$a->strings['Your Friendica account is about to expire.'] = 'Ditt Friendica-konto är på väg att sluta gälla.'; diff --git a/pumpio/lang/sv/messages.po b/pumpio/lang/sv/messages.po new file mode 100644 index 00000000..a5e332ec --- /dev/null +++ b/pumpio/lang/sv/messages.po @@ -0,0 +1,95 @@ +# ADDON pumpio +# Copyright (C) +# This file is distributed under the same license as the Friendica pumpio addon package. +# +# +# Translators: +# Hypolite Petovan , 2019 +# Kristoffer Grundström , 2022 +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: 2022-01-16 00:51+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: pumpio.php:57 +msgid "Permission denied." +msgstr "Åtkomst nekad." + +#: pumpio.php:152 +#, php-format +msgid "Unable to register the client at the pump.io server '%s'." +msgstr "" + +#: pumpio.php:192 +msgid "You are now authenticated to pumpio." +msgstr "Du är nu autentiserad till pumpio." + +#: pumpio.php:193 +msgid "return to the connector page" +msgstr "" + +#: pumpio.php:213 +msgid "Post to pumpio" +msgstr "" + +#: pumpio.php:237 +msgid "Save Settings" +msgstr "Spara inställningar" + +#: pumpio.php:239 +msgid "Delete this preset" +msgstr "" + +#: pumpio.php:245 +msgid "Authenticate your pump.io connection" +msgstr "Autentisera din pum.io-anslutning" + +#: pumpio.php:252 +msgid "Pump.io servername (without \"http://\" or \"https://\" )" +msgstr "" + +#: pumpio.php:253 +msgid "Pump.io username (without the servername)" +msgstr "" + +#: pumpio.php:254 +msgid "Import the remote timeline" +msgstr "" + +#: pumpio.php:255 +msgid "Enable Pump.io Post Addon" +msgstr "" + +#: pumpio.php:256 +msgid "Post to Pump.io by default" +msgstr "" + +#: pumpio.php:257 +msgid "Should posts be public?" +msgstr "Bör inlägg vara publika?" + +#: pumpio.php:258 +msgid "Mirror all public posts" +msgstr "Spegla alla publika inlägg" + +#: pumpio.php:263 +msgid "Pump.io Import/Export/Mirror" +msgstr "" + +#: pumpio.php:920 +msgid "status" +msgstr "status" + +#: pumpio.php:924 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s gillar %2$s's %3$s" diff --git a/pumpio/lang/sv/strings.php b/pumpio/lang/sv/strings.php new file mode 100644 index 00000000..185d8795 --- /dev/null +++ b/pumpio/lang/sv/strings.php @@ -0,0 +1,15 @@ +strings['Permission denied.'] = 'Åtkomst nekad.'; +$a->strings['You are now authenticated to pumpio.'] = 'Du är nu autentiserad till pumpio.'; +$a->strings['Save Settings'] = 'Spara inställningar'; +$a->strings['Authenticate your pump.io connection'] = 'Autentisera din pum.io-anslutning'; +$a->strings['Should posts be public?'] = 'Bör inlägg vara publika?'; +$a->strings['Mirror all public posts'] = 'Spegla alla publika inlägg'; +$a->strings['status'] = 'status'; +$a->strings['%1$s likes %2$s\'s %3$s'] = '%1$s gillar %2$s\'s %3$s'; diff --git a/qcomment/lang/sv/messages.po b/qcomment/lang/sv/messages.po new file mode 100644 index 00000000..ba5ede7b --- /dev/null +++ b/qcomment/lang/sv/messages.po @@ -0,0 +1,46 @@ +# ADDON qcomment +# Copyright (C) +# This file is distributed under the same license as the Friendica qcomment addon package. +# +# +# Translators: +# Kristoffer Grundström , 2022 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2022-01-16 00:51+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: qcomment.php:45 +msgid ":-)" +msgstr ":-)" + +#: qcomment.php:45 +msgid ":-(" +msgstr ":-(" + +#: qcomment.php:45 +msgid "lol" +msgstr "lol" + +#: qcomment.php:49 +msgid "" +"Quick comments are found near comment boxes, sometimes hidden. Click them to" +" provide simple replies." +msgstr "" + +#: qcomment.php:50 +msgid "Enter quick comments, one per line" +msgstr "" + +#: qcomment.php:55 +msgid "Quick Comment Settings" +msgstr "" diff --git a/qcomment/lang/sv/strings.php b/qcomment/lang/sv/strings.php index 3ec569a7..faa250cb 100644 --- a/qcomment/lang/sv/strings.php +++ b/qcomment/lang/sv/strings.php @@ -1,3 +1,10 @@ -strings["Submit"] = "Spara"; +strings[':-)'] = ':-)'; +$a->strings[':-('] = ':-('; +$a->strings['lol'] = 'lol'; diff --git a/randplace/lang/sv/messages.po b/randplace/lang/sv/messages.po new file mode 100644 index 00000000..d4cd8cd7 --- /dev/null +++ b/randplace/lang/sv/messages.po @@ -0,0 +1,27 @@ +# ADDON randplace +# Copyright (C) +# This file is distributed under the same license as the Friendica randplace addon package. +# +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2021-12-22 17:21+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: randplace.php:161 +msgid "Enable Randplace Addon" +msgstr "" + +#: randplace.php:166 +msgid "Randplace Settings" +msgstr "" diff --git a/randplace/lang/sv/strings.php b/randplace/lang/sv/strings.php index c47a51ca..72e9772f 100644 --- a/randplace/lang/sv/strings.php +++ b/randplace/lang/sv/strings.php @@ -1,5 +1,7 @@ -strings["Randplace Settings"] = "Randplace Settings"; -$a->strings["Enable Randplace Addon"] = "Enable Randplace Addon"; -$a->strings["Submit"] = "Spara"; +\n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: rendertime.php:30 +msgid "Save Settings" +msgstr "" + +#: rendertime.php:31 +msgid "Show callstack" +msgstr "" + +#: rendertime.php:31 +msgid "" +"Show detailed performance measures in the callstack. When deactivated, only " +"the summary will be displayed." +msgstr "" + +#: rendertime.php:32 +msgid "Minimal time" +msgstr "" + +#: rendertime.php:32 +msgid "Minimal time that an activity needs to be listed in the callstack." +msgstr "" + +#: rendertime.php:57 +#, php-format +msgid "" +"Database: %s/%s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: " +"%s, Total: %s" +msgstr "" + +#: rendertime.php:74 +#, php-format +msgid "Class-Init: %s, Boot: %s, Init: %s, Content: %s, Other: %s, Total: %s" +msgstr "" diff --git a/rendertime/lang/sv/strings.php b/rendertime/lang/sv/strings.php index ab4fa67a..72e9772f 100644 --- a/rendertime/lang/sv/strings.php +++ b/rendertime/lang/sv/strings.php @@ -1,2 +1,7 @@ -, 2022 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2022-01-16 00:52+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: showmore.php:37 +msgid "Enable Show More" +msgstr "" + +#: showmore.php:38 +msgid "Cutting posts after how many characters" +msgstr "" + +#: showmore.php:43 +msgid "\"Show more\" Settings" +msgstr "" + +#: showmore.php:119 +msgid "show more" +msgstr "visa mer" diff --git a/showmore/lang/sv/strings.php b/showmore/lang/sv/strings.php index 3ec569a7..e02cda42 100644 --- a/showmore/lang/sv/strings.php +++ b/showmore/lang/sv/strings.php @@ -1,3 +1,8 @@ -strings["Submit"] = "Spara"; +strings['show more'] = 'visa mer'; diff --git a/smileybutton/lang/sv/messages.po b/smileybutton/lang/sv/messages.po new file mode 100644 index 00000000..1d46a4cf --- /dev/null +++ b/smileybutton/lang/sv/messages.po @@ -0,0 +1,36 @@ +# ADDON smileybutton +# Copyright (C) +# This file is distributed under the same license as the Friendica smileybutton addon package. +# +# +# Translators: +# Kristoffer Grundström , 2022 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-06-23 14:45+0200\n" +"PO-Revision-Date: 2022-01-16 00:52+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: smileybutton.php:269 +msgid "Smileybutton settings" +msgstr "" + +#: smileybutton.php:272 +msgid "You can hide the button and show the smilies directly." +msgstr "" + +#: smileybutton.php:274 +msgid "Hide the button" +msgstr "Göm knappen" + +#: smileybutton.php:281 +msgid "Save Settings" +msgstr "Spara inställningar" diff --git a/smileybutton/lang/sv/strings.php b/smileybutton/lang/sv/strings.php new file mode 100644 index 00000000..783808c6 --- /dev/null +++ b/smileybutton/lang/sv/strings.php @@ -0,0 +1,9 @@ +strings['Hide the button'] = 'Göm knappen'; +$a->strings['Save Settings'] = 'Spara inställningar'; diff --git a/startpage/lang/sv/messages.po b/startpage/lang/sv/messages.po new file mode 100644 index 00000000..4790e37a --- /dev/null +++ b/startpage/lang/sv/messages.po @@ -0,0 +1,31 @@ +# ADDON startpage +# Copyright (C) +# This file is distributed under the same license as the Friendica startpage addon package. +# +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2021-12-22 15:27+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: startpage.php:70 +msgid "Home page to load after login - leave blank for profile wall" +msgstr "" + +#: startpage.php:70 +msgid "Examples: \"network\" or \"notifications/system\"" +msgstr "" + +#: startpage.php:75 +msgid "Startpage" +msgstr "" diff --git a/startpage/lang/sv/strings.php b/startpage/lang/sv/strings.php index 3ec569a7..72e9772f 100644 --- a/startpage/lang/sv/strings.php +++ b/startpage/lang/sv/strings.php @@ -1,3 +1,7 @@ -strings["Submit"] = "Spara"; +, 2022 +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: 2022-01-16 01:06+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: statusnet.php:97 +msgid "Post to GNU Social" +msgstr "" + +#: statusnet.php:148 +msgid "" +"Please contact your site administrator.
The provided API URL is not " +"valid." +msgstr "" + +#: statusnet.php:176 +msgid "We could not contact the GNU Social API with the Path you entered." +msgstr "" + +#: statusnet.php:243 statusnet.php:656 +msgid "Save Settings" +msgstr "Spara inställningar" + +#: statusnet.php:255 +#, php-format +msgid "Currently connected to: %s" +msgstr "" + +#: statusnet.php:260 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to GNU Social will lead the visitor to a blank page " +"informing the visitor that the access to your profile has been restricted." +msgstr "" + +#: statusnet.php:263 +msgid "Clear OAuth configuration" +msgstr "" + +#: statusnet.php:275 +msgid "Cancel GNU Social Connection" +msgstr "" + +#: statusnet.php:283 +msgid "Globally Available GNU Social OAuthKeys" +msgstr "" + +#: statusnet.php:284 +msgid "" +"There are preconfigured OAuth key pairs for some GNU Social servers " +"available. If you are using one of them, please use these credentials. If " +"not feel free to connect to any other GNU Social instance (see below)." +msgstr "" + +#: statusnet.php:285 +msgid "Provide your own OAuth Credentials" +msgstr "" + +#: statusnet.php:286 +msgid "" +"No consumer key pair for GNU Social found. Register your Friendica Account " +"as a desktop application on your GNU Social account, copy the consumer key " +"pair here and enter the API base root.
Before you register your own " +"OAuth key pair ask the administrator if there is already a key pair for this" +" Friendica installation at your favorite GNU Social installation." +msgstr "" + +#: statusnet.php:287 +msgid "" +"To connect to your GNU Social account click the button below to get a " +"security code from GNU Social which you have to copy into the input box " +"below and submit the form. Only your public posts will be " +"posted to GNU Social." +msgstr "" + +#: statusnet.php:288 +msgid "Log in with GNU Social" +msgstr "Logga in med GNU Social" + +#: statusnet.php:289 +msgid "Cancel Connection Process" +msgstr "" + +#: statusnet.php:290 +#, php-format +msgid "Current GNU Social API is: %s" +msgstr "" + +#: statusnet.php:307 +msgid "OAuth Consumer Key" +msgstr "" + +#: statusnet.php:308 +msgid "OAuth Consumer Secret" +msgstr "" + +#: statusnet.php:310 statusnet.php:636 statusnet.php:648 +msgid "Base API Path (remember the trailing /)" +msgstr "" + +#: statusnet.php:311 +msgid "Copy the security code from GNU Social here" +msgstr "" + +#: statusnet.php:313 +msgid "Allow posting to GNU Social" +msgstr "" + +#: statusnet.php:313 +msgid "" +"If enabled all your public postings can be posted to the " +"associated GNU Social account. You can choose to do so by default (here) or " +"for every posting separately in the posting options when writing the entry." +msgstr "" + +#: statusnet.php:314 +msgid "Post to GNU Social by default" +msgstr "" + +#: statusnet.php:315 +msgid "Mirror all public posts" +msgstr "" + +#: statusnet.php:316 +msgid "Automatically create contacts" +msgstr "" + +#: statusnet.php:317 +msgid "Import the remote timeline" +msgstr "" + +#: statusnet.php:318 +msgid "Disabled" +msgstr "" + +#: statusnet.php:319 +msgid "Full Timeline" +msgstr "Fullständig tidslinje" + +#: statusnet.php:320 +msgid "Only Mentions" +msgstr "Endast omnämningar" + +#: statusnet.php:326 +msgid "GNU Social Import/Export/Mirror" +msgstr "" + +#: statusnet.php:647 +msgid "Site name" +msgstr "Namn på sidan" + +#: statusnet.php:649 +msgid "Consumer Secret" +msgstr "Kundhemlighet" + +#: statusnet.php:650 +msgid "Consumer Key" +msgstr "Kundnyckel" diff --git a/statusnet/lang/sv/strings.php b/statusnet/lang/sv/strings.php index 9b3fac7f..e1f41128 100644 --- a/statusnet/lang/sv/strings.php +++ b/statusnet/lang/sv/strings.php @@ -1,14 +1,14 @@ -strings["Post to StatusNet"] = "Lägg in på StatusNet"; -$a->strings["StatusNet Posting Settings"] = "Inställningar för inlägg på StatusNet"; -$a->strings["Submit"] = "Spara"; -$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = "No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."; -$a->strings["OAuth Consumer Key"] = "OAuth Consumer Key"; -$a->strings["OAuth Consumer Secret"] = "OAuth Consumer Secret"; -$a->strings["Base API Path (remember the trailing /)"] = "Base API Path (remember the trailing /)"; -$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your public posts will be posted to StatusNet."] = "To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your public posts will be posted to StatusNet."; -$a->strings["Log in with StatusNet"] = "Logga in med StatusNet"; -$a->strings["Copy the security code from StatusNet here"] = "Ange säkerhetskoden från StatusNet här"; -$a->strings["Currently connected to: "] = "Ansluten till: "; -$a->strings["Clear OAuth configuration"] = "Clear OAuth configuration"; +strings['Save Settings'] = 'Spara inställningar'; +$a->strings['Log in with GNU Social'] = 'Logga in med GNU Social'; +$a->strings['Full Timeline'] = 'Fullständig tidslinje'; +$a->strings['Only Mentions'] = 'Endast omnämningar'; +$a->strings['Site name'] = 'Namn på sidan'; +$a->strings['Consumer Secret'] = 'Kundhemlighet'; +$a->strings['Consumer Key'] = 'Kundnyckel'; diff --git a/superblock/lang/sv/messages.po b/superblock/lang/sv/messages.po new file mode 100644 index 00000000..68e81842 --- /dev/null +++ b/superblock/lang/sv/messages.po @@ -0,0 +1,31 @@ +# ADDON superblock +# Copyright (C) +# This file is distributed under the same license as the Friendica superblock addon package. +# +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2021-12-22 16:24+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: superblock.php:35 +msgid "Comma separated profile URLs to block" +msgstr "" + +#: superblock.php:40 +msgid "Superblock" +msgstr "" + +#: superblock.php:129 +msgid "Block Completely" +msgstr "" diff --git a/superblock/lang/sv/strings.php b/superblock/lang/sv/strings.php index 3ec569a7..72e9772f 100644 --- a/superblock/lang/sv/strings.php +++ b/superblock/lang/sv/strings.php @@ -1,3 +1,7 @@ -strings["Submit"] = "Spara"; +, 2022 +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: 2022-01-16 00:53+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: testdrive.php:64 +msgid "Administrator" +msgstr "Administratör" + +#: testdrive.php:89 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "" + +#: testdrive.php:90 +msgid "Your Friendica test account is about to expire." +msgstr "" + +#: testdrive.php:91 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at %s/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at https://friendi.ca." +msgstr "" diff --git a/testdrive/lang/sv/strings.php b/testdrive/lang/sv/strings.php index ea2177b9..efbef890 100644 --- a/testdrive/lang/sv/strings.php +++ b/testdrive/lang/sv/strings.php @@ -1,3 +1,8 @@ -strings["Administrator"] = "Admin"; +strings['Administrator'] = 'Administratör'; diff --git a/tictac/lang/sv/messages.po b/tictac/lang/sv/messages.po new file mode 100644 index 00000000..a96d4b7e --- /dev/null +++ b/tictac/lang/sv/messages.po @@ -0,0 +1,74 @@ +# ADDON tictac +# Copyright (C) +# This file is distributed under the same license as the Friendica tictac addon package. +# +# +# Translators: +# Kristoffer Grundström , 2022 +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: 2022-01-16 00:54+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: tictac.php:16 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "" + +#: tictac.php:49 +msgid "3D Tic-Tac-Toe" +msgstr "" + +#: tictac.php:54 +msgid "New game" +msgstr "Nytt spel" + +#: tictac.php:55 +msgid "New game with handicap" +msgstr "Nytt spel med handikapp" + +#: tictac.php:56 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " +msgstr "" + +#: tictac.php:57 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." +msgstr "" + +#: tictac.php:59 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." +msgstr "" + +#: tictac.php:178 +msgid "You go first..." +msgstr "Börja först du..." + +#: tictac.php:183 +msgid "I'm going first this time..." +msgstr "Jag börjar först den här gången..." + +#: tictac.php:189 +msgid "You won!" +msgstr "Du vann!" + +#: tictac.php:195 tictac.php:220 +msgid "\"Cat\" game!" +msgstr "\"Katt\"-spel!" + +#: tictac.php:218 +msgid "I won!" +msgstr "Jag vann!" diff --git a/tictac/lang/sv/strings.php b/tictac/lang/sv/strings.php index 65f09512..8f3b51db 100644 --- a/tictac/lang/sv/strings.php +++ b/tictac/lang/sv/strings.php @@ -1,14 +1,14 @@ -strings["Three Dimensional Tic-Tac-Toe"] = "Tredimensionellt luffarschack"; -$a->strings["3D Tic-Tac-Toe"] = "3D-luffarschack"; -$a->strings["New game"] = "Ny spelomgång"; -$a->strings["New game with handicap"] = "Ny spelomgång med handikapp"; -$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Det tredimensionella luffarschacket är precis som vanligt luffarschack förutom att det spelas i flera nivåer samtidigt. "; -$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "Här är det tre nivåer. Man vinner om man får tre i rad på vilken nivå som helst, eller uppåt, nedåt eller diagonalt på flera nivåer."; -$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Om man spelar med handikapp så stängs mittenpositionen på mittennivån av eftersom spelare som väljer den positionen ofta får övertaget."; -$a->strings["You go first..."] = "Du börjar..."; -$a->strings["I'm going first this time..."] = "Jag börjar den här gången..."; -$a->strings["You won!"] = "Du vann!"; -$a->strings["\"Cat\" game!"] = "\"Cat\" game!"; -$a->strings["I won!"] = "Jag vann!"; +strings['New game'] = 'Nytt spel'; +$a->strings['New game with handicap'] = 'Nytt spel med handikapp'; +$a->strings['You go first...'] = 'Börja först du...'; +$a->strings['I\'m going first this time...'] = 'Jag börjar först den här gången...'; +$a->strings['You won!'] = 'Du vann!'; +$a->strings['"Cat" game!'] = '"Katt"-spel!'; +$a->strings['I won!'] = 'Jag vann!'; diff --git a/tumblr/lang/sv/messages.po b/tumblr/lang/sv/messages.po new file mode 100644 index 00000000..fe631007 --- /dev/null +++ b/tumblr/lang/sv/messages.po @@ -0,0 +1,73 @@ +# ADDON tumblr +# Copyright (C) +# This file is distributed under the same license as the Friendica tumblr addon package. +# +# +# Translators: +# Hypolite Petovan , 2019 +# Kristoffer Grundström , 2022 +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: 2022-01-16 00:55+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: tumblr.php:39 +msgid "Permission denied." +msgstr "Åtkomst nekad." + +#: tumblr.php:69 +msgid "Save Settings" +msgstr "" + +#: tumblr.php:71 +msgid "Consumer Key" +msgstr "" + +#: tumblr.php:72 +msgid "Consumer Secret" +msgstr "" + +#: tumblr.php:177 +msgid "You are now authenticated to tumblr." +msgstr "Du är nu autentiserad till tumblr." + +#: tumblr.php:178 +msgid "return to the connector page" +msgstr "" + +#: tumblr.php:194 +msgid "Post to Tumblr" +msgstr "" + +#: tumblr.php:225 +msgid "Post to page:" +msgstr "" + +#: tumblr.php:231 +msgid "(Re-)Authenticate your tumblr page" +msgstr "" + +#: tumblr.php:232 +msgid "You are not authenticated to tumblr" +msgstr "Du är inte autentiserad till tumblr" + +#: tumblr.php:237 +msgid "Enable Tumblr Post Addon" +msgstr "" + +#: tumblr.php:238 +msgid "Post to Tumblr by default" +msgstr "" + +#: tumblr.php:244 +msgid "Tumblr Export" +msgstr "" diff --git a/tumblr/lang/sv/strings.php b/tumblr/lang/sv/strings.php index 266dcdbf..4d39d3c2 100644 --- a/tumblr/lang/sv/strings.php +++ b/tumblr/lang/sv/strings.php @@ -1,4 +1,10 @@ -strings["Permission denied."] = "Åtkomst nekad."; -$a->strings["Submit"] = "Spara"; +strings['Permission denied.'] = 'Åtkomst nekad.'; +$a->strings['You are now authenticated to tumblr.'] = 'Du är nu autentiserad till tumblr.'; +$a->strings['You are not authenticated to tumblr'] = 'Du är inte autentiserad till tumblr'; diff --git a/twitter/lang/sv/messages.po b/twitter/lang/sv/messages.po new file mode 100644 index 00000000..ccbfe7a7 --- /dev/null +++ b/twitter/lang/sv/messages.po @@ -0,0 +1,147 @@ +# ADDON twitter +# Copyright (C) +# This file is distributed under the same license as the Friendica twitter addon package. +# +# +# Translators: +# Hypolite Petovan , 2019 +# Kristoffer Grundström , 2022 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-11-27 10:25-0500\n" +"PO-Revision-Date: 2022-01-16 00:56+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: twitter.php:213 +msgid "Post to Twitter" +msgstr "" + +#: twitter.php:258 +msgid "" +"You submitted an empty PIN, please Sign In with Twitter again to get a new " +"one." +msgstr "" + +#: twitter.php:321 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "" + +#: twitter.php:334 +msgid "" +"At this Friendica instance the Twitter addon was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input" +" box below and submit the form. Only your public posts will" +" be posted to Twitter." +msgstr "" + +#: twitter.php:335 +msgid "Log in with Twitter" +msgstr "Logga in med Twitter" + +#: twitter.php:337 +msgid "Copy the PIN from Twitter here" +msgstr "Kopiera PIN-koden från Twitter här" + +#: twitter.php:345 twitter.php:388 +msgid "An error occured: " +msgstr "" + +#: twitter.php:359 +#, php-format +msgid "" +"Currently connected to: %1$s" +msgstr "" + +#: twitter.php:365 +msgid "" +"Note: Due to your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to Twitter will lead the visitor to a blank page informing " +"the visitor that the access to your profile has been restricted." +msgstr "" + +#: twitter.php:372 +msgid "Invalid Twitter info" +msgstr "" + +#: twitter.php:373 +msgid "Disconnect" +msgstr "" + +#: twitter.php:378 +msgid "Allow posting to Twitter" +msgstr "" + +#: twitter.php:378 +msgid "" +"If enabled all your public postings can be posted to the " +"associated Twitter account. You can choose to do so by default (here) or for" +" every posting separately in the posting options when writing the entry." +msgstr "" + +#: twitter.php:379 +msgid "Send public postings to Twitter by default" +msgstr "" + +#: twitter.php:380 +msgid "Mirror all posts from twitter that are no replies" +msgstr "" + +#: twitter.php:381 +msgid "Import the remote timeline" +msgstr "" + +#: twitter.php:382 +msgid "Automatically create contacts" +msgstr "" + +#: twitter.php:382 +msgid "" +"This will automatically create a contact in Friendica as soon as you receive" +" a message from an existing contact via the Twitter network. If you do not " +"enable this, you need to manually add those Twitter contacts in Friendica " +"from whom you would like to see posts here." +msgstr "" + +#: twitter.php:395 +msgid "Twitter Import/Export/Mirror" +msgstr "" + +#: twitter.php:547 +msgid "" +"Please connect a Twitter account in your Social Network settings to import " +"Twitter posts." +msgstr "" + +#: twitter.php:554 +msgid "Twitter post not found." +msgstr "" + +#: twitter.php:914 +msgid "Save Settings" +msgstr "" + +#: twitter.php:916 +msgid "Consumer key" +msgstr "Kundnyckel" + +#: twitter.php:917 +msgid "Consumer secret" +msgstr "Kundhemlighet" + +#: twitter.php:1113 +#, php-format +msgid "%s on Twitter" +msgstr "" diff --git a/twitter/lang/sv/strings.php b/twitter/lang/sv/strings.php index 3f9d77c8..13200174 100644 --- a/twitter/lang/sv/strings.php +++ b/twitter/lang/sv/strings.php @@ -1,11 +1,11 @@ -strings["Post to Twitter"] = "Lägg in på Twitter"; -$a->strings["Twitter Posting Settings"] = "Inställningar för inlägg på Twitter"; -$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "No consumer key pair for Twitter found. Please contact your site administrator."; -$a->strings["At this Friendica instance the Twitter addon was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = "At this Friendica instance the Twitter addon was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."; -$a->strings["Copy the PIN from Twitter here"] = "Ange PIN-koden från Twitter här"; -$a->strings["Submit"] = "Spara"; -$a->strings["Currently connected to: "] = "Ansluten till: "; -$a->strings["Clear OAuth configuration"] = "Clear OAuth configuration"; -$a->strings["Settings updated."] = "Inställningarna har uppdaterats."; +strings['Log in with Twitter'] = 'Logga in med Twitter'; +$a->strings['Copy the PIN from Twitter here'] = 'Kopiera PIN-koden från Twitter här'; +$a->strings['Consumer key'] = 'Kundnyckel'; +$a->strings['Consumer secret'] = 'Kundhemlighet'; diff --git a/viewsrc/lang/sv/messages.po b/viewsrc/lang/sv/messages.po new file mode 100644 index 00000000..91100ad2 --- /dev/null +++ b/viewsrc/lang/sv/messages.po @@ -0,0 +1,22 @@ +# ADDON viewsrc +# Copyright (C) +# This file is distributed under the same license as the Friendica viewsrc addon package. +# +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-02-01 18:16+0100\n" +"PO-Revision-Date: 2018-03-20 07:26+0000\n" +"Language-Team: Swedish (https://www.transifex.com/Friendica/teams/12172/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: viewsrc.php:49 +msgid "View Source" +msgstr "" diff --git a/viewsrc/lang/sv/strings.php b/viewsrc/lang/sv/strings.php index ab4fa67a..72e9772f 100644 --- a/viewsrc/lang/sv/strings.php +++ b/viewsrc/lang/sv/strings.php @@ -1,2 +1,7 @@ -, 2019 +# Kristoffer Grundström , 2022 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-02-01 18:16+0100\n" +"PO-Revision-Date: 2022-01-16 00:57+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: webrtc.php:19 +msgid "WebRTC Videochat" +msgstr "" + +#: webrtc.php:25 +msgid "Save Settings" +msgstr "Spara inställningar" + +#: webrtc.php:26 +msgid "WebRTC Base URL" +msgstr "" + +#: webrtc.php:26 +msgid "" +"Page your users will create a WebRTC chat room on. For example you could use" +" https://live.mayfirst.org ." +msgstr "" + +#: webrtc.php:45 +msgid "Video Chat" +msgstr "Videochatt" + +#: webrtc.php:46 +msgid "" +"WebRTC is a video and audio conferencing tool that works with Firefox " +"(version 21 and above) and Chrome/Chromium (version 25 and above). Just " +"create a new chat room and send the link to someone you want to chat with." +msgstr "" + +#: webrtc.php:48 +msgid "" +"Please contact your friendica admin and send a reminder to configure the " +"WebRTC addon." +msgstr "" diff --git a/webrtc/lang/sv/strings.php b/webrtc/lang/sv/strings.php new file mode 100644 index 00000000..da4b974a --- /dev/null +++ b/webrtc/lang/sv/strings.php @@ -0,0 +1,9 @@ +strings['Save Settings'] = 'Spara inställningar'; +$a->strings['Video Chat'] = 'Videochatt'; diff --git a/windowsphonepush/lang/sv/messages.po b/windowsphonepush/lang/sv/messages.po new file mode 100644 index 00000000..d8da9c51 --- /dev/null +++ b/windowsphonepush/lang/sv/messages.po @@ -0,0 +1,35 @@ +# ADDON windowsphonepush +# Copyright (C) +# This file is distributed under the same license as the Friendica windowsphonepush addon package. +# +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2021-12-22 16:18+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: windowsphonepush.php:102 +msgid "Enable WindowsPhonePush Addon" +msgstr "" + +#: windowsphonepush.php:103 +msgid "Push text of new item" +msgstr "" + +#: windowsphonepush.php:104 +msgid "Device URL" +msgstr "" + +#: windowsphonepush.php:109 +msgid "WindowsPhonePush Settings" +msgstr "" diff --git a/windowsphonepush/lang/sv/strings.php b/windowsphonepush/lang/sv/strings.php new file mode 100644 index 00000000..72e9772f --- /dev/null +++ b/windowsphonepush/lang/sv/strings.php @@ -0,0 +1,7 @@ +\n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: wppost.php:41 +msgid "Post to Wordpress" +msgstr "" + +#: wppost.php:65 +msgid "Enable Wordpress Post Addon" +msgstr "" + +#: wppost.php:66 +msgid "Wordpress username" +msgstr "" + +#: wppost.php:67 +msgid "Wordpress password" +msgstr "" + +#: wppost.php:68 +msgid "WordPress API URL" +msgstr "" + +#: wppost.php:69 +msgid "Post to Wordpress by default" +msgstr "" + +#: wppost.php:70 +msgid "Provide a backlink to the Friendica post" +msgstr "" + +#: wppost.php:71 +msgid "" +"Text for the backlink, e.g. Read the original post and comment stream on " +"Friendica." +msgstr "" + +#: wppost.php:72 +msgid "Don't post messages that are too short" +msgstr "" + +#: wppost.php:77 +msgid "Wordpress Export" +msgstr "" + +#: wppost.php:182 +msgid "Read the orig­i­nal post and com­ment stream on Friendica" +msgstr "" + +#: wppost.php:240 +msgid "Post from Friendica" +msgstr "" diff --git a/wppost/lang/sv/strings.php b/wppost/lang/sv/strings.php index 3ec569a7..72e9772f 100644 --- a/wppost/lang/sv/strings.php +++ b/wppost/lang/sv/strings.php @@ -1,3 +1,7 @@ -strings["Submit"] = "Spara"; + Date: Sat, 22 Jan 2022 18:52:30 +0100 Subject: [PATCH 7/8] =?UTF-8?q?HU=20addon=20translation=20update=20THX=20B?= =?UTF-8?q?al=C3=A1zs=20=C3=9Ar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- advancedcontentfilter/lang/hu/messages.po | 78 +++--- advancedcontentfilter/lang/hu/strings.php | 2 +- blackout/lang/hu/messages.po | 2 +- blockem/lang/hu/messages.po | 32 +-- blockem/lang/hu/strings.php | 5 +- buglink/lang/hu/messages.po | 6 +- catavatar/lang/hu/messages.po | 42 +-- catavatar/lang/hu/strings.php | 8 +- cookienotice/lang/hu/messages.po | 32 +-- cookienotice/lang/hu/strings.php | 4 - curweather/lang/hu/messages.po | 50 ++-- curweather/lang/hu/strings.php | 6 +- diaspora/lang/hu/messages.po | 54 ++-- diaspora/lang/hu/strings.php | 5 +- dwpost/lang/hu/messages.po | 32 +-- dwpost/lang/hu/strings.php | 9 +- forumdirectory/lang/hu/messages.po | 2 +- fromapp/lang/hu/messages.po | 22 +- fromapp/lang/hu/strings.php | 4 +- geonames/lang/hu/messages.po | 18 +- geonames/lang/hu/strings.php | 3 +- gnot/lang/hu/messages.po | 28 +- gnot/lang/hu/strings.php | 5 +- gravatar/lang/hu/messages.po | 2 +- group_text/lang/hu/messages.po | 16 +- group_text/lang/hu/strings.php | 3 +- ifttt/lang/hu/messages.po | 36 ++- ifttt/lang/hu/strings.php | 6 +- ijpost/lang/hu/messages.po | 24 +- ijpost/lang/hu/strings.php | 3 +- impressum/lang/hu/messages.po | 2 +- .../lang/hu/messages.po | 2 +- irc/lang/hu/messages.po | 34 +-- irc/lang/hu/strings.php | 4 +- js_upload/lang/hu/messages.po | 2 +- krynn/lang/hu/messages.po | 20 +- krynn/lang/hu/strings.php | 4 +- langfilter/lang/hu/messages.po | 32 +-- langfilter/lang/hu/strings.php | 2 +- libertree/lang/hu/messages.po | 30 +-- libertree/lang/hu/strings.php | 5 +- libravatar/lang/hu/messages.po | 2 +- ljpost/lang/hu/messages.po | 24 +- ljpost/lang/hu/strings.php | 3 +- mailstream/lang/hu/messages.po | 42 +-- mathjax/lang/hu/messages.po | 12 +- mathjax/lang/hu/strings.php | 1 - morepokes/lang/hu/messages.po | 166 ++++++++++++ morepokes/lang/hu/strings.php | 7 + newmemberwidget/lang/hu/messages.po | 2 +- nsfw/lang/hu/messages.po | 28 +- nsfw/lang/hu/strings.php | 3 +- numfriends/lang/hu/messages.po | 16 +- numfriends/lang/hu/strings.php | 3 +- openstreetmap/lang/hu/messages.po | 2 +- pageheader/lang/hu/messages.po | 2 +- piwik/lang/hu/messages.po | 2 +- planets/lang/hu/messages.po | 20 +- planets/lang/hu/strings.php | 4 +- public_server/lang/hu/messages.po | 2 +- pumpio/lang/hu/messages.po | 100 ++++---- pumpio/lang/hu/strings.php | 14 +- qcomment/lang/hu/messages.po | 24 +- qcomment/lang/hu/strings.php | 3 +- randplace/lang/hu/messages.po | 16 +- randplace/lang/hu/strings.php | 3 +- rendertime/lang/hu/messages.po | 30 ++- rendertime/lang/hu/strings.php | 5 + securemail/lang/hu/messages.po | 36 +-- securemail/lang/hu/strings.php | 6 +- showmore/lang/hu/messages.po | 24 +- showmore/lang/hu/strings.php | 5 +- smileybutton/lang/hu/messages.po | 2 +- startpage/lang/hu/messages.po | 22 +- startpage/lang/hu/strings.php | 5 +- statusnet/lang/hu/messages.po | 242 +++++++++--------- statusnet/lang/hu/strings.php | 29 ++- superblock/lang/hu/messages.po | 20 +- superblock/lang/hu/strings.php | 3 +- testdrive/lang/hu/messages.po | 2 +- tictac/lang/hu/messages.po | 2 +- tumblr/lang/hu/messages.po | 42 +-- tumblr/lang/hu/strings.php | 6 +- twitter/lang/hu/messages.po | 93 +++---- twitter/lang/hu/strings.php | 9 +- viewsrc/lang/hu/messages.po | 4 +- webrtc/lang/hu/messages.po | 2 +- windowsphonepush/lang/hu/messages.po | 28 +- windowsphonepush/lang/hu/strings.php | 5 +- wppost/lang/hu/messages.po | 44 ++-- wppost/lang/hu/strings.php | 11 +- 91 files changed, 956 insertions(+), 898 deletions(-) create mode 100644 morepokes/lang/hu/messages.po create mode 100644 morepokes/lang/hu/strings.php diff --git a/advancedcontentfilter/lang/hu/messages.po b/advancedcontentfilter/lang/hu/messages.po index 94f31c71..c80fda32 100644 --- a/advancedcontentfilter/lang/hu/messages.po +++ b/advancedcontentfilter/lang/hu/messages.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-01 18:15+0100\n" +"POT-Creation-Date: 2021-11-21 19:13-0500\n" "PO-Revision-Date: 2018-05-24 06:41+0000\n" "Last-Translator: Balázs Úr, 2021\n" "Language-Team: Hungarian (https://www.transifex.com/Friendica/teams/12172/hu/)\n" @@ -21,32 +21,28 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/middlewares.php:49 -msgid "Method not found" -msgstr "A módszer nem található" - -#: advancedcontentfilter.php:136 +#: advancedcontentfilter.php:154 #, php-format msgid "Filtered by rule: %s" msgstr "Szűrve a szabály alapján: %s" -#: advancedcontentfilter.php:150 advancedcontentfilter.php:207 +#: advancedcontentfilter.php:170 advancedcontentfilter.php:225 msgid "Advanced Content Filter" msgstr "Speciális tartalomszűrő" -#: advancedcontentfilter.php:206 +#: advancedcontentfilter.php:224 msgid "Back to Addon Settings" msgstr "Vissza a bővítménybeállításokhoz" -#: advancedcontentfilter.php:208 +#: advancedcontentfilter.php:226 msgid "Add a Rule" msgstr "Szabály hozzáadása" -#: advancedcontentfilter.php:209 +#: advancedcontentfilter.php:227 msgid "Help" msgstr "Súgó" -#: advancedcontentfilter.php:210 +#: 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. " @@ -58,11 +54,11 @@ msgstr "" "adataira lesz illesztve. Az elérhető műveletek és változók teljes " "hivatkozásáért nézze meg a súgóoldalt." -#: advancedcontentfilter.php:211 +#: advancedcontentfilter.php:229 msgid "Your rules" msgstr "Az Ön szabályai" -#: advancedcontentfilter.php:212 +#: advancedcontentfilter.php:230 msgid "" "You have no rules yet! Start adding one by clicking on the button above next" " to the title." @@ -70,98 +66,102 @@ msgstr "" "Még nincsenek szabályai! Kezdje meg egy szabály hozzáadását a cím mellett " "lévő fenti gombra kattintva." -#: advancedcontentfilter.php:213 +#: advancedcontentfilter.php:231 msgid "Disabled" msgstr "Letiltva" -#: advancedcontentfilter.php:214 +#: advancedcontentfilter.php:232 msgid "Enabled" msgstr "Engedélyezve" -#: advancedcontentfilter.php:215 +#: advancedcontentfilter.php:233 msgid "Disable this rule" msgstr "A szabály letiltása" -#: advancedcontentfilter.php:216 +#: advancedcontentfilter.php:234 msgid "Enable this rule" msgstr "A szabály engedélyezése" -#: advancedcontentfilter.php:217 +#: advancedcontentfilter.php:235 msgid "Edit this rule" msgstr "A szabály szerkesztése" -#: advancedcontentfilter.php:218 +#: advancedcontentfilter.php:236 msgid "Edit the rule" msgstr "A szabály szerkesztése" -#: advancedcontentfilter.php:219 +#: advancedcontentfilter.php:237 msgid "Save this rule" msgstr "A szabály mentése" -#: advancedcontentfilter.php:220 +#: advancedcontentfilter.php:238 msgid "Delete this rule" msgstr "A szabály törlése" -#: advancedcontentfilter.php:221 +#: advancedcontentfilter.php:239 msgid "Rule" msgstr "Szabály" -#: advancedcontentfilter.php:222 +#: advancedcontentfilter.php:240 msgid "Close" msgstr "Bezárás" -#: advancedcontentfilter.php:223 +#: advancedcontentfilter.php:241 msgid "Add new rule" msgstr "Új szabály hozzáadása" -#: advancedcontentfilter.php:224 +#: advancedcontentfilter.php:242 msgid "Rule Name" msgstr "Szabály neve" -#: advancedcontentfilter.php:225 +#: advancedcontentfilter.php:243 msgid "Rule Expression" msgstr "Szabály kifejezése" -#: advancedcontentfilter.php:226 +#: advancedcontentfilter.php:244 msgid "Cancel" msgstr "Mégse" -#: advancedcontentfilter.php:293 advancedcontentfilter.php:304 -#: advancedcontentfilter.php:315 advancedcontentfilter.php:349 -#: advancedcontentfilter.php:378 advancedcontentfilter.php:399 +#: advancedcontentfilter.php:312 advancedcontentfilter.php:323 +#: advancedcontentfilter.php:334 advancedcontentfilter.php:370 +#: advancedcontentfilter.php:401 advancedcontentfilter.php:424 msgid "You must be logged in to use this method" msgstr "Bejelentkezve kell lennie a módszer használatához" -#: advancedcontentfilter.php:319 advancedcontentfilter.php:353 -#: advancedcontentfilter.php:382 +#: advancedcontentfilter.php:338 advancedcontentfilter.php:374 +#: advancedcontentfilter.php:405 msgid "Invalid form security token, please refresh the page." msgstr "Érvénytelen űrlap biztonsági token. Frissítse az oldalt." -#: advancedcontentfilter.php:331 +#: advancedcontentfilter.php:350 msgid "The rule name and expression are required." msgstr "A szabály neve és kifejezése kötelező." -#: advancedcontentfilter.php:343 +#: advancedcontentfilter.php:364 msgid "Rule successfully added" msgstr "A szabály sikeresen hozzáadva" -#: advancedcontentfilter.php:357 advancedcontentfilter.php:386 +#: advancedcontentfilter.php:378 advancedcontentfilter.php:409 msgid "Rule doesn't exist or doesn't belong to you." msgstr "A szabály nem létezik vagy nem Önhöz tatozik." -#: advancedcontentfilter.php:372 +#: advancedcontentfilter.php:395 msgid "Rule successfully updated" msgstr "A szabály sikeresen frissítve" -#: advancedcontentfilter.php:393 +#: advancedcontentfilter.php:418 msgid "Rule successfully deleted" msgstr "A szabály sikeresen törölve" -#: advancedcontentfilter.php:403 +#: advancedcontentfilter.php:428 msgid "Missing argument: guid." msgstr "Hiányzó argumentum: guid." -#: advancedcontentfilter.php:411 +#: advancedcontentfilter.php:436 #, php-format msgid "Unknown post with guid: %s" msgstr "Ismeretlen bejegyzés a következő guid azonosítóval: %s" + +#: src/middlewares.php:49 +msgid "Method not found" +msgstr "A módszer nem található" diff --git a/advancedcontentfilter/lang/hu/strings.php b/advancedcontentfilter/lang/hu/strings.php index e6ac307b..07d7467c 100644 --- a/advancedcontentfilter/lang/hu/strings.php +++ b/advancedcontentfilter/lang/hu/strings.php @@ -5,7 +5,6 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Method not found'] = 'A módszer nem található'; $a->strings['Filtered by rule: %s'] = 'Szűrve a szabály alapján: %s'; $a->strings['Advanced Content Filter'] = 'Speciális tartalomszűrő'; $a->strings['Back to Addon Settings'] = 'Vissza a bővítménybeállításokhoz'; @@ -37,3 +36,4 @@ $a->strings['Rule successfully updated'] = 'A szabály sikeresen frissítve'; $a->strings['Rule successfully deleted'] = 'A szabály sikeresen törölve'; $a->strings['Missing argument: guid.'] = 'Hiányzó argumentum: guid.'; $a->strings['Unknown post with guid: %s'] = 'Ismeretlen bejegyzés a következő guid azonosítóval: %s'; +$a->strings['Method not found'] = 'A módszer nem található'; diff --git a/blackout/lang/hu/messages.po b/blackout/lang/hu/messages.po index e4bdf707..f645576f 100644 --- a/blackout/lang/hu/messages.po +++ b/blackout/lang/hu/messages.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-01 18:15+0100\n" -"PO-Revision-Date: 2021-02-27 01:05+0000\n" +"PO-Revision-Date: 2021-12-23 11:12+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" diff --git a/blockem/lang/hu/messages.po b/blockem/lang/hu/messages.po index c1b748a4..13ad5944 100644 --- a/blockem/lang/hu/messages.po +++ b/blockem/lang/hu/messages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-08-17 10:23+0200\n" -"PO-Revision-Date: 2020-12-23 00:39+0000\n" +"POT-Creation-Date: 2021-11-21 19:13-0500\n" +"PO-Revision-Date: 2021-12-23 11:13+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,41 +19,29 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blockem.php:54 blockem.php:58 -msgid "Blockem" -msgstr "Blockem" - -#: blockem.php:62 +#: blockem.php:39 msgid "" "Hides user's content by collapsing posts. Also replaces their avatar with " "generic image." msgstr "Elrejti a felhasználók tartalmát a bejegyzések összecsukásával. Ezenkívül lecseréli a profilképeiket egy általános képre." -#: blockem.php:63 +#: blockem.php:40 msgid "Comma separated profile URLS:" msgstr "Profil URL-ek vesszővel elválasztva:" -#: blockem.php:67 -msgid "Save Settings" -msgstr "Beállítások mentése" +#: blockem.php:45 +msgid "Blockem" +msgstr "Blockem" -#: blockem.php:81 -msgid "BLOCKEM Settings saved." -msgstr "A Blockem beállításai elmentve." - -#: blockem.php:143 +#: blockem.php:120 #, php-format msgid "Filtered user: %s" msgstr "Kiszűrt felhasználó: %s" -#: blockem.php:202 +#: blockem.php:183 msgid "Unblock Author" msgstr "Szerző tiltásának feloldása" -#: blockem.php:204 +#: blockem.php:185 msgid "Block Author" msgstr "Szerző tiltása" - -#: blockem.php:244 -msgid "blockem settings updated" -msgstr "A Blockem beállításai frissítve." diff --git a/blockem/lang/hu/strings.php b/blockem/lang/hu/strings.php index 7733a1d1..5a3abfec 100644 --- a/blockem/lang/hu/strings.php +++ b/blockem/lang/hu/strings.php @@ -5,12 +5,9 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Blockem'] = 'Blockem'; $a->strings['Hides user\'s content by collapsing posts. Also replaces their avatar with generic image.'] = 'Elrejti a felhasználók tartalmát a bejegyzések összecsukásával. Ezenkívül lecseréli a profilképeiket egy általános képre.'; $a->strings['Comma separated profile URLS:'] = 'Profil URL-ek vesszővel elválasztva:'; -$a->strings['Save Settings'] = 'Beállítások mentése'; -$a->strings['BLOCKEM Settings saved.'] = 'A Blockem beállításai elmentve.'; +$a->strings['Blockem'] = 'Blockem'; $a->strings['Filtered user: %s'] = 'Kiszűrt felhasználó: %s'; $a->strings['Unblock Author'] = 'Szerző tiltásának feloldása'; $a->strings['Block Author'] = 'Szerző tiltása'; -$a->strings['blockem settings updated'] = 'A Blockem beállításai frissítve.'; diff --git a/buglink/lang/hu/messages.po b/buglink/lang/hu/messages.po index 0ac16882..bc9e7fa7 100644 --- a/buglink/lang/hu/messages.po +++ b/buglink/lang/hu/messages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-22 13:18+0200\n" -"PO-Revision-Date: 2020-12-23 00:53+0000\n" +"POT-Creation-Date: 2021-02-01 18:15+0100\n" +"PO-Revision-Date: 2021-12-23 17:09+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,6 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: buglink.php:15 +#: buglink.php:20 msgid "Report Bug" msgstr "Hiba jelentése" diff --git a/catavatar/lang/hu/messages.po b/catavatar/lang/hu/messages.po index 6e1699d3..912cf035 100644 --- a/catavatar/lang/hu/messages.po +++ b/catavatar/lang/hu/messages.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-01 18:15+0100\n" +"POT-Creation-Date: 2021-11-21 19:14-0500\n" "PO-Revision-Date: 2018-04-07 05:23+0000\n" "Last-Translator: Balázs Úr, 2021\n" "Language-Team: Hungarian (https://www.transifex.com/Friendica/teams/12172/hu/)\n" @@ -22,37 +22,37 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: catavatar.php:48 -msgid "Use Cat as Avatar" -msgstr "Macska használata profilképként" - -#: catavatar.php:49 -msgid "More Random Cat!" -msgstr "Több véletlen macskát!" - -#: catavatar.php:50 -msgid "Reset to email Cat" -msgstr "Visszaállítás e-mail macskára" - -#: catavatar.php:52 -msgid "Cat Avatar Settings" -msgstr "Macskaprofilkép-beállítások" - -#: catavatar.php:53 msgid "Set default profile avatar or randomize the cat." msgstr "Alapértelmezett profilkép beállítása vagy véletlenszerű macska." -#: catavatar.php:78 +#: catavatar.php:53 +msgid "Cat Avatar Settings" +msgstr "Macskaprofilkép-beállítások" + +#: catavatar.php:56 +msgid "Use Cat as Avatar" +msgstr "Macska használata profilképként" + +#: catavatar.php:57 +msgid "Another random Cat!" +msgstr "Egy másik véletlenszerű macska!" + +#: catavatar.php:58 +msgid "Reset to email Cat" +msgstr "Visszaállítás e-mail macskára" + +#: catavatar.php:77 msgid "The cat hadn't found itself." msgstr "A macska nem találta meg önmagát." -#: catavatar.php:87 +#: catavatar.php:86 msgid "There was an error, the cat ran away." msgstr "Hiba történt, a macska elfutott." -#: catavatar.php:93 +#: catavatar.php:92 msgid "Profile Photos" msgstr "Profilfényképek" -#: catavatar.php:108 +#: catavatar.php:102 msgid "Meow!" msgstr "Miáú!" diff --git a/catavatar/lang/hu/strings.php b/catavatar/lang/hu/strings.php index 79a4af62..a47b4df0 100644 --- a/catavatar/lang/hu/strings.php +++ b/catavatar/lang/hu/strings.php @@ -5,11 +5,11 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Use Cat as Avatar'] = 'Macska használata profilképként'; -$a->strings['More Random Cat!'] = 'Több véletlen macskát!'; -$a->strings['Reset to email Cat'] = 'Visszaállítás e-mail macskára'; -$a->strings['Cat Avatar Settings'] = 'Macskaprofilkép-beállítások'; $a->strings['Set default profile avatar or randomize the cat.'] = 'Alapértelmezett profilkép beállítása vagy véletlenszerű macska.'; +$a->strings['Cat Avatar Settings'] = 'Macskaprofilkép-beállítások'; +$a->strings['Use Cat as Avatar'] = 'Macska használata profilképként'; +$a->strings['Another random Cat!'] = 'Egy másik véletlenszerű macska!'; +$a->strings['Reset to email Cat'] = 'Visszaállítás e-mail macskára'; $a->strings['The cat hadn\'t found itself.'] = 'A macska nem találta meg önmagát.'; $a->strings['There was an error, the cat ran away.'] = 'Hiba történt, a macska elfutott.'; $a->strings['Profile Photos'] = 'Profilfényképek'; diff --git a/cookienotice/lang/hu/messages.po b/cookienotice/lang/hu/messages.po index 17bd2078..a9a85fb9 100644 --- a/cookienotice/lang/hu/messages.po +++ b/cookienotice/lang/hu/messages.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-30 10:48+0100\n" +"POT-Creation-Date: 2021-02-01 18:15+0100\n" "PO-Revision-Date: 2019-01-23 16:01+0000\n" "Last-Translator: Balázs Úr, 2020\n" "Language-Team: Hungarian (https://www.transifex.com/Friendica/teams/12172/hu/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: cookienotice.php:63 +#: cookienotice.php:42 msgid "" "This website uses cookies. If you continue browsing this website, you agree " "to the usage of cookies." @@ -29,15 +29,11 @@ msgstr "" "Ez a weboldal sütiket használ. Ha folytatja a böngészést a weboldalon, akkor" " elfogadja a sütik használatát." -#: cookienotice.php:64 cookienotice.php:133 +#: cookienotice.php:43 cookienotice.php:108 msgid "OK" msgstr "Rendben" -#: cookienotice.php:68 -msgid "\"cookienotice\" Settings" -msgstr "A sütifigyelmeztetés beállításai" - -#: cookienotice.php:69 +#: cookienotice.php:47 msgid "" "Configure your cookie usage notice. It should just be a notice, " "saying that the website uses cookies. It is shown as long as a user didnt " @@ -48,31 +44,19 @@ msgstr "" "weboldal sütiket használ. Egészen addig lesz megjelenítve, amíg a " "felhasználó nem fogadja el a Rendben gombra kattintva." -#: cookienotice.php:70 +#: cookienotice.php:48 msgid "Cookie Usage Notice" msgstr "Sütihasználati figyelmeztetés" -#: cookienotice.php:70 -msgid "The cookie usage notice" -msgstr "A sütihasználati figyelmeztetés" - -#: cookienotice.php:71 +#: cookienotice.php:49 msgid "OK Button Text" msgstr "Rendben gomb szövege" -#: cookienotice.php:71 -msgid "The OK Button text" -msgstr "A „Rendben” gomb szövege" - -#: cookienotice.php:72 +#: cookienotice.php:50 msgid "Save Settings" msgstr "Beállítások mentése" -#: cookienotice.php:97 -msgid "cookienotice Settings saved." -msgstr "A sütifigyelmeztetés beállításai elmentve." - -#: cookienotice.php:132 +#: 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." diff --git a/cookienotice/lang/hu/strings.php b/cookienotice/lang/hu/strings.php index 3abda8d7..9ad07400 100644 --- a/cookienotice/lang/hu/strings.php +++ b/cookienotice/lang/hu/strings.php @@ -7,12 +7,8 @@ function string_plural_select_hu($n){ }} $a->strings['This website uses cookies. If you continue browsing this website, you agree to the usage of cookies.'] = 'Ez a weboldal sütiket használ. Ha folytatja a böngészést a weboldalon, akkor elfogadja a sütik használatát.'; $a->strings['OK'] = 'Rendben'; -$a->strings['"cookienotice" Settings'] = 'A sütifigyelmeztetés beállításai'; $a->strings['Configure your cookie usage notice. 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.'] = 'Állítsa be a sütihasználati figyelmeztetést. Ennek csak egy figyelmeztetésnek kell lennie, amely arra hívja fel a figyelmet, hogy a weboldal sütiket használ. Egészen addig lesz megjelenítve, amíg a felhasználó nem fogadja el a Rendben gombra kattintva.'; $a->strings['Cookie Usage Notice'] = 'Sütihasználati figyelmeztetés'; -$a->strings['The cookie usage notice'] = 'A sütihasználati figyelmeztetés'; $a->strings['OK Button Text'] = 'Rendben gomb szövege'; -$a->strings['The OK Button text'] = 'A „Rendben” gomb szövege'; $a->strings['Save Settings'] = 'Beállítások mentése'; -$a->strings['cookienotice Settings saved.'] = 'A sütifigyelmeztetés beállításai elmentve.'; $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.'] = 'Ez a weboldal sütiket használ az újralátogatás felismeréséhez és a bejelentkezett felhasználókhoz. A weboldalon történő böngészés folytatásával Ön elfogadja ezen sütik használatát.'; diff --git a/curweather/lang/hu/messages.po b/curweather/lang/hu/messages.po index 6542b04f..d8d1b6d1 100644 --- a/curweather/lang/hu/messages.po +++ b/curweather/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-02-27 01:10+0000\n" +"POT-Creation-Date: 2021-11-21 19:14-0500\n" +"PO-Revision-Date: 2021-12-23 17:18+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "" msgid "Error fetching weather data. Error was: " msgstr "Hiba az időjárásadatok lekérésekor. A hiba ez volt: " -#: curweather.php:130 curweather.php:192 +#: curweather.php:130 msgid "Current Weather" msgstr "Jelenlegi időjárás" @@ -59,66 +59,66 @@ msgstr "Probléma történt az időjárási adatokhoz való hozzáféréskor. De msgid "at OpenWeatherMap" msgstr "OpenWeatherMap" -#: curweather.php:179 +#: curweather.php:178 msgid "No APPID found, please contact your admin to obtain one." msgstr "Nem található alkalmazásazonosító. Vegye fel a kapcsolatot az adminisztrátorral, hogy beszerezzen egyet." -#: curweather.php:191 curweather.php:229 -msgid "Save Settings" -msgstr "Beállítások mentése" - -#: curweather.php:192 -msgid "Settings" -msgstr "Beállítások" - -#: curweather.php:194 +#: curweather.php:188 msgid "Enter either the name of your location or the zip code." -msgstr "Adja meg a tartózkodási helyének a nevét vagy az irányítószámát." +msgstr "Adja meg a tartózkodási helyének nevét vagy irányítószámát." -#: curweather.php:195 +#: curweather.php:189 msgid "Your Location" msgstr "Az Ön tartózkodási helye" -#: curweather.php:195 +#: curweather.php:189 msgid "" "Identifier of your location (name or zip code), e.g. Berlin,DE or " "14476,DE." msgstr "A tartózkodási helyének azonosítója (neve vagy irányítószáma), például Budapest,HU vagy 1234,HU." -#: curweather.php:196 +#: curweather.php:190 msgid "Units" msgstr "Mértékegységek" -#: curweather.php:196 +#: curweather.php:190 msgid "select if the temperature should be displayed in °C or °F" msgstr "Annak kiválasztása, hogy a hőmérsékletet °C vagy °F fokban kell megjeleníteni." -#: curweather.php:197 +#: curweather.php:191 msgid "Show weather data" msgstr "Időjárási adatok megjelenítése" -#: curweather.php:232 +#: curweather.php:196 +msgid "Current Weather Settings" +msgstr "Jelenlegi időjárás beállításai" + +#: curweather.php:227 +msgid "Save Settings" +msgstr "Beállítások mentése" + +#: curweather.php:230 msgid "Caching Interval" msgstr "Gyorsítótárazási időköz" -#: curweather.php:234 +#: curweather.php:232 msgid "" "For how long should the weather data be cached? Choose according your " "OpenWeatherMap account type." msgstr "Mennyi ideig kell az időjárási adatokat gyorsítótárazni? Válasszon az OpenWeatherMap fióktípusa szerint." -#: curweather.php:235 +#: curweather.php:233 msgid "no cache" msgstr "nincs gyorsítótár" -#: curweather.php:236 curweather.php:237 curweather.php:238 curweather.php:239 +#: curweather.php:234 curweather.php:235 curweather.php:236 curweather.php:237 msgid "minutes" msgstr "perc" -#: curweather.php:242 +#: curweather.php:240 msgid "Your APPID" msgstr "Az alkalmazásazonosítója" -#: curweather.php:242 +#: curweather.php:240 msgid "Your API key provided by OpenWeatherMap" msgstr "Az OpenWeatherMap által biztosított API-kulcsa" diff --git a/curweather/lang/hu/strings.php b/curweather/lang/hu/strings.php index 75c8656a..b80ffc89 100644 --- a/curweather/lang/hu/strings.php +++ b/curweather/lang/hu/strings.php @@ -16,14 +16,14 @@ $a->strings['Show on map'] = 'Megjelenítés térképen'; $a->strings['There was a problem accessing the weather data. But have a look'] = 'Probléma történt az időjárási adatokhoz való hozzáféréskor. De nézzen körül itt:'; $a->strings['at OpenWeatherMap'] = 'OpenWeatherMap'; $a->strings['No APPID found, please contact your admin to obtain one.'] = 'Nem található alkalmazásazonosító. Vegye fel a kapcsolatot az adminisztrátorral, hogy beszerezzen egyet.'; -$a->strings['Save Settings'] = 'Beállítások mentése'; -$a->strings['Settings'] = 'Beállítások'; -$a->strings['Enter either the name of your location or the zip code.'] = 'Adja meg a tartózkodási helyének a nevét vagy az irányítószámát.'; +$a->strings['Enter either the name of your location or the zip code.'] = 'Adja meg a tartózkodási helyének nevét vagy irányítószámát.'; $a->strings['Your Location'] = 'Az Ön tartózkodási helye'; $a->strings['Identifier of your location (name or zip code), e.g. Berlin,DE or 14476,DE.'] = 'A tartózkodási helyének azonosítója (neve vagy irányítószáma), például Budapest,HU vagy 1234,HU.'; $a->strings['Units'] = 'Mértékegységek'; $a->strings['select if the temperature should be displayed in °C or °F'] = 'Annak kiválasztása, hogy a hőmérsékletet °C vagy °F fokban kell megjeleníteni.'; $a->strings['Show weather data'] = 'Időjárási adatok megjelenítése'; +$a->strings['Current Weather Settings'] = 'Jelenlegi időjárás beállításai'; +$a->strings['Save Settings'] = 'Beállítások mentése'; $a->strings['Caching Interval'] = 'Gyorsítótárazási időköz'; $a->strings['For how long should the weather data be cached? Choose according your OpenWeatherMap account type.'] = 'Mennyi ideig kell az időjárási adatokat gyorsítótárazni? Válasszon az OpenWeatherMap fióktípusa szerint.'; $a->strings['no cache'] = 'nincs gyorsítótár'; diff --git a/diaspora/lang/hu/messages.po b/diaspora/lang/hu/messages.po index 66cd72d8..6c869048 100644 --- a/diaspora/lang/hu/messages.po +++ b/diaspora/lang/hu/messages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 00:15-0400\n" -"PO-Revision-Date: 2020-12-23 01:35+0000\n" +"POT-Creation-Date: 2021-11-21 19:17-0500\n" +"PO-Revision-Date: 2021-12-23 17:19+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,96 +19,84 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: diaspora.php:53 +#: diaspora.php:44 msgid "Post to Diaspora" msgstr "Beküldés a Diasporára" -#: diaspora.php:78 +#: diaspora.php:67 #, php-format msgid "" "Please remember: You can always be reached from Diaspora with your Friendica" " handle %s. " msgstr "Ne feledje: Ön mindig elérhető a Diasporáról a(z) %s Friendica kezelőjével. " -#: diaspora.php:79 +#: diaspora.php:68 msgid "" "This connector is only meant if you still want to use your old Diaspora " "account for some time. " msgstr "Ez az összekötő csak akkor szükséges, ha továbbra is használni szeretné a régi Diaspora-fiókját egy ideig. " -#: diaspora.php:80 +#: diaspora.php:69 #, php-format msgid "" "However, it is preferred that you tell your Diaspora contacts the new handle" " %s instead." msgstr "Azonban az ajánlott eljárás az, hogy inkább mondja meg a Diaspora partnereinek az új %s kezelőt." -#: diaspora.php:90 +#: diaspora.php:79 msgid "All aspects" msgstr "Minden szempont" -#: diaspora.php:91 +#: diaspora.php:80 msgid "Public" msgstr "Nyilvános" -#: diaspora.php:97 +#: diaspora.php:86 msgid "Post to aspect:" msgstr "Beküldés a szempontba:" -#: diaspora.php:98 +#: diaspora.php:87 #, php-format msgid "Connected with your Diaspora account %s" msgstr "Kapcsolódva a(z) %s Diaspora-fiókjával" -#: diaspora.php:101 +#: diaspora.php:90 msgid "" "Can't login to your Diaspora account. Please check handle (in the format " "user@domain.tld) and password." msgstr "Nem lehet bejelentkezni a Diaspora-fiókjába. Ellenőrizze a kezelőt (felhasználó@tartomány.tld formátumban) és a jelszót." -#: diaspora.php:109 -msgid "Diaspora Export" -msgstr "Diaspora exportálás" - -#: diaspora.php:110 +#: diaspora.php:97 msgid "Information" msgstr "Információ" -#: diaspora.php:111 +#: diaspora.php:98 msgid "Error" msgstr "Hiba" -#: diaspora.php:112 -msgid "Save Settings" -msgstr "Beállítások mentése" - -#: diaspora.php:116 +#: diaspora.php:104 msgid "Enable Diaspora Post Addon" msgstr "A Diaspora-beküldő bővítmény engedélyezése" -#: diaspora.php:117 +#: diaspora.php:105 msgid "Diaspora handle" msgstr "Diaspora kezelő" -#: diaspora.php:118 +#: diaspora.php:106 msgid "Diaspora password" msgstr "Diaspora jelszó" -#: diaspora.php:118 +#: 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 "Adatvédelmi figyelmeztetés: a Diaspora jelszava titkosítatlanul lesz eltárolva, hogy hitelesítse Önt a Diaspora csomópontján. Ez azt jelenti, hogy a Friendica csomópontjának adminisztrátora hozzáférhet." -#: diaspora.php:120 +#: diaspora.php:108 msgid "Post to Diaspora by default" msgstr "Beküldés a Diasporára alapértelmezetten" -#: diaspora.php:138 -msgid "Diaspora settings updated." -msgstr "A Diaspora beállításai frissítve." - -#: diaspora.php:141 -msgid "Diaspora connector disabled." -msgstr "A Diaspora összekötő letiltva." +#: diaspora.php:113 +msgid "Diaspora Export" +msgstr "Diaspora exportálás" diff --git a/diaspora/lang/hu/strings.php b/diaspora/lang/hu/strings.php index 0dbb5b49..aa3875e7 100644 --- a/diaspora/lang/hu/strings.php +++ b/diaspora/lang/hu/strings.php @@ -14,14 +14,11 @@ $a->strings['Public'] = 'Nyilvános'; $a->strings['Post to aspect:'] = 'Beküldés a szempontba:'; $a->strings['Connected with your Diaspora account %s'] = 'Kapcsolódva a(z) %s Diaspora-fiókjával'; $a->strings['Can\'t login to your Diaspora account. Please check handle (in the format user@domain.tld) and password.'] = 'Nem lehet bejelentkezni a Diaspora-fiókjába. Ellenőrizze a kezelőt (felhasználó@tartomány.tld formátumban) és a jelszót.'; -$a->strings['Diaspora Export'] = 'Diaspora exportálás'; $a->strings['Information'] = 'Információ'; $a->strings['Error'] = 'Hiba'; -$a->strings['Save Settings'] = 'Beállítások mentése'; $a->strings['Enable Diaspora Post Addon'] = 'A Diaspora-beküldő bővítmény engedélyezése'; $a->strings['Diaspora handle'] = 'Diaspora kezelő'; $a->strings['Diaspora password'] = 'Diaspora jelszó'; $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.'] = 'Adatvédelmi figyelmeztetés: a Diaspora jelszava titkosítatlanul lesz eltárolva, hogy hitelesítse Önt a Diaspora csomópontján. Ez azt jelenti, hogy a Friendica csomópontjának adminisztrátora hozzáférhet.'; $a->strings['Post to Diaspora by default'] = 'Beküldés a Diasporára alapértelmezetten'; -$a->strings['Diaspora settings updated.'] = 'A Diaspora beállításai frissítve.'; -$a->strings['Diaspora connector disabled.'] = 'A Diaspora összekötő letiltva.'; +$a->strings['Diaspora Export'] = 'Diaspora exportálás'; diff --git a/dwpost/lang/hu/messages.po b/dwpost/lang/hu/messages.po index 3b429814..72dce233 100644 --- a/dwpost/lang/hu/messages.po +++ b/dwpost/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-02-27 01:13+0000\n" +"POT-Creation-Date: 2021-11-21 19:17-0500\n" +"PO-Revision-Date: 2021-12-23 18:31+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,30 +19,26 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: dwpost.php:41 +#: dwpost.php:43 msgid "Post to Dreamwidth" msgstr "Beküldés a Dreamwidth-re" -#: dwpost.php:72 dwpost.php:76 -msgid "Dreamwidth Export" -msgstr "Dreamwidth exportálás" - -#: dwpost.php:80 -msgid "Enable dreamwidth Post Addon" +#: dwpost.php:63 +msgid "Enable Dreamwidth Post Addon" msgstr "A Dreamwidth-beküldő bővítmény engedélyezése" -#: dwpost.php:85 -msgid "dreamwidth username" +#: dwpost.php:64 +msgid "Dreamwidth username" msgstr "Dreamwidth felhasználónév" -#: dwpost.php:90 -msgid "dreamwidth password" +#: dwpost.php:65 +msgid "Dreamwidth password" msgstr "Dreamwidth jelszó" -#: dwpost.php:95 -msgid "Post to dreamwidth by default" +#: dwpost.php:66 +msgid "Post to Dreamwidth by default" msgstr "Beküldés a Dreamwidth-re alapértelmezetten" -#: dwpost.php:100 -msgid "Save Settings" -msgstr "Beállítások mentése" +#: dwpost.php:71 +msgid "Dreamwidth Export" +msgstr "Dreamwidth exportálás" diff --git a/dwpost/lang/hu/strings.php b/dwpost/lang/hu/strings.php index 619b8f65..f994189f 100644 --- a/dwpost/lang/hu/strings.php +++ b/dwpost/lang/hu/strings.php @@ -6,9 +6,8 @@ function string_plural_select_hu($n){ return intval($n != 1); }} $a->strings['Post to Dreamwidth'] = 'Beküldés a Dreamwidth-re'; +$a->strings['Enable Dreamwidth Post Addon'] = 'A Dreamwidth-beküldő bővítmény engedélyezése'; +$a->strings['Dreamwidth username'] = 'Dreamwidth felhasználónév'; +$a->strings['Dreamwidth password'] = 'Dreamwidth jelszó'; +$a->strings['Post to Dreamwidth by default'] = 'Beküldés a Dreamwidth-re alapértelmezetten'; $a->strings['Dreamwidth Export'] = 'Dreamwidth exportálás'; -$a->strings['Enable dreamwidth Post Addon'] = 'A Dreamwidth-beküldő bővítmény engedélyezése'; -$a->strings['dreamwidth username'] = 'Dreamwidth felhasználónév'; -$a->strings['dreamwidth password'] = 'Dreamwidth jelszó'; -$a->strings['Post to dreamwidth by default'] = 'Beküldés a Dreamwidth-re alapértelmezetten'; -$a->strings['Save Settings'] = 'Beállítások mentése'; diff --git a/forumdirectory/lang/hu/messages.po b/forumdirectory/lang/hu/messages.po index 97da60a0..ef1e012b 100644 --- a/forumdirectory/lang/hu/messages.po +++ b/forumdirectory/lang/hu/messages.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-01 18:15+0100\n" -"PO-Revision-Date: 2021-02-27 01:14+0000\n" +"PO-Revision-Date: 2021-12-23 17:19+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" diff --git a/fromapp/lang/hu/messages.po b/fromapp/lang/hu/messages.po index cafe3674..febf55e8 100644 --- a/fromapp/lang/hu/messages.po +++ b/fromapp/lang/hu/messages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-19 16:42+0100\n" -"PO-Revision-Date: 2020-12-23 01:47+0000\n" +"POT-Creation-Date: 2021-11-21 19:14-0500\n" +"PO-Revision-Date: 2021-12-23 17:20+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,25 +19,17 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: fromapp.php:40 -msgid "Fromapp settings updated." -msgstr "A FromApp beállításai frissítve." - -#: fromapp.php:65 fromapp.php:69 -msgid "FromApp Settings" -msgstr "FromApp-beállítások" - -#: fromapp.php:72 +#: 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 "Az alkalmazás neve, amelyet meg szeretne jeleníteni a bejegyzései származási helyeként. A különböző alkalmazásnevek vesszővel választhatók el. Ezután véletlenszerűen lesz kiválasztva az egyikük minden egyes beküldésnél." -#: fromapp.php:76 +#: fromapp.php:46 msgid "Use this application name even if another application was used." msgstr "Ezen alkalmazásnév használata akkor is, ha egy másik alkalmazás lett használva." -#: fromapp.php:83 -msgid "Save Settings" -msgstr "Beállítások mentése" +#: fromapp.php:51 +msgid "FromApp Settings" +msgstr "FromApp-beállítások" diff --git a/fromapp/lang/hu/strings.php b/fromapp/lang/hu/strings.php index 3343b767..6d903f3c 100644 --- a/fromapp/lang/hu/strings.php +++ b/fromapp/lang/hu/strings.php @@ -5,8 +5,6 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Fromapp settings updated.'] = 'A FromApp beállításai frissítve.'; -$a->strings['FromApp Settings'] = 'FromApp-beállítások'; $a->strings['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.'] = 'Az alkalmazás neve, amelyet meg szeretne jeleníteni a bejegyzései származási helyeként. A különböző alkalmazásnevek vesszővel választhatók el. Ezután véletlenszerűen lesz kiválasztva az egyikük minden egyes beküldésnél.'; $a->strings['Use this application name even if another application was used.'] = 'Ezen alkalmazásnév használata akkor is, ha egy másik alkalmazás lett használva.'; -$a->strings['Save Settings'] = 'Beállítások mentése'; +$a->strings['FromApp Settings'] = 'FromApp-beállítások'; diff --git a/geonames/lang/hu/messages.po b/geonames/lang/hu/messages.po index c4ff909a..4140190e 100644 --- a/geonames/lang/hu/messages.po +++ b/geonames/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-02-27 01:18+0000\n" +"POT-Creation-Date: 2021-11-21 19:14-0500\n" +"PO-Revision-Date: 2021-12-23 17:20+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,20 +19,16 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: geonames.php:141 -msgid "Geonames Settings" -msgstr "Földrajzi nevek beállításai" - -#: geonames.php:142 +#: geonames.php:135 msgid "" "Replace numerical coordinates by the nearest populated location name in your" " posts." msgstr "Számokkal megadott koordináták cseréje a bejegyzéseiben a legközelebbi lakott hely nevére." -#: geonames.php:143 +#: geonames.php:136 msgid "Enable Geonames Addon" msgstr "A földrajzi nevek bővítmény engedélyezése" -#: geonames.php:144 -msgid "Save Settings" -msgstr "Beállítások mentése" +#: geonames.php:141 +msgid "Geonames Settings" +msgstr "Földrajzi nevek beállításai" diff --git a/geonames/lang/hu/strings.php b/geonames/lang/hu/strings.php index 4feefe58..86d69a60 100644 --- a/geonames/lang/hu/strings.php +++ b/geonames/lang/hu/strings.php @@ -5,7 +5,6 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Geonames Settings'] = 'Földrajzi nevek beállításai'; $a->strings['Replace numerical coordinates by the nearest populated location name in your posts.'] = 'Számokkal megadott koordináták cseréje a bejegyzéseiben a legközelebbi lakott hely nevére.'; $a->strings['Enable Geonames Addon'] = 'A földrajzi nevek bővítmény engedélyezése'; -$a->strings['Save Settings'] = 'Beállítások mentése'; +$a->strings['Geonames Settings'] = 'Földrajzi nevek beállításai'; diff --git a/gnot/lang/hu/messages.po b/gnot/lang/hu/messages.po index 5b63c601..62a4ae48 100644 --- a/gnot/lang/hu/messages.po +++ b/gnot/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-02-27 01:20+0000\n" +"POT-Creation-Date: 2021-11-21 19:14-0500\n" +"PO-Revision-Date: 2021-12-23 17:21+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,25 +19,21 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: gnot.php:71 -msgid "Gnot Settings" -msgstr "Gnot beállítások" - -#: gnot.php:72 -msgid "Save Settings" -msgstr "Beállítások mentése" - -#: gnot.php:73 -msgid "Enable this addon?" -msgstr "Engedélyezi ezt a bővítményt?" - -#: gnot.php:75 +#: gnot.php:63 msgid "" "Allows threading of email comment notifications on Gmail and anonymising the" " subject line." msgstr "Lehetővé teszi az e-mailes hozzászólás értesítéseinek szálkezelését a Gmailnél, és anonimizálja a tárgy sorát." -#: gnot.php:84 +#: gnot.php:64 +msgid "Enable this addon?" +msgstr "Engedélyezi ezt a bővítményt?" + +#: gnot.php:69 +msgid "Gnot Settings" +msgstr "Gnot beállítások" + +#: gnot.php:79 #, php-format msgid "[Friendica:Notify] Comment to conversation #%d" msgstr "[Friendica: értesítés] Hozzászólás a(z) %d. beszélgetéshez" diff --git a/gnot/lang/hu/strings.php b/gnot/lang/hu/strings.php index 5a79321e..94d74535 100644 --- a/gnot/lang/hu/strings.php +++ b/gnot/lang/hu/strings.php @@ -5,8 +5,7 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Gnot Settings'] = 'Gnot beállítások'; -$a->strings['Save Settings'] = 'Beállítások mentése'; -$a->strings['Enable this addon?'] = 'Engedélyezi ezt a bővítményt?'; $a->strings['Allows threading of email comment notifications on Gmail and anonymising the subject line.'] = 'Lehetővé teszi az e-mailes hozzászólás értesítéseinek szálkezelését a Gmailnél, és anonimizálja a tárgy sorát.'; +$a->strings['Enable this addon?'] = 'Engedélyezi ezt a bővítményt?'; +$a->strings['Gnot Settings'] = 'Gnot beállítások'; $a->strings['[Friendica:Notify] Comment to conversation #%d'] = '[Friendica: értesítés] Hozzászólás a(z) %d. beszélgetéshez'; diff --git a/gravatar/lang/hu/messages.po b/gravatar/lang/hu/messages.po index 8796dea0..2d8d4e26 100644 --- a/gravatar/lang/hu/messages.po +++ b/gravatar/lang/hu/messages.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-01 18:15+0100\n" -"PO-Revision-Date: 2021-02-27 01:22+0000\n" +"PO-Revision-Date: 2021-12-23 17:21+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" diff --git a/group_text/lang/hu/messages.po b/group_text/lang/hu/messages.po index bb483ef8..a7b87e75 100644 --- a/group_text/lang/hu/messages.po +++ b/group_text/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-02-27 01:26+0000\n" +"POT-Creation-Date: 2021-11-21 19:14-0500\n" +"PO-Revision-Date: 2021-12-23 17:21+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,14 +19,10 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: group_text.php:62 -msgid "Group Text" -msgstr "Csoportszöveg" - -#: group_text.php:64 +#: group_text.php:58 msgid "Use a text only (non-image) group selector in the \"group edit\" menu" msgstr "Csak szöveges (kép nélküli) csoportválasztó használata a „csoportszerkesztés” menüben" -#: group_text.php:70 -msgid "Save Settings" -msgstr "Beállítások mentése" +#: group_text.php:63 +msgid "Group Text" +msgstr "Csoportszöveg" diff --git a/group_text/lang/hu/strings.php b/group_text/lang/hu/strings.php index 98e1aa48..ac72f9e0 100644 --- a/group_text/lang/hu/strings.php +++ b/group_text/lang/hu/strings.php @@ -5,6 +5,5 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Group Text'] = 'Csoportszöveg'; $a->strings['Use a text only (non-image) group selector in the "group edit" menu'] = 'Csak szöveges (kép nélküli) csoportválasztó használata a „csoportszerkesztés” menüben'; -$a->strings['Save Settings'] = 'Beállítások mentése'; +$a->strings['Group Text'] = 'Csoportszöveg'; diff --git a/ifttt/lang/hu/messages.po b/ifttt/lang/hu/messages.po index d0b54314..e74ac522 100644 --- a/ifttt/lang/hu/messages.po +++ b/ifttt/lang/hu/messages.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-01 18:15+0100\n" +"POT-Creation-Date: 2021-11-21 19:17-0500\n" "PO-Revision-Date: 2017-11-27 10:37+0000\n" "Last-Translator: Balázs Úr, 2021\n" "Language-Team: Hungarian (https://www.transifex.com/Friendica/teams/12172/hu/)\n" @@ -21,11 +21,7 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ifttt.php:50 ifttt.php:54 -msgid "IFTTT Mirror" -msgstr "IFTTT tükör" - -#: ifttt.php:58 +#: ifttt.php:52 msgid "" "Create an account at IFTTT. Create " "three Facebook recipes that are connected with Maker szolgáltatással (a" " „ha Facebook, akkor Maker” űrlapon) a következő paraméterekkel:" -#: ifttt.php:65 +#: ifttt.php:53 +msgid "URL" +msgstr "URL" + +#: ifttt.php:54 +msgid "Method" +msgstr "Módszer" + +#: ifttt.php:55 +msgid "Content Type" +msgstr "Tartalomtípus" + +#: ifttt.php:56 msgid "Body for \"new status message\"" msgstr "Az „új állapotüzenet” törzse" -#: ifttt.php:67 +#: ifttt.php:57 msgid "Body for \"new photo upload\"" msgstr "Az „új fényképfeltöltés” törzse" -#: ifttt.php:69 +#: ifttt.php:58 msgid "Body for \"new link post\"" msgstr "Az „új hivatkozásbeküldés” törzse" -#: ifttt.php:74 +#: ifttt.php:68 +msgid "IFTTT Mirror" +msgstr "IFTTT tükör" + +#: ifttt.php:71 msgid "Generate new key" msgstr "Új kulcs előállítása" - -#: ifttt.php:78 -msgid "Save Settings" -msgstr "Beállítások mentése" diff --git a/ifttt/lang/hu/strings.php b/ifttt/lang/hu/strings.php index 7da50c34..152a087b 100644 --- a/ifttt/lang/hu/strings.php +++ b/ifttt/lang/hu/strings.php @@ -5,10 +5,12 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['IFTTT Mirror'] = 'IFTTT tükör'; $a->strings['Create an account at IFTTT. Create three Facebook recipes that are connected with Maker (In the form "if Facebook then Maker") with the following parameters:'] = 'Hozzon létre egy fiókot az IFTTT oldalon. Hozzon létre három Facebook receptet, amelyek össze vannak kapcsolva a Maker szolgáltatással (a „ha Facebook, akkor Maker” űrlapon) a következő paraméterekkel:'; +$a->strings['URL'] = 'URL'; +$a->strings['Method'] = 'Módszer'; +$a->strings['Content Type'] = 'Tartalomtípus'; $a->strings['Body for "new status message"'] = 'Az „új állapotüzenet” törzse'; $a->strings['Body for "new photo upload"'] = 'Az „új fényképfeltöltés” törzse'; $a->strings['Body for "new link post"'] = 'Az „új hivatkozásbeküldés” törzse'; +$a->strings['IFTTT Mirror'] = 'IFTTT tükör'; $a->strings['Generate new key'] = 'Új kulcs előállítása'; -$a->strings['Save Settings'] = 'Beállítások mentése'; diff --git a/ijpost/lang/hu/messages.po b/ijpost/lang/hu/messages.po index 5a18b0fa..2beef4f8 100644 --- a/ijpost/lang/hu/messages.po +++ b/ijpost/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-03-12 23:48+0000\n" +"POT-Creation-Date: 2021-11-21 19:17-0500\n" +"PO-Revision-Date: 2021-12-23 17:22+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,30 +19,26 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ijpost.php:39 +#: ijpost.php:42 msgid "Post to Insanejournal" msgstr "Beküldés az InsaneJournalra" -#: ijpost.php:71 ijpost.php:75 -msgid "InsaneJournal Export" -msgstr "InsaneJournal exportálás" - -#: ijpost.php:79 +#: ijpost.php:61 msgid "Enable InsaneJournal Post Addon" msgstr "Az InsaneJournal beküldési bővítmény engedélyezése" -#: ijpost.php:84 +#: ijpost.php:62 msgid "InsaneJournal username" msgstr "InsaneJournal felhasználónév" -#: ijpost.php:89 +#: ijpost.php:63 msgid "InsaneJournal password" msgstr "InsaneJournal jelszó" -#: ijpost.php:94 +#: ijpost.php:64 msgid "Post to InsaneJournal by default" msgstr "Beküldés az InsaneJournalra alapértelmezetten" -#: ijpost.php:99 -msgid "Save Settings" -msgstr "Beállítások mentése" +#: ijpost.php:69 +msgid "InsaneJournal Export" +msgstr "InsaneJournal exportálás" diff --git a/ijpost/lang/hu/strings.php b/ijpost/lang/hu/strings.php index b385f9cd..0f1eaddd 100644 --- a/ijpost/lang/hu/strings.php +++ b/ijpost/lang/hu/strings.php @@ -6,9 +6,8 @@ function string_plural_select_hu($n){ return intval($n != 1); }} $a->strings['Post to Insanejournal'] = 'Beküldés az InsaneJournalra'; -$a->strings['InsaneJournal Export'] = 'InsaneJournal exportálás'; $a->strings['Enable InsaneJournal Post Addon'] = 'Az InsaneJournal beküldési bővítmény engedélyezése'; $a->strings['InsaneJournal username'] = 'InsaneJournal felhasználónév'; $a->strings['InsaneJournal password'] = 'InsaneJournal jelszó'; $a->strings['Post to InsaneJournal by default'] = 'Beküldés az InsaneJournalra alapértelmezetten'; -$a->strings['Save Settings'] = 'Beállítások mentése'; +$a->strings['InsaneJournal Export'] = 'InsaneJournal exportálás'; diff --git a/impressum/lang/hu/messages.po b/impressum/lang/hu/messages.po index 6659470d..bf33083b 100644 --- a/impressum/lang/hu/messages.po +++ b/impressum/lang/hu/messages.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-01 18:15+0100\n" -"PO-Revision-Date: 2021-03-13 00:00+0000\n" +"PO-Revision-Date: 2021-12-23 17:22+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" diff --git a/infiniteimprobabilitydrive/lang/hu/messages.po b/infiniteimprobabilitydrive/lang/hu/messages.po index b6a99028..6bdba2f7 100644 --- a/infiniteimprobabilitydrive/lang/hu/messages.po +++ b/infiniteimprobabilitydrive/lang/hu/messages.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-01 18:15+0100\n" -"PO-Revision-Date: 2021-03-13 10:46+0000\n" +"PO-Revision-Date: 2021-12-23 17:22+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" diff --git a/irc/lang/hu/messages.po b/irc/lang/hu/messages.po index 54897d55..92076259 100644 --- a/irc/lang/hu/messages.po +++ b/irc/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-03-13 20:42+0000\n" +"POT-Creation-Date: 2021-11-21 19:14-0500\n" +"PO-Revision-Date: 2021-12-23 17:23+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,45 +19,45 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: irc.php:34 -msgid "IRC Settings" -msgstr "IRC beállítások" - -#: irc.php:35 +#: 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 "Itt változtathatja meg a csatornák rendszerszintű beállításait, hogy automatikusan csatlakozzon és hozzáférjen az oldalsávon keresztül. Ne feledje, hogy az itt elvégzett változtatások csak akkor vannak hatással a csatornakiválasztásra, ha be van jelentkezve." -#: irc.php:36 irc.php:134 -msgid "Save Settings" -msgstr "Beállítások mentése" - -#: irc.php:37 irc.php:135 +#: irc.php:33 irc.php:133 msgid "Channel(s) to auto connect (comma separated)" msgstr "Csatornák az automatikus kapcsolódáshoz (vesszővel elválasztva)" -#: irc.php:37 irc.php:135 +#: irc.php:33 irc.php:133 msgid "" "List of channels that shall automatically connected to when the app is " "launched." msgstr "Csatornák listája, amelyekhez automatikusan lehet kapcsolódni, ha az alkalmazást elindították." -#: irc.php:38 irc.php:136 +#: irc.php:34 irc.php:134 msgid "Popular Channels (comma separated)" msgstr "Népszerű csatornák (vesszővel elválasztva)" -#: irc.php:38 irc.php:136 +#: irc.php:34 irc.php:134 msgid "" "List of popular channels, will be displayed at the side and hotlinked for " "easy joining." msgstr "Népszerű csatornák listája, amelyek oldalt lesznek megjelenítve, és gyors hivatkozás lesz rájuk az egyszerű csatlakozáshoz." -#: irc.php:62 +#: irc.php:39 +msgid "IRC Settings" +msgstr "IRC beállítások" + +#: irc.php:60 msgid "IRC Chatroom" msgstr "IRC csevegőszoba" -#: irc.php:90 +#: irc.php:88 msgid "Popular Channels" msgstr "Népszerű csatornák" + +#: irc.php:132 +msgid "Save Settings" +msgstr "Beállítások mentése" diff --git a/irc/lang/hu/strings.php b/irc/lang/hu/strings.php index 4c20f9a2..113c1978 100644 --- a/irc/lang/hu/strings.php +++ b/irc/lang/hu/strings.php @@ -5,12 +5,12 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['IRC Settings'] = 'IRC beállítások'; $a->strings['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.'] = 'Itt változtathatja meg a csatornák rendszerszintű beállításait, hogy automatikusan csatlakozzon és hozzáférjen az oldalsávon keresztül. Ne feledje, hogy az itt elvégzett változtatások csak akkor vannak hatással a csatornakiválasztásra, ha be van jelentkezve.'; -$a->strings['Save Settings'] = 'Beállítások mentése'; $a->strings['Channel(s) to auto connect (comma separated)'] = 'Csatornák az automatikus kapcsolódáshoz (vesszővel elválasztva)'; $a->strings['List of channels that shall automatically connected to when the app is launched.'] = 'Csatornák listája, amelyekhez automatikusan lehet kapcsolódni, ha az alkalmazást elindították.'; $a->strings['Popular Channels (comma separated)'] = 'Népszerű csatornák (vesszővel elválasztva)'; $a->strings['List of popular channels, will be displayed at the side and hotlinked for easy joining.'] = 'Népszerű csatornák listája, amelyek oldalt lesznek megjelenítve, és gyors hivatkozás lesz rájuk az egyszerű csatlakozáshoz.'; +$a->strings['IRC Settings'] = 'IRC beállítások'; $a->strings['IRC Chatroom'] = 'IRC csevegőszoba'; $a->strings['Popular Channels'] = 'Népszerű csatornák'; +$a->strings['Save Settings'] = 'Beállítások mentése'; diff --git a/js_upload/lang/hu/messages.po b/js_upload/lang/hu/messages.po index 7d7d0d57..d6a36359 100644 --- a/js_upload/lang/hu/messages.po +++ b/js_upload/lang/hu/messages.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-03-23 23:53-0400\n" -"PO-Revision-Date: 2021-06-10 22:16+0000\n" +"PO-Revision-Date: 2021-12-23 17:23+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" diff --git a/krynn/lang/hu/messages.po b/krynn/lang/hu/messages.po index b40c7ecc..7910f03a 100644 --- a/krynn/lang/hu/messages.po +++ b/krynn/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-03-24 00:02+0000\n" +"POT-Creation-Date: 2021-11-21 19:14-0500\n" +"PO-Revision-Date: 2021-12-23 17:23+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,18 +19,10 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: krynn.php:132 krynn.php:136 -msgid "Krynn" -msgstr "Krynn" - -#: krynn.php:141 -msgid "Krynn Settings" -msgstr "Krynn beállítások" - -#: krynn.php:143 +#: krynn.php:127 msgid "Enable Krynn Addon" msgstr "Krynn bővítmény engedélyezése" -#: krynn.php:148 -msgid "Save Settings" -msgstr "Beállítások mentése" +#: krynn.php:132 +msgid "Krynn Settings" +msgstr "Krynn beállítások" diff --git a/krynn/lang/hu/strings.php b/krynn/lang/hu/strings.php index 4ceb0155..bc0d01e6 100644 --- a/krynn/lang/hu/strings.php +++ b/krynn/lang/hu/strings.php @@ -5,7 +5,5 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Krynn'] = 'Krynn'; -$a->strings['Krynn Settings'] = 'Krynn beállítások'; $a->strings['Enable Krynn Addon'] = 'Krynn bővítmény engedélyezése'; -$a->strings['Save Settings'] = 'Beállítások mentése'; +$a->strings['Krynn Settings'] = 'Krynn beállítások'; diff --git a/langfilter/lang/hu/messages.po b/langfilter/lang/hu/messages.po index 39909984..dbd69437 100644 --- a/langfilter/lang/hu/messages.po +++ b/langfilter/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-06-10 23:13+0000\n" +"POT-Creation-Date: 2021-11-21 19:15-0500\n" +"PO-Revision-Date: 2021-12-23 17:24+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,58 +19,58 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: langfilter.php:50 -msgid "Language Filter" -msgstr "Nyelvszűrő" - -#: langfilter.php:51 +#: langfilter.php:49 msgid "" "This addon tries to identify the language posts are written in. If it does " "not match any language specified below, posts will be hidden by collapsing " "them." msgstr "Ez a bővítmény megpróbálja azonosítani, hogy a bejegyzéseket milyen nyelven írták. Ha nem egyezik egyetlen lent megadott nyelvvel sem, akkor a bejegyzések rejtettek lesznek azáltal, hogy össze lesznek csukva." -#: langfilter.php:52 +#: langfilter.php:50 msgid "Use the language filter" msgstr "A nyelvszűrő használata" -#: langfilter.php:53 +#: langfilter.php:51 msgid "Able to read" msgstr "Képes olvasni" -#: langfilter.php:53 +#: langfilter.php:51 msgid "" "List of abbreviations (ISO 639-1 codes) for languages you speak, comma " "separated. For example \"de,it\"." msgstr "Az Ön által beszélt nyelvek rövidítéseinek listája (ISO 639-1 kódok) vesszővel elválasztva. Például „de,it”." -#: langfilter.php:54 +#: langfilter.php:52 msgid "Minimum confidence in language detection" msgstr "Legkisebb megbízhatóság a nyelvfelismerésben" -#: langfilter.php:54 +#: langfilter.php:52 msgid "" "Minimum confidence in language detection being correct, from 0 to 100. Posts" " will not be filtered when the confidence of language detection is below " "this percent value." msgstr "A legkisebb megbízhatóság a helyesnek tűnő nyelvfelismerésben 0-tól 100-ig. A bejegyzések nem lesznek szűrve, ha a nyelvfelismerés megbízhatósága ezen százalékérték alatt van." -#: langfilter.php:55 +#: langfilter.php:53 msgid "Minimum length of message body" msgstr "Üzenettörzs legkisebb hossza" -#: langfilter.php:55 +#: langfilter.php:53 msgid "" "Minimum number of characters in message body for filter to be used. Posts " "shorter than this will not be filtered. Note: Language detection is " "unreliable for short content (<200 characters)." msgstr "Az üzenet törzsében lévő karakterek legkisebb száma a használandó szűrőnél. Az ennél rövidebb bejegyzések nem lesznek szűrve. Megjegyzés: a nyelvfelismerés megbízhatatlan a rövid tartalmaknál (200-nál kevesebb karakternél)." -#: langfilter.php:56 +#: langfilter.php:58 +msgid "Language Filter" +msgstr "Nyelvszűrő" + +#: langfilter.php:60 msgid "Save Settings" msgstr "Beállítások mentése" -#: langfilter.php:187 +#: langfilter.php:193 #, php-format msgid "Filtered language: %s" msgstr "Szűrt nyelv: %s" diff --git a/langfilter/lang/hu/strings.php b/langfilter/lang/hu/strings.php index fa95e496..42e05a74 100644 --- a/langfilter/lang/hu/strings.php +++ b/langfilter/lang/hu/strings.php @@ -5,7 +5,6 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Language Filter'] = 'Nyelvszűrő'; $a->strings['This addon tries to identify the language posts are written in. If it does not match any language specified below, posts will be hidden by collapsing them.'] = 'Ez a bővítmény megpróbálja azonosítani, hogy a bejegyzéseket milyen nyelven írták. Ha nem egyezik egyetlen lent megadott nyelvvel sem, akkor a bejegyzések rejtettek lesznek azáltal, hogy össze lesznek csukva.'; $a->strings['Use the language filter'] = 'A nyelvszűrő használata'; $a->strings['Able to read'] = 'Képes olvasni'; @@ -14,5 +13,6 @@ $a->strings['Minimum confidence in language detection'] = 'Legkisebb megbízhat $a->strings['Minimum confidence in language detection being correct, from 0 to 100. Posts will not be filtered when the confidence of language detection is below this percent value.'] = 'A legkisebb megbízhatóság a helyesnek tűnő nyelvfelismerésben 0-tól 100-ig. A bejegyzések nem lesznek szűrve, ha a nyelvfelismerés megbízhatósága ezen százalékérték alatt van.'; $a->strings['Minimum length of message body'] = 'Üzenettörzs legkisebb hossza'; $a->strings['Minimum number of characters in message body for filter to be used. Posts shorter than this will not be filtered. Note: Language detection is unreliable for short content (<200 characters).'] = 'Az üzenet törzsében lévő karakterek legkisebb száma a használandó szűrőnél. Az ennél rövidebb bejegyzések nem lesznek szűrve. Megjegyzés: a nyelvfelismerés megbízhatatlan a rövid tartalmaknál (200-nál kevesebb karakternél).'; +$a->strings['Language Filter'] = 'Nyelvszűrő'; $a->strings['Save Settings'] = 'Beállítások mentése'; $a->strings['Filtered language: %s'] = 'Szűrt nyelv: %s'; diff --git a/libertree/lang/hu/messages.po b/libertree/lang/hu/messages.po index d061ac0a..649fb1eb 100644 --- a/libertree/lang/hu/messages.po +++ b/libertree/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-03-24 00:26+0000\n" +"POT-Creation-Date: 2021-11-21 19:17-0500\n" +"PO-Revision-Date: 2021-12-23 18:44+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,30 +19,26 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: libertree.php:37 +#: libertree.php:39 msgid "Post to libertree" msgstr "Beküldés a Libertree-re" -#: libertree.php:71 libertree.php:75 -msgid "libertree Export" -msgstr "Libertree exportálás" - -#: libertree.php:79 +#: libertree.php:60 msgid "Enable Libertree Post Addon" msgstr "A Libertree-beküldő bővítmény engedélyezése" -#: libertree.php:84 -msgid "Libertree API token" -msgstr "Libertree API token" - -#: libertree.php:89 +#: libertree.php:61 msgid "Libertree site URL" msgstr "Libertree oldal URL" -#: libertree.php:94 +#: libertree.php:62 +msgid "Libertree API token" +msgstr "Libertree API token" + +#: libertree.php:63 msgid "Post to Libertree by default" msgstr "Beküldés a Libertree-re alapértelmezetten" -#: libertree.php:100 -msgid "Save Settings" -msgstr "Beállítások mentése" +#: libertree.php:68 +msgid "Libertree Export" +msgstr "Libertree exportálás" diff --git a/libertree/lang/hu/strings.php b/libertree/lang/hu/strings.php index b6d02725..78f1179c 100644 --- a/libertree/lang/hu/strings.php +++ b/libertree/lang/hu/strings.php @@ -6,9 +6,8 @@ function string_plural_select_hu($n){ return intval($n != 1); }} $a->strings['Post to libertree'] = 'Beküldés a Libertree-re'; -$a->strings['libertree Export'] = 'Libertree exportálás'; $a->strings['Enable Libertree Post Addon'] = 'A Libertree-beküldő bővítmény engedélyezése'; -$a->strings['Libertree API token'] = 'Libertree API token'; $a->strings['Libertree site URL'] = 'Libertree oldal URL'; +$a->strings['Libertree API token'] = 'Libertree API token'; $a->strings['Post to Libertree by default'] = 'Beküldés a Libertree-re alapértelmezetten'; -$a->strings['Save Settings'] = 'Beállítások mentése'; +$a->strings['Libertree Export'] = 'Libertree exportálás'; diff --git a/libravatar/lang/hu/messages.po b/libravatar/lang/hu/messages.po index 64770ad3..8055045f 100644 --- a/libravatar/lang/hu/messages.po +++ b/libravatar/lang/hu/messages.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-01 18:15+0100\n" -"PO-Revision-Date: 2021-03-24 00:33+0000\n" +"PO-Revision-Date: 2021-12-23 17:24+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" diff --git a/ljpost/lang/hu/messages.po b/ljpost/lang/hu/messages.po index 0a64f68d..bdf924d1 100644 --- a/ljpost/lang/hu/messages.po +++ b/ljpost/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-03-24 00:39+0000\n" +"POT-Creation-Date: 2021-11-21 19:17-0500\n" +"PO-Revision-Date: 2021-12-23 18:46+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,30 +19,26 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ljpost.php:39 +#: ljpost.php:43 msgid "Post to LiveJournal" msgstr "Beküldés a LiveJournalra" -#: ljpost.php:73 -msgid "LiveJournal Post Settings" -msgstr "LiveJournal-beküldés beállításai" - -#: ljpost.php:75 +#: ljpost.php:63 msgid "Enable LiveJournal Post Addon" msgstr "A LiveJournal-beküldő bővítmény engedélyezése" -#: ljpost.php:80 +#: ljpost.php:64 msgid "LiveJournal username" msgstr "LiveJournal felhasználónév" -#: ljpost.php:85 +#: ljpost.php:65 msgid "LiveJournal password" msgstr "LiveJournal jelszó" -#: ljpost.php:90 +#: ljpost.php:66 msgid "Post to LiveJournal by default" msgstr "Beküldés a LiveJournalra alapértelmezetten" -#: ljpost.php:96 -msgid "Save Settings" -msgstr "Beállítások mentése" +#: ljpost.php:71 +msgid "LiveJournal Export" +msgstr "LiveJournal exportálás" diff --git a/ljpost/lang/hu/strings.php b/ljpost/lang/hu/strings.php index 10445541..2455c43b 100644 --- a/ljpost/lang/hu/strings.php +++ b/ljpost/lang/hu/strings.php @@ -6,9 +6,8 @@ function string_plural_select_hu($n){ return intval($n != 1); }} $a->strings['Post to LiveJournal'] = 'Beküldés a LiveJournalra'; -$a->strings['LiveJournal Post Settings'] = 'LiveJournal-beküldés beállításai'; $a->strings['Enable LiveJournal Post Addon'] = 'A LiveJournal-beküldő bővítmény engedélyezése'; $a->strings['LiveJournal username'] = 'LiveJournal felhasználónév'; $a->strings['LiveJournal password'] = 'LiveJournal jelszó'; $a->strings['Post to LiveJournal by default'] = 'Beküldés a LiveJournalra alapértelmezetten'; -$a->strings['Save Settings'] = 'Beállítások mentése'; +$a->strings['LiveJournal Export'] = 'LiveJournal exportálás'; diff --git a/mailstream/lang/hu/messages.po b/mailstream/lang/hu/messages.po index 8bce58e2..5b86cc42 100644 --- a/mailstream/lang/hu/messages.po +++ b/mailstream/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-03-24 00:48+0000\n" +"POT-Creation-Date: 2021-11-21 19:15-0500\n" +"PO-Revision-Date: 2021-12-23 17:25+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,80 +19,80 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mailstream.php:66 +#: mailstream.php:77 msgid "From Address" msgstr "Feladócím" -#: mailstream.php:68 +#: mailstream.php:79 msgid "Email address that stream items will appear to be from." msgstr "E-mail-cím, ahonnan úgy tűnik, hogy a folyam elemei származnak." -#: mailstream.php:71 mailstream.php:382 +#: mailstream.php:82 msgid "Save Settings" msgstr "Beállítások mentése" -#: mailstream.php:225 +#: mailstream.php:301 msgid "Re:" msgstr "Vá:" -#: mailstream.php:233 +#: mailstream.php:314 mailstream.php:317 msgid "Friendica post" msgstr "Friendica-bejegyzés" -#: mailstream.php:236 +#: mailstream.php:320 msgid "Diaspora post" msgstr "Diaspora-bejegyzés" -#: mailstream.php:246 +#: mailstream.php:330 msgid "Feed item" msgstr "Hírforráselem" -#: mailstream.php:249 +#: mailstream.php:333 msgid "Email" msgstr "E-mail" -#: mailstream.php:251 +#: mailstream.php:335 msgid "Friendica Item" msgstr "Friendica-elem" -#: mailstream.php:296 +#: mailstream.php:404 msgid "Upstream" msgstr "Távoli" -#: mailstream.php:297 +#: mailstream.php:405 msgid "Local" msgstr "Helyi" -#: mailstream.php:364 +#: mailstream.php:481 msgid "Enabled" msgstr "Engedélyezve" -#: mailstream.php:368 +#: mailstream.php:486 msgid "Email Address" msgstr "E-mail-cím" -#: mailstream.php:370 +#: mailstream.php:488 msgid "Leave blank to use your account email address" msgstr "Hagyja üresen a fiókja e-mail-címének használatához" -#: mailstream.php:373 +#: mailstream.php:492 msgid "Exclude Likes" msgstr "Kedvelések kizárása" -#: mailstream.php:375 +#: mailstream.php:494 msgid "Check this to omit mailing \"Like\" notifications" msgstr "Jelölje be ezt a „Tetszik” értesítések elküldésének kihagyásához" -#: mailstream.php:378 +#: mailstream.php:498 msgid "Attach Images" msgstr "Képek csatolása" -#: mailstream.php:380 +#: mailstream.php:500 msgid "" "Download images in posts and attach them to the email. Useful for reading " "email while offline." msgstr "Képek letöltése a bejegyzésekből és csatolás az e-mailhez. Hasznos az e-mailek kapcsolat nélküli olvasásakor." -#: mailstream.php:381 +#: mailstream.php:507 msgid "Mail Stream Settings" msgstr "Levelezőfolyam beállításai" diff --git a/mathjax/lang/hu/messages.po b/mathjax/lang/hu/messages.po index cda114bd..578fa5ee 100644 --- a/mathjax/lang/hu/messages.po +++ b/mathjax/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-03-24 00:57+0000\n" +"POT-Creation-Date: 2021-11-21 19:15-0500\n" +"PO-Revision-Date: 2021-12-23 17:25+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,13 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mathjax.php:43 +#: mathjax.php:42 msgid "" "The MathJax addon renders mathematical formulae written using the LaTeX " "syntax surrounded by the usual $$ or an eqnarray block in the postings of " "your wall,network tab and private mail." msgstr "A MathJax bővítmény a LaTeX szintaxis használatával írt matematikai képleteket jelenít meg, amelyeket a szokásos $$ vagy egy eqnarray blokk vesz körül a falán lévő bejegyzésekben, a hálózat lapon és a személyes levelekben." -#: mathjax.php:44 +#: mathjax.php:43 msgid "Use the MathJax renderer" msgstr "A MathJax megjelenítő használata" - -#: mathjax.php:45 -msgid "Save Settings" -msgstr "Beállítások mentése" diff --git a/mathjax/lang/hu/strings.php b/mathjax/lang/hu/strings.php index 79fb9c6b..602a1717 100644 --- a/mathjax/lang/hu/strings.php +++ b/mathjax/lang/hu/strings.php @@ -7,4 +7,3 @@ function string_plural_select_hu($n){ }} $a->strings['The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail.'] = 'A MathJax bővítmény a LaTeX szintaxis használatával írt matematikai képleteket jelenít meg, amelyeket a szokásos $$ vagy egy eqnarray blokk vesz körül a falán lévő bejegyzésekben, a hálózat lapon és a személyes levelekben.'; $a->strings['Use the MathJax renderer'] = 'A MathJax megjelenítő használata'; -$a->strings['Save Settings'] = 'Beállítások mentése'; diff --git a/morepokes/lang/hu/messages.po b/morepokes/lang/hu/messages.po new file mode 100644 index 00000000..d6fe4b2d --- /dev/null +++ b/morepokes/lang/hu/messages.po @@ -0,0 +1,166 @@ +# ADDON morepokes +# Copyright (C) +# This file is distributed under the same license as the Friendica morepokes 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 10:18+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: morepokes.php:19 +msgid "bitchslap" +msgstr "" + +#: morepokes.php:19 +msgid "bitchslapped" +msgstr "" + +#: morepokes.php:20 +msgid "shag" +msgstr "" + +#: morepokes.php:20 +msgid "shagged" +msgstr "" + +#: morepokes.php:21 +msgid "do something obscenely biological to" +msgstr "" + +#: morepokes.php:21 +msgid "did something obscenely biological to" +msgstr "" + +#: morepokes.php:22 +msgid "point out the poke feature to" +msgstr "" + +#: morepokes.php:22 +msgid "pointed out the poke feature to" +msgstr "" + +#: morepokes.php:23 +msgid "declare undying love for" +msgstr "" + +#: morepokes.php:23 +msgid "declared undying love for" +msgstr "" + +#: morepokes.php:24 +msgid "patent" +msgstr "" + +#: morepokes.php:24 +msgid "patented" +msgstr "" + +#: morepokes.php:25 +msgid "stroke beard" +msgstr "" + +#: morepokes.php:25 +msgid "stroked their beard at" +msgstr "" + +#: morepokes.php:26 +msgid "" +"bemoan the declining standards of modern secondary and tertiary education to" +msgstr "" + +#: morepokes.php:26 +msgid "" +"bemoans the declining standards of modern secondary and tertiary education " +"to" +msgstr "" + +#: morepokes.php:27 +msgid "hug" +msgstr "" + +#: morepokes.php:27 +msgid "hugged" +msgstr "" + +#: morepokes.php:28 +msgid "kiss" +msgstr "" + +#: morepokes.php:28 +msgid "kissed" +msgstr "" + +#: morepokes.php:29 +msgid "raise eyebrows at" +msgstr "" + +#: morepokes.php:29 +msgid "raised their eyebrows at" +msgstr "" + +#: morepokes.php:30 +msgid "insult" +msgstr "" + +#: morepokes.php:30 +msgid "insulted" +msgstr "" + +#: morepokes.php:31 +msgid "praise" +msgstr "" + +#: morepokes.php:31 +msgid "praised" +msgstr "" + +#: morepokes.php:32 +msgid "be dubious of" +msgstr "" + +#: morepokes.php:32 +msgid "was dubious of" +msgstr "" + +#: morepokes.php:33 +msgid "eat" +msgstr "" + +#: morepokes.php:33 +msgid "ate" +msgstr "" + +#: morepokes.php:34 +msgid "giggle and fawn at" +msgstr "" + +#: morepokes.php:34 +msgid "giggled and fawned at" +msgstr "" + +#: morepokes.php:35 +msgid "doubt" +msgstr "" + +#: morepokes.php:35 +msgid "doubted" +msgstr "" + +#: morepokes.php:36 +msgid "glare" +msgstr "" + +#: morepokes.php:36 +msgid "glared at" +msgstr "" diff --git a/morepokes/lang/hu/strings.php b/morepokes/lang/hu/strings.php new file mode 100644 index 00000000..932b7e8e --- /dev/null +++ b/morepokes/lang/hu/strings.php @@ -0,0 +1,7 @@ +strings['Content Filter (NSFW and more)'] = 'Tartalomszűrő (érzékeny tartalmak és egyebek)'; $a->strings['This addon searches for specified words/text in posts and collapses them. It can be used to filter content tagged with for instance #NSFW that may be deemed inappropriate at certain times or places, such as being at work. It is also useful for hiding irrelevant or annoying content from direct view.'] = 'Ez a bővítmény megadott szavakra vagy szövegre keres a bejegyzésekben, és összecsukja azokat. Használható például az #NSFW megjelölésű tartalmak szűréséhez, amelyek bizonyos időkben vagy helyeken nem megfelelőnek tekinthetők, mint például munka közben. Ez hasznos a nem kapcsolódó vagy idegesítő tartalom elrejtéséhez a közvetlen megtekintés elől.'; $a->strings['Enable Content filter'] = 'Tartalomszűrő engedélyezése'; $a->strings['Comma separated list of keywords to hide'] = 'Kulcsszavak vesszővel elválasztott listája az elrejtéshez'; -$a->strings['Save Settings'] = 'Beállítások mentése'; $a->strings['Use /expression/ to provide regular expressions'] = 'Használjon /kifejezést/ reguláris kifejezések megadásához'; +$a->strings['Content Filter (NSFW and more)'] = 'Tartalomszűrő (érzékeny tartalmak és egyebek)'; $a->strings['Filtered tag: %s'] = 'Kiszűrt címke: %s'; $a->strings['Filtered word: %s'] = 'Kiszűrt szó: %s'; diff --git a/numfriends/lang/hu/messages.po b/numfriends/lang/hu/messages.po index 54a6b1b4..f119815c 100644 --- a/numfriends/lang/hu/messages.po +++ b/numfriends/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-03-25 23:03+0000\n" +"POT-Creation-Date: 2021-11-21 19:15-0500\n" +"PO-Revision-Date: 2021-12-23 18:53+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,14 +19,10 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: numfriends.php:59 -msgid "Numfriends Settings" -msgstr "Ismerősszám beállításai" - -#: numfriends.php:61 +#: numfriends.php:55 msgid "How many contacts to display on profile sidebar" msgstr "Hány partner legyen megjelenítve a profil oldalsávján" -#: numfriends.php:67 -msgid "Save Settings" -msgstr "Beállítások mentése" +#: numfriends.php:60 +msgid "Numfriends Settings" +msgstr "Ismerősszám beállításai" diff --git a/numfriends/lang/hu/strings.php b/numfriends/lang/hu/strings.php index 283cc110..858deafa 100644 --- a/numfriends/lang/hu/strings.php +++ b/numfriends/lang/hu/strings.php @@ -5,6 +5,5 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Numfriends Settings'] = 'Ismerősszám beállításai'; $a->strings['How many contacts to display on profile sidebar'] = 'Hány partner legyen megjelenítve a profil oldalsávján'; -$a->strings['Save Settings'] = 'Beállítások mentése'; +$a->strings['Numfriends Settings'] = 'Ismerősszám beállításai'; diff --git a/openstreetmap/lang/hu/messages.po b/openstreetmap/lang/hu/messages.po index be9141bb..afbf2986 100644 --- a/openstreetmap/lang/hu/messages.po +++ b/openstreetmap/lang/hu/messages.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-01 18:15+0100\n" -"PO-Revision-Date: 2021-03-25 23:09+0000\n" +"PO-Revision-Date: 2021-12-23 18:53+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" diff --git a/pageheader/lang/hu/messages.po b/pageheader/lang/hu/messages.po index e4d3dde2..0c00ebd6 100644 --- a/pageheader/lang/hu/messages.po +++ b/pageheader/lang/hu/messages.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-01 18:15+0100\n" -"PO-Revision-Date: 2021-03-25 23:13+0000\n" +"PO-Revision-Date: 2021-12-23 18:53+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" diff --git a/piwik/lang/hu/messages.po b/piwik/lang/hu/messages.po index b0934be5..457198b4 100644 --- a/piwik/lang/hu/messages.po +++ b/piwik/lang/hu/messages.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-01 18:15+0100\n" -"PO-Revision-Date: 2021-03-25 23:20+0000\n" +"PO-Revision-Date: 2021-12-23 18:54+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" diff --git a/planets/lang/hu/messages.po b/planets/lang/hu/messages.po index be12cd91..e66a44a6 100644 --- a/planets/lang/hu/messages.po +++ b/planets/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-03-25 23:24+0000\n" +"POT-Creation-Date: 2021-11-21 19:15-0500\n" +"PO-Revision-Date: 2021-12-23 18:54+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,18 +19,10 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: planets.php:131 planets.php:135 -msgid "Planets" -msgstr "Bolygók" - -#: planets.php:139 -msgid "Planets Settings" -msgstr "Bolygók beállításai" - -#: planets.php:141 +#: planets.php:126 msgid "Enable Planets Addon" msgstr "Bolygók bővítmény engedélyezése" -#: planets.php:147 -msgid "Save Settings" -msgstr "Beállítások mentése" +#: planets.php:131 +msgid "Planets Settings" +msgstr "Bolygók beállításai" diff --git a/planets/lang/hu/strings.php b/planets/lang/hu/strings.php index 2ecbc6f8..6912a283 100644 --- a/planets/lang/hu/strings.php +++ b/planets/lang/hu/strings.php @@ -5,7 +5,5 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Planets'] = 'Bolygók'; -$a->strings['Planets Settings'] = 'Bolygók beállításai'; $a->strings['Enable Planets Addon'] = 'Bolygók bővítmény engedélyezése'; -$a->strings['Save Settings'] = 'Beállítások mentése'; +$a->strings['Planets Settings'] = 'Bolygók beállításai'; diff --git a/public_server/lang/hu/messages.po b/public_server/lang/hu/messages.po index d755a6b2..bc45cc39 100644 --- a/public_server/lang/hu/messages.po +++ b/public_server/lang/hu/messages.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-01 18:15+0100\n" -"PO-Revision-Date: 2021-03-25 23:33+0000\n" +"PO-Revision-Date: 2021-12-23 18:54+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" diff --git a/pumpio/lang/hu/messages.po b/pumpio/lang/hu/messages.po index 865ab2ef..21e15c82 100644 --- a/pumpio/lang/hu/messages.po +++ b/pumpio/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-03-27 00:38+0000\n" +"POT-Creation-Date: 2021-11-21 19:17-0500\n" +"PO-Revision-Date: 2021-12-23 19:08+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,76 +19,76 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: pumpio.php:54 +#: pumpio.php:57 msgid "Permission denied." msgstr "Engedély megtagadva." -#: pumpio.php:149 +#: pumpio.php:152 #, php-format msgid "Unable to register the client at the pump.io server '%s'." msgstr "Nem lehet regisztrálni a klienst a(z) „%s” pump.io kiszolgálón." -#: pumpio.php:189 +#: pumpio.php:192 msgid "You are now authenticated to pumpio." msgstr "Most már hitelesítve van a pump.io-hoz." -#: pumpio.php:190 +#: pumpio.php:193 msgid "return to the connector page" msgstr "visszatérés a csatlakozó oldalára" -#: pumpio.php:210 +#: pumpio.php:213 msgid "Post to pumpio" msgstr "Beküldése a pump.io-ra" -#: pumpio.php:251 pumpio.php:255 -msgid "Pump.io Import/Export/Mirror" -msgstr "Pump.io importálás, exportálás vagy tükrözés" - -#: pumpio.php:259 -msgid "pump.io username (without the servername)" -msgstr "pump.io felhasználónév (a kiszolgálónév nélkül)" - -#: pumpio.php:264 -msgid "pump.io servername (without \"http://\" or \"https://\" )" -msgstr "pump.io kiszolgálónév (a „http://” vagy „https://” nélkül)" - -#: pumpio.php:275 -msgid "Authenticate your pump.io connection" -msgstr "A pump.io-kapcsolatának hitelesítése" - -#: pumpio.php:279 -msgid "Import the remote timeline" -msgstr "A távoli idővonal importálása" - -#: pumpio.php:284 -msgid "Enable pump.io Post Addon" -msgstr "A pump.io-beküldő bővítmény engedélyezése" - -#: pumpio.php:289 -msgid "Post to pump.io by default" -msgstr "Beküldés a pump.io-ra alapértelmezetten" - -#: pumpio.php:294 -msgid "Should posts be public?" -msgstr "Nyilvánosak legyenek a bejegyzések?" - -#: pumpio.php:299 -msgid "Mirror all public posts" -msgstr "Összes nyilvános bejegyzés tükrözése" - -#: pumpio.php:304 -msgid "Check to delete this preset" -msgstr "Jelölje be az előbeállítás törléséhez" - -#: pumpio.php:314 +#: pumpio.php:237 msgid "Save Settings" msgstr "Beállítások mentése" -#: pumpio.php:981 +#: pumpio.php:239 +msgid "Delete this preset" +msgstr "Előbeállítás törlése" + +#: pumpio.php:245 +msgid "Authenticate your pump.io connection" +msgstr "A pump.io-kapcsolatának hitelesítése" + +#: pumpio.php:252 +msgid "Pump.io servername (without \"http://\" or \"https://\" )" +msgstr "Pump.io kiszolgálónév („http://” vagy „https://” nélkül)" + +#: pumpio.php:253 +msgid "Pump.io username (without the servername)" +msgstr "Pump.io felhasználónév (a kiszolgálónév nélkül)" + +#: pumpio.php:254 +msgid "Import the remote timeline" +msgstr "A távoli idővonal importálása" + +#: pumpio.php:255 +msgid "Enable Pump.io Post Addon" +msgstr "A Pump.io-beküldő bővítmény engedélyezése" + +#: pumpio.php:256 +msgid "Post to Pump.io by default" +msgstr "Beküldés a Pump.io-ra alapértelmezetten" + +#: pumpio.php:257 +msgid "Should posts be public?" +msgstr "Nyilvánosak legyenek a bejegyzések?" + +#: pumpio.php:258 +msgid "Mirror all public posts" +msgstr "Összes nyilvános bejegyzés tükrözése" + +#: pumpio.php:263 +msgid "Pump.io Import/Export/Mirror" +msgstr "Pump.io importálás, exportálás vagy tükrözés" + +#: pumpio.php:920 msgid "status" msgstr "állapotát" -#: pumpio.php:985 +#: pumpio.php:924 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s kedveli %2$s %3$s" diff --git a/pumpio/lang/hu/strings.php b/pumpio/lang/hu/strings.php index 08e8f924..2d1312bb 100644 --- a/pumpio/lang/hu/strings.php +++ b/pumpio/lang/hu/strings.php @@ -10,16 +10,16 @@ $a->strings['Unable to register the client at the pump.io server \'%s\'.'] = 'Ne $a->strings['You are now authenticated to pumpio.'] = 'Most már hitelesítve van a pump.io-hoz.'; $a->strings['return to the connector page'] = 'visszatérés a csatlakozó oldalára'; $a->strings['Post to pumpio'] = 'Beküldése a pump.io-ra'; -$a->strings['Pump.io Import/Export/Mirror'] = 'Pump.io importálás, exportálás vagy tükrözés'; -$a->strings['pump.io username (without the servername)'] = 'pump.io felhasználónév (a kiszolgálónév nélkül)'; -$a->strings['pump.io servername (without "http://" or "https://" )'] = 'pump.io kiszolgálónév (a „http://” vagy „https://” nélkül)'; +$a->strings['Save Settings'] = 'Beállítások mentése'; +$a->strings['Delete this preset'] = 'Előbeállítás törlése'; $a->strings['Authenticate your pump.io connection'] = 'A pump.io-kapcsolatának hitelesítése'; +$a->strings['Pump.io servername (without "http://" or "https://" )'] = 'Pump.io kiszolgálónév („http://” vagy „https://” nélkül)'; +$a->strings['Pump.io username (without the servername)'] = 'Pump.io felhasználónév (a kiszolgálónév nélkül)'; $a->strings['Import the remote timeline'] = 'A távoli idővonal importálása'; -$a->strings['Enable pump.io Post Addon'] = 'A pump.io-beküldő bővítmény engedélyezése'; -$a->strings['Post to pump.io by default'] = 'Beküldés a pump.io-ra alapértelmezetten'; +$a->strings['Enable Pump.io Post Addon'] = 'A Pump.io-beküldő bővítmény engedélyezése'; +$a->strings['Post to Pump.io by default'] = 'Beküldés a Pump.io-ra alapértelmezetten'; $a->strings['Should posts be public?'] = 'Nyilvánosak legyenek a bejegyzések?'; $a->strings['Mirror all public posts'] = 'Összes nyilvános bejegyzés tükrözése'; -$a->strings['Check to delete this preset'] = 'Jelölje be az előbeállítás törléséhez'; -$a->strings['Save Settings'] = 'Beállítások mentése'; +$a->strings['Pump.io Import/Export/Mirror'] = 'Pump.io importálás, exportálás vagy tükrözés'; $a->strings['status'] = 'állapotát'; $a->strings['%1$s likes %2$s\'s %3$s'] = '%1$s kedveli %2$s %3$s'; diff --git a/qcomment/lang/hu/messages.po b/qcomment/lang/hu/messages.po index abc61740..3c46315e 100644 --- a/qcomment/lang/hu/messages.po +++ b/qcomment/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-03-25 23:50+0000\n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2021-12-23 18:55+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,32 +19,28 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: qcomment.php:42 +#: qcomment.php:45 msgid ":-)" msgstr ":-)" -#: qcomment.php:42 +#: qcomment.php:45 msgid ":-(" msgstr ":-(" -#: qcomment.php:42 +#: qcomment.php:45 msgid "lol" msgstr "lol" -#: qcomment.php:47 -msgid "Quick Comment Settings" -msgstr "Gyors hozzászólás beállításai" - -#: qcomment.php:48 +#: qcomment.php:49 msgid "" "Quick comments are found near comment boxes, sometimes hidden. Click them to" " provide simple replies." msgstr "A gyors hozzászólások a hozzászólásmezők közelében találhatók, néha rejtetten. Kattintson rájuk egyszerű válaszok küldéséhez." -#: qcomment.php:49 -msgid "Save Settings" -msgstr "Beállítások mentése" - #: qcomment.php:50 msgid "Enter quick comments, one per line" msgstr "Adja meg a gyors hozzászólásokat, soronként egyet" + +#: qcomment.php:55 +msgid "Quick Comment Settings" +msgstr "Gyors hozzászólás beállításai" diff --git a/qcomment/lang/hu/strings.php b/qcomment/lang/hu/strings.php index 16ab63a9..253f2dc8 100644 --- a/qcomment/lang/hu/strings.php +++ b/qcomment/lang/hu/strings.php @@ -8,7 +8,6 @@ function string_plural_select_hu($n){ $a->strings[':-)'] = ':-)'; $a->strings[':-('] = ':-('; $a->strings['lol'] = 'lol'; -$a->strings['Quick Comment Settings'] = 'Gyors hozzászólás beállításai'; $a->strings['Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies.'] = 'A gyors hozzászólások a hozzászólásmezők közelében találhatók, néha rejtetten. Kattintson rájuk egyszerű válaszok küldéséhez.'; -$a->strings['Save Settings'] = 'Beállítások mentése'; $a->strings['Enter quick comments, one per line'] = 'Adja meg a gyors hozzászólásokat, soronként egyet'; +$a->strings['Quick Comment Settings'] = 'Gyors hozzászólás beállításai'; diff --git a/randplace/lang/hu/messages.po b/randplace/lang/hu/messages.po index 26b91195..019533dd 100644 --- a/randplace/lang/hu/messages.po +++ b/randplace/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-03-25 23:53+0000\n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2021-12-23 18:55+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,14 +19,10 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: randplace.php:166 -msgid "Randplace Settings" -msgstr "Véletlen hely beállításai" - -#: randplace.php:168 +#: randplace.php:161 msgid "Enable Randplace Addon" msgstr "A véletlen hely bővítmény engedélyezése" -#: randplace.php:174 -msgid "Save Settings" -msgstr "Beállítások mentése" +#: randplace.php:166 +msgid "Randplace Settings" +msgstr "Véletlen hely beállításai" diff --git a/randplace/lang/hu/strings.php b/randplace/lang/hu/strings.php index 2119ac2b..ac15c909 100644 --- a/randplace/lang/hu/strings.php +++ b/randplace/lang/hu/strings.php @@ -5,6 +5,5 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Randplace Settings'] = 'Véletlen hely beállításai'; $a->strings['Enable Randplace Addon'] = 'A véletlen hely bővítmény engedélyezése'; -$a->strings['Save Settings'] = 'Beállítások mentése'; +$a->strings['Randplace Settings'] = 'Véletlen hely beállításai'; diff --git a/rendertime/lang/hu/messages.po b/rendertime/lang/hu/messages.po index a9eae83b..8d7854ea 100644 --- a/rendertime/lang/hu/messages.po +++ b/rendertime/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-03-26 00:06+0000\n" +"POT-Creation-Date: 2021-12-12 22:09+0000\n" +"PO-Revision-Date: 2021-12-23 19:14+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,14 +19,36 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: rendertime.php:36 +#: rendertime.php:30 +msgid "Save Settings" +msgstr "Beállítások mentése" + +#: rendertime.php:31 +msgid "Show callstack" +msgstr "Hívásverem megjelenítése" + +#: rendertime.php:31 +msgid "" +"Show detailed performance measures in the callstack. When deactivated, only " +"the summary will be displayed." +msgstr "Részletes teljesítménymérések megjelenítése a hívásveremben. Ha ki van kapcsolva, akkor csak az összegzés lesz megjelenítve." + +#: rendertime.php:32 +msgid "Minimal time" +msgstr "Legkevesebb idő" + +#: rendertime.php:32 +msgid "Minimal time that an activity needs to be listed in the callstack." +msgstr "A legkevesebb idő, amíg egy tevékenységnek szerepelnie kell a hívásveremben." + +#: rendertime.php:57 #, php-format msgid "" "Database: %s/%s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: " "%s, Total: %s" msgstr "Adatbázis: %s/%s, hálózat: %s, megjelenítés: %s, munkamenet: %s, lemezművelet: %s, egyéb: %s, összesen: %s" -#: rendertime.php:53 +#: rendertime.php:74 #, php-format msgid "Class-Init: %s, Boot: %s, Init: %s, Content: %s, Other: %s, Total: %s" msgstr "Osztály-előkészítés: %s, indítás: %s, előkészítés: %s, tartalom: %s, egyéb: %s, összesen: %s" diff --git a/rendertime/lang/hu/strings.php b/rendertime/lang/hu/strings.php index c7369166..527ac507 100644 --- a/rendertime/lang/hu/strings.php +++ b/rendertime/lang/hu/strings.php @@ -5,5 +5,10 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} +$a->strings['Save Settings'] = 'Beállítások mentése'; +$a->strings['Show callstack'] = 'Hívásverem megjelenítése'; +$a->strings['Show detailed performance measures in the callstack. When deactivated, only the summary will be displayed.'] = 'Részletes teljesítménymérések megjelenítése a hívásveremben. Ha ki van kapcsolva, akkor csak az összegzés lesz megjelenítve.'; +$a->strings['Minimal time'] = 'Legkevesebb idő'; +$a->strings['Minimal time that an activity needs to be listed in the callstack.'] = 'A legkevesebb idő, amíg egy tevékenységnek szerepelnie kell a hívásveremben.'; $a->strings['Database: %s/%s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: %s, Total: %s'] = 'Adatbázis: %s/%s, hálózat: %s, megjelenítés: %s, munkamenet: %s, lemezművelet: %s, egyéb: %s, összesen: %s'; $a->strings['Class-Init: %s, Boot: %s, Init: %s, Content: %s, Other: %s, Total: %s'] = 'Osztály-előkészítés: %s, indítás: %s, előkészítés: %s, tartalom: %s, egyéb: %s, összesen: %s'; diff --git a/securemail/lang/hu/messages.po b/securemail/lang/hu/messages.po index 5df7d280..e2e8b623 100644 --- a/securemail/lang/hu/messages.po +++ b/securemail/lang/hu/messages.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-01 18:15+0100\n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" "PO-Revision-Date: 2018-03-20 07:26+0000\n" "Last-Translator: Balázs Úr, 2021\n" "Language-Team: Hungarian (https://www.transifex.com/Friendica/teams/12172/hu/)\n" @@ -21,34 +21,34 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: securemail.php:51 -msgid "\"Secure Mail\" Settings" -msgstr "Biztonságos levél beállításai" - -#: securemail.php:52 -msgid "Save Settings" -msgstr "Beállítások mentése" - -#: securemail.php:53 securemail.php:80 -msgid "Save and send test" -msgstr "Mentés és teszt küldése" - -#: securemail.php:54 +#: securemail.php:50 msgid "Enable Secure Mail" msgstr "Biztonságos levél engedélyezése" -#: securemail.php:55 +#: securemail.php:51 msgid "Public key" msgstr "Nyilvános kulcs" -#: securemail.php:55 +#: securemail.php:51 msgid "Your public PGP key, ascii armored format" msgstr "A nyilvános PGP kulcsa ASCII-védett formátumban" -#: securemail.php:88 +#: securemail.php:56 +msgid "\"Secure Mail\" Settings" +msgstr "Biztonságos levél beállításai" + +#: securemail.php:59 +msgid "Save Settings" +msgstr "Beállítások mentése" + +#: securemail.php:60 +msgid "Save and send test" +msgstr "Mentés és teszt küldése" + +#: securemail.php:93 msgid "Test email sent" msgstr "Tesztlevél elküldve" -#: securemail.php:90 +#: securemail.php:95 msgid "There was an error sending the test email" msgstr "Hiba történt a tesztlevél küldésekor" diff --git a/securemail/lang/hu/strings.php b/securemail/lang/hu/strings.php index eaeb4816..ee5a42fd 100644 --- a/securemail/lang/hu/strings.php +++ b/securemail/lang/hu/strings.php @@ -5,11 +5,11 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['"Secure Mail" Settings'] = 'Biztonságos levél beállításai'; -$a->strings['Save Settings'] = 'Beállítások mentése'; -$a->strings['Save and send test'] = 'Mentés és teszt küldése'; $a->strings['Enable Secure Mail'] = 'Biztonságos levél engedélyezése'; $a->strings['Public key'] = 'Nyilvános kulcs'; $a->strings['Your public PGP key, ascii armored format'] = 'A nyilvános PGP kulcsa ASCII-védett formátumban'; +$a->strings['"Secure Mail" Settings'] = 'Biztonságos levél beállításai'; +$a->strings['Save Settings'] = 'Beállítások mentése'; +$a->strings['Save and send test'] = 'Mentés és teszt küldése'; $a->strings['Test email sent'] = 'Tesztlevél elküldve'; $a->strings['There was an error sending the test email'] = 'Hiba történt a tesztlevél küldésekor'; diff --git a/showmore/lang/hu/messages.po b/showmore/lang/hu/messages.po index 5667cb49..e24bc766 100644 --- a/showmore/lang/hu/messages.po +++ b/showmore/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-03-26 00:16+0000\n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2021-12-23 19:17+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,22 +19,18 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: showmore.php:35 showmore.php:39 -msgid "\"Show more\" Settings" -msgstr "„Több megjelenítése” beállításai" - -#: showmore.php:44 +#: showmore.php:37 msgid "Enable Show More" msgstr "Több megjelenítésének engedélyezése" -#: showmore.php:47 -msgid "Cutting posts after how much characters" -msgstr "Bejegyzések vágása ennyi karakter után" +#: showmore.php:38 +msgid "Cutting posts after how many characters" +msgstr "Bejegyzések levágása ennyi karakter után" -#: showmore.php:51 -msgid "Save Settings" -msgstr "Beállítások mentése" +#: showmore.php:43 +msgid "\"Show more\" Settings" +msgstr "„Több megjelenítése” beállításai" -#: showmore.php:129 +#: showmore.php:119 msgid "show more" msgstr "több megjelenítése" diff --git a/showmore/lang/hu/strings.php b/showmore/lang/hu/strings.php index 4b5a0468..7917d322 100644 --- a/showmore/lang/hu/strings.php +++ b/showmore/lang/hu/strings.php @@ -5,8 +5,7 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['"Show more" Settings'] = '„Több megjelenítése” beállításai'; $a->strings['Enable Show More'] = 'Több megjelenítésének engedélyezése'; -$a->strings['Cutting posts after how much characters'] = 'Bejegyzések vágása ennyi karakter után'; -$a->strings['Save Settings'] = 'Beállítások mentése'; +$a->strings['Cutting posts after how many characters'] = 'Bejegyzések levágása ennyi karakter után'; +$a->strings['"Show more" Settings'] = '„Több megjelenítése” beállításai'; $a->strings['show more'] = 'több megjelenítése'; diff --git a/smileybutton/lang/hu/messages.po b/smileybutton/lang/hu/messages.po index 23c27f96..4ed6da24 100644 --- a/smileybutton/lang/hu/messages.po +++ b/smileybutton/lang/hu/messages.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-23 14:45+0200\n" -"PO-Revision-Date: 2021-03-26 00:19+0000\n" +"PO-Revision-Date: 2021-12-23 19:17+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" diff --git a/startpage/lang/hu/messages.po b/startpage/lang/hu/messages.po index 7264dc5a..5fd91a74 100644 --- a/startpage/lang/hu/messages.po +++ b/startpage/lang/hu/messages.po @@ -10,8 +10,8 @@ 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: 2021-03-26 00:25+0000\n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2021-12-23 19:20+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -20,18 +20,14 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: startpage.php:74 startpage.php:78 -msgid "Startpage" -msgstr "Kezdőlap" - -#: startpage.php:81 +#: startpage.php:70 msgid "Home page to load after login - leave blank for profile wall" -msgstr "Betöltendő kezdőoldal bejelentkezés után - hagyja üresen a profilfalhoz" +msgstr "Betöltendő kezdőoldal bejelentkezés után – hagyja üresen a profilfalhoz" -#: startpage.php:84 -msgid "Examples: "network" or "notifications/system"" +#: startpage.php:70 +msgid "Examples: \"network\" or \"notifications/system\"" msgstr "Példák: „network” vagy „notifications/system”" -#: startpage.php:88 -msgid "Save Settings" -msgstr "Beállítások mentése" +#: startpage.php:75 +msgid "Startpage" +msgstr "Kezdőlap" diff --git a/startpage/lang/hu/strings.php b/startpage/lang/hu/strings.php index d679538b..36e6655b 100644 --- a/startpage/lang/hu/strings.php +++ b/startpage/lang/hu/strings.php @@ -5,7 +5,6 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} +$a->strings['Home page to load after login - leave blank for profile wall'] = 'Betöltendő kezdőoldal bejelentkezés után – hagyja üresen a profilfalhoz'; +$a->strings['Examples: "network" or "notifications/system"'] = 'Példák: „network” vagy „notifications/system”'; $a->strings['Startpage'] = 'Kezdőlap'; -$a->strings['Home page to load after login - leave blank for profile wall'] = 'Betöltendő kezdőoldal bejelentkezés után - hagyja üresen a profilfalhoz'; -$a->strings['Examples: "network" or "notifications/system"'] = 'Példák: „network” vagy „notifications/system”'; -$a->strings['Save Settings'] = 'Beállítások mentése'; diff --git a/statusnet/lang/hu/messages.po b/statusnet/lang/hu/messages.po index 8ed456c4..82884dde 100644 --- a/statusnet/lang/hu/messages.po +++ b/statusnet/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-03-27 00:09+0000\n" +"POT-Creation-Date: 2021-11-21 19:17-0500\n" +"PO-Revision-Date: 2021-12-23 19:26+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,105 +19,30 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: statusnet.php:95 +#: statusnet.php:97 msgid "Post to GNU Social" msgstr "Beküldés a GNU Socialra" -#: statusnet.php:146 +#: statusnet.php:148 msgid "" "Please contact your site administrator.
The provided API URL is not " "valid." msgstr "Vegye fel a kapcsolatot az oldal adminisztrátorával.
A megadott API URL nem érvényes." -#: statusnet.php:175 +#: statusnet.php:176 msgid "We could not contact the GNU Social API with the Path you entered." msgstr "Nem tudtunk kapcsolatba lépni a GNU Social API-val azon az útvonalon, amelyet megadott." -#: statusnet.php:248 statusnet.php:252 -msgid "GNU Social Import/Export/Mirror" -msgstr "GNU Social importálás, exportálás vagy tükrözés" - -#: statusnet.php:267 -msgid "Globally Available GNU Social OAuthKeys" -msgstr "Globálisan elérhető GNU Social OAuth-kulcsok" - -#: statusnet.php:268 -msgid "" -"There are preconfigured OAuth key pairs for some GNU Social servers " -"available. If you are using one of them, please use these credentials. If " -"not feel free to connect to any other GNU Social instance (see below)." -msgstr "Előre beállított OAuth-kulcspárok érhetők el néhány GNU Social kiszolgálóhoz. Ha ezek egyikét használja, akkor használja ezeket a hitelesítési adatokat. Ha nem használja, akkor nyugodtan kapcsolódjon bármely egyéb GNU Social példányhoz (lásd lent)." - -#: statusnet.php:274 statusnet.php:291 statusnet.php:318 statusnet.php:325 -#: statusnet.php:372 statusnet.php:698 +#: statusnet.php:243 statusnet.php:656 msgid "Save Settings" msgstr "Beállítások mentése" -#: statusnet.php:276 -msgid "Provide your own OAuth Credentials" -msgstr "Adja meg a saját OAuth hitelesítési adatait" +#: statusnet.php:255 +#, php-format +msgid "Currently connected to: %s" +msgstr "Jelenleg ehhez kapcsolódott: %s" -#: statusnet.php:277 -msgid "" -"No consumer key pair for GNU Social found. Register your Friendica Account " -"as an desktop client on your GNU Social account, copy the consumer key pair " -"here and enter the API base root.
Before you register your own OAuth " -"key pair ask the administrator if there is already a key pair for this " -"Friendica installation at your favorited GNU Social installation." -msgstr "Nem találhatók felhasználói kulcspárok a GNU Socialhoz. Regisztrálja a Friendica fiókját asztali kliensként a GNU Social fiókjánál, másolja be a felhasználói kulcspárt ide, és adja meg az API alapgyökerét.
Mielőtt saját OAuth kulcspárt regisztrálna, kérdezze meg az adminisztrátort, hogy van-e már kulcspár ehhez a Friendica telepítéshez a kedvenc GNU Social telepítésénél." - -#: statusnet.php:279 -msgid "OAuth Consumer Key" -msgstr "OAuth felhasználói kulcs" - -#: statusnet.php:282 -msgid "OAuth Consumer Secret" -msgstr "OAuth felhasználói titok" - -#: statusnet.php:285 statusnet.php:678 statusnet.php:690 -msgid "Base API Path (remember the trailing /)" -msgstr "Alap API útvonal (ne felejtse el a záró / karaktert)" - -#: statusnet.php:310 -msgid "" -"To connect to your GNU Social account click the button below to get a " -"security code from GNU Social which you have to copy into the input box " -"below and submit the form. Only your public posts will be " -"posted to GNU Social." -msgstr "A GNU Social fiókhoz való kapcsolódáshoz kattintson a lenti gombra, hogy megkapja a biztonsági kódot a GNU Socialtól, amelyet a lenti beviteli mezőbe kell bemásolnia, majd el kell küldenie az űrlapot. Csak a nyilvános bejegyzései lesznek beküldve a GNU Socialra." - -#: statusnet.php:311 -msgid "Log in with GNU Social" -msgstr "Bejelentkezés GNU Social használatával" - -#: statusnet.php:313 -msgid "Copy the security code from GNU Social here" -msgstr "Másolja be ide a GNU Socialtól származó biztonsági kódot" - -#: statusnet.php:319 -msgid "Cancel Connection Process" -msgstr "Kapcsolódási folyamat megszakítása" - -#: statusnet.php:321 -msgid "Current GNU Social API is" -msgstr "A jelenlegi GNU Social API" - -#: statusnet.php:322 -msgid "Cancel GNU Social Connection" -msgstr "GNU Social kapcsolódás megszakítása" - -#: statusnet.php:334 -msgid "Currently connected to: " -msgstr "Jelenleg ehhez van kapcsolódva: " - -#: statusnet.php:336 -msgid "" -"If enabled all your public postings can be posted to the " -"associated GNU Social account. You can choose to do so by default (here) or " -"for every posting separately in the posting options when writing the entry." -msgstr "Ha engedélyezve van, akkor az összes nyilvános beküldés beküldhető a hozzárendelt GNU Social fiókba. Kiválaszthatja, hogy ezt alapértelmezetten szeretné-e (itt), vagy minden egyes beküldésnél különállóan a beküldési beállításokban, amikor megírja a bejegyzést." - -#: statusnet.php:338 +#: statusnet.php:260 msgid "" "Note: Due your privacy settings (Hide your profile " "details from unknown viewers?) the link potentially included in public " @@ -125,47 +50,126 @@ msgid "" "informing the visitor that the access to your profile has been restricted." msgstr "Megjegyzés: az adatvédelmi beállításai miatt (Elrejti a profilja részleteit az ismeretlen megtekintők elől?) a GNU Socialra továbbított nyilvános beküldésekben vélhetően tartalmazott hivatkozás a látogatót egy üres oldalra fogja vezetni, amely arról tájékoztatja a látogatót, hogy a profiljához való hozzáférés korlátozva lett." -#: statusnet.php:341 -msgid "Allow posting to GNU Social" -msgstr "Beküldés engedélyezése a GNU Socialra" - -#: statusnet.php:344 -msgid "Send public postings to GNU Social by default" -msgstr "Nyilvános beküldések küldése a GNU Socialra alapértelmezetten" - -#: statusnet.php:348 -msgid "" -"Mirror all posts from GNU Social that are no replies or repeated messages" -msgstr "A GNU Socialtól származó összes bejegyzés tükrözése, amelyek nem válaszok vagy ismételt üzenetek" - -#: statusnet.php:354 -msgid "Import the remote timeline" -msgstr "A távoli idővonal importálása" - -#: statusnet.php:358 -msgid "Disabled" -msgstr "Letiltva" - -#: statusnet.php:359 -msgid "Full Timeline" -msgstr "Teljes idővonal" - -#: statusnet.php:360 -msgid "Only Mentions" -msgstr "Csak említések" - -#: statusnet.php:369 +#: statusnet.php:263 msgid "Clear OAuth configuration" msgstr "OAuth beállítás törlése" -#: statusnet.php:689 +#: statusnet.php:275 +msgid "Cancel GNU Social Connection" +msgstr "GNU Social kapcsolódás megszakítása" + +#: statusnet.php:283 +msgid "Globally Available GNU Social OAuthKeys" +msgstr "Globálisan elérhető GNU Social OAuth-kulcsok" + +#: statusnet.php:284 +msgid "" +"There are preconfigured OAuth key pairs for some GNU Social servers " +"available. If you are using one of them, please use these credentials. If " +"not feel free to connect to any other GNU Social instance (see below)." +msgstr "Előre beállított OAuth-kulcspárok érhetők el néhány GNU Social kiszolgálóhoz. Ha ezek egyikét használja, akkor használja ezeket a hitelesítési adatokat. Ha nem használja, akkor nyugodtan kapcsolódjon bármely egyéb GNU Social példányhoz (lásd lent)." + +#: statusnet.php:285 +msgid "Provide your own OAuth Credentials" +msgstr "Adja meg a saját OAuth hitelesítési adatait" + +#: statusnet.php:286 +msgid "" +"No consumer key pair for GNU Social found. Register your Friendica Account " +"as a desktop application on your GNU Social account, copy the consumer key " +"pair here and enter the API base root.
Before you register your own " +"OAuth key pair ask the administrator if there is already a key pair for this" +" Friendica installation at your favorite GNU Social installation." +msgstr "Nem találhatók felhasználói kulcspárok a GNU Socialhoz. Regisztrálja a Friendica fiókját asztali alkalmazásként a GNU Social fiókjánál, másolja be a felhasználói kulcspárt ide, és adja meg az API alapgyökerét.
Mielőtt saját OAuth kulcspárt regisztrálna, kérdezze meg az adminisztrátort, hogy van-e már kulcspár ehhez a Friendica telepítéshez a kedvenc GNU Social telepítésénél." + +#: statusnet.php:287 +msgid "" +"To connect to your GNU Social account click the button below to get a " +"security code from GNU Social which you have to copy into the input box " +"below and submit the form. Only your public posts will be " +"posted to GNU Social." +msgstr "A GNU Social fiókhoz való kapcsolódáshoz kattintson a lenti gombra, hogy megkapja a biztonsági kódot a GNU Socialtól, amelyet a lenti beviteli mezőbe kell bemásolnia, majd el kell küldenie az űrlapot. Csak a nyilvános bejegyzései lesznek beküldve a GNU Socialra." + +#: statusnet.php:288 +msgid "Log in with GNU Social" +msgstr "Bejelentkezés GNU Social használatával" + +#: statusnet.php:289 +msgid "Cancel Connection Process" +msgstr "Kapcsolódási folyamat megszakítása" + +#: statusnet.php:290 +#, php-format +msgid "Current GNU Social API is: %s" +msgstr "A jelenlegi GNU Social API: %s" + +#: statusnet.php:307 +msgid "OAuth Consumer Key" +msgstr "OAuth felhasználói kulcs" + +#: statusnet.php:308 +msgid "OAuth Consumer Secret" +msgstr "OAuth felhasználói titok" + +#: statusnet.php:310 statusnet.php:636 statusnet.php:648 +msgid "Base API Path (remember the trailing /)" +msgstr "Alap API útvonal (ne felejtse el a záró / karaktert)" + +#: statusnet.php:311 +msgid "Copy the security code from GNU Social here" +msgstr "Másolja be ide a GNU Socialtól származó biztonsági kódot" + +#: statusnet.php:313 +msgid "Allow posting to GNU Social" +msgstr "Beküldés engedélyezése a GNU Socialra" + +#: statusnet.php:313 +msgid "" +"If enabled all your public postings can be posted to the " +"associated GNU Social account. You can choose to do so by default (here) or " +"for every posting separately in the posting options when writing the entry." +msgstr "Ha engedélyezve van, akkor az összes nyilvános beküldés beküldhető a hozzárendelt GNU Social fiókba. Kiválaszthatja, hogy ezt alapértelmezetten szeretné-e (itt), vagy minden egyes beküldésnél különállóan a beküldési beállításokban, amikor megírja a bejegyzést." + +#: statusnet.php:314 +msgid "Post to GNU Social by default" +msgstr "Beküldés a GNU Socialra alapértelmezetten" + +#: statusnet.php:315 +msgid "Mirror all public posts" +msgstr "Összes nyilvános bejegyzés tükrözése" + +#: statusnet.php:316 +msgid "Automatically create contacts" +msgstr "Partnerek automatikus létrehozása" + +#: statusnet.php:317 +msgid "Import the remote timeline" +msgstr "A távoli idővonal importálása" + +#: statusnet.php:318 +msgid "Disabled" +msgstr "Letiltva" + +#: statusnet.php:319 +msgid "Full Timeline" +msgstr "Teljes idővonal" + +#: statusnet.php:320 +msgid "Only Mentions" +msgstr "Csak említések" + +#: statusnet.php:326 +msgid "GNU Social Import/Export/Mirror" +msgstr "GNU Social importálás, exportálás vagy tükrözés" + +#: statusnet.php:647 msgid "Site name" msgstr "Oldal neve" -#: statusnet.php:691 +#: statusnet.php:649 msgid "Consumer Secret" msgstr "Felhasználói titok" -#: statusnet.php:692 +#: statusnet.php:650 msgid "Consumer Key" msgstr "Felhasználói kulcs" diff --git a/statusnet/lang/hu/strings.php b/statusnet/lang/hu/strings.php index 716a0dae..aa202430 100644 --- a/statusnet/lang/hu/strings.php +++ b/statusnet/lang/hu/strings.php @@ -8,32 +8,33 @@ function string_plural_select_hu($n){ $a->strings['Post to GNU Social'] = 'Beküldés a GNU Socialra'; $a->strings['Please contact your site administrator.
The provided API URL is not valid.'] = 'Vegye fel a kapcsolatot az oldal adminisztrátorával.
A megadott API URL nem érvényes.'; $a->strings['We could not contact the GNU Social API with the Path you entered.'] = 'Nem tudtunk kapcsolatba lépni a GNU Social API-val azon az útvonalon, amelyet megadott.'; -$a->strings['GNU Social Import/Export/Mirror'] = 'GNU Social importálás, exportálás vagy tükrözés'; +$a->strings['Save Settings'] = 'Beállítások mentése'; +$a->strings['Currently connected to: %s'] = 'Jelenleg ehhez kapcsolódott: %s'; +$a->strings['Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU Social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted.'] = 'Megjegyzés: az adatvédelmi beállításai miatt (Elrejti a profilja részleteit az ismeretlen megtekintők elől?) a GNU Socialra továbbított nyilvános beküldésekben vélhetően tartalmazott hivatkozás a látogatót egy üres oldalra fogja vezetni, amely arról tájékoztatja a látogatót, hogy a profiljához való hozzáférés korlátozva lett.'; +$a->strings['Clear OAuth configuration'] = 'OAuth beállítás törlése'; +$a->strings['Cancel GNU Social Connection'] = 'GNU Social kapcsolódás megszakítása'; $a->strings['Globally Available GNU Social OAuthKeys'] = 'Globálisan elérhető GNU Social OAuth-kulcsok'; $a->strings['There are preconfigured OAuth key pairs for some GNU Social servers available. If you are using one of them, please use these credentials. If not feel free to connect to any other GNU Social instance (see below).'] = 'Előre beállított OAuth-kulcspárok érhetők el néhány GNU Social kiszolgálóhoz. Ha ezek egyikét használja, akkor használja ezeket a hitelesítési adatokat. Ha nem használja, akkor nyugodtan kapcsolódjon bármely egyéb GNU Social példányhoz (lásd lent).'; -$a->strings['Save Settings'] = 'Beállítások mentése'; $a->strings['Provide your own OAuth Credentials'] = 'Adja meg a saját OAuth hitelesítési adatait'; -$a->strings['No consumer key pair for GNU Social found. Register your Friendica Account as an desktop client on your GNU Social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited GNU Social installation.'] = 'Nem találhatók felhasználói kulcspárok a GNU Socialhoz. Regisztrálja a Friendica fiókját asztali kliensként a GNU Social fiókjánál, másolja be a felhasználói kulcspárt ide, és adja meg az API alapgyökerét.
Mielőtt saját OAuth kulcspárt regisztrálna, kérdezze meg az adminisztrátort, hogy van-e már kulcspár ehhez a Friendica telepítéshez a kedvenc GNU Social telepítésénél.'; +$a->strings['No consumer key pair for GNU Social found. Register your Friendica Account as a desktop application on your GNU Social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorite GNU Social installation.'] = 'Nem találhatók felhasználói kulcspárok a GNU Socialhoz. Regisztrálja a Friendica fiókját asztali alkalmazásként a GNU Social fiókjánál, másolja be a felhasználói kulcspárt ide, és adja meg az API alapgyökerét.
Mielőtt saját OAuth kulcspárt regisztrálna, kérdezze meg az adminisztrátort, hogy van-e már kulcspár ehhez a Friendica telepítéshez a kedvenc GNU Social telepítésénél.'; +$a->strings['To connect to your GNU Social account click the button below to get a security code from GNU Social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU Social.'] = 'A GNU Social fiókhoz való kapcsolódáshoz kattintson a lenti gombra, hogy megkapja a biztonsági kódot a GNU Socialtól, amelyet a lenti beviteli mezőbe kell bemásolnia, majd el kell küldenie az űrlapot. Csak a nyilvános bejegyzései lesznek beküldve a GNU Socialra.'; +$a->strings['Log in with GNU Social'] = 'Bejelentkezés GNU Social használatával'; +$a->strings['Cancel Connection Process'] = 'Kapcsolódási folyamat megszakítása'; +$a->strings['Current GNU Social API is: %s'] = 'A jelenlegi GNU Social API: %s'; $a->strings['OAuth Consumer Key'] = 'OAuth felhasználói kulcs'; $a->strings['OAuth Consumer Secret'] = 'OAuth felhasználói titok'; $a->strings['Base API Path (remember the trailing /)'] = 'Alap API útvonal (ne felejtse el a záró / karaktert)'; -$a->strings['To connect to your GNU Social account click the button below to get a security code from GNU Social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU Social.'] = 'A GNU Social fiókhoz való kapcsolódáshoz kattintson a lenti gombra, hogy megkapja a biztonsági kódot a GNU Socialtól, amelyet a lenti beviteli mezőbe kell bemásolnia, majd el kell küldenie az űrlapot. Csak a nyilvános bejegyzései lesznek beküldve a GNU Socialra.'; -$a->strings['Log in with GNU Social'] = 'Bejelentkezés GNU Social használatával'; $a->strings['Copy the security code from GNU Social here'] = 'Másolja be ide a GNU Socialtól származó biztonsági kódot'; -$a->strings['Cancel Connection Process'] = 'Kapcsolódási folyamat megszakítása'; -$a->strings['Current GNU Social API is'] = 'A jelenlegi GNU Social API'; -$a->strings['Cancel GNU Social Connection'] = 'GNU Social kapcsolódás megszakítása'; -$a->strings['Currently connected to: '] = 'Jelenleg ehhez van kapcsolódva: '; -$a->strings['If enabled all your public postings can be posted to the associated GNU Social account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry.'] = 'Ha engedélyezve van, akkor az összes nyilvános beküldés beküldhető a hozzárendelt GNU Social fiókba. Kiválaszthatja, hogy ezt alapértelmezetten szeretné-e (itt), vagy minden egyes beküldésnél különállóan a beküldési beállításokban, amikor megírja a bejegyzést.'; -$a->strings['Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU Social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted.'] = 'Megjegyzés: az adatvédelmi beállításai miatt (Elrejti a profilja részleteit az ismeretlen megtekintők elől?) a GNU Socialra továbbított nyilvános beküldésekben vélhetően tartalmazott hivatkozás a látogatót egy üres oldalra fogja vezetni, amely arról tájékoztatja a látogatót, hogy a profiljához való hozzáférés korlátozva lett.'; $a->strings['Allow posting to GNU Social'] = 'Beküldés engedélyezése a GNU Socialra'; -$a->strings['Send public postings to GNU Social by default'] = 'Nyilvános beküldések küldése a GNU Socialra alapértelmezetten'; -$a->strings['Mirror all posts from GNU Social that are no replies or repeated messages'] = 'A GNU Socialtól származó összes bejegyzés tükrözése, amelyek nem válaszok vagy ismételt üzenetek'; +$a->strings['If enabled all your public postings can be posted to the associated GNU Social account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry.'] = 'Ha engedélyezve van, akkor az összes nyilvános beküldés beküldhető a hozzárendelt GNU Social fiókba. Kiválaszthatja, hogy ezt alapértelmezetten szeretné-e (itt), vagy minden egyes beküldésnél különállóan a beküldési beállításokban, amikor megírja a bejegyzést.'; +$a->strings['Post to GNU Social by default'] = 'Beküldés a GNU Socialra alapértelmezetten'; +$a->strings['Mirror all public posts'] = 'Összes nyilvános bejegyzés tükrözése'; +$a->strings['Automatically create contacts'] = 'Partnerek automatikus létrehozása'; $a->strings['Import the remote timeline'] = 'A távoli idővonal importálása'; $a->strings['Disabled'] = 'Letiltva'; $a->strings['Full Timeline'] = 'Teljes idővonal'; $a->strings['Only Mentions'] = 'Csak említések'; -$a->strings['Clear OAuth configuration'] = 'OAuth beállítás törlése'; +$a->strings['GNU Social Import/Export/Mirror'] = 'GNU Social importálás, exportálás vagy tükrözés'; $a->strings['Site name'] = 'Oldal neve'; $a->strings['Consumer Secret'] = 'Felhasználói titok'; $a->strings['Consumer Key'] = 'Felhasználói kulcs'; diff --git a/superblock/lang/hu/messages.po b/superblock/lang/hu/messages.po index 3c460804..239bb76e 100644 --- a/superblock/lang/hu/messages.po +++ b/superblock/lang/hu/messages.po @@ -9,8 +9,8 @@ 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: 2021-03-26 09:40+0000\n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2021-12-23 19:29+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,18 +19,14 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: superblock.php:38 superblock.php:42 +#: superblock.php:35 +msgid "Comma separated profile URLs to block" +msgstr "Tiltandó profil URL-ek vesszővel elválasztott listája" + +#: superblock.php:40 msgid "Superblock" msgstr "Szuper tiltás" -#: superblock.php:45 -msgid "Comma separated profile URLS to block" -msgstr "Tiltandó profil URL-ek vesszővel elválasztott listája" - -#: superblock.php:49 -msgid "Save Settings" -msgstr "Beállítások mentése" - -#: superblock.php:138 +#: superblock.php:129 msgid "Block Completely" msgstr "Tiltás teljesen" diff --git a/superblock/lang/hu/strings.php b/superblock/lang/hu/strings.php index fe7e437c..19e364f4 100644 --- a/superblock/lang/hu/strings.php +++ b/superblock/lang/hu/strings.php @@ -5,7 +5,6 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} +$a->strings['Comma separated profile URLs to block'] = 'Tiltandó profil URL-ek vesszővel elválasztott listája'; $a->strings['Superblock'] = 'Szuper tiltás'; -$a->strings['Comma separated profile URLS to block'] = 'Tiltandó profil URL-ek vesszővel elválasztott listája'; -$a->strings['Save Settings'] = 'Beállítások mentése'; $a->strings['Block Completely'] = 'Tiltás teljesen'; diff --git a/testdrive/lang/hu/messages.po b/testdrive/lang/hu/messages.po index 29c34847..b299f288 100644 --- a/testdrive/lang/hu/messages.po +++ b/testdrive/lang/hu/messages.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-01 18:15+0100\n" -"PO-Revision-Date: 2021-03-26 23:38+0000\n" +"PO-Revision-Date: 2021-12-23 18:56+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" diff --git a/tictac/lang/hu/messages.po b/tictac/lang/hu/messages.po index f1504109..c479fbc9 100644 --- a/tictac/lang/hu/messages.po +++ b/tictac/lang/hu/messages.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-01 18:15+0100\n" -"PO-Revision-Date: 2021-03-27 00:31+0000\n" +"PO-Revision-Date: 2021-12-23 17:29+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" diff --git a/tumblr/lang/hu/messages.po b/tumblr/lang/hu/messages.po index 7ae103db..7beb7d33 100644 --- a/tumblr/lang/hu/messages.po +++ b/tumblr/lang/hu/messages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-01 18:16+0100\n" -"PO-Revision-Date: 2021-03-27 00:38+0000\n" +"POT-Creation-Date: 2021-11-21 19:17-0500\n" +"PO-Revision-Date: 2021-12-23 17:29+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "" msgid "Permission denied." msgstr "Engedély megtagadva." -#: tumblr.php:69 tumblr.php:283 +#: tumblr.php:69 msgid "Save Settings" msgstr "Beállítások mentése" @@ -47,26 +47,26 @@ msgstr "visszatérés a csatlakozó oldalára" msgid "Post to Tumblr" msgstr "Beküldése a Tumblr-re" -#: tumblr.php:224 tumblr.php:228 -msgid "Tumblr Export" -msgstr "Tumblr exportálás" - -#: tumblr.php:232 -msgid "(Re-)Authenticate your tumblr page" -msgstr "A Tumblr-oldal (újra)hitelesítése" - -#: tumblr.php:236 -msgid "Enable Tumblr Post Addon" -msgstr "A Tumblr-beküldő bővítmény engedélyezése" - -#: tumblr.php:242 -msgid "Post to Tumblr by default" -msgstr "Beküldés a Tumblr-re alapértelmezetten" - -#: tumblr.php:263 +#: tumblr.php:225 msgid "Post to page:" msgstr "Beküldés az oldalra:" -#: tumblr.php:277 +#: tumblr.php:231 +msgid "(Re-)Authenticate your tumblr page" +msgstr "A Tumblr-oldal (újra)hitelesítése" + +#: tumblr.php:232 msgid "You are not authenticated to tumblr" msgstr "Nincs hitelesítve van a Tumblr-hez" + +#: tumblr.php:237 +msgid "Enable Tumblr Post Addon" +msgstr "A Tumblr-beküldő bővítmény engedélyezése" + +#: tumblr.php:238 +msgid "Post to Tumblr by default" +msgstr "Beküldés a Tumblr-re alapértelmezetten" + +#: tumblr.php:244 +msgid "Tumblr Export" +msgstr "Tumblr exportálás" diff --git a/tumblr/lang/hu/strings.php b/tumblr/lang/hu/strings.php index bce2dd86..cd3e3e19 100644 --- a/tumblr/lang/hu/strings.php +++ b/tumblr/lang/hu/strings.php @@ -12,9 +12,9 @@ $a->strings['Consumer Secret'] = 'Felhasználói titok'; $a->strings['You are now authenticated to tumblr.'] = 'Most már hitelesítve van a Tumblr-hez.'; $a->strings['return to the connector page'] = 'visszatérés a csatlakozó oldalára'; $a->strings['Post to Tumblr'] = 'Beküldése a Tumblr-re'; -$a->strings['Tumblr Export'] = 'Tumblr exportálás'; +$a->strings['Post to page:'] = 'Beküldés az oldalra:'; $a->strings['(Re-)Authenticate your tumblr page'] = 'A Tumblr-oldal (újra)hitelesítése'; +$a->strings['You are not authenticated to tumblr'] = 'Nincs hitelesítve van a Tumblr-hez'; $a->strings['Enable Tumblr Post Addon'] = 'A Tumblr-beküldő bővítmény engedélyezése'; $a->strings['Post to Tumblr by default'] = 'Beküldés a Tumblr-re alapértelmezetten'; -$a->strings['Post to page:'] = 'Beküldés az oldalra:'; -$a->strings['You are not authenticated to tumblr'] = 'Nincs hitelesítve van a Tumblr-hez'; +$a->strings['Tumblr Export'] = 'Tumblr exportálás'; diff --git a/twitter/lang/hu/messages.po b/twitter/lang/hu/messages.po index 80a65847..d119536b 100644 --- a/twitter/lang/hu/messages.po +++ b/twitter/lang/hu/messages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-23 18:33-0500\n" -"PO-Revision-Date: 2021-12-03 00:08+0000\n" +"POT-Creation-Date: 2021-11-27 10:25-0500\n" +"PO-Revision-Date: 2021-12-23 19:33+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -29,17 +29,13 @@ msgid "" "one." msgstr "Üres PIN-kódot küldött be. Jelentkezzen be a Twitter használatával újra, hogy egy újat kapjon." -#: twitter.php:318 twitter.php:322 -msgid "Twitter Import/Export/Mirror" -msgstr "Twitter importálás, exportálás vagy tükrözés" - -#: twitter.php:329 +#: twitter.php:321 msgid "" "No consumer key pair for Twitter found. Please contact your site " "administrator." msgstr "Nem találhatók felhasználói kulcspárok a Twitterhez. Vegye fel a kapcsolatot az oldal adminisztrátorával." -#: twitter.php:341 +#: twitter.php:334 msgid "" "At this Friendica instance the Twitter addon was enabled but you have not " "yet connected your account to your Twitter account. To do so click the " @@ -48,42 +44,26 @@ msgid "" " be posted to Twitter." msgstr "Ennél a Friendica példánynál a Twitter bővítmény engedélyezve lett, de még nem kapcsolta hozzá a fiókját a Twitter-fiókjához. Ehhez kattintson a lenti gombra, hogy kapjon egy PIN-kódot a Twittertől, amelyet a lenti beviteli mezőbe kell bemásolnia, majd el kell küldenie az űrlapot. Csak a nyilvános bejegyzései lesznek beküldve a Twitterre." -#: twitter.php:342 +#: twitter.php:335 msgid "Log in with Twitter" msgstr "Bejelentkezés Twitter használatával" -#: twitter.php:344 +#: twitter.php:337 msgid "Copy the PIN from Twitter here" msgstr "Másolja be ide a Twittertől kapott PIN-kódot" -#: twitter.php:349 twitter.php:404 twitter.php:924 -msgid "Save Settings" -msgstr "Beállítások mentése" - -#: twitter.php:351 twitter.php:406 +#: twitter.php:345 twitter.php:388 msgid "An error occured: " msgstr "Hiba történt: " -#: twitter.php:368 -msgid "Currently connected to: " -msgstr "Jelenleg ehhez van kapcsolódva: " - -#: twitter.php:369 twitter.php:379 -msgid "Disconnect" -msgstr "Leválasztás" - -#: twitter.php:386 -msgid "Allow posting to Twitter" -msgstr "Beküldés engedélyezése a Twitterre" - -#: twitter.php:386 +#: twitter.php:359 +#, php-format msgid "" -"If enabled all your public postings can be posted to the " -"associated Twitter account. You can choose to do so by default (here) or for" -" every posting separately in the posting options when writing the entry." -msgstr "Ha engedélyezve van, akkor az összes nyilvános beküldés beküldhető a hozzárendelt Twitter-fiókba. Kiválaszthatja, hogy ezt alapértelmezetten szeretné-e (itt), vagy minden egyes beküldésnél különállóan a beküldési beállításokban, amikor megírja a bejegyzést." +"Currently connected to: %1$s" +msgstr "Jelenleg ehhez kapcsolódott: %1$s" -#: twitter.php:389 +#: twitter.php:365 msgid "" "Note: Due to your privacy settings (Hide your profile " "details from unknown viewers?) the link potentially included in public " @@ -91,23 +71,42 @@ msgid "" "the visitor that the access to your profile has been restricted." msgstr "Megjegyzés: az adatvédelmi beállításai miatt (Elrejti a profilja részleteit az ismeretlen megtekintők elől?) a Twitterre továbbított nyilvános beküldésekben vélhetően tartalmazott hivatkozás a látogatót egy üres oldalra fogja vezetni, amely arról tájékoztatja a látogatót, hogy a profiljához való hozzáférés korlátozva lett." -#: twitter.php:392 +#: twitter.php:372 +msgid "Invalid Twitter info" +msgstr "Érvénytelen Twitter-információk" + +#: twitter.php:373 +msgid "Disconnect" +msgstr "Leválasztás" + +#: twitter.php:378 +msgid "Allow posting to Twitter" +msgstr "Beküldés engedélyezése a Twitterre" + +#: twitter.php:378 +msgid "" +"If enabled all your public postings can be posted to the " +"associated Twitter account. You can choose to do so by default (here) or for" +" every posting separately in the posting options when writing the entry." +msgstr "Ha engedélyezve van, akkor az összes nyilvános beküldés beküldhető a hozzárendelt Twitter-fiókba. Kiválaszthatja, hogy ezt alapértelmezetten szeretné-e (itt), vagy minden egyes beküldésnél különállóan a beküldési beállításokban, amikor megírja a bejegyzést." + +#: twitter.php:379 msgid "Send public postings to Twitter by default" msgstr "Nyilvános beküldések küldése a Twitterre alapértelmezetten" -#: twitter.php:395 +#: twitter.php:380 msgid "Mirror all posts from twitter that are no replies" msgstr "A Twittertől származó összes bejegyzés tükrözése, amelyek nem válaszok" -#: twitter.php:398 +#: twitter.php:381 msgid "Import the remote timeline" msgstr "A távoli idővonal importálása" -#: twitter.php:401 +#: twitter.php:382 msgid "Automatically create contacts" msgstr "Partnerek automatikus létrehozása" -#: twitter.php:401 +#: twitter.php:382 msgid "" "This will automatically create a contact in Friendica as soon as you receive" " a message from an existing contact via the Twitter network. If you do not " @@ -115,25 +114,33 @@ msgid "" "from whom you would like to see posts here." msgstr "Ez automatikusan létre fog hozni egy partnert a Friendicán, amint üzenetet fogad egy meglévő partnertől a Twitter hálózaton keresztül. Ha ezt nem engedélyezi, akkor kézzel kell hozzáadnia azokat a Twitter-partnereket a Friendicában, akiktől bejegyzéseket szeretne látni itt." -#: twitter.php:557 +#: twitter.php:395 +msgid "Twitter Import/Export/Mirror" +msgstr "Twitter importálás, exportálás vagy tükrözés" + +#: twitter.php:547 msgid "" "Please connect a Twitter account in your Social Network settings to import " "Twitter posts." msgstr "Kapcsoljon hozzá egy Twitter-fiókot a közösségi hálózatok beállításában a Twitter-bejegyzések importálásához." -#: twitter.php:564 +#: twitter.php:554 msgid "Twitter post not found." msgstr "A Twitter-bejegyzés nem található." -#: twitter.php:926 +#: twitter.php:914 +msgid "Save Settings" +msgstr "Beállítások mentése" + +#: twitter.php:916 msgid "Consumer key" msgstr "Felhasználói kulcs" -#: twitter.php:927 +#: twitter.php:917 msgid "Consumer secret" msgstr "Felhasználói titok" -#: twitter.php:1123 +#: twitter.php:1113 #, php-format msgid "%s on Twitter" msgstr "%s a Twitteren" diff --git a/twitter/lang/hu/strings.php b/twitter/lang/hu/strings.php index 964b48bb..33912ddc 100644 --- a/twitter/lang/hu/strings.php +++ b/twitter/lang/hu/strings.php @@ -7,25 +7,26 @@ function string_plural_select_hu($n){ }} $a->strings['Post to Twitter'] = 'Beküldés a Twitterre'; $a->strings['You submitted an empty PIN, please Sign In with Twitter again to get a new one.'] = 'Üres PIN-kódot küldött be. Jelentkezzen be a Twitter használatával újra, hogy egy újat kapjon.'; -$a->strings['Twitter Import/Export/Mirror'] = 'Twitter importálás, exportálás vagy tükrözés'; $a->strings['No consumer key pair for Twitter found. Please contact your site administrator.'] = 'Nem találhatók felhasználói kulcspárok a Twitterhez. Vegye fel a kapcsolatot az oldal adminisztrátorával.'; $a->strings['At this Friendica instance the Twitter addon was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter.'] = 'Ennél a Friendica példánynál a Twitter bővítmény engedélyezve lett, de még nem kapcsolta hozzá a fiókját a Twitter-fiókjához. Ehhez kattintson a lenti gombra, hogy kapjon egy PIN-kódot a Twittertől, amelyet a lenti beviteli mezőbe kell bemásolnia, majd el kell küldenie az űrlapot. Csak a nyilvános bejegyzései lesznek beküldve a Twitterre.'; $a->strings['Log in with Twitter'] = 'Bejelentkezés Twitter használatával'; $a->strings['Copy the PIN from Twitter here'] = 'Másolja be ide a Twittertől kapott PIN-kódot'; -$a->strings['Save Settings'] = 'Beállítások mentése'; $a->strings['An error occured: '] = 'Hiba történt: '; -$a->strings['Currently connected to: '] = 'Jelenleg ehhez van kapcsolódva: '; +$a->strings['Currently connected to: %1$s'] = 'Jelenleg ehhez kapcsolódott: %1$s'; +$a->strings['Note: Due to your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted.'] = 'Megjegyzés: az adatvédelmi beállításai miatt (Elrejti a profilja részleteit az ismeretlen megtekintők elől?) a Twitterre továbbított nyilvános beküldésekben vélhetően tartalmazott hivatkozás a látogatót egy üres oldalra fogja vezetni, amely arról tájékoztatja a látogatót, hogy a profiljához való hozzáférés korlátozva lett.'; +$a->strings['Invalid Twitter info'] = 'Érvénytelen Twitter-információk'; $a->strings['Disconnect'] = 'Leválasztás'; $a->strings['Allow posting to Twitter'] = 'Beküldés engedélyezése a Twitterre'; $a->strings['If enabled all your public postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry.'] = 'Ha engedélyezve van, akkor az összes nyilvános beküldés beküldhető a hozzárendelt Twitter-fiókba. Kiválaszthatja, hogy ezt alapértelmezetten szeretné-e (itt), vagy minden egyes beküldésnél különállóan a beküldési beállításokban, amikor megírja a bejegyzést.'; -$a->strings['Note: Due to your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted.'] = 'Megjegyzés: az adatvédelmi beállításai miatt (Elrejti a profilja részleteit az ismeretlen megtekintők elől?) a Twitterre továbbított nyilvános beküldésekben vélhetően tartalmazott hivatkozás a látogatót egy üres oldalra fogja vezetni, amely arról tájékoztatja a látogatót, hogy a profiljához való hozzáférés korlátozva lett.'; $a->strings['Send public postings to Twitter by default'] = 'Nyilvános beküldések küldése a Twitterre alapértelmezetten'; $a->strings['Mirror all posts from twitter that are no replies'] = 'A Twittertől származó összes bejegyzés tükrözése, amelyek nem válaszok'; $a->strings['Import the remote timeline'] = 'A távoli idővonal importálása'; $a->strings['Automatically create contacts'] = 'Partnerek automatikus létrehozása'; $a->strings['This will automatically create a contact in Friendica as soon as you receive a message from an existing contact via the Twitter network. If you do not enable this, you need to manually add those Twitter contacts in Friendica from whom you would like to see posts here.'] = 'Ez automatikusan létre fog hozni egy partnert a Friendicán, amint üzenetet fogad egy meglévő partnertől a Twitter hálózaton keresztül. Ha ezt nem engedélyezi, akkor kézzel kell hozzáadnia azokat a Twitter-partnereket a Friendicában, akiktől bejegyzéseket szeretne látni itt.'; +$a->strings['Twitter Import/Export/Mirror'] = 'Twitter importálás, exportálás vagy tükrözés'; $a->strings['Please connect a Twitter account in your Social Network settings to import Twitter posts.'] = 'Kapcsoljon hozzá egy Twitter-fiókot a közösségi hálózatok beállításában a Twitter-bejegyzések importálásához.'; $a->strings['Twitter post not found.'] = 'A Twitter-bejegyzés nem található.'; +$a->strings['Save Settings'] = 'Beállítások mentése'; $a->strings['Consumer key'] = 'Felhasználói kulcs'; $a->strings['Consumer secret'] = 'Felhasználói titok'; $a->strings['%s on Twitter'] = '%s a Twitteren'; diff --git a/viewsrc/lang/hu/messages.po b/viewsrc/lang/hu/messages.po index 6d97d46f..68e7f2f1 100644 --- a/viewsrc/lang/hu/messages.po +++ b/viewsrc/lang/hu/messages.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-27 05:01-0500\n" +"POT-Creation-Date: 2021-02-01 18:16+0100\n" "PO-Revision-Date: 2018-03-20 07:26+0000\n" "Last-Translator: Balázs Úr, 2020\n" "Language-Team: Hungarian (https://www.transifex.com/Friendica/teams/12172/hu/)\n" @@ -21,6 +21,6 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: viewsrc.php:39 +#: viewsrc.php:49 msgid "View Source" msgstr "Forrás megtekintése" diff --git a/webrtc/lang/hu/messages.po b/webrtc/lang/hu/messages.po index ee88feee..063e0b48 100644 --- a/webrtc/lang/hu/messages.po +++ b/webrtc/lang/hu/messages.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-02-01 18:16+0100\n" -"PO-Revision-Date: 2021-03-26 09:37+0000\n" +"PO-Revision-Date: 2021-12-23 17:28+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" diff --git a/windowsphonepush/lang/hu/messages.po b/windowsphonepush/lang/hu/messages.po index e8d1b03b..701b0af9 100644 --- a/windowsphonepush/lang/hu/messages.po +++ b/windowsphonepush/lang/hu/messages.po @@ -4,13 +4,13 @@ # # # Translators: -# Balázs Úr, 2020 +# Balázs Úr, 2020-2021 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-26 15:02+0100\n" -"PO-Revision-Date: 2020-12-13 02:04+0000\n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2021-12-23 19:35+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,22 +19,18 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: windowsphonepush.php:85 -msgid "WindowsPhonePush settings updated." -msgstr "A WindowsPhonePush beállításai frissítve." - -#: windowsphonepush.php:114 -msgid "WindowsPhonePush Settings" -msgstr "WindowsPhonePush beállításai" - -#: windowsphonepush.php:117 +#: windowsphonepush.php:102 msgid "Enable WindowsPhonePush Addon" msgstr "A WindowsPhonePush kiegészítő engedélyezése" -#: windowsphonepush.php:122 +#: windowsphonepush.php:103 msgid "Push text of new item" msgstr "Új elem szövegének felküldése" -#: windowsphonepush.php:127 -msgid "Save Settings" -msgstr "Beállítások mentése" +#: windowsphonepush.php:104 +msgid "Device URL" +msgstr "Eszköz URL" + +#: windowsphonepush.php:109 +msgid "WindowsPhonePush Settings" +msgstr "WindowsPhonePush beállításai" diff --git a/windowsphonepush/lang/hu/strings.php b/windowsphonepush/lang/hu/strings.php index 3e1153d9..ff883ee3 100644 --- a/windowsphonepush/lang/hu/strings.php +++ b/windowsphonepush/lang/hu/strings.php @@ -5,8 +5,7 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['WindowsPhonePush settings updated.'] = 'A WindowsPhonePush beállításai frissítve.'; -$a->strings['WindowsPhonePush Settings'] = 'WindowsPhonePush beállításai'; $a->strings['Enable WindowsPhonePush Addon'] = 'A WindowsPhonePush kiegészítő engedélyezése'; $a->strings['Push text of new item'] = 'Új elem szövegének felküldése'; -$a->strings['Save Settings'] = 'Beállítások mentése'; +$a->strings['Device URL'] = 'Eszköz URL'; +$a->strings['WindowsPhonePush Settings'] = 'WindowsPhonePush beállításai'; diff --git a/wppost/lang/hu/messages.po b/wppost/lang/hu/messages.po index 5565c0db..6a517e31 100644 --- a/wppost/lang/hu/messages.po +++ b/wppost/lang/hu/messages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-01 18:16+0100\n" -"PO-Revision-Date: 2021-03-28 00:53+0000\n" +"POT-Creation-Date: 2021-11-21 19:18-0500\n" +"PO-Revision-Date: 2021-12-23 19:39+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -19,56 +19,52 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: wppost.php:39 +#: wppost.php:41 msgid "Post to Wordpress" msgstr "Beküldés a WordPressre" -#: wppost.php:80 wppost.php:84 -msgid "Wordpress Export" -msgstr "WordPress exportálás" - -#: wppost.php:87 -msgid "Enable WordPress Post Addon" +#: wppost.php:65 +msgid "Enable Wordpress Post Addon" msgstr "A WordPress-beküldő bővítmény engedélyezése" -#: wppost.php:93 -msgid "WordPress username" +#: wppost.php:66 +msgid "Wordpress username" msgstr "WordPress felhasználónév" -#: wppost.php:98 -msgid "WordPress password" +#: wppost.php:67 +msgid "Wordpress password" msgstr "WordPress jelszó" -#: wppost.php:103 +#: wppost.php:68 msgid "WordPress API URL" msgstr "WordPress API URL" -#: wppost.php:108 -msgid "Post to WordPress by default" +#: wppost.php:69 +msgid "Post to Wordpress by default" msgstr "Beküldés a WordPressre alapértelmezetten" -#: wppost.php:114 +#: wppost.php:70 msgid "Provide a backlink to the Friendica post" msgstr "Visszafelé mutató hivatkozás biztosítása a Friendica bejegyzésre" -#: wppost.php:119 +#: wppost.php:71 msgid "" "Text for the backlink, e.g. Read the original post and comment stream on " "Friendica." msgstr "A visszafelé mutató hivatkozás szövege, például „Olvassa el az eredeti bejegyzést és a hozzászólásokat a Friendicán”." -#: wppost.php:124 +#: wppost.php:72 msgid "Don't post messages that are too short" msgstr "Ne küldjön be olyan üzeneteket, amelyek túl rövidek" -#: wppost.php:131 -msgid "Save Settings" -msgstr "Beállítások mentése" +#: wppost.php:77 +msgid "Wordpress Export" +msgstr "WordPress exportálás" -#: wppost.php:231 +#: wppost.php:182 msgid "Read the orig­i­nal post and com­ment stream on Friendica" msgstr "Olvassa el az eredeti bejegyzést és a hozzászólásokat a Friendicán" -#: wppost.php:289 +#: wppost.php:240 msgid "Post from Friendica" msgstr "Bejegyzés a Friendicáról" diff --git a/wppost/lang/hu/strings.php b/wppost/lang/hu/strings.php index e2401055..483fcfd4 100644 --- a/wppost/lang/hu/strings.php +++ b/wppost/lang/hu/strings.php @@ -6,15 +6,14 @@ function string_plural_select_hu($n){ return intval($n != 1); }} $a->strings['Post to Wordpress'] = 'Beküldés a WordPressre'; -$a->strings['Wordpress Export'] = 'WordPress exportálás'; -$a->strings['Enable WordPress Post Addon'] = 'A WordPress-beküldő bővítmény engedélyezése'; -$a->strings['WordPress username'] = 'WordPress felhasználónév'; -$a->strings['WordPress password'] = 'WordPress jelszó'; +$a->strings['Enable Wordpress Post Addon'] = 'A WordPress-beküldő bővítmény engedélyezése'; +$a->strings['Wordpress username'] = 'WordPress felhasználónév'; +$a->strings['Wordpress password'] = 'WordPress jelszó'; $a->strings['WordPress API URL'] = 'WordPress API URL'; -$a->strings['Post to WordPress by default'] = 'Beküldés a WordPressre alapértelmezetten'; +$a->strings['Post to Wordpress by default'] = 'Beküldés a WordPressre alapértelmezetten'; $a->strings['Provide a backlink to the Friendica post'] = 'Visszafelé mutató hivatkozás biztosítása a Friendica bejegyzésre'; $a->strings['Text for the backlink, e.g. Read the original post and comment stream on Friendica.'] = 'A visszafelé mutató hivatkozás szövege, például „Olvassa el az eredeti bejegyzést és a hozzászólásokat a Friendicán”.'; $a->strings['Don\'t post messages that are too short'] = 'Ne küldjön be olyan üzeneteket, amelyek túl rövidek'; -$a->strings['Save Settings'] = 'Beállítások mentése'; +$a->strings['Wordpress Export'] = 'WordPress exportálás'; $a->strings['Read the orig­i­nal post and com­ment stream on Friendica'] = 'Olvassa el az eredeti bejegyzést és a hozzászólásokat a Friendicán'; $a->strings['Post from Friendica'] = 'Bejegyzés a Friendicáról'; From 1e60ac18cf6d7f776ee6460db7f083c03391de44 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 22 Jan 2022 18:52:57 +0100 Subject: [PATCH 8/8] DE addon translation update --- blockem/lang/de/messages.po | 39 ++--- blockem/lang/de/strings.php | 7 +- catavatar/lang/de/messages.po | 46 +++--- catavatar/lang/de/strings.php | 8 +- cookienotice/lang/de/messages.po | 39 ++--- cookienotice/lang/de/strings.php | 8 +- curweather/lang/de/messages.po | 52 +++---- curweather/lang/de/strings.php | 4 +- diaspora/lang/de/messages.po | 50 +++--- diaspora/lang/de/strings.php | 3 +- dwpost/lang/de/messages.po | 34 ++--- dwpost/lang/de/strings.php | 9 +- fromapp/lang/de/messages.po | 24 +-- fromapp/lang/de/strings.php | 4 +- geonames/lang/de/messages.po | 20 +-- geonames/lang/de/strings.php | 3 +- gnot/lang/de/messages.po | 30 ++-- gnot/lang/de/strings.php | 5 +- group_text/lang/de/messages.po | 18 +-- group_text/lang/de/strings.php | 3 +- ifttt/lang/de/messages.po | 55 ++++--- ifttt/lang/de/strings.php | 10 +- ijpost/lang/de/messages.po | 26 ++-- ijpost/lang/de/strings.php | 3 +- irc/lang/de/messages.po | 55 ++++--- irc/lang/de/strings.php | 15 +- krynn/lang/de/messages.po | 22 +-- krynn/lang/de/strings.php | 4 +- langfilter/lang/de/messages.po | 81 ++++++++++ langfilter/lang/de/strings.php | 2 +- libertree/lang/de/messages.po | 32 ++-- libertree/lang/de/strings.php | 5 +- ljpost/lang/de/messages.po | 26 ++-- ljpost/lang/de/strings.php | 2 - mathjax/lang/de/messages.po | 14 +- mathjax/lang/de/strings.php | 1 - morepokes/lang/de/messages.po | 17 ++- morepokes/lang/de/strings.php | 6 +- notifyall/lang/de/messages.po | 38 ++--- notifyall/lang/de/strings.php | 6 +- nsfw/lang/de/messages.po | 39 ++--- nsfw/lang/de/strings.php | 10 +- numfriends/lang/de/messages.po | 30 ++-- numfriends/lang/de/strings.php | 4 +- pageheader/lang/de/messages.po | 18 +-- pageheader/lang/de/strings.php | 1 - planets/lang/de/messages.po | 22 +-- planets/lang/de/strings.php | 4 +- pumpio/lang/de/messages.po | 88 +++++------ pumpio/lang/de/strings.php | 24 ++- qcomment/lang/de/messages.po | 36 ++--- qcomment/lang/de/strings.php | 4 +- randplace/lang/de/messages.po | 24 ++- randplace/lang/de/strings.php | 3 +- rendertime/lang/de/messages.po | 32 +++- rendertime/lang/de/strings.php | 5 + securemail/lang/de/messages.po | 54 +++---- securemail/lang/de/strings.php | 15 +- showmore/lang/de/messages.po | 31 ++-- showmore/lang/de/strings.php | 6 +- smileybutton/lang/de/messages.po | 13 +- smileybutton/lang/de/strings.php | 4 +- startpage/lang/de/messages.po | 24 ++- startpage/lang/de/strings.php | 5 +- statusnet/lang/de/messages.po | 221 ++++++++++++++------------- statusnet/lang/de/strings.php | 36 ++--- superblock/lang/de/messages.po | 31 ++-- superblock/lang/de/strings.php | 5 +- tictac/lang/de/messages.po | 43 +++--- tictac/lang/de/strings.php | 8 +- twitter/lang/de/messages.po | 95 ++++++------ twitter/lang/de/strings.php | 9 +- viewsrc/lang/de/messages.po | 26 ++++ viewsrc/lang/de/strings.php | 11 +- webrtc/lang/de/messages.po | 37 +++-- webrtc/lang/de/strings.php | 9 +- windowsphonepush/lang/de/messages.po | 36 +++-- windowsphonepush/lang/de/strings.php | 7 +- wppost/lang/de/messages.po | 59 ++++--- wppost/lang/de/strings.php | 13 +- 80 files changed, 972 insertions(+), 996 deletions(-) create mode 100644 langfilter/lang/de/messages.po create mode 100644 viewsrc/lang/de/messages.po diff --git a/blockem/lang/de/messages.po b/blockem/lang/de/messages.po index 287b24c5..d1e2f704 100644 --- a/blockem/lang/de/messages.po +++ b/blockem/lang/de/messages.po @@ -7,13 +7,14 @@ # Andreas H., 2018 # Tobias Diekershoff , 2014 # Tobias Diekershoff , 2018 +# Ulf Rompe , 2019 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-08-17 10:23+0200\n" -"PO-Revision-Date: 2018-08-18 10:59+0000\n" -"Last-Translator: Andreas H.\n" +"POT-Creation-Date: 2021-11-21 19:13-0500\n" +"PO-Revision-Date: 2021-12-22 15:27+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,41 +22,29 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blockem.php:54 blockem.php:58 -msgid "Blockem" -msgstr "Blockem" - -#: blockem.php:62 +#: blockem.php:39 msgid "" "Hides user's content by collapsing posts. Also replaces their avatar with " "generic image." -msgstr "Verbirgt Inhalte von Kontakten durch kollabieren der Beiträge. Des weiteren wird das Profilbild durch einen generischen Avatar ersetzt." +msgstr "Verbirgt Inhalte von Benutzern durch Zusammenklappen der Beiträge. Des Weiteren wird das Profilbild durch einen generischen Avatar ersetzt." -#: blockem.php:63 +#: blockem.php:40 msgid "Comma separated profile URLS:" -msgstr "Komma separierte Liste von Profil URLs" +msgstr "Komma-separierte Liste von Profil-URLs" -#: blockem.php:67 -msgid "Save Settings" -msgstr "Einstellungen speichern" +#: blockem.php:45 +msgid "Blockem" +msgstr "Blockem" -#: blockem.php:81 -msgid "BLOCKEM Settings saved." -msgstr "BLOCKEM-Einstellungen gesichert." - -#: blockem.php:143 +#: blockem.php:120 #, php-format msgid "Filtered user: %s" msgstr "Gefilterte Person: %s" -#: blockem.php:202 +#: blockem.php:183 msgid "Unblock Author" msgstr "Autor freischalten" -#: blockem.php:204 +#: blockem.php:185 msgid "Block Author" msgstr "Autor blockieren" - -#: blockem.php:244 -msgid "blockem settings updated" -msgstr "blockem Einstellungen aktualisiert" diff --git a/blockem/lang/de/strings.php b/blockem/lang/de/strings.php index 76967598..109af368 100644 --- a/blockem/lang/de/strings.php +++ b/blockem/lang/de/strings.php @@ -5,12 +5,9 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} +$a->strings['Hides user\'s content by collapsing posts. Also replaces their avatar with generic image.'] = 'Verbirgt Inhalte von Benutzern durch Zusammenklappen der Beiträge. Des Weiteren wird das Profilbild durch einen generischen Avatar ersetzt.'; +$a->strings['Comma separated profile URLS:'] = 'Komma-separierte Liste von Profil-URLs'; $a->strings['Blockem'] = 'Blockem'; -$a->strings['Hides user\'s content by collapsing posts. Also replaces their avatar with generic image.'] = 'Verbirgt Inhalte von Kontakten durch kollabieren der Beiträge. Des weiteren wird das Profilbild durch einen generischen Avatar ersetzt.'; -$a->strings['Comma separated profile URLS:'] = 'Komma separierte Liste von Profil URLs'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; -$a->strings['BLOCKEM Settings saved.'] = 'BLOCKEM-Einstellungen gesichert.'; $a->strings['Filtered user: %s'] = 'Gefilterte Person: %s'; $a->strings['Unblock Author'] = 'Autor freischalten'; $a->strings['Block Author'] = 'Autor blockieren'; -$a->strings['blockem settings updated'] = 'blockem Einstellungen aktualisiert'; diff --git a/catavatar/lang/de/messages.po b/catavatar/lang/de/messages.po index 3cb843d6..d78030ab 100644 --- a/catavatar/lang/de/messages.po +++ b/catavatar/lang/de/messages.po @@ -5,16 +5,16 @@ # # Translators: # Ulf Rompe , 2019 -# Tobias Diekershoff , 2021 +# Tobias Diekershoff , 2022 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-29 00:53+0000\n" +"POT-Creation-Date: 2021-11-21 19:14-0500\n" "PO-Revision-Date: 2018-04-07 05:23+0000\n" -"Last-Translator: Tobias Diekershoff , 2021\n" +"Last-Translator: Tobias Diekershoff , 2022\n" "Language-Team: German (https://www.transifex.com/Friendica/teams/12172/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,41 +23,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: catavatar.php:48 -msgid "Use Cat as Avatar" -msgstr "Verwende diese Katze als Profilbild" - -#: catavatar.php:49 -msgid "More Random Cat!" -msgstr "Weitere zufällige Katze" - -#: catavatar.php:50 -msgid "Reset to email Cat" -msgstr "Zurück zu E-Mail-Katze" - -#: catavatar.php:52 -msgid "Cat Avatar Settings" -msgstr "Katzen-Profilbild-Einstellungen" - -#: catavatar.php:53 msgid "Set default profile avatar or randomize the cat." msgstr "" "Wähle das standardmäßig verwendete Profilbild oder ein zufällig erzeugtes " "Katzenbild." -#: catavatar.php:78 +#: catavatar.php:53 +msgid "Cat Avatar Settings" +msgstr "Katzen-Profilbild-Einstellungen" + +#: catavatar.php:56 +msgid "Use Cat as Avatar" +msgstr "Verwende diese Katze als Profilbild" + +#: catavatar.php:57 +msgid "Another random Cat!" +msgstr "Eine andere zufällige Katze" + +#: catavatar.php:58 +msgid "Reset to email Cat" +msgstr "Zurück zu E-Mail-Katze" + +#: catavatar.php:77 msgid "The cat hadn't found itself." msgstr "" "Es ist ein Problem mit der Datenbank aufgetreten. Die Katze konnte sich " "nicht selbst finden." -#: catavatar.php:87 +#: catavatar.php:86 msgid "There was an error, the cat ran away." msgstr "Upps, es gab einen Fehler und die Katze ist weggelaufen" -#: catavatar.php:93 +#: catavatar.php:92 msgid "Profile Photos" msgstr "Profilbilder" -#: catavatar.php:108 +#: catavatar.php:102 msgid "Meow!" msgstr "Miau!" diff --git a/catavatar/lang/de/strings.php b/catavatar/lang/de/strings.php index c65920aa..2d1cdcc0 100644 --- a/catavatar/lang/de/strings.php +++ b/catavatar/lang/de/strings.php @@ -5,11 +5,11 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Use Cat as Avatar'] = 'Verwende diese Katze als Profilbild'; -$a->strings['More Random Cat!'] = 'Weitere zufällige Katze'; -$a->strings['Reset to email Cat'] = 'Zurück zu E-Mail-Katze'; -$a->strings['Cat Avatar Settings'] = 'Katzen-Profilbild-Einstellungen'; $a->strings['Set default profile avatar or randomize the cat.'] = 'Wähle das standardmäßig verwendete Profilbild oder ein zufällig erzeugtes Katzenbild.'; +$a->strings['Cat Avatar Settings'] = 'Katzen-Profilbild-Einstellungen'; +$a->strings['Use Cat as Avatar'] = 'Verwende diese Katze als Profilbild'; +$a->strings['Another random Cat!'] = 'Eine andere zufällige Katze'; +$a->strings['Reset to email Cat'] = 'Zurück zu E-Mail-Katze'; $a->strings['The cat hadn\'t found itself.'] = 'Es ist ein Problem mit der Datenbank aufgetreten. Die Katze konnte sich nicht selbst finden.'; $a->strings['There was an error, the cat ran away.'] = 'Upps, es gab einen Fehler und die Katze ist weggelaufen'; $a->strings['Profile Photos'] = 'Profilbilder'; diff --git a/cookienotice/lang/de/messages.po b/cookienotice/lang/de/messages.po index 0689a398..db31eea7 100644 --- a/cookienotice/lang/de/messages.po +++ b/cookienotice/lang/de/messages.po @@ -6,15 +6,16 @@ # Translators: # Tobias Diekershoff , 2019 # Ulf Rompe , 2019 +# foss , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-30 10:48+0100\n" +"POT-Creation-Date: 2021-02-01 18:15+0100\n" "PO-Revision-Date: 2019-01-23 16:01+0000\n" -"Last-Translator: Ulf Rompe , 2019\n" +"Last-Translator: foss , 2020\n" "Language-Team: German (https://www.transifex.com/Friendica/teams/12172/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,23 +23,19 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: cookienotice.php:63 +#: cookienotice.php:42 msgid "" "This website uses cookies. If you continue browsing this website, you agree " "to the usage of cookies." msgstr "" "Diese Webseite verwendet Cookies. Durch die weitere Benutzung der Webseite " -"stimmen Sie dieser Verwendung zu." +"stimmst du dieser Verwendung zu." -#: cookienotice.php:64 cookienotice.php:133 +#: cookienotice.php:43 cookienotice.php:108 msgid "OK" msgstr "OK" -#: cookienotice.php:68 -msgid "\"cookienotice\" Settings" -msgstr "\"cookienotice\"-Einstellungen" - -#: cookienotice.php:69 +#: cookienotice.php:47 msgid "" "Configure your cookie usage notice. It should just be a notice, " "saying that the website uses cookies. It is shown as long as a user didnt " @@ -48,35 +45,23 @@ msgstr "" "sein, der sagt, dass die Webseite Cookies benutzt. Er wird so lange " "angezeigt, bis der User den Hinweis durch Klicken des OK-Buttons bestätigt." -#: cookienotice.php:70 +#: cookienotice.php:48 msgid "Cookie Usage Notice" msgstr "Cookie-Nutzungshinweis" -#: cookienotice.php:70 -msgid "The cookie usage notice" -msgstr "Der Hinweis zur Nutzung von Cookies" - -#: cookienotice.php:71 +#: cookienotice.php:49 msgid "OK Button Text" msgstr "OK-Button-Text" -#: cookienotice.php:71 -msgid "The OK Button text" -msgstr "Der für den OK-Button verwendete Text" - -#: cookienotice.php:72 +#: cookienotice.php:50 msgid "Save Settings" msgstr "Einstellungen speichern" -#: cookienotice.php:97 -msgid "cookienotice Settings saved." -msgstr "cookienotice-Einstellungen wurden gespeichert" - -#: cookienotice.php:132 +#: 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 "" "Diese Webseite verwendet Cookies zur Erkennung von wiederkehrenden Besuchern" " und eingeloggten Nutzern. Durch die weitere Benutzung der Webseite " -"akzeptieren Sie die Verwendung der Cookies." +"akzeptierst du die Verwendung der Cookies." diff --git a/cookienotice/lang/de/strings.php b/cookienotice/lang/de/strings.php index 56cb344d..a83955ee 100644 --- a/cookienotice/lang/de/strings.php +++ b/cookienotice/lang/de/strings.php @@ -5,14 +5,10 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['This website uses cookies. If you continue browsing this website, you agree to the usage of cookies.'] = 'Diese Webseite verwendet Cookies. Durch die weitere Benutzung der Webseite stimmen Sie dieser Verwendung zu.'; +$a->strings['This website uses cookies. If you continue browsing this website, you agree to the usage of cookies.'] = 'Diese Webseite verwendet Cookies. Durch die weitere Benutzung der Webseite stimmst du dieser Verwendung zu.'; $a->strings['OK'] = 'OK'; -$a->strings['"cookienotice" Settings'] = '"cookienotice"-Einstellungen'; $a->strings['Configure your cookie usage notice. 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.'] = 'Konfiguriere deinen Cookie-Nutzungshinweis. Es sollte ein Hinweis sein, der sagt, dass die Webseite Cookies benutzt. Er wird so lange angezeigt, bis der User den Hinweis durch Klicken des OK-Buttons bestätigt.'; $a->strings['Cookie Usage Notice'] = 'Cookie-Nutzungshinweis'; -$a->strings['The cookie usage notice'] = 'Der Hinweis zur Nutzung von Cookies'; $a->strings['OK Button Text'] = 'OK-Button-Text'; -$a->strings['The OK Button text'] = 'Der für den OK-Button verwendete Text'; $a->strings['Save Settings'] = 'Einstellungen speichern'; -$a->strings['cookienotice Settings saved.'] = 'cookienotice-Einstellungen wurden gespeichert'; -$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.'] = 'Diese Webseite verwendet Cookies zur Erkennung von wiederkehrenden Besuchern und eingeloggten Nutzern. Durch die weitere Benutzung der Webseite akzeptieren Sie die Verwendung der Cookies.'; +$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.'] = 'Diese Webseite verwendet Cookies zur Erkennung von wiederkehrenden Besuchern und eingeloggten Nutzern. Durch die weitere Benutzung der Webseite akzeptierst du die Verwendung der Cookies.'; diff --git a/curweather/lang/de/messages.po b/curweather/lang/de/messages.po index 91c8c576..cf6500fc 100644 --- a/curweather/lang/de/messages.po +++ b/curweather/lang/de/messages.po @@ -8,15 +8,15 @@ # Oliver , 2016 # Till Mohr , 2021 # Tobias Diekershoff , 2014-2015 -# Tobias Diekershoff , 2016,2021 +# Tobias Diekershoff , 2016,2021-2022 # Ulf Rompe , 2019 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: 2021-05-23 19:29+0000\n" -"Last-Translator: Till Mohr \n" +"POT-Creation-Date: 2021-11-21 19:14-0500\n" +"PO-Revision-Date: 2022-01-22 17:28+0000\n" +"Last-Translator: Tobias Diekershoff \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +28,7 @@ msgstr "" msgid "Error fetching weather data. Error was: " msgstr "Fehler beim Abrufen der Wetterdaten. Die Fehlermeldung lautet:" -#: curweather.php:130 curweather.php:192 +#: curweather.php:130 msgid "Current Weather" msgstr "Aktuelles Wetter" @@ -64,66 +64,66 @@ msgstr "Es gab ein Problem beim Abrufen der Wetterdaten. Aber wirf doch mal eine msgid "at OpenWeatherMap" msgstr "auf OpenWeatherMap" -#: curweather.php:179 +#: curweather.php:178 msgid "No APPID found, please contact your admin to obtain one." msgstr "Keine APPID gefunden, bitte kontaktiere deinen Admin, damit eine eingerichtet wird." -#: curweather.php:191 curweather.php:229 -msgid "Save Settings" -msgstr "Einstellungen speichern" - -#: curweather.php:192 -msgid "Settings" -msgstr "Einstellungen" - -#: curweather.php:194 +#: curweather.php:188 msgid "Enter either the name of your location or the zip code." msgstr "Gib entweder den Namen oder die PLZ deines Ortes ein." -#: curweather.php:195 +#: curweather.php:189 msgid "Your Location" msgstr "Deinen Standort festlegen" -#: curweather.php:195 +#: curweather.php:189 msgid "" "Identifier of your location (name or zip code), e.g. Berlin,DE or " "14476,DE." msgstr "Identifikator deines Standorts (Name oder Postleitzahl), z.B. Berlin,DE oder 14476,DE." -#: curweather.php:196 +#: curweather.php:190 msgid "Units" msgstr "Einheiten" -#: curweather.php:196 +#: curweather.php:190 msgid "select if the temperature should be displayed in °C or °F" msgstr "wähle, ob die Temperatur in °C oder °F angezeigt werden soll" -#: curweather.php:197 +#: curweather.php:191 msgid "Show weather data" msgstr "Zeige Wetterdaten" -#: curweather.php:232 +#: curweather.php:196 +msgid "Current Weather Settings" +msgstr "Aktuelles Wetter Einstellungen" + +#: curweather.php:227 +msgid "Save Settings" +msgstr "Einstellungen speichern" + +#: curweather.php:230 msgid "Caching Interval" msgstr "Cache-Intervall" -#: curweather.php:234 +#: curweather.php:232 msgid "" "For how long should the weather data be cached? Choose according your " "OpenWeatherMap account type." msgstr "Wie lange sollen die Wetterdaten zwischengespeichert werden? Wähle eine für deinen OpenWeatherMap-Account passende Einstellung." -#: curweather.php:235 +#: curweather.php:233 msgid "no cache" msgstr "kein Cache" -#: curweather.php:236 curweather.php:237 curweather.php:238 curweather.php:239 +#: curweather.php:234 curweather.php:235 curweather.php:236 curweather.php:237 msgid "minutes" msgstr "Minuten" -#: curweather.php:242 +#: curweather.php:240 msgid "Your APPID" msgstr "Deine APPID" -#: curweather.php:242 +#: curweather.php:240 msgid "Your API key provided by OpenWeatherMap" msgstr "Der API-Schlüssel von OpenWeatherMap" diff --git a/curweather/lang/de/strings.php b/curweather/lang/de/strings.php index 2fb72a5f..89980429 100644 --- a/curweather/lang/de/strings.php +++ b/curweather/lang/de/strings.php @@ -16,14 +16,14 @@ $a->strings['Show on map'] = 'Karte anzeigen'; $a->strings['There was a problem accessing the weather data. But have a look'] = 'Es gab ein Problem beim Abrufen der Wetterdaten. Aber wirf doch mal einen Blick'; $a->strings['at OpenWeatherMap'] = 'auf OpenWeatherMap'; $a->strings['No APPID found, please contact your admin to obtain one.'] = 'Keine APPID gefunden, bitte kontaktiere deinen Admin, damit eine eingerichtet wird.'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; -$a->strings['Settings'] = 'Einstellungen'; $a->strings['Enter either the name of your location or the zip code.'] = 'Gib entweder den Namen oder die PLZ deines Ortes ein.'; $a->strings['Your Location'] = 'Deinen Standort festlegen'; $a->strings['Identifier of your location (name or zip code), e.g. Berlin,DE or 14476,DE.'] = 'Identifikator deines Standorts (Name oder Postleitzahl), z.B. Berlin,DE oder 14476,DE.'; $a->strings['Units'] = 'Einheiten'; $a->strings['select if the temperature should be displayed in °C or °F'] = 'wähle, ob die Temperatur in °C oder °F angezeigt werden soll'; $a->strings['Show weather data'] = 'Zeige Wetterdaten'; +$a->strings['Current Weather Settings'] = 'Aktuelles Wetter Einstellungen'; +$a->strings['Save Settings'] = 'Einstellungen speichern'; $a->strings['Caching Interval'] = 'Cache-Intervall'; $a->strings['For how long should the weather data be cached? Choose according your OpenWeatherMap account type.'] = 'Wie lange sollen die Wetterdaten zwischengespeichert werden? Wähle eine für deinen OpenWeatherMap-Account passende Einstellung.'; $a->strings['no cache'] = 'kein Cache'; diff --git a/diaspora/lang/de/messages.po b/diaspora/lang/de/messages.po index 6510d43f..e4abd25c 100644 --- a/diaspora/lang/de/messages.po +++ b/diaspora/lang/de/messages.po @@ -13,9 +13,9 @@ 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: 2021-05-23 19:29+0000\n" -"Last-Translator: Till Mohr \n" +"POT-Creation-Date: 2021-11-21 19:17-0500\n" +"PO-Revision-Date: 2021-12-22 15:27+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,88 +23,84 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: diaspora.php:43 +#: diaspora.php:44 msgid "Post to Diaspora" msgstr "Auf Diaspora veröffentlichen" -#: diaspora.php:68 +#: diaspora.php:67 #, php-format msgid "" "Please remember: You can always be reached from Diaspora with your Friendica" " handle %s. " msgstr "Denke daran: Du kannst jederzeit über deinen Friendica-Account %s von Diaspora aus erreicht werden." -#: diaspora.php:69 +#: diaspora.php:68 msgid "" "This connector is only meant if you still want to use your old Diaspora " "account for some time. " msgstr "Dieser Connector ist ausschließlich dafür gedacht, deinen alten Diaspora-Account noch ein wenig weiter zu betreiben." -#: diaspora.php:70 +#: diaspora.php:69 #, php-format msgid "" "However, it is preferred that you tell your Diaspora contacts the new handle" " %s instead." msgstr "Du solltest allerdings deinen Diaspora Kontakten deinen Friendica Account %s mitteilen, damit sie diesem folgen." -#: diaspora.php:80 +#: diaspora.php:79 msgid "All aspects" msgstr "Alle Aspekte" -#: diaspora.php:81 +#: diaspora.php:80 msgid "Public" msgstr "Öffentlich" -#: diaspora.php:87 +#: diaspora.php:86 msgid "Post to aspect:" msgstr "Bei aspect veröffentlichen:" -#: diaspora.php:88 +#: diaspora.php:87 #, php-format msgid "Connected with your Diaspora account %s" msgstr "Verbunden mit deinem Diaspora-Konto %s" -#: diaspora.php:91 +#: diaspora.php:90 msgid "" "Can't login to your Diaspora account. Please check handle (in the format " "user@domain.tld) and password." msgstr "Anmeldung bei deinem Diaspora-Konto fehlgeschlagen. Bitte überprüfe Handle (im Format user@domain.tld) und Passwort." -#: diaspora.php:99 -msgid "Diaspora Export" -msgstr "Diaspora-Export" - -#: diaspora.php:100 +#: diaspora.php:97 msgid "Information" msgstr "Information" -#: diaspora.php:101 +#: diaspora.php:98 msgid "Error" msgstr "Fehler" -#: diaspora.php:102 -msgid "Save Settings" -msgstr "Einstellungen speichern" - -#: diaspora.php:106 +#: diaspora.php:104 msgid "Enable Diaspora Post Addon" msgstr "Diaspora-Post-Addon aktivieren" -#: diaspora.php:107 +#: diaspora.php:105 msgid "Diaspora handle" msgstr "Diaspora-Handle" -#: diaspora.php:108 +#: diaspora.php:106 msgid "Diaspora password" msgstr "Diaspora-Passwort" -#: diaspora.php:108 +#: 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 "Datenschutzhinweis: Dein Diaspora-Passwort wird unverschlüsselt gespeichert, um dich an deinem Diaspora-Pod zu authentifizieren. Dadurch kann der Administrator deines Friendica-Knotens Zugriff darauf erlangen." -#: diaspora.php:110 +#: diaspora.php:108 msgid "Post to Diaspora by default" msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Diaspora" + +#: diaspora.php:113 +msgid "Diaspora Export" +msgstr "Diaspora-Export" diff --git a/diaspora/lang/de/strings.php b/diaspora/lang/de/strings.php index 7e382fbd..8168199a 100644 --- a/diaspora/lang/de/strings.php +++ b/diaspora/lang/de/strings.php @@ -14,12 +14,11 @@ $a->strings['Public'] = 'Öffentlich'; $a->strings['Post to aspect:'] = 'Bei aspect veröffentlichen:'; $a->strings['Connected with your Diaspora account %s'] = 'Verbunden mit deinem Diaspora-Konto %s'; $a->strings['Can\'t login to your Diaspora account. Please check handle (in the format user@domain.tld) and password.'] = 'Anmeldung bei deinem Diaspora-Konto fehlgeschlagen. Bitte überprüfe Handle (im Format user@domain.tld) und Passwort.'; -$a->strings['Diaspora Export'] = 'Diaspora-Export'; $a->strings['Information'] = 'Information'; $a->strings['Error'] = 'Fehler'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; $a->strings['Enable Diaspora Post Addon'] = 'Diaspora-Post-Addon aktivieren'; $a->strings['Diaspora handle'] = 'Diaspora-Handle'; $a->strings['Diaspora password'] = 'Diaspora-Passwort'; $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.'] = 'Datenschutzhinweis: Dein Diaspora-Passwort wird unverschlüsselt gespeichert, um dich an deinem Diaspora-Pod zu authentifizieren. Dadurch kann der Administrator deines Friendica-Knotens Zugriff darauf erlangen.'; $a->strings['Post to Diaspora by default'] = 'Veröffentliche öffentliche Beiträge standardmäßig bei Diaspora'; +$a->strings['Diaspora Export'] = 'Diaspora-Export'; diff --git a/dwpost/lang/de/messages.po b/dwpost/lang/de/messages.po index 34090db1..550c2493 100644 --- a/dwpost/lang/de/messages.po +++ b/dwpost/lang/de/messages.po @@ -6,14 +6,14 @@ # Translators: # Andreas H., 2014 # Tobias Diekershoff , 2014 -# Tobias Diekershoff , 2018,2021 +# Tobias Diekershoff , 2018,2021-2022 # Ulf Rompe , 2019 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: 2021-02-06 16:55+0000\n" +"POT-Creation-Date: 2021-11-21 19:17-0500\n" +"PO-Revision-Date: 2022-01-22 17:33+0000\n" "Last-Translator: Tobias Diekershoff \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -22,30 +22,26 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: dwpost.php:41 +#: dwpost.php:43 msgid "Post to Dreamwidth" msgstr "In Dreamwidth veröffentlichen" -#: dwpost.php:72 dwpost.php:76 -msgid "Dreamwidth Export" -msgstr "Dreamwidth Export" - -#: dwpost.php:80 -msgid "Enable dreamwidth Post Addon" +#: dwpost.php:63 +msgid "Enable Dreamwidth Post Addon" msgstr "Dreamwidth-Post-Addon aktivieren" -#: dwpost.php:85 -msgid "dreamwidth username" +#: dwpost.php:64 +msgid "Dreamwidth username" msgstr "Dreamwidth-Benutzername" -#: dwpost.php:90 -msgid "dreamwidth password" +#: dwpost.php:65 +msgid "Dreamwidth password" msgstr "Dreamwidth-Passwort" -#: dwpost.php:95 -msgid "Post to dreamwidth by default" +#: dwpost.php:66 +msgid "Post to Dreamwidth by default" msgstr "Standardmäßig bei Dreamwidth veröffentlichen" -#: dwpost.php:100 -msgid "Save Settings" -msgstr "Speichere Einstellungen" +#: dwpost.php:71 +msgid "Dreamwidth Export" +msgstr "Dreamwidth Export" diff --git a/dwpost/lang/de/strings.php b/dwpost/lang/de/strings.php index 1a732219..aea4bde0 100644 --- a/dwpost/lang/de/strings.php +++ b/dwpost/lang/de/strings.php @@ -6,9 +6,8 @@ function string_plural_select_de($n){ return intval($n != 1); }} $a->strings['Post to Dreamwidth'] = 'In Dreamwidth veröffentlichen'; +$a->strings['Enable Dreamwidth Post Addon'] = 'Dreamwidth-Post-Addon aktivieren'; +$a->strings['Dreamwidth username'] = 'Dreamwidth-Benutzername'; +$a->strings['Dreamwidth password'] = 'Dreamwidth-Passwort'; +$a->strings['Post to Dreamwidth by default'] = 'Standardmäßig bei Dreamwidth veröffentlichen'; $a->strings['Dreamwidth Export'] = 'Dreamwidth Export'; -$a->strings['Enable dreamwidth Post Addon'] = 'Dreamwidth-Post-Addon aktivieren'; -$a->strings['dreamwidth username'] = 'Dreamwidth-Benutzername'; -$a->strings['dreamwidth password'] = 'Dreamwidth-Passwort'; -$a->strings['Post to dreamwidth by default'] = 'Standardmäßig bei Dreamwidth veröffentlichen'; -$a->strings['Save Settings'] = 'Speichere Einstellungen'; diff --git a/fromapp/lang/de/messages.po b/fromapp/lang/de/messages.po index 96b5832e..59d5d3c5 100644 --- a/fromapp/lang/de/messages.po +++ b/fromapp/lang/de/messages.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-19 16:42+0100\n" -"PO-Revision-Date: 2019-02-21 05:57+0000\n" -"Last-Translator: Tobias Diekershoff \n" +"POT-Creation-Date: 2021-11-21 19:14-0500\n" +"PO-Revision-Date: 2021-12-22 15:15+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,25 +22,17 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: fromapp.php:40 -msgid "Fromapp settings updated." -msgstr "Fromapp-Einstellungen aktualisiert." - -#: fromapp.php:65 fromapp.php:69 -msgid "FromApp Settings" -msgstr "FromApp-Einstellungen" - -#: fromapp.php:72 +#: 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 "Der Name der Applikation der als Quelle deiner Beiträge angezeigt werden soll. Unterschiedliche Namen können mit einem Komma von einander getrennt werden. Ist mehr als ein Name angegeben, wird für jeden Beitrag ein zufälliger Name aus der Liste ausgewählt." -#: fromapp.php:76 +#: fromapp.php:46 msgid "Use this application name even if another application was used." msgstr "Verwende diesen Namen, selbst wenn eine andere Applikation verwendet wurde" -#: fromapp.php:83 -msgid "Save Settings" -msgstr "Einstellungen speichern" +#: fromapp.php:51 +msgid "FromApp Settings" +msgstr "FromApp-Einstellungen" diff --git a/fromapp/lang/de/strings.php b/fromapp/lang/de/strings.php index 51f9c7ef..00fd8ef0 100644 --- a/fromapp/lang/de/strings.php +++ b/fromapp/lang/de/strings.php @@ -5,8 +5,6 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Fromapp settings updated.'] = 'Fromapp-Einstellungen aktualisiert.'; -$a->strings['FromApp Settings'] = 'FromApp-Einstellungen'; $a->strings['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.'] = 'Der Name der Applikation der als Quelle deiner Beiträge angezeigt werden soll. Unterschiedliche Namen können mit einem Komma von einander getrennt werden. Ist mehr als ein Name angegeben, wird für jeden Beitrag ein zufälliger Name aus der Liste ausgewählt.'; $a->strings['Use this application name even if another application was used.'] = 'Verwende diesen Namen, selbst wenn eine andere Applikation verwendet wurde'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; +$a->strings['FromApp Settings'] = 'FromApp-Einstellungen'; diff --git a/geonames/lang/de/messages.po b/geonames/lang/de/messages.po index cb2d37cc..a182d6bb 100644 --- a/geonames/lang/de/messages.po +++ b/geonames/lang/de/messages.po @@ -12,9 +12,9 @@ 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: 2021-02-06 16:59+0000\n" -"Last-Translator: Tobias Diekershoff \n" +"POT-Creation-Date: 2021-11-21 19:14-0500\n" +"PO-Revision-Date: 2021-12-22 17:23+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,20 +22,16 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: geonames.php:141 -msgid "Geonames Settings" -msgstr "Geonames-Einstellungen" - -#: geonames.php:142 +#: geonames.php:135 msgid "" "Replace numerical coordinates by the nearest populated location name in your" " posts." msgstr "Ersetze numerische Koordinaten in Beiträgen mit dem Namen der nächst gelegenen Siedlung." -#: geonames.php:143 +#: geonames.php:136 msgid "Enable Geonames Addon" msgstr "Geonames-Addon aktivieren" -#: geonames.php:144 -msgid "Save Settings" -msgstr "Einstellungen speichern" +#: geonames.php:141 +msgid "Geonames Settings" +msgstr "Geonames-Einstellungen" diff --git a/geonames/lang/de/strings.php b/geonames/lang/de/strings.php index 751359ea..3a31e793 100644 --- a/geonames/lang/de/strings.php +++ b/geonames/lang/de/strings.php @@ -5,7 +5,6 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Geonames Settings'] = 'Geonames-Einstellungen'; $a->strings['Replace numerical coordinates by the nearest populated location name in your posts.'] = 'Ersetze numerische Koordinaten in Beiträgen mit dem Namen der nächst gelegenen Siedlung.'; $a->strings['Enable Geonames Addon'] = 'Geonames-Addon aktivieren'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; +$a->strings['Geonames Settings'] = 'Geonames-Einstellungen'; diff --git a/gnot/lang/de/messages.po b/gnot/lang/de/messages.po index 2351f2ab..26e45848 100644 --- a/gnot/lang/de/messages.po +++ b/gnot/lang/de/messages.po @@ -12,9 +12,9 @@ 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: 2021-02-06 17:00+0000\n" -"Last-Translator: Tobias Diekershoff \n" +"POT-Creation-Date: 2021-11-21 19:14-0500\n" +"PO-Revision-Date: 2021-12-22 15:27+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,25 +22,21 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: gnot.php:71 -msgid "Gnot Settings" -msgstr "Gnot-Einstellungen" - -#: gnot.php:72 -msgid "Save Settings" -msgstr "Einstellungen speichern" - -#: gnot.php:73 -msgid "Enable this addon?" -msgstr "Dieses Addon aktivieren?" - -#: gnot.php:75 +#: gnot.php:63 msgid "" "Allows threading of email comment notifications on Gmail and anonymising the" " subject line." msgstr "Erlaubt das Veröffentlichen von E-Mail-Kommentar-Benachrichtigungen bei Gmail mit anonymisiertem Betreff" -#: gnot.php:84 +#: gnot.php:64 +msgid "Enable this addon?" +msgstr "Dieses Addon aktivieren?" + +#: gnot.php:69 +msgid "Gnot Settings" +msgstr "Gnot-Einstellungen" + +#: gnot.php:79 #, php-format msgid "[Friendica:Notify] Comment to conversation #%d" msgstr "[Friendica-Benachrichtigung] Kommentar zum Beitrag #%d" diff --git a/gnot/lang/de/strings.php b/gnot/lang/de/strings.php index 335a94d6..4dacbc21 100644 --- a/gnot/lang/de/strings.php +++ b/gnot/lang/de/strings.php @@ -5,8 +5,7 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Gnot Settings'] = 'Gnot-Einstellungen'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; -$a->strings['Enable this addon?'] = 'Dieses Addon aktivieren?'; $a->strings['Allows threading of email comment notifications on Gmail and anonymising the subject line.'] = 'Erlaubt das Veröffentlichen von E-Mail-Kommentar-Benachrichtigungen bei Gmail mit anonymisiertem Betreff'; +$a->strings['Enable this addon?'] = 'Dieses Addon aktivieren?'; +$a->strings['Gnot Settings'] = 'Gnot-Einstellungen'; $a->strings['[Friendica:Notify] Comment to conversation #%d'] = '[Friendica-Benachrichtigung] Kommentar zum Beitrag #%d'; diff --git a/group_text/lang/de/messages.po b/group_text/lang/de/messages.po index 5e451469..40ed72ee 100644 --- a/group_text/lang/de/messages.po +++ b/group_text/lang/de/messages.po @@ -12,9 +12,9 @@ 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: 2021-03-29 05:25+0000\n" -"Last-Translator: Tobias Diekershoff \n" +"POT-Creation-Date: 2021-11-21 19:14-0500\n" +"PO-Revision-Date: 2021-12-22 15:27+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,14 +22,10 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: group_text.php:62 -msgid "Group Text" -msgstr "Gruppen als Text" - -#: group_text.php:64 +#: group_text.php:58 msgid "Use a text only (non-image) group selector in the \"group edit\" menu" msgstr "Beim Bearbeiten von Gruppen Text statt Bilder anzeigen" -#: group_text.php:70 -msgid "Save Settings" -msgstr "Einstellungen speichern" +#: group_text.php:63 +msgid "Group Text" +msgstr "Gruppen als Text" diff --git a/group_text/lang/de/strings.php b/group_text/lang/de/strings.php index b13b97a1..7a75b54d 100644 --- a/group_text/lang/de/strings.php +++ b/group_text/lang/de/strings.php @@ -5,6 +5,5 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Group Text'] = 'Gruppen als Text'; $a->strings['Use a text only (non-image) group selector in the "group edit" menu'] = 'Beim Bearbeiten von Gruppen Text statt Bilder anzeigen'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; +$a->strings['Group Text'] = 'Gruppen als Text'; diff --git a/ifttt/lang/de/messages.po b/ifttt/lang/de/messages.po index 1cacfc90..1a7e1222 100644 --- a/ifttt/lang/de/messages.po +++ b/ifttt/lang/de/messages.po @@ -3,14 +3,19 @@ # This file is distributed under the same license as the Friendica ifttt addon package. # # +# Translators: +# Andreas H., 2017 +# Ulf Rompe , 2019 +# Tobias Diekershoff , 2022 +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-11-27 09:30+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Andreas H. , 2017\n" +"POT-Creation-Date: 2021-11-21 19:17-0500\n" +"PO-Revision-Date: 2017-11-27 10:37+0000\n" +"Last-Translator: Tobias Diekershoff , 2022\n" "Language-Team: German (https://www.transifex.com/Friendica/teams/12172/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,38 +23,46 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ifttt.php:53 ifttt.php:57 -msgid "IFTTT Mirror" -msgstr "IFTTT Spiegel" - -#: ifttt.php:61 +#: ifttt.php:52 msgid "" "Create an account at IFTTT. Create " "three Facebook recipes that are connected with Maker (In the form \"if Facebook then " "Maker\") with the following parameters:" msgstr "" -"Lege ein Konto bei IFTTT an. Gebe drei" -" Facebook Empfänger ein, die mit Maker " -" verbunden sind (in der Form \"wenn Facebook dann Maker\"), mit den " +"Lege ein Konto bei IFTTT an. Lege drei" +" Facebook-Recipes an, die mit Maker " +" verbunden sind (in der Form \"wenn Facebook dann Maker\"), mit den " "folgenden Parametern:" -#: ifttt.php:68 -msgid "Body for \"new status message\"" -msgstr "Body für \"Neue Status Meldung\"" +#: ifttt.php:53 +msgid "URL" +msgstr "URL" -#: ifttt.php:70 +#: ifttt.php:54 +msgid "Method" +msgstr "Methode" + +#: ifttt.php:55 +msgid "Content Type" +msgstr "Content Typ" + +#: ifttt.php:56 +msgid "Body for \"new status message\"" +msgstr "Body für \"Neue Statusmeldung\"" + +#: ifttt.php:57 msgid "Body for \"new photo upload\"" msgstr "Body für \"Neues Foto hochgeladen\"" -#: ifttt.php:72 +#: ifttt.php:58 msgid "Body for \"new link post\"" msgstr "Body für \"Neue Nachricht\"" -#: ifttt.php:77 +#: ifttt.php:68 +msgid "IFTTT Mirror" +msgstr "IFTTT Spiegel" + +#: ifttt.php:71 msgid "Generate new key" msgstr "Generiere neuen Schlüssel" - -#: ifttt.php:81 -msgid "Save Settings" -msgstr "Speichere Einstellungen" diff --git a/ifttt/lang/de/strings.php b/ifttt/lang/de/strings.php index 38839607..0f26aaeb 100644 --- a/ifttt/lang/de/strings.php +++ b/ifttt/lang/de/strings.php @@ -5,10 +5,12 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['IFTTT Mirror'] = 'IFTTT Spiegel'; -$a->strings['Create an account at IFTTT. Create three Facebook recipes that are connected with Maker (In the form "if Facebook then Maker") with the following parameters:'] = 'Lege ein Konto bei IFTTT an. Gebe drei Facebook Empfänger ein, die mit Maker verbunden sind (in der Form "wenn Facebook dann Maker"), mit den folgenden Parametern:'; -$a->strings['Body for "new status message"'] = 'Body für "Neue Status Meldung"'; +$a->strings['Create an account at IFTTT. Create three Facebook recipes that are connected with Maker (In the form "if Facebook then Maker") with the following parameters:'] = 'Lege ein Konto bei IFTTT an. Lege drei Facebook-Recipes an, die mit Maker verbunden sind (in der Form "wenn Facebook dann Maker"), mit den folgenden Parametern:'; +$a->strings['URL'] = 'URL'; +$a->strings['Method'] = 'Methode'; +$a->strings['Content Type'] = 'Content Typ'; +$a->strings['Body for "new status message"'] = 'Body für "Neue Statusmeldung"'; $a->strings['Body for "new photo upload"'] = 'Body für "Neues Foto hochgeladen"'; $a->strings['Body for "new link post"'] = 'Body für "Neue Nachricht"'; +$a->strings['IFTTT Mirror'] = 'IFTTT Spiegel'; $a->strings['Generate new key'] = 'Generiere neuen Schlüssel'; -$a->strings['Save Settings'] = 'Speichere Einstellungen'; diff --git a/ijpost/lang/de/messages.po b/ijpost/lang/de/messages.po index 894a8d09..fef0eddc 100644 --- a/ijpost/lang/de/messages.po +++ b/ijpost/lang/de/messages.po @@ -12,9 +12,9 @@ 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: 2021-03-29 05:28+0000\n" -"Last-Translator: Tobias Diekershoff \n" +"POT-Creation-Date: 2021-11-21 19:17-0500\n" +"PO-Revision-Date: 2021-12-22 16:19+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,30 +22,26 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ijpost.php:39 +#: ijpost.php:42 msgid "Post to Insanejournal" msgstr "Auf InsaneJournal posten." -#: ijpost.php:71 ijpost.php:75 -msgid "InsaneJournal Export" -msgstr "InsaneJournal Export" - -#: ijpost.php:79 +#: ijpost.php:61 msgid "Enable InsaneJournal Post Addon" msgstr "InsaneJournal-Addon aktivieren" -#: ijpost.php:84 +#: ijpost.php:62 msgid "InsaneJournal username" msgstr "InsaneJournal-Benutzername" -#: ijpost.php:89 +#: ijpost.php:63 msgid "InsaneJournal password" msgstr "InsaneJournal-Passwort" -#: ijpost.php:94 +#: ijpost.php:64 msgid "Post to InsaneJournal by default" msgstr "Standardmäßig auf InsaneJournal posten." -#: ijpost.php:99 -msgid "Save Settings" -msgstr "Einstellungen speichern" +#: ijpost.php:69 +msgid "InsaneJournal Export" +msgstr "InsaneJournal Export" diff --git a/ijpost/lang/de/strings.php b/ijpost/lang/de/strings.php index 315f3a71..4dd461e1 100644 --- a/ijpost/lang/de/strings.php +++ b/ijpost/lang/de/strings.php @@ -6,9 +6,8 @@ function string_plural_select_de($n){ return intval($n != 1); }} $a->strings['Post to Insanejournal'] = 'Auf InsaneJournal posten.'; -$a->strings['InsaneJournal Export'] = 'InsaneJournal Export'; $a->strings['Enable InsaneJournal Post Addon'] = 'InsaneJournal-Addon aktivieren'; $a->strings['InsaneJournal username'] = 'InsaneJournal-Benutzername'; $a->strings['InsaneJournal password'] = 'InsaneJournal-Passwort'; $a->strings['Post to InsaneJournal by default'] = 'Standardmäßig auf InsaneJournal posten.'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; +$a->strings['InsaneJournal Export'] = 'InsaneJournal Export'; diff --git a/irc/lang/de/messages.po b/irc/lang/de/messages.po index 3ab048b9..4b47999b 100644 --- a/irc/lang/de/messages.po +++ b/irc/lang/de/messages.po @@ -4,65 +4,62 @@ # # # Translators: -# Abrax , 2014-2015 -# bavatar , 2014-2015 +# Andreas H., 2014-2015 +# Tobias Diekershoff , 2014-2015 +# Ulf Rompe , 2019 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-08 13:17+0200\n" -"PO-Revision-Date: 2015-07-19 10:11+0000\n" -"Last-Translator: bavatar \n" -"Language-Team: German (http://www.transifex.com/p/friendica/language/de/)\n" +"POT-Creation-Date: 2021-11-21 19:14-0500\n" +"PO-Revision-Date: 2021-02-01 18:19+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: irc.php:37 -msgid "IRC Settings" -msgstr "IRC Einstellungen" - -#: irc.php:38 +#: 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 "Hier könne die systemweiten Einstellungen für beliebte Kanäle und solche die automatisch betreten werden sollen festgelegt werden. Achtung: Die Einstellungen die her getroffen werden können von eingeloggten Nutzern für sich überschrieben werden." +msgstr "Hier können die systemweiten Einstellungen für beliebte Kanäle und solche, die automatisch betreten werden sollen, festgelegt werden. Achtung: Die Einstellungen, die hier getroffen werden, können von eingeloggten Nutzern für sich überschrieben werden." -#: irc.php:39 irc.php:136 -msgid "Save Settings" -msgstr "Einstellungen speichern" - -#: irc.php:40 irc.php:137 +#: irc.php:33 irc.php:133 msgid "Channel(s) to auto connect (comma separated)" -msgstr "mit diesen Kanälen soll man automatisch verbunden werden (Komma getrennt)" +msgstr "Kanäle, die automatisch betreten werden (mit Komma getrennt)" -#: irc.php:40 irc.php:137 +#: irc.php:33 irc.php:133 msgid "" "List of channels that shall automatically connected to when the app is " "launched." -msgstr "Liste von Chaträumen die automatisch betreten werden sollen wenn die App gestartet wurde." +msgstr "Liste von Chaträumen, die automatisch betreten werden sollen, wenn die App gestartet wird." -#: irc.php:41 irc.php:138 +#: irc.php:34 irc.php:134 msgid "Popular Channels (comma separated)" msgstr "Beliebte Kanäle (mit Komma getrennt)" -#: irc.php:41 irc.php:138 +#: irc.php:34 irc.php:134 msgid "" "List of popular channels, will be displayed at the side and hotlinked for " "easy joining." -msgstr "Liste populärer Chaträume die vverlinkt am Seitenrand aufgelistet werden zum schnelleren betreten." +msgstr "Liste populärer Chaträume, die zum schnellen Betreten am Seitenrand aufgelistet und verlinkt werden." -#: irc.php:57 irc.php:128 -msgid "IRC settings saved." -msgstr "IRC Einstellungen gespeichert." +#: irc.php:39 +msgid "IRC Settings" +msgstr "IRC-Einstellungen" -#: irc.php:62 +#: irc.php:60 msgid "IRC Chatroom" -msgstr "IRC Chatraum" +msgstr "IRC-Chatraum" -#: irc.php:90 +#: irc.php:88 msgid "Popular Channels" msgstr "Beliebte Räume" + +#: irc.php:132 +msgid "Save Settings" +msgstr "Einstellungen speichern" diff --git a/irc/lang/de/strings.php b/irc/lang/de/strings.php index ff66453f..c3273a04 100644 --- a/irc/lang/de/strings.php +++ b/irc/lang/de/strings.php @@ -5,13 +5,12 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['IRC Settings'] = 'IRC Einstellungen'; -$a->strings['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.'] = 'Hier könne die systemweiten Einstellungen für beliebte Kanäle und solche die automatisch betreten werden sollen festgelegt werden. Achtung: Die Einstellungen die her getroffen werden können von eingeloggten Nutzern für sich überschrieben werden.'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; -$a->strings['Channel(s) to auto connect (comma separated)'] = 'mit diesen Kanälen soll man automatisch verbunden werden (Komma getrennt)'; -$a->strings['List of channels that shall automatically connected to when the app is launched.'] = 'Liste von Chaträumen die automatisch betreten werden sollen wenn die App gestartet wurde.'; +$a->strings['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.'] = 'Hier können die systemweiten Einstellungen für beliebte Kanäle und solche, die automatisch betreten werden sollen, festgelegt werden. Achtung: Die Einstellungen, die hier getroffen werden, können von eingeloggten Nutzern für sich überschrieben werden.'; +$a->strings['Channel(s) to auto connect (comma separated)'] = 'Kanäle, die automatisch betreten werden (mit Komma getrennt)'; +$a->strings['List of channels that shall automatically connected to when the app is launched.'] = 'Liste von Chaträumen, die automatisch betreten werden sollen, wenn die App gestartet wird.'; $a->strings['Popular Channels (comma separated)'] = 'Beliebte Kanäle (mit Komma getrennt)'; -$a->strings['List of popular channels, will be displayed at the side and hotlinked for easy joining.'] = 'Liste populärer Chaträume die vverlinkt am Seitenrand aufgelistet werden zum schnelleren betreten.'; -$a->strings['IRC settings saved.'] = 'IRC Einstellungen gespeichert.'; -$a->strings['IRC Chatroom'] = 'IRC Chatraum'; +$a->strings['List of popular channels, will be displayed at the side and hotlinked for easy joining.'] = 'Liste populärer Chaträume, die zum schnellen Betreten am Seitenrand aufgelistet und verlinkt werden.'; +$a->strings['IRC Settings'] = 'IRC-Einstellungen'; +$a->strings['IRC Chatroom'] = 'IRC-Chatraum'; $a->strings['Popular Channels'] = 'Beliebte Räume'; +$a->strings['Save Settings'] = 'Einstellungen speichern'; diff --git a/krynn/lang/de/messages.po b/krynn/lang/de/messages.po index 4ea8b50a..5dfa7269 100644 --- a/krynn/lang/de/messages.po +++ b/krynn/lang/de/messages.po @@ -13,9 +13,9 @@ 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: 2021-03-29 05:34+0000\n" -"Last-Translator: Tobias Diekershoff \n" +"POT-Creation-Date: 2021-11-21 19:14-0500\n" +"PO-Revision-Date: 2021-12-22 16:22+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,18 +23,10 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: krynn.php:132 krynn.php:136 -msgid "Krynn" -msgstr "Krynn" - -#: krynn.php:141 -msgid "Krynn Settings" -msgstr "Krynn-Einstellungen" - -#: krynn.php:143 +#: krynn.php:127 msgid "Enable Krynn Addon" msgstr "Krynn-Addon aktivieren" -#: krynn.php:148 -msgid "Save Settings" -msgstr "Einstellungen speichern" +#: krynn.php:132 +msgid "Krynn Settings" +msgstr "Krynn-Einstellungen" diff --git a/krynn/lang/de/strings.php b/krynn/lang/de/strings.php index 8b380159..5fac0aab 100644 --- a/krynn/lang/de/strings.php +++ b/krynn/lang/de/strings.php @@ -5,7 +5,5 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Krynn'] = 'Krynn'; -$a->strings['Krynn Settings'] = 'Krynn-Einstellungen'; $a->strings['Enable Krynn Addon'] = 'Krynn-Addon aktivieren'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; +$a->strings['Krynn Settings'] = 'Krynn-Einstellungen'; diff --git a/langfilter/lang/de/messages.po b/langfilter/lang/de/messages.po new file mode 100644 index 00000000..baac99d2 --- /dev/null +++ b/langfilter/lang/de/messages.po @@ -0,0 +1,81 @@ +# ADDON langfilter +# Copyright (C) +# This file is distributed under the same license as the Friendica langfilter addon package. +# +# +# Translators: +# Andreas H., 2018 +# Copiis Praeesse , 2018 +# Ralf Thees , 2019 +# Tobias Diekershoff , 2015 +# Tobias Diekershoff , 2020-2021 +# Ulf Rompe , 2019 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-11-21 19:15-0500\n" +"PO-Revision-Date: 2021-10-19 18:08+0000\n" +"Last-Translator: Tobias Diekershoff \n" +"Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: langfilter.php:49 +msgid "" +"This addon tries to identify the language posts are written in. If it does " +"not match any language specified below, posts will be hidden by collapsing " +"them." +msgstr "Dieses Addon versucht zu identifizieren, in welcher Sprache Posts geschrieben werden. Wenn sie nicht mit einer der unten angegebenen Sprachen übereinstimmt, werden Posts durch Zusammenklappen verborgen." + +#: langfilter.php:50 +msgid "Use the language filter" +msgstr "Den Sprachfilter verwenden" + +#: langfilter.php:51 +msgid "Able to read" +msgstr "Lesbar" + +#: langfilter.php:51 +msgid "" +"List of abbreviations (ISO 639-1 codes) for languages you speak, comma " +"separated. For example \"de,it\"." +msgstr "Mit Komma getrennte Liste von Abkürzungen (ISO 639-1) der von dir gesprochenen Sprachen. Zum Beispiel \"de,it\"." + +#: langfilter.php:52 +msgid "Minimum confidence in language detection" +msgstr "Minimales Vertrauenslevel in die Spracherkennung" + +#: langfilter.php:52 +msgid "" +"Minimum confidence in language detection being correct, from 0 to 100. Posts" +" will not be filtered when the confidence of language detection is below " +"this percent value." +msgstr "Minimales Vertrauen in die Richtigkeit der erkannten Sprache. Wert zwischen 0 und 100. Beiträge mit einem niedrigeren Vertrauenslevel werden nicht gefiltert." + +#: langfilter.php:53 +msgid "Minimum length of message body" +msgstr "Mindestlänge des Nachrichtentexts" + +#: langfilter.php:53 +msgid "" +"Minimum number of characters in message body for filter to be used. Posts " +"shorter than this will not be filtered. Note: Language detection is " +"unreliable for short content (<200 characters)." +msgstr "Mindestanzahl von Zeichen im Nachrichtentext, die vom Filter benutzt werden soll. Kürzere Beiträge werden nicht gefiltert. Hinweis: Die Spracherkennung ist bei kurzen Inhalten (<200 Zeichen) nicht zuverlässig." + +#: langfilter.php:58 +msgid "Language Filter" +msgstr "Sprachfilter" + +#: langfilter.php:60 +msgid "Save Settings" +msgstr "Einstellungen speichern" + +#: langfilter.php:193 +#, php-format +msgid "Filtered language: %s" +msgstr "Gefilterte Sprache: %s" diff --git a/langfilter/lang/de/strings.php b/langfilter/lang/de/strings.php index dcc2d990..ff5deee1 100644 --- a/langfilter/lang/de/strings.php +++ b/langfilter/lang/de/strings.php @@ -5,7 +5,6 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Language Filter'] = 'Sprachfilter'; $a->strings['This addon tries to identify the language posts are written in. If it does not match any language specified below, posts will be hidden by collapsing them.'] = 'Dieses Addon versucht zu identifizieren, in welcher Sprache Posts geschrieben werden. Wenn sie nicht mit einer der unten angegebenen Sprachen übereinstimmt, werden Posts durch Zusammenklappen verborgen.'; $a->strings['Use the language filter'] = 'Den Sprachfilter verwenden'; $a->strings['Able to read'] = 'Lesbar'; @@ -14,5 +13,6 @@ $a->strings['Minimum confidence in language detection'] = 'Minimales Vertrauensl $a->strings['Minimum confidence in language detection being correct, from 0 to 100. Posts will not be filtered when the confidence of language detection is below this percent value.'] = 'Minimales Vertrauen in die Richtigkeit der erkannten Sprache. Wert zwischen 0 und 100. Beiträge mit einem niedrigeren Vertrauenslevel werden nicht gefiltert.'; $a->strings['Minimum length of message body'] = 'Mindestlänge des Nachrichtentexts'; $a->strings['Minimum number of characters in message body for filter to be used. Posts shorter than this will not be filtered. Note: Language detection is unreliable for short content (<200 characters).'] = 'Mindestanzahl von Zeichen im Nachrichtentext, die vom Filter benutzt werden soll. Kürzere Beiträge werden nicht gefiltert. Hinweis: Die Spracherkennung ist bei kurzen Inhalten (<200 Zeichen) nicht zuverlässig.'; +$a->strings['Language Filter'] = 'Sprachfilter'; $a->strings['Save Settings'] = 'Einstellungen speichern'; $a->strings['Filtered language: %s'] = 'Gefilterte Sprache: %s'; diff --git a/libertree/lang/de/messages.po b/libertree/lang/de/messages.po index 511aefef..ae86cb53 100644 --- a/libertree/lang/de/messages.po +++ b/libertree/lang/de/messages.po @@ -6,14 +6,14 @@ # Translators: # Andreas H., 2014 # Tobias Diekershoff , 2014 -# Tobias Diekershoff , 2018,2021 +# Tobias Diekershoff , 2018,2021-2022 # Ulf Rompe , 2019 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: 2021-02-06 17:01+0000\n" +"POT-Creation-Date: 2021-11-21 19:17-0500\n" +"PO-Revision-Date: 2022-01-22 17:34+0000\n" "Last-Translator: Tobias Diekershoff \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -22,30 +22,26 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: libertree.php:37 +#: libertree.php:39 msgid "Post to libertree" msgstr "bei libertree veröffentlichen" -#: libertree.php:71 libertree.php:75 -msgid "libertree Export" -msgstr "libertree Export" - -#: libertree.php:79 +#: libertree.php:60 msgid "Enable Libertree Post Addon" msgstr "Libertree-Post-Addon aktivieren" -#: libertree.php:84 -msgid "Libertree API token" -msgstr "Libertree-API-Token" - -#: libertree.php:89 +#: libertree.php:61 msgid "Libertree site URL" msgstr "Libertree-URL" -#: libertree.php:94 +#: libertree.php:62 +msgid "Libertree API token" +msgstr "Libertree-API-Token" + +#: libertree.php:63 msgid "Post to Libertree by default" msgstr "Standardmäßig bei libertree veröffentlichen" -#: libertree.php:100 -msgid "Save Settings" -msgstr "Einstellungen speichern" +#: libertree.php:68 +msgid "Libertree Export" +msgstr "Libertree Export" diff --git a/libertree/lang/de/strings.php b/libertree/lang/de/strings.php index 87a7fc55..f3a8a512 100644 --- a/libertree/lang/de/strings.php +++ b/libertree/lang/de/strings.php @@ -6,9 +6,8 @@ function string_plural_select_de($n){ return intval($n != 1); }} $a->strings['Post to libertree'] = 'bei libertree veröffentlichen'; -$a->strings['libertree Export'] = 'libertree Export'; $a->strings['Enable Libertree Post Addon'] = 'Libertree-Post-Addon aktivieren'; -$a->strings['Libertree API token'] = 'Libertree-API-Token'; $a->strings['Libertree site URL'] = 'Libertree-URL'; +$a->strings['Libertree API token'] = 'Libertree-API-Token'; $a->strings['Post to Libertree by default'] = 'Standardmäßig bei libertree veröffentlichen'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; +$a->strings['Libertree Export'] = 'Libertree Export'; diff --git a/ljpost/lang/de/messages.po b/ljpost/lang/de/messages.po index 9279d7d2..13d7d6c7 100644 --- a/ljpost/lang/de/messages.po +++ b/ljpost/lang/de/messages.po @@ -12,9 +12,9 @@ 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: 2021-03-29 05:36+0000\n" -"Last-Translator: Tobias Diekershoff \n" +"POT-Creation-Date: 2021-11-21 19:17-0500\n" +"PO-Revision-Date: 2021-12-22 17:23+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,30 +22,26 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ljpost.php:39 +#: ljpost.php:43 msgid "Post to LiveJournal" msgstr "In LiveJournal veröffentlichen." -#: ljpost.php:73 -msgid "LiveJournal Post Settings" -msgstr "LiveJournal-Veröffentlichungs-Einstellungen" - -#: ljpost.php:75 +#: ljpost.php:63 msgid "Enable LiveJournal Post Addon" msgstr "LiveJournal-Post-Addon aktivieren" -#: ljpost.php:80 +#: ljpost.php:64 msgid "LiveJournal username" msgstr "LiveJournal-Benutzername" -#: ljpost.php:85 +#: ljpost.php:65 msgid "LiveJournal password" msgstr "LiveJournal-Passwort" -#: ljpost.php:90 +#: ljpost.php:66 msgid "Post to LiveJournal by default" msgstr "Standardmäßig bei LiveJournal veröffentlichen" -#: ljpost.php:96 -msgid "Save Settings" -msgstr "Einstellungen speichern" +#: ljpost.php:71 +msgid "LiveJournal Export" +msgstr "" diff --git a/ljpost/lang/de/strings.php b/ljpost/lang/de/strings.php index fc60639e..99641213 100644 --- a/ljpost/lang/de/strings.php +++ b/ljpost/lang/de/strings.php @@ -6,9 +6,7 @@ function string_plural_select_de($n){ return intval($n != 1); }} $a->strings['Post to LiveJournal'] = 'In LiveJournal veröffentlichen.'; -$a->strings['LiveJournal Post Settings'] = 'LiveJournal-Veröffentlichungs-Einstellungen'; $a->strings['Enable LiveJournal Post Addon'] = 'LiveJournal-Post-Addon aktivieren'; $a->strings['LiveJournal username'] = 'LiveJournal-Benutzername'; $a->strings['LiveJournal password'] = 'LiveJournal-Passwort'; $a->strings['Post to LiveJournal by default'] = 'Standardmäßig bei LiveJournal veröffentlichen'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; diff --git a/mathjax/lang/de/messages.po b/mathjax/lang/de/messages.po index ea3bb7d3..cbc9d2ca 100644 --- a/mathjax/lang/de/messages.po +++ b/mathjax/lang/de/messages.po @@ -12,9 +12,9 @@ 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: 2021-03-29 05:37+0000\n" -"Last-Translator: Tobias Diekershoff \n" +"POT-Creation-Date: 2021-11-21 19:15-0500\n" +"PO-Revision-Date: 2021-12-22 16:24+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,17 +22,13 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mathjax.php:43 +#: mathjax.php:42 msgid "" "The MathJax addon renders mathematical formulae written using the LaTeX " "syntax surrounded by the usual $$ or an eqnarray block in the postings of " "your wall,network tab and private mail." msgstr "Mit dem MathJax Addon können mathematische Formeln, die mit LaTeX geschrieben wurden, dargestellt werden. Die Formel wird mit den üblichen $$ oder einem eqnarray-Block gekennzeichnet. Formeln werden in allen Beiträgen auf deiner Pinnwand, dem Netzwerk-Stream sowie privaten Nachrichten dargestellt." -#: mathjax.php:44 +#: mathjax.php:43 msgid "Use the MathJax renderer" msgstr "MathJax verwenden" - -#: mathjax.php:45 -msgid "Save Settings" -msgstr "Einstellungen speichern" diff --git a/mathjax/lang/de/strings.php b/mathjax/lang/de/strings.php index c3894af9..ecb861ac 100644 --- a/mathjax/lang/de/strings.php +++ b/mathjax/lang/de/strings.php @@ -7,4 +7,3 @@ function string_plural_select_de($n){ }} $a->strings['The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail.'] = 'Mit dem MathJax Addon können mathematische Formeln, die mit LaTeX geschrieben wurden, dargestellt werden. Die Formel wird mit den üblichen $$ oder einem eqnarray-Block gekennzeichnet. Formeln werden in allen Beiträgen auf deiner Pinnwand, dem Netzwerk-Stream sowie privaten Nachrichten dargestellt.'; $a->strings['Use the MathJax renderer'] = 'MathJax verwenden'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; diff --git a/morepokes/lang/de/messages.po b/morepokes/lang/de/messages.po index 10f13537..f1592cc4 100644 --- a/morepokes/lang/de/messages.po +++ b/morepokes/lang/de/messages.po @@ -4,15 +4,16 @@ # # # Translators: -# bavatar , 2014 +# Tobias Diekershoff , 2014 +# Ulf Rompe , 2019 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-27 05:01-0500\n" -"PO-Revision-Date: 2014-10-14 07:57+0000\n" -"Last-Translator: bavatar \n" -"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" +"POT-Creation-Date: 2021-02-01 18:15+0100\n" +"PO-Revision-Date: 2019-02-11 13:03+0000\n" +"Last-Translator: Ulf Rompe \n" +"Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,11 +38,11 @@ msgstr "poppte" #: morepokes.php:21 msgid "do something obscenely biological to" -msgstr "mit ihm/ihr etwas obszönes Körperliches machen" +msgstr "mit ihm/ihr etwas obszönes, Körperliches machen" #: morepokes.php:21 msgid "did something obscenely biological to" -msgstr "machte etwas obszönes Körperliches mit" +msgstr "machte etwas obszönes, Körperliches mit" #: morepokes.php:22 msgid "point out the poke feature to" @@ -53,7 +54,7 @@ msgstr "zeigte die neue Anstups-Funktion" #: morepokes.php:23 msgid "declare undying love for" -msgstr "unterbliche Liebe verkünden" +msgstr "unsterbliche Liebe verkünden" #: morepokes.php:23 msgid "declared undying love for" diff --git a/morepokes/lang/de/strings.php b/morepokes/lang/de/strings.php index 0d8856d9..daf74cfe 100644 --- a/morepokes/lang/de/strings.php +++ b/morepokes/lang/de/strings.php @@ -9,11 +9,11 @@ $a->strings['bitchslap'] = 'ohrfeigen'; $a->strings['bitchslapped'] = 'ohrfeigte'; $a->strings['shag'] = 'poppen'; $a->strings['shagged'] = 'poppte'; -$a->strings['do something obscenely biological to'] = 'mit ihm/ihr etwas obszönes Körperliches machen'; -$a->strings['did something obscenely biological to'] = 'machte etwas obszönes Körperliches mit'; +$a->strings['do something obscenely biological to'] = 'mit ihm/ihr etwas obszönes, Körperliches machen'; +$a->strings['did something obscenely biological to'] = 'machte etwas obszönes, Körperliches mit'; $a->strings['point out the poke feature to'] = 'zeigte die neue Anstups-Funktion'; $a->strings['pointed out the poke feature to'] = 'zeigte die neue Anstups-Funktion'; -$a->strings['declare undying love for'] = 'unterbliche Liebe verkünden'; +$a->strings['declare undying love for'] = 'unsterbliche Liebe verkünden'; $a->strings['declared undying love for'] = 'verkündete unsterbliche Liebe für'; $a->strings['patent'] = 'patentieren'; $a->strings['patented'] = 'patentierte'; diff --git a/notifyall/lang/de/messages.po b/notifyall/lang/de/messages.po index af0034a9..c8b4deac 100644 --- a/notifyall/lang/de/messages.po +++ b/notifyall/lang/de/messages.po @@ -3,14 +3,18 @@ # This file is distributed under the same license as the Friendica notifyall addon package. # # +# Translators: +# Tobias Diekershoff , 2016 +# Ulf Rompe , 2019 +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-14 16:41+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Tobias Diekershoff , 2016\n" +"POT-Creation-Date: 2021-02-01 18:15+0100\n" +"PO-Revision-Date: 2016-08-14 19:29+0000\n" +"Last-Translator: Ulf Rompe , 2019\n" "Language-Team: German (https://www.transifex.com/Friendica/teams/12172/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +22,40 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: notifyall.php:26 -msgid "Send email to all members" -msgstr "Sende eine E-Mail an alle Nutzer der Seite" - -#: notifyall.php:42 +#: NotifyAllEmail.php:40 #, php-format msgid "%s Administrator" msgstr "der Administrator von %s" -#: notifyall.php:44 +#: NotifyAllEmail.php:42 #, php-format msgid "%1$s, %2$s Administrator" msgstr "%1$s, %2$s Administrator" -#: notifyall.php:60 +#: notifyall.php:22 +msgid "Send email to all members" +msgstr "Sende eine E-Mail an alle Nutzer der Seite" + +#: notifyall.php:49 msgid "No recipients found." msgstr "Keine Empfänger gefunden" -#: notifyall.php:78 +#: notifyall.php:59 msgid "Emails sent" msgstr "E-Mails gesendet." -#: notifyall.php:86 +#: notifyall.php:69 msgid "Send email to all members of this Friendica instance." -msgstr "Sende eine E-Mail an alle Nutzer dieser Friendica Instanz" +msgstr "Sende eine E-Mail an alle Nutzer dieser Friendica-Instanz" -#: notifyall.php:91 +#: notifyall.php:74 msgid "Message subject" msgstr "Betreff der Nachricht" -#: notifyall.php:92 +#: notifyall.php:75 msgid "Test mode (only send to administrator)" -msgstr "Test Modus (E-Mail nur an den Administrator senden)" +msgstr "Test-Modus (E-Mail nur an den Administrator senden)" -#: notifyall.php:93 +#: notifyall.php:76 msgid "Submit" msgstr "Senden" diff --git a/notifyall/lang/de/strings.php b/notifyall/lang/de/strings.php index 7d037a3e..418fca5a 100644 --- a/notifyall/lang/de/strings.php +++ b/notifyall/lang/de/strings.php @@ -5,12 +5,12 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Send email to all members'] = 'Sende eine E-Mail an alle Nutzer der Seite'; $a->strings['%s Administrator'] = 'der Administrator von %s'; $a->strings['%1$s, %2$s Administrator'] = '%1$s, %2$s Administrator'; +$a->strings['Send email to all members'] = 'Sende eine E-Mail an alle Nutzer der Seite'; $a->strings['No recipients found.'] = 'Keine Empfänger gefunden'; $a->strings['Emails sent'] = 'E-Mails gesendet.'; -$a->strings['Send email to all members of this Friendica instance.'] = 'Sende eine E-Mail an alle Nutzer dieser Friendica Instanz'; +$a->strings['Send email to all members of this Friendica instance.'] = 'Sende eine E-Mail an alle Nutzer dieser Friendica-Instanz'; $a->strings['Message subject'] = 'Betreff der Nachricht'; -$a->strings['Test mode (only send to administrator)'] = 'Test Modus (E-Mail nur an den Administrator senden)'; +$a->strings['Test mode (only send to administrator)'] = 'Test-Modus (E-Mail nur an den Administrator senden)'; $a->strings['Submit'] = 'Senden'; diff --git a/nsfw/lang/de/messages.po b/nsfw/lang/de/messages.po index c297759f..5b8ce940 100644 --- a/nsfw/lang/de/messages.po +++ b/nsfw/lang/de/messages.po @@ -8,13 +8,14 @@ # hoergen , 2018 # Tobias Diekershoff , 2014 # Tobias Diekershoff , 2018 +# Ulf Rompe , 2019 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-04-01 11:11-0400\n" -"PO-Revision-Date: 2018-06-09 09:27+0000\n" -"Last-Translator: hoergen \n" +"POT-Creation-Date: 2021-11-21 19:15-0500\n" +"PO-Revision-Date: 2021-12-22 17:22+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,44 +23,36 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: nsfw.php:77 nsfw.php:81 -msgid "Content Filter (NSFW and more)" -msgstr "Inhaltsfilter (NSFW und mehr)" - -#: nsfw.php:85 +#: nsfw.php:65 msgid "" "This addon searches for specified words/text in posts and collapses them. It" " can be used to filter content tagged with for instance #NSFW that may be " "deemed inappropriate at certain times or places, such as being at work. It " "is also useful for hiding irrelevant or annoying content from direct view." -msgstr "Dieses Addon sucht, nach den von dir definierten Wörtern bzw. Texten in Beiträgen und klappt bei einem Treffer den gesamten Beitrag zusammen. Damit können z.B. Inhalte gefiltert werden, die mit #NSFW (Not Safe for Work, für die Arbeit unangemessene Beiträge), gekennzeichnet sind. Des Weiteren können damit natürlich auch nicht gewünschte und lästige Beiträge verborgen werden." +msgstr "Dieses Addon sucht nach den von dir definierten Wörtern bzw. Texten in Beiträgen und klappt bei einem Treffer den gesamten Beitrag zusammen. Damit können bspw. Inhalte gefiltert werden, die mit #NSFW (Not Safe for Work, für die Arbeit unangemessene Beiträge) gekennzeichnet sind. Des Weiteren können damit natürlich auch irrelevante und lästige Beiträge verborgen werden." -#: nsfw.php:86 +#: nsfw.php:66 msgid "Enable Content filter" msgstr "Aktiviere den Inhaltsfilter" -#: nsfw.php:89 +#: nsfw.php:67 msgid "Comma separated list of keywords to hide" -msgstr "Durch Kommata getrennte Liste von Schlüsselwörtern die verborgen werden sollen" +msgstr "Durch Kommata getrennte Liste von Schlüsselwörtern, die verborgen werden sollen" -#: nsfw.php:93 -msgid "Save Settings" -msgstr "Einstellungen speichern" - -#: nsfw.php:94 +#: nsfw.php:67 msgid "Use /expression/ to provide regular expressions" -msgstr "Verwende /expression/ um Reguläre Ausdrücke zu verwenden" +msgstr "Verwende /expression/, um Reguläre Ausdrücke zu verwenden" -#: nsfw.php:109 -msgid "NSFW Settings saved." -msgstr "NSFW-Einstellungen gespeichert" +#: nsfw.php:72 +msgid "Content Filter (NSFW and more)" +msgstr "Inhaltsfilter (NSFW und mehr)" -#: nsfw.php:162 +#: nsfw.php:140 #, php-format msgid "Filtered tag: %s" msgstr "Gefiltertes Schlagwort: %s" -#: nsfw.php:164 +#: nsfw.php:142 #, php-format msgid "Filtered word: %s" msgstr "Gefilterter Begriff: %s" diff --git a/nsfw/lang/de/strings.php b/nsfw/lang/de/strings.php index c43a29ff..b182bf23 100644 --- a/nsfw/lang/de/strings.php +++ b/nsfw/lang/de/strings.php @@ -5,12 +5,10 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Content Filter (NSFW and more)'] = 'Inhaltsfilter (NSFW und mehr)'; -$a->strings['This addon searches for specified words/text in posts and collapses them. It can be used to filter content tagged with for instance #NSFW that may be deemed inappropriate at certain times or places, such as being at work. It is also useful for hiding irrelevant or annoying content from direct view.'] = 'Dieses Addon sucht, nach den von dir definierten Wörtern bzw. Texten in Beiträgen und klappt bei einem Treffer den gesamten Beitrag zusammen. Damit können z.B. Inhalte gefiltert werden, die mit #NSFW (Not Safe for Work, für die Arbeit unangemessene Beiträge), gekennzeichnet sind. Des Weiteren können damit natürlich auch nicht gewünschte und lästige Beiträge verborgen werden.'; +$a->strings['This addon searches for specified words/text in posts and collapses them. It can be used to filter content tagged with for instance #NSFW that may be deemed inappropriate at certain times or places, such as being at work. It is also useful for hiding irrelevant or annoying content from direct view.'] = 'Dieses Addon sucht nach den von dir definierten Wörtern bzw. Texten in Beiträgen und klappt bei einem Treffer den gesamten Beitrag zusammen. Damit können bspw. Inhalte gefiltert werden, die mit #NSFW (Not Safe for Work, für die Arbeit unangemessene Beiträge) gekennzeichnet sind. Des Weiteren können damit natürlich auch irrelevante und lästige Beiträge verborgen werden.'; $a->strings['Enable Content filter'] = 'Aktiviere den Inhaltsfilter'; -$a->strings['Comma separated list of keywords to hide'] = 'Durch Kommata getrennte Liste von Schlüsselwörtern die verborgen werden sollen'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; -$a->strings['Use /expression/ to provide regular expressions'] = 'Verwende /expression/ um Reguläre Ausdrücke zu verwenden'; -$a->strings['NSFW Settings saved.'] = 'NSFW-Einstellungen gespeichert'; +$a->strings['Comma separated list of keywords to hide'] = 'Durch Kommata getrennte Liste von Schlüsselwörtern, die verborgen werden sollen'; +$a->strings['Use /expression/ to provide regular expressions'] = 'Verwende /expression/, um Reguläre Ausdrücke zu verwenden'; +$a->strings['Content Filter (NSFW and more)'] = 'Inhaltsfilter (NSFW und mehr)'; $a->strings['Filtered tag: %s'] = 'Gefiltertes Schlagwort: %s'; $a->strings['Filtered word: %s'] = 'Gefilterter Begriff: %s'; diff --git a/numfriends/lang/de/messages.po b/numfriends/lang/de/messages.po index 1fe8e79f..b71a9b13 100644 --- a/numfriends/lang/de/messages.po +++ b/numfriends/lang/de/messages.po @@ -4,34 +4,28 @@ # # # Translators: -# Abrax , 2014 -# bavatar , 2014 +# Andreas H., 2014 +# Steffen K9, 2021 +# Tobias Diekershoff , 2014 +# Ulf Rompe , 2019 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-27 05:01-0500\n" -"PO-Revision-Date: 2014-10-15 12:32+0000\n" -"Last-Translator: Abrax \n" -"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" +"POT-Creation-Date: 2021-11-21 19:15-0500\n" +"PO-Revision-Date: 2021-12-22 15:27+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: numfriends.php:46 -msgid "Numfriends settings updated." -msgstr "Numfriends Einstellungen aktualisiert" - -#: numfriends.php:77 -msgid "Numfriends Settings" -msgstr "Numfriends Einstellungen" - -#: numfriends.php:79 +#: numfriends.php:55 msgid "How many contacts to display on profile sidebar" msgstr "Wie viele Kontakte sollen in der Seitenleiste angezeigt werden" -#: numfriends.php:85 -msgid "Submit" -msgstr "Senden" +#: numfriends.php:60 +msgid "Numfriends Settings" +msgstr "Numfriends-Einstellungen" diff --git a/numfriends/lang/de/strings.php b/numfriends/lang/de/strings.php index 2ff7f271..ed029b74 100644 --- a/numfriends/lang/de/strings.php +++ b/numfriends/lang/de/strings.php @@ -5,7 +5,5 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Numfriends settings updated.'] = 'Numfriends Einstellungen aktualisiert'; -$a->strings['Numfriends Settings'] = 'Numfriends Einstellungen'; $a->strings['How many contacts to display on profile sidebar'] = 'Wie viele Kontakte sollen in der Seitenleiste angezeigt werden'; -$a->strings['Submit'] = 'Senden'; +$a->strings['Numfriends Settings'] = 'Numfriends-Einstellungen'; diff --git a/pageheader/lang/de/messages.po b/pageheader/lang/de/messages.po index c8848b72..73ce2bbd 100644 --- a/pageheader/lang/de/messages.po +++ b/pageheader/lang/de/messages.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-03-11 18:52+0100\n" -"PO-Revision-Date: 2018-03-16 07:42+0000\n" -"Last-Translator: Tobias Diekershoff \n" +"POT-Creation-Date: 2021-02-01 18:15+0100\n" +"PO-Revision-Date: 2021-02-01 20:21+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,24 +21,20 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: pageheader.php:53 +#: pageheader.php:36 msgid "\"pageheader\" Settings" msgstr "\"pageheader\"-Einstellungen" -#: pageheader.php:54 +#: pageheader.php:37 msgid "Message" msgstr "Mitteilung" -#: pageheader.php:54 +#: pageheader.php:37 msgid "" "Message to display on every page on this server (or put a pageheader.html " "file in your docroot)" msgstr "Die Mitteilung, die auf jeder Seite dieses Knotens angezeigt werden soll (alternativ kann die Datei pageheader.html im Stammverzeichnis der Friendica Installation angelegt werden)." -#: pageheader.php:55 +#: pageheader.php:38 msgid "Save Settings" msgstr "Einstellungen speichern" - -#: pageheader.php:69 -msgid "pageheader Settings saved." -msgstr "pageheader-Einstellungen gespeichert." diff --git a/pageheader/lang/de/strings.php b/pageheader/lang/de/strings.php index 2c62b5db..fa8ea07b 100644 --- a/pageheader/lang/de/strings.php +++ b/pageheader/lang/de/strings.php @@ -9,4 +9,3 @@ $a->strings['"pageheader" Settings'] = '"pageheader"-Einstellungen'; $a->strings['Message'] = 'Mitteilung'; $a->strings['Message to display on every page on this server (or put a pageheader.html file in your docroot)'] = 'Die Mitteilung, die auf jeder Seite dieses Knotens angezeigt werden soll (alternativ kann die Datei pageheader.html im Stammverzeichnis der Friendica Installation angelegt werden).'; $a->strings['Save Settings'] = 'Einstellungen speichern'; -$a->strings['pageheader Settings saved.'] = 'pageheader-Einstellungen gespeichert.'; diff --git a/planets/lang/de/messages.po b/planets/lang/de/messages.po index df003ad4..507bbbf5 100644 --- a/planets/lang/de/messages.po +++ b/planets/lang/de/messages.po @@ -13,9 +13,9 @@ 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: 2021-04-03 06:50+0000\n" -"Last-Translator: Steffen K9\n" +"POT-Creation-Date: 2021-11-21 19:15-0500\n" +"PO-Revision-Date: 2021-12-22 16:22+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,18 +23,10 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: planets.php:131 planets.php:135 -msgid "Planets" -msgstr "Planeten" - -#: planets.php:139 -msgid "Planets Settings" -msgstr "Planeten-Einstellungen" - -#: planets.php:141 +#: planets.php:126 msgid "Enable Planets Addon" msgstr "Planeten-Addon aktivieren" -#: planets.php:147 -msgid "Save Settings" -msgstr "Einstellungen speichern" +#: planets.php:131 +msgid "Planets Settings" +msgstr "Planeten-Einstellungen" diff --git a/planets/lang/de/strings.php b/planets/lang/de/strings.php index 30831646..72d99dc8 100644 --- a/planets/lang/de/strings.php +++ b/planets/lang/de/strings.php @@ -5,7 +5,5 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Planets'] = 'Planeten'; -$a->strings['Planets Settings'] = 'Planeten-Einstellungen'; $a->strings['Enable Planets Addon'] = 'Planeten-Addon aktivieren'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; +$a->strings['Planets Settings'] = 'Planeten-Einstellungen'; diff --git a/pumpio/lang/de/messages.po b/pumpio/lang/de/messages.po index acfb87fa..5b33d2e3 100644 --- a/pumpio/lang/de/messages.po +++ b/pumpio/lang/de/messages.po @@ -4,99 +4,93 @@ # # # Translators: -# Abrax , 2014 +# Andreas H., 2014 +# Tobias Diekershoff , 2018,2022 +# Ulf Rompe , 2019 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-22 13:18+0200\n" -"PO-Revision-Date: 2014-10-14 09:37+0000\n" -"Last-Translator: Abrax \n" -"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" +"POT-Creation-Date: 2021-11-21 19:17-0500\n" +"PO-Revision-Date: 2022-01-22 17:36+0000\n" +"Last-Translator: Tobias Diekershoff \n" +"Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: pumpio.php:38 +#: pumpio.php:57 msgid "Permission denied." msgstr "Zugriff verweigert." -#: pumpio.php:124 +#: pumpio.php:152 #, php-format msgid "Unable to register the client at the pump.io server '%s'." msgstr "Die Registrierung des Nutzers auf dem Pump.io-Server '%s' ist nicht möglich." -#: pumpio.php:164 +#: pumpio.php:192 msgid "You are now authenticated to pumpio." msgstr "Du bist nun auf pumpio authentifiziert." -#: pumpio.php:165 +#: pumpio.php:193 msgid "return to the connector page" -msgstr "zurück zur Connector Seite" +msgstr "zurück zur Connector-Seite" -#: pumpio.php:183 +#: pumpio.php:213 msgid "Post to pumpio" msgstr "Auf pumpio veröffentlichen" -#: pumpio.php:221 pumpio.php:225 -msgid "Pump.io Import/Export/Mirror" -msgstr " Pump.io Import/Export/Spiegeln" +#: pumpio.php:237 +msgid "Save Settings" +msgstr "Einstellungen speichern" -#: pumpio.php:229 -msgid "pump.io username (without the servername)" -msgstr " Pump.io Nutzername (ohne den Servernamen)" +#: pumpio.php:239 +msgid "Delete this preset" +msgstr "Diese Voreinstellung entfernen" -#: pumpio.php:234 -msgid "pump.io servername (without \"http://\" or \"https://\" )" +#: pumpio.php:245 +msgid "Authenticate your pump.io connection" +msgstr "Authentifiziere deine Pump.ioVerbindung" + +#: pumpio.php:252 +msgid "Pump.io servername (without \"http://\" or \"https://\" )" msgstr " Pump.io Servername (ohne \"http://\" oder \"https://\" )" -#: pumpio.php:246 -msgid "Authenticate your pump.io connection" -msgstr "Authentifiziere deine Pump.io Verbindung" +#: pumpio.php:253 +msgid "Pump.io username (without the servername)" +msgstr " Pump.io Nutzername (ohne den Servernamen)" -#: pumpio.php:250 +#: pumpio.php:254 msgid "Import the remote timeline" msgstr "Importiere die entfernte Zeitleiste" #: pumpio.php:255 -msgid "Enable pump.io Post Addon" -msgstr "Pump.io-Post-Addon aktivieren" +msgid "Enable Pump.io Post Addon" +msgstr "Pump.io Post Addon aktivieren" -#: pumpio.php:260 -msgid "Post to pump.io by default" +#: pumpio.php:256 +msgid "Post to Pump.io by default" msgstr "Standardmäßig bei Pump.io veröffentlichen" -#: pumpio.php:265 +#: pumpio.php:257 msgid "Should posts be public?" -msgstr "Sollen Nachrichten öffentlich sein ?" +msgstr "Sollen Nachrichten öffentlich sein?" -#: pumpio.php:270 +#: pumpio.php:258 msgid "Mirror all public posts" msgstr "Spiegle alle öffentlichen Nachrichten" -#: pumpio.php:275 -msgid "Check to delete this preset" -msgstr "Markieren um dieses Preset zu löschen" +#: pumpio.php:263 +msgid "Pump.io Import/Export/Mirror" +msgstr " Pump.io-Import/Export/Spiegeln" -#: pumpio.php:285 -msgid "Save Settings" -msgstr "Einstellungen speichern" - -#: pumpio.php:515 -msgid "Pump.io post failed. Queued for retry." -msgstr "Veröffentlichung bei Pump.io gescheitert. Wir versuchen es später erneut." - -#: pumpio.php:587 -msgid "Pump.io like failed. Queued for retry." -msgstr "Veröffentlichung bei Pump.io gescheitert. Wir versuchen es später erneut." - -#: pumpio.php:875 +#: pumpio.php:920 msgid "status" msgstr "Status" -#: pumpio.php:879 +#: pumpio.php:924 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s mag %2$s's %3$s" diff --git a/pumpio/lang/de/strings.php b/pumpio/lang/de/strings.php index 69f7d659..8248185f 100644 --- a/pumpio/lang/de/strings.php +++ b/pumpio/lang/de/strings.php @@ -8,20 +8,18 @@ function string_plural_select_de($n){ $a->strings['Permission denied.'] = 'Zugriff verweigert.'; $a->strings['Unable to register the client at the pump.io server \'%s\'.'] = 'Die Registrierung des Nutzers auf dem Pump.io-Server \'%s\' ist nicht möglich.'; $a->strings['You are now authenticated to pumpio.'] = 'Du bist nun auf pumpio authentifiziert.'; -$a->strings['return to the connector page'] = 'zurück zur Connector Seite'; +$a->strings['return to the connector page'] = 'zurück zur Connector-Seite'; $a->strings['Post to pumpio'] = 'Auf pumpio veröffentlichen'; -$a->strings['Pump.io Import/Export/Mirror'] = ' Pump.io Import/Export/Spiegeln'; -$a->strings['pump.io username (without the servername)'] = ' Pump.io Nutzername (ohne den Servernamen)'; -$a->strings['pump.io servername (without "http://" or "https://" )'] = ' Pump.io Servername (ohne "http://" oder "https://" )'; -$a->strings['Authenticate your pump.io connection'] = 'Authentifiziere deine Pump.io Verbindung'; -$a->strings['Import the remote timeline'] = 'Importiere die entfernte Zeitleiste'; -$a->strings['Enable pump.io Post Addon'] = 'Pump.io-Post-Addon aktivieren'; -$a->strings['Post to pump.io by default'] = 'Standardmäßig bei Pump.io veröffentlichen'; -$a->strings['Should posts be public?'] = 'Sollen Nachrichten öffentlich sein ?'; -$a->strings['Mirror all public posts'] = 'Spiegle alle öffentlichen Nachrichten'; -$a->strings['Check to delete this preset'] = 'Markieren um dieses Preset zu löschen'; $a->strings['Save Settings'] = 'Einstellungen speichern'; -$a->strings['Pump.io post failed. Queued for retry.'] = 'Veröffentlichung bei Pump.io gescheitert. Wir versuchen es später erneut.'; -$a->strings['Pump.io like failed. Queued for retry.'] = 'Veröffentlichung bei Pump.io gescheitert. Wir versuchen es später erneut.'; +$a->strings['Delete this preset'] = 'Diese Voreinstellung entfernen'; +$a->strings['Authenticate your pump.io connection'] = 'Authentifiziere deine Pump.ioVerbindung'; +$a->strings['Pump.io servername (without "http://" or "https://" )'] = ' Pump.io Servername (ohne "http://" oder "https://" )'; +$a->strings['Pump.io username (without the servername)'] = ' Pump.io Nutzername (ohne den Servernamen)'; +$a->strings['Import the remote timeline'] = 'Importiere die entfernte Zeitleiste'; +$a->strings['Enable Pump.io Post Addon'] = 'Pump.io Post Addon aktivieren'; +$a->strings['Post to Pump.io by default'] = 'Standardmäßig bei Pump.io veröffentlichen'; +$a->strings['Should posts be public?'] = 'Sollen Nachrichten öffentlich sein?'; +$a->strings['Mirror all public posts'] = 'Spiegle alle öffentlichen Nachrichten'; +$a->strings['Pump.io Import/Export/Mirror'] = ' Pump.io-Import/Export/Spiegeln'; $a->strings['status'] = 'Status'; $a->strings['%1$s likes %2$s\'s %3$s'] = '%1$s mag %2$s\'s %3$s'; diff --git a/qcomment/lang/de/messages.po b/qcomment/lang/de/messages.po index 772edfb0..323ef82d 100644 --- a/qcomment/lang/de/messages.po +++ b/qcomment/lang/de/messages.po @@ -4,51 +4,45 @@ # # # Translators: -# bavatar , 2014-2015 +# Steffen K9, 2021 +# Tobias Diekershoff , 2014-2015 +# Ulf Rompe , 2019 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-27 05:01-0500\n" -"PO-Revision-Date: 2015-07-28 05:48+0000\n" -"Last-Translator: bavatar \n" -"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2021-12-22 16:24+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: qcomment.php:51 +#: qcomment.php:45 msgid ":-)" msgstr ":-)" -#: qcomment.php:51 +#: qcomment.php:45 msgid ":-(" msgstr ":-(" -#: qcomment.php:51 +#: qcomment.php:45 msgid "lol" msgstr "lol" -#: qcomment.php:54 -msgid "Quick Comment Settings" -msgstr "Schnell-Kommentar Einstellungen" - -#: qcomment.php:56 +#: qcomment.php:49 msgid "" "Quick comments are found near comment boxes, sometimes hidden. Click them to" " provide simple replies." msgstr "Kurz-Kommentare findet man in der Nähe der Kommentar-Boxen. Ein Klick darauf erstellt einfache Antworten." -#: qcomment.php:57 +#: qcomment.php:50 msgid "Enter quick comments, one per line" msgstr "Gib einen Schnell-Kommentar pro Zeile ein" -#: qcomment.php:61 -msgid "Submit" -msgstr "Senden" - -#: qcomment.php:75 -msgid "Quick Comment settings saved." -msgstr "Schnell-Kommentare Einstellungen gespeichert" +#: qcomment.php:55 +msgid "Quick Comment Settings" +msgstr "Schnell-Kommentar-Einstellungen" diff --git a/qcomment/lang/de/strings.php b/qcomment/lang/de/strings.php index c20a3293..15101302 100644 --- a/qcomment/lang/de/strings.php +++ b/qcomment/lang/de/strings.php @@ -8,8 +8,6 @@ function string_plural_select_de($n){ $a->strings[':-)'] = ':-)'; $a->strings[':-('] = ':-('; $a->strings['lol'] = 'lol'; -$a->strings['Quick Comment Settings'] = 'Schnell-Kommentar Einstellungen'; $a->strings['Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies.'] = 'Kurz-Kommentare findet man in der Nähe der Kommentar-Boxen. Ein Klick darauf erstellt einfache Antworten.'; $a->strings['Enter quick comments, one per line'] = 'Gib einen Schnell-Kommentar pro Zeile ein'; -$a->strings['Submit'] = 'Senden'; -$a->strings['Quick Comment settings saved.'] = 'Schnell-Kommentare Einstellungen gespeichert'; +$a->strings['Quick Comment Settings'] = 'Schnell-Kommentar-Einstellungen'; diff --git a/randplace/lang/de/messages.po b/randplace/lang/de/messages.po index c575242f..f2d1fb54 100644 --- a/randplace/lang/de/messages.po +++ b/randplace/lang/de/messages.po @@ -4,29 +4,27 @@ # # # Translators: -# bavatar , 2014 +# Steffen K9, 2021 +# Tobias Diekershoff , 2014-2015 +# Tobias Diekershoff , 2018 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-22 13:18+0200\n" -"PO-Revision-Date: 2014-07-08 19:23+0000\n" -"Last-Translator: bavatar \n" -"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2021-12-22 17:21+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: randplace.php:169 -msgid "Randplace Settings" -msgstr "Randplace-Einstellungen" - -#: randplace.php:171 +#: randplace.php:161 msgid "Enable Randplace Addon" msgstr "Randplace-Addon aktivieren" -#: randplace.php:177 -msgid "Save Settings" -msgstr "Einstellungen speichern" +#: randplace.php:166 +msgid "Randplace Settings" +msgstr "Randplace-Einstellungen" diff --git a/randplace/lang/de/strings.php b/randplace/lang/de/strings.php index 4f1eb006..a3da42d2 100644 --- a/randplace/lang/de/strings.php +++ b/randplace/lang/de/strings.php @@ -5,6 +5,5 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Randplace Settings'] = 'Randplace-Einstellungen'; $a->strings['Enable Randplace Addon'] = 'Randplace-Addon aktivieren'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; +$a->strings['Randplace Settings'] = 'Randplace-Einstellungen'; diff --git a/rendertime/lang/de/messages.po b/rendertime/lang/de/messages.po index b02c8d78..f615f1b3 100644 --- a/rendertime/lang/de/messages.po +++ b/rendertime/lang/de/messages.po @@ -5,13 +5,13 @@ # # Translators: # Tobias Diekershoff , 2014 -# Tobias Diekershoff , 2021 +# Tobias Diekershoff , 2021-2022 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: 2021-03-29 05:47+0000\n" +"POT-Creation-Date: 2021-12-12 22:09+0000\n" +"PO-Revision-Date: 2022-01-22 17:39+0000\n" "Last-Translator: Tobias Diekershoff \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -20,14 +20,36 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: rendertime.php:36 +#: rendertime.php:30 +msgid "Save Settings" +msgstr "Einstellungen speichern" + +#: rendertime.php:31 +msgid "Show callstack" +msgstr "Callstack anzeigen" + +#: rendertime.php:31 +msgid "" +"Show detailed performance measures in the callstack. When deactivated, only " +"the summary will be displayed." +msgstr "Detailierte Performance Messungen im Callstack anzeigen. Wenn dies aktiviert ist werden anstelle der Zusammenfassung mehr Details angezeigt." + +#: rendertime.php:32 +msgid "Minimal time" +msgstr "Minimale Zeit" + +#: rendertime.php:32 +msgid "Minimal time that an activity needs to be listed in the callstack." +msgstr "Minimale Zeit die eine Aktivität dauern soll, ehe sie im Callstack aufgelistet wird." + +#: rendertime.php:57 #, php-format msgid "" "Database: %s/%s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: " "%s, Total: %s" msgstr "Datenbank: %s/%s, Netzwerk: %s, Darstellung: %s, Sitzung: %s, I/O: %s, Sonstiges: %s, Gesamt: %s" -#: rendertime.php:53 +#: rendertime.php:74 #, php-format msgid "Class-Init: %s, Boot: %s, Init: %s, Content: %s, Other: %s, Total: %s" msgstr "Class-Init: %s, Boot: %s, Init: %s, Inhalt: %s, Sonstiges: %s, Gesamt: %s" diff --git a/rendertime/lang/de/strings.php b/rendertime/lang/de/strings.php index c92c98b6..d31a9f92 100644 --- a/rendertime/lang/de/strings.php +++ b/rendertime/lang/de/strings.php @@ -5,5 +5,10 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} +$a->strings['Save Settings'] = 'Einstellungen speichern'; +$a->strings['Show callstack'] = 'Callstack anzeigen'; +$a->strings['Show detailed performance measures in the callstack. When deactivated, only the summary will be displayed.'] = 'Detailierte Performance Messungen im Callstack anzeigen. Wenn dies aktiviert ist werden anstelle der Zusammenfassung mehr Details angezeigt.'; +$a->strings['Minimal time'] = 'Minimale Zeit'; +$a->strings['Minimal time that an activity needs to be listed in the callstack.'] = 'Minimale Zeit die eine Aktivität dauern soll, ehe sie im Callstack aufgelistet wird.'; $a->strings['Database: %s/%s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: %s, Total: %s'] = 'Datenbank: %s/%s, Netzwerk: %s, Darstellung: %s, Sitzung: %s, I/O: %s, Sonstiges: %s, Gesamt: %s'; $a->strings['Class-Init: %s, Boot: %s, Init: %s, Content: %s, Other: %s, Total: %s'] = 'Class-Init: %s, Boot: %s, Init: %s, Inhalt: %s, Sonstiges: %s, Gesamt: %s'; diff --git a/securemail/lang/de/messages.po b/securemail/lang/de/messages.po index 7d06d3d8..0d913f39 100644 --- a/securemail/lang/de/messages.po +++ b/securemail/lang/de/messages.po @@ -3,14 +3,18 @@ # This file is distributed under the same license as the Friendica securemail addon package. # # +# Translators: +# Richard Zsemberi , 2018 +# Ulf Rompe , 2019 +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-11 21:14+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Richard Zsemberi , 2018\n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2018-03-20 07:26+0000\n" +"Last-Translator: Ulf Rompe , 2019\n" "Language-Team: German (https://www.transifex.com/Friendica/teams/12172/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,38 +22,34 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: securemail.php:53 -msgid "\"Secure Mail\" Settings" -msgstr "\"Secure Mail\" Einstellungen" - -#: securemail.php:54 -msgid "Save Settings" -msgstr "Einstellungen speichern" - -#: securemail.php:55 securemail.php:76 -msgid "Save and send test" -msgstr "Abspeichern und Test Senden" - -#: securemail.php:56 +#: securemail.php:50 msgid "Enable Secure Mail" -msgstr "Secure Mail aktivieren" +msgstr "\"Secure Mail\" aktivieren" -#: securemail.php:57 +#: securemail.php:51 msgid "Public key" msgstr "Öffentlicher Schlüssel" -#: securemail.php:57 +#: securemail.php:51 msgid "Your public PGP key, ascii armored format" -msgstr "Dein öffentlicher PGP Schlüssel, im Ascii-Format" +msgstr "Dein öffentlicher PGP Schlüssel, im ASCII-Format" -#: securemail.php:74 -msgid "Secure Mail Settings saved." -msgstr "Secure Mail Einstellungen gespeichert." +#: securemail.php:56 +msgid "\"Secure Mail\" Settings" +msgstr "\"Secure Mail\"-Einstellungen" -#: securemail.php:111 +#: securemail.php:59 +msgid "Save Settings" +msgstr "Einstellungen speichern" + +#: securemail.php:60 +msgid "Save and send test" +msgstr "Test speichern und senden" + +#: securemail.php:93 msgid "Test email sent" -msgstr "Test-Email gesendet" +msgstr "Test-E-Mail gesendet" -#: securemail.php:113 +#: securemail.php:95 msgid "There was an error sending the test email" -msgstr "Es gab ein Fehler beim Senden der Test-Email" +msgstr "Es gab ein Fehler beim Senden der Test-E-Mail" diff --git a/securemail/lang/de/strings.php b/securemail/lang/de/strings.php index cefe5406..119a253c 100644 --- a/securemail/lang/de/strings.php +++ b/securemail/lang/de/strings.php @@ -5,12 +5,11 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['"Secure Mail" Settings'] = '"Secure Mail" Einstellungen'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; -$a->strings['Save and send test'] = 'Abspeichern und Test Senden'; -$a->strings['Enable Secure Mail'] = 'Secure Mail aktivieren'; +$a->strings['Enable Secure Mail'] = '"Secure Mail" aktivieren'; $a->strings['Public key'] = 'Öffentlicher Schlüssel'; -$a->strings['Your public PGP key, ascii armored format'] = 'Dein öffentlicher PGP Schlüssel, im Ascii-Format'; -$a->strings['Secure Mail Settings saved.'] = 'Secure Mail Einstellungen gespeichert.'; -$a->strings['Test email sent'] = 'Test-Email gesendet'; -$a->strings['There was an error sending the test email'] = 'Es gab ein Fehler beim Senden der Test-Email'; +$a->strings['Your public PGP key, ascii armored format'] = 'Dein öffentlicher PGP Schlüssel, im ASCII-Format'; +$a->strings['"Secure Mail" Settings'] = '"Secure Mail"-Einstellungen'; +$a->strings['Save Settings'] = 'Einstellungen speichern'; +$a->strings['Save and send test'] = 'Test speichern und senden'; +$a->strings['Test email sent'] = 'Test-E-Mail gesendet'; +$a->strings['There was an error sending the test email'] = 'Es gab ein Fehler beim Senden der Test-E-Mail'; diff --git a/showmore/lang/de/messages.po b/showmore/lang/de/messages.po index 9affc172..59a548d3 100644 --- a/showmore/lang/de/messages.po +++ b/showmore/lang/de/messages.po @@ -5,13 +5,14 @@ # # Translators: # Tobias Diekershoff , 2014-2015 -# Tobias Diekershoff , 2018 +# Tobias Diekershoff , 2018,2022 +# Ulf Rompe , 2019 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-04-01 11:11-0400\n" -"PO-Revision-Date: 2018-04-07 05:34+0000\n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2022-01-22 17:39+0000\n" "Last-Translator: Tobias Diekershoff \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -20,26 +21,18 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: showmore.php:41 showmore.php:45 -msgid "\"Show more\" Settings" -msgstr "\"Mehr zeigen\" Einstellungen" - -#: showmore.php:50 +#: showmore.php:37 msgid "Enable Show More" msgstr "Aktiviere \"Mehr zeigen\"" -#: showmore.php:53 -msgid "Cutting posts after how much characters" -msgstr "Begrenze Beiträge nach einer bestimmten Anzahl an Buchstaben" +#: showmore.php:38 +msgid "Cutting posts after how many characters" +msgstr "Schneide Beiträge nach dieser Menge von Zeichen ab" -#: showmore.php:57 -msgid "Save Settings" -msgstr "Einstellungen speichern" +#: showmore.php:43 +msgid "\"Show more\" Settings" +msgstr "\"Mehr zeigen\"-Einstellungen" -#: showmore.php:74 -msgid "Show More Settings saved." -msgstr "\"Mehr zeigen\" Einstellungen gesichert." - -#: showmore.php:134 +#: showmore.php:119 msgid "show more" msgstr "mehr anzeigen" diff --git a/showmore/lang/de/strings.php b/showmore/lang/de/strings.php index 625761b4..66fd15e8 100644 --- a/showmore/lang/de/strings.php +++ b/showmore/lang/de/strings.php @@ -5,9 +5,7 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['"Show more" Settings'] = '"Mehr zeigen" Einstellungen'; $a->strings['Enable Show More'] = 'Aktiviere "Mehr zeigen"'; -$a->strings['Cutting posts after how much characters'] = 'Begrenze Beiträge nach einer bestimmten Anzahl an Buchstaben'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; -$a->strings['Show More Settings saved.'] = '"Mehr zeigen" Einstellungen gesichert.'; +$a->strings['Cutting posts after how many characters'] = 'Schneide Beiträge nach dieser Menge von Zeichen ab'; +$a->strings['"Show more" Settings'] = '"Mehr zeigen"-Einstellungen'; $a->strings['show more'] = 'mehr anzeigen'; diff --git a/smileybutton/lang/de/messages.po b/smileybutton/lang/de/messages.po index e38f72ae..fd2cf54c 100644 --- a/smileybutton/lang/de/messages.po +++ b/smileybutton/lang/de/messages.po @@ -4,15 +4,16 @@ # # # Translators: -# bavatar , 2014 +# Tobias Diekershoff , 2014 +# Ulf Rompe , 2019 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-23 14:45+0200\n" -"PO-Revision-Date: 2014-10-02 14:43+0000\n" -"Last-Translator: bavatar \n" -"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" +"PO-Revision-Date: 2019-02-11 13:35+0000\n" +"Last-Translator: Ulf Rompe \n" +"Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -21,11 +22,11 @@ msgstr "" #: smileybutton.php:269 msgid "Smileybutton settings" -msgstr "Smileybutton Einstellungen" +msgstr "Smileybutton-Einstellungen" #: smileybutton.php:272 msgid "You can hide the button and show the smilies directly." -msgstr "Du kannst den Button verbergen und die Smilys direkt anzeigen." +msgstr "Du kannst den Button verbergen und die Smileys direkt anzeigen." #: smileybutton.php:274 msgid "Hide the button" diff --git a/smileybutton/lang/de/strings.php b/smileybutton/lang/de/strings.php index 3eabd743..f8699fab 100644 --- a/smileybutton/lang/de/strings.php +++ b/smileybutton/lang/de/strings.php @@ -5,7 +5,7 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Smileybutton settings'] = 'Smileybutton Einstellungen'; -$a->strings['You can hide the button and show the smilies directly.'] = 'Du kannst den Button verbergen und die Smilys direkt anzeigen.'; +$a->strings['Smileybutton settings'] = 'Smileybutton-Einstellungen'; +$a->strings['You can hide the button and show the smilies directly.'] = 'Du kannst den Button verbergen und die Smileys direkt anzeigen.'; $a->strings['Hide the button'] = 'Button verbergen'; $a->strings['Save Settings'] = 'Einstellungen speichern'; diff --git a/startpage/lang/de/messages.po b/startpage/lang/de/messages.po index 5e87ee4f..62adb1cc 100644 --- a/startpage/lang/de/messages.po +++ b/startpage/lang/de/messages.po @@ -5,13 +5,13 @@ # # Translators: # Tobias Diekershoff , 2014-2015 -# Tobias Diekershoff , 2021 +# Tobias Diekershoff , 2021-2022 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: 2021-03-29 05:44+0000\n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2022-01-22 17:40+0000\n" "Last-Translator: Tobias Diekershoff \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -20,18 +20,14 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: startpage.php:74 startpage.php:78 -msgid "Startpage" -msgstr "Startpage" - -#: startpage.php:81 +#: startpage.php:70 msgid "Home page to load after login - leave blank for profile wall" msgstr "Seite, die nach dem Anmelden geladen werden soll. Leer = Pinnwand" -#: startpage.php:84 -msgid "Examples: "network" or "notifications/system"" -msgstr "Beispiele: network, notifications/system" +#: startpage.php:70 +msgid "Examples: \"network\" or \"notifications/system\"" +msgstr "Beispiele: \"network\" oder \"notifications/system\"" -#: startpage.php:88 -msgid "Save Settings" -msgstr "Einstellungen speichern" +#: startpage.php:75 +msgid "Startpage" +msgstr "Startpage" diff --git a/startpage/lang/de/strings.php b/startpage/lang/de/strings.php index 0c40a8f1..c9c59d8b 100644 --- a/startpage/lang/de/strings.php +++ b/startpage/lang/de/strings.php @@ -5,7 +5,6 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Startpage'] = 'Startpage'; $a->strings['Home page to load after login - leave blank for profile wall'] = 'Seite, die nach dem Anmelden geladen werden soll. Leer = Pinnwand'; -$a->strings['Examples: "network" or "notifications/system"'] = 'Beispiele: network, notifications/system'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; +$a->strings['Examples: "network" or "notifications/system"'] = 'Beispiele: "network" oder "notifications/system"'; +$a->strings['Startpage'] = 'Startpage'; diff --git a/statusnet/lang/de/messages.po b/statusnet/lang/de/messages.po index fbf74fe9..fa9cba59 100644 --- a/statusnet/lang/de/messages.po +++ b/statusnet/lang/de/messages.po @@ -6,15 +6,16 @@ # Translators: # Andreas H., 2014-2015 # Tobias Diekershoff , 2015 -# Tobias Diekershoff , 2016 +# Tobias Diekershoff , 2016,2022 +# Ulf Rompe , 2019 # Vinzenz Vietzke , 2018 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-27 07:21+0200\n" -"PO-Revision-Date: 2018-10-28 11:54+0000\n" -"Last-Translator: Vinzenz Vietzke \n" +"POT-Creation-Date: 2021-11-21 19:17-0500\n" +"PO-Revision-Date: 2022-01-22 17:42+0000\n" +"Last-Translator: Tobias Diekershoff \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,109 +23,30 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: statusnet.php:151 +#: statusnet.php:97 msgid "Post to GNU Social" msgstr "Auf GNU Social veröffentlichen" -#: statusnet.php:196 +#: statusnet.php:148 msgid "" "Please contact your site administrator.
The provided API URL is not " "valid." msgstr "Bitte kontaktiere den Administrator der Seite.
Die gegebene API URL ist nicht gültig." -#: statusnet.php:225 +#: statusnet.php:176 msgid "We could not contact the GNU Social API with the Path you entered." msgstr "Die GNU Social-API konnte mit dem angegebenen Pfad nicht erreicht werden." -#: statusnet.php:259 -msgid "GNU Social settings updated." -msgstr "GNU Social Einstellungen aktualisiert." - -#: statusnet.php:294 statusnet.php:298 -msgid "GNU Social Import/Export/Mirror" -msgstr "GNU Social Import/Export/Spiegeln" - -#: statusnet.php:313 -msgid "Globally Available GNU Social OAuthKeys" -msgstr "Verfügbare OAuth Schlüssel für GNU Social" - -#: statusnet.php:314 -msgid "" -"There are preconfigured OAuth key pairs for some GNU Social servers " -"available. If you are using one of them, please use these credentials. If " -"not feel free to connect to any other GNU Social instance (see below)." -msgstr "Für einige GNU Social Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. Falls nicht, stelle stattdessen eine Verbindung zu irgendeinem anderen StatusNet Server her (siehe unten)." - -#: statusnet.php:320 statusnet.php:337 statusnet.php:364 statusnet.php:371 -#: statusnet.php:416 statusnet.php:699 +#: statusnet.php:243 statusnet.php:656 msgid "Save Settings" msgstr "Einstellungen speichern" -#: statusnet.php:322 -msgid "Provide your own OAuth Credentials" -msgstr "Eigene OAuth Schlüssel eintragen" +#: statusnet.php:255 +#, php-format +msgid "Currently connected to: %s" +msgstr "Derzeit verbunden mit: %s" -#: statusnet.php:323 -msgid "" -"No consumer key pair for GNU Social found. Register your Friendica Account " -"as an desktop client on your GNU Social account, copy the consumer key pair " -"here and enter the API base root.
Before you register your own OAuth " -"key pair ask the administrator if there is already a key pair for this " -"Friendica installation at your favorited GNU Social installation." -msgstr "Kein Consumer-Schlüsselpaar für GNU Social gefunden. Registriere deinen Friendica-Account als Desktop-Client bei deinem GNU Social Account, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.
Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Friendica-Servers, ob schon ein Schlüsselpaar für diesen Friendica-Server auf diesem GNU Social-Server existiert." - -#: statusnet.php:325 -msgid "OAuth Consumer Key" -msgstr "OAuth Consumer Key" - -#: statusnet.php:328 -msgid "OAuth Consumer Secret" -msgstr "OAuth Consumer Secret" - -#: statusnet.php:331 statusnet.php:679 statusnet.php:691 -msgid "Base API Path (remember the trailing /)" -msgstr "Basis-URL der StatusNet API (vergiss den abschließenden / nicht)" - -#: statusnet.php:356 -msgid "" -"To connect to your GNU Social account click the button below to get a " -"security code from GNU Social which you have to copy into the input box " -"below and submit the form. Only your public posts will be " -"posted to GNU Social." -msgstr "Um dein Konto mit einem GNU Social-Konto zu verknüpfen, klicke den Button an, um einen Sicherheitscode von GNU Social zu erhalten, und kopiere diesen in das Eingabefeld weiter unten. Es werden ausschließlich deine öffentlichen Nachrichten an GNU Social gesendet." - -#: statusnet.php:357 -msgid "Log in with GNU Social" -msgstr "Bei GNU Social anmelden" - -#: statusnet.php:359 -msgid "Copy the security code from GNU Social here" -msgstr "Kopiere den Sicherheitscode von GNU social hier hin" - -#: statusnet.php:365 -msgid "Cancel Connection Process" -msgstr "Verbindungsprozess abbrechen" - -#: statusnet.php:367 -msgid "Current GNU Social API is" -msgstr "Derzeitige GNU Social-API-URL lautet" - -#: statusnet.php:368 -msgid "Cancel GNU Social Connection" -msgstr "Verbindung zum GNU Social Server abbrechen" - -#: statusnet.php:379 -msgid "Currently connected to: " -msgstr "Momentan verbunden mit: " - -#: statusnet.php:380 -msgid "" -"If enabled all your public postings can be posted to the " -"associated GNU Social account. You can choose to do so by default (here) or " -"for every posting separately in the posting options when writing the entry." -msgstr "Wenn aktiviert, können all deine öffentlichen Einträge auf dem verbundenen GNU Social-Konto veröffentlicht werden. Du kannst das (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen." - -#: statusnet.php:382 +#: statusnet.php:260 msgid "" "Note: Due your privacy settings (Hide your profile " "details from unknown viewers?) the link potentially included in public " @@ -132,47 +54,126 @@ msgid "" "informing the visitor that the access to your profile has been restricted." msgstr "Hinweis: Aufgrund deiner Privatsphären-Einstellungen (Profil-Details vor unbekannten Betrachtern verbergen?) wird der Link, der eventuell an deinen GNU Social-Beitrag angehängt wird, um auf den Originalbeitrag zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde." -#: statusnet.php:385 +#: statusnet.php:263 +msgid "Clear OAuth configuration" +msgstr "OAuth-Konfiguration löschen" + +#: statusnet.php:275 +msgid "Cancel GNU Social Connection" +msgstr "Verbindung zum GNU Social-Server abbrechen" + +#: statusnet.php:283 +msgid "Globally Available GNU Social OAuthKeys" +msgstr "Verfügbare OAuth-Schlüssel für GNU Social" + +#: statusnet.php:284 +msgid "" +"There are preconfigured OAuth key pairs for some GNU Social servers " +"available. If you are using one of them, please use these credentials. If " +"not feel free to connect to any other GNU Social instance (see below)." +msgstr "Für einige GNU Social-Server sind voreingestellte OAuth-Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. Falls nicht, stelle stattdessen eine Verbindung zu irgendeinem anderen StatusNet-Server her (siehe unten)." + +#: statusnet.php:285 +msgid "Provide your own OAuth Credentials" +msgstr "Eigene OAuth-Schlüssel eintragen" + +#: statusnet.php:286 +msgid "" +"No consumer key pair for GNU Social found. Register your Friendica Account " +"as a desktop application on your GNU Social account, copy the consumer key " +"pair here and enter the API base root.
Before you register your own " +"OAuth key pair ask the administrator if there is already a key pair for this" +" Friendica installation at your favorite GNU Social installation." +msgstr "Kein Consumer-Schlüsselpaar für GNU Social gefunden. Registriere deinen Friendica-Account als Desktop-Client bei deinem GNU Social-Account, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.
Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Friendica-Servers, ob schon ein Schlüsselpaar für diesen Friendica-Server auf diesem GNU Social-Server existiert." + +#: statusnet.php:287 +msgid "" +"To connect to your GNU Social account click the button below to get a " +"security code from GNU Social which you have to copy into the input box " +"below and submit the form. Only your public posts will be " +"posted to GNU Social." +msgstr "Um dein Konto mit einem GNU Social-Konto zu verknüpfen, klicke den Button an, um einen Sicherheitscode von GNU Social zu erhalten, und kopiere diesen in das Eingabefeld weiter unten. Es werden ausschließlich deine öffentlichen Nachrichten an GNU Social gesendet." + +#: statusnet.php:288 +msgid "Log in with GNU Social" +msgstr "Bei GNU Social anmelden" + +#: statusnet.php:289 +msgid "Cancel Connection Process" +msgstr "Verbindungsprozess abbrechen" + +#: statusnet.php:290 +#, php-format +msgid "Current GNU Social API is: %s" +msgstr "Derzeitige GNU Social-API-URL lautet %s" + +#: statusnet.php:307 +msgid "OAuth Consumer Key" +msgstr "OAuth Consumer Key" + +#: statusnet.php:308 +msgid "OAuth Consumer Secret" +msgstr "OAuth Consumer Secret" + +#: statusnet.php:310 statusnet.php:636 statusnet.php:648 +msgid "Base API Path (remember the trailing /)" +msgstr "Basis-URL der StatusNet-API (vergiss den abschließenden / nicht)" + +#: statusnet.php:311 +msgid "Copy the security code from GNU Social here" +msgstr "Kopiere den Sicherheitscode von GNU social hier hin" + +#: statusnet.php:313 msgid "Allow posting to GNU Social" msgstr "Veröffentlichung bei GNU Social erlauben" -#: statusnet.php:388 -msgid "Send public postings to GNU Social by default" -msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei GNU Social" - -#: statusnet.php:392 +#: statusnet.php:313 msgid "" -"Mirror all posts from GNU Social that are no replies or repeated messages" -msgstr "Spiegle alle Beiträge von GNU Social die keine Antworten oder wiederholten Nachrichten sind" +"If enabled all your public postings can be posted to the " +"associated GNU Social account. You can choose to do so by default (here) or " +"for every posting separately in the posting options when writing the entry." +msgstr "Wenn aktiviert, können all deine öffentlichen Einträge auf dem verbundenen GNU Social-Konto veröffentlicht werden. Du kannst das (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen." -#: statusnet.php:398 +#: statusnet.php:314 +msgid "Post to GNU Social by default" +msgstr "Standardmäßig bei GNU Social veröffentlichen" + +#: statusnet.php:315 +msgid "Mirror all public posts" +msgstr "Spiegle alle öffentlichen Nachrichten" + +#: statusnet.php:316 +msgid "Automatically create contacts" +msgstr "Automatisch Kontakte anlegen" + +#: statusnet.php:317 msgid "Import the remote timeline" msgstr "Importiere die entfernte Zeitleiste" -#: statusnet.php:402 +#: statusnet.php:318 msgid "Disabled" msgstr "Deaktiviert" -#: statusnet.php:403 +#: statusnet.php:319 msgid "Full Timeline" msgstr "Komplette Timeline" -#: statusnet.php:404 +#: statusnet.php:320 msgid "Only Mentions" msgstr "Nur Erwähnungen" -#: statusnet.php:413 -msgid "Clear OAuth configuration" -msgstr "OAuth Konfiguration löschen" +#: statusnet.php:326 +msgid "GNU Social Import/Export/Mirror" +msgstr "GNU Social-Import/Export/Spiegeln" -#: statusnet.php:690 +#: statusnet.php:647 msgid "Site name" msgstr "Seitenname" -#: statusnet.php:692 +#: statusnet.php:649 msgid "Consumer Secret" msgstr "Consumer Secret" -#: statusnet.php:693 +#: statusnet.php:650 msgid "Consumer Key" msgstr "Consumer Key" diff --git a/statusnet/lang/de/strings.php b/statusnet/lang/de/strings.php index 83c09b54..b381c408 100644 --- a/statusnet/lang/de/strings.php +++ b/statusnet/lang/de/strings.php @@ -8,33 +8,33 @@ function string_plural_select_de($n){ $a->strings['Post to GNU Social'] = 'Auf GNU Social veröffentlichen'; $a->strings['Please contact your site administrator.
The provided API URL is not valid.'] = 'Bitte kontaktiere den Administrator der Seite.
Die gegebene API URL ist nicht gültig.'; $a->strings['We could not contact the GNU Social API with the Path you entered.'] = 'Die GNU Social-API konnte mit dem angegebenen Pfad nicht erreicht werden.'; -$a->strings['GNU Social settings updated.'] = 'GNU Social Einstellungen aktualisiert.'; -$a->strings['GNU Social Import/Export/Mirror'] = 'GNU Social Import/Export/Spiegeln'; -$a->strings['Globally Available GNU Social OAuthKeys'] = 'Verfügbare OAuth Schlüssel für GNU Social'; -$a->strings['There are preconfigured OAuth key pairs for some GNU Social servers available. If you are using one of them, please use these credentials. If not feel free to connect to any other GNU Social instance (see below).'] = 'Für einige GNU Social Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. Falls nicht, stelle stattdessen eine Verbindung zu irgendeinem anderen StatusNet Server her (siehe unten).'; $a->strings['Save Settings'] = 'Einstellungen speichern'; -$a->strings['Provide your own OAuth Credentials'] = 'Eigene OAuth Schlüssel eintragen'; -$a->strings['No consumer key pair for GNU Social found. Register your Friendica Account as an desktop client on your GNU Social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited GNU Social installation.'] = 'Kein Consumer-Schlüsselpaar für GNU Social gefunden. Registriere deinen Friendica-Account als Desktop-Client bei deinem GNU Social Account, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.
Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Friendica-Servers, ob schon ein Schlüsselpaar für diesen Friendica-Server auf diesem GNU Social-Server existiert.'; -$a->strings['OAuth Consumer Key'] = 'OAuth Consumer Key'; -$a->strings['OAuth Consumer Secret'] = 'OAuth Consumer Secret'; -$a->strings['Base API Path (remember the trailing /)'] = 'Basis-URL der StatusNet API (vergiss den abschließenden / nicht)'; +$a->strings['Currently connected to: %s'] = 'Derzeit verbunden mit: %s'; +$a->strings['Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU Social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted.'] = 'Hinweis: Aufgrund deiner Privatsphären-Einstellungen (Profil-Details vor unbekannten Betrachtern verbergen?) wird der Link, der eventuell an deinen GNU Social-Beitrag angehängt wird, um auf den Originalbeitrag zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde.'; +$a->strings['Clear OAuth configuration'] = 'OAuth-Konfiguration löschen'; +$a->strings['Cancel GNU Social Connection'] = 'Verbindung zum GNU Social-Server abbrechen'; +$a->strings['Globally Available GNU Social OAuthKeys'] = 'Verfügbare OAuth-Schlüssel für GNU Social'; +$a->strings['There are preconfigured OAuth key pairs for some GNU Social servers available. If you are using one of them, please use these credentials. If not feel free to connect to any other GNU Social instance (see below).'] = 'Für einige GNU Social-Server sind voreingestellte OAuth-Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. Falls nicht, stelle stattdessen eine Verbindung zu irgendeinem anderen StatusNet-Server her (siehe unten).'; +$a->strings['Provide your own OAuth Credentials'] = 'Eigene OAuth-Schlüssel eintragen'; +$a->strings['No consumer key pair for GNU Social found. Register your Friendica Account as a desktop application on your GNU Social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorite GNU Social installation.'] = 'Kein Consumer-Schlüsselpaar für GNU Social gefunden. Registriere deinen Friendica-Account als Desktop-Client bei deinem GNU Social-Account, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.
Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Friendica-Servers, ob schon ein Schlüsselpaar für diesen Friendica-Server auf diesem GNU Social-Server existiert.'; $a->strings['To connect to your GNU Social account click the button below to get a security code from GNU Social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU Social.'] = 'Um dein Konto mit einem GNU Social-Konto zu verknüpfen, klicke den Button an, um einen Sicherheitscode von GNU Social zu erhalten, und kopiere diesen in das Eingabefeld weiter unten. Es werden ausschließlich deine öffentlichen Nachrichten an GNU Social gesendet.'; $a->strings['Log in with GNU Social'] = 'Bei GNU Social anmelden'; -$a->strings['Copy the security code from GNU Social here'] = 'Kopiere den Sicherheitscode von GNU social hier hin'; $a->strings['Cancel Connection Process'] = 'Verbindungsprozess abbrechen'; -$a->strings['Current GNU Social API is'] = 'Derzeitige GNU Social-API-URL lautet'; -$a->strings['Cancel GNU Social Connection'] = 'Verbindung zum GNU Social Server abbrechen'; -$a->strings['Currently connected to: '] = 'Momentan verbunden mit: '; -$a->strings['If enabled all your public postings can be posted to the associated GNU Social account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry.'] = 'Wenn aktiviert, können all deine öffentlichen Einträge auf dem verbundenen GNU Social-Konto veröffentlicht werden. Du kannst das (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen.'; -$a->strings['Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU Social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted.'] = 'Hinweis: Aufgrund deiner Privatsphären-Einstellungen (Profil-Details vor unbekannten Betrachtern verbergen?) wird der Link, der eventuell an deinen GNU Social-Beitrag angehängt wird, um auf den Originalbeitrag zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde.'; +$a->strings['Current GNU Social API is: %s'] = 'Derzeitige GNU Social-API-URL lautet %s'; +$a->strings['OAuth Consumer Key'] = 'OAuth Consumer Key'; +$a->strings['OAuth Consumer Secret'] = 'OAuth Consumer Secret'; +$a->strings['Base API Path (remember the trailing /)'] = 'Basis-URL der StatusNet-API (vergiss den abschließenden / nicht)'; +$a->strings['Copy the security code from GNU Social here'] = 'Kopiere den Sicherheitscode von GNU social hier hin'; $a->strings['Allow posting to GNU Social'] = 'Veröffentlichung bei GNU Social erlauben'; -$a->strings['Send public postings to GNU Social by default'] = 'Veröffentliche öffentliche Beiträge standardmäßig bei GNU Social'; -$a->strings['Mirror all posts from GNU Social that are no replies or repeated messages'] = 'Spiegle alle Beiträge von GNU Social die keine Antworten oder wiederholten Nachrichten sind'; +$a->strings['If enabled all your public postings can be posted to the associated GNU Social account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry.'] = 'Wenn aktiviert, können all deine öffentlichen Einträge auf dem verbundenen GNU Social-Konto veröffentlicht werden. Du kannst das (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen.'; +$a->strings['Post to GNU Social by default'] = 'Standardmäßig bei GNU Social veröffentlichen'; +$a->strings['Mirror all public posts'] = 'Spiegle alle öffentlichen Nachrichten'; +$a->strings['Automatically create contacts'] = 'Automatisch Kontakte anlegen'; $a->strings['Import the remote timeline'] = 'Importiere die entfernte Zeitleiste'; $a->strings['Disabled'] = 'Deaktiviert'; $a->strings['Full Timeline'] = 'Komplette Timeline'; $a->strings['Only Mentions'] = 'Nur Erwähnungen'; -$a->strings['Clear OAuth configuration'] = 'OAuth Konfiguration löschen'; +$a->strings['GNU Social Import/Export/Mirror'] = 'GNU Social-Import/Export/Spiegeln'; $a->strings['Site name'] = 'Seitenname'; $a->strings['Consumer Secret'] = 'Consumer Secret'; $a->strings['Consumer Key'] = 'Consumer Key'; diff --git a/superblock/lang/de/messages.po b/superblock/lang/de/messages.po index 3cb6ff2c..66c25056 100644 --- a/superblock/lang/de/messages.po +++ b/superblock/lang/de/messages.po @@ -6,13 +6,14 @@ # Translators: # Andreas H., 2018 # Tobias Diekershoff , 2014-2015 -# Tobias Diekershoff , 2017-2018 +# Tobias Diekershoff , 2017-2018,2022 +# Ulf Rompe , 2019 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-08-17 10:25+0200\n" -"PO-Revision-Date: 2018-08-20 14:24+0000\n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2022-01-22 17:42+0000\n" "Last-Translator: Tobias Diekershoff \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -21,26 +22,14 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: superblock.php:47 superblock.php:51 +#: superblock.php:35 +msgid "Comma separated profile URLs to block" +msgstr "Profil-URLs, die geblockt werden sollen (durch Kommas getrennt)" + +#: superblock.php:40 msgid "Superblock" msgstr "Superblock" -#: superblock.php:54 -msgid "Comma separated profile URLS to block" -msgstr "Profil-URLs, die geblockt werden sollen (durch Kommas getrennt)" - -#: superblock.php:58 -msgid "Save Settings" -msgstr "Einstellungen speichern" - -#: superblock.php:71 -msgid "SUPERBLOCK Settings saved." -msgstr "Superblock Einstellungen gespeichert" - -#: superblock.php:144 +#: superblock.php:129 msgid "Block Completely" msgstr "Vollständig blockieren" - -#: superblock.php:165 -msgid "superblock settings updated" -msgstr "Superblock Einstellungen aktualisiert" diff --git a/superblock/lang/de/strings.php b/superblock/lang/de/strings.php index 27965889..13e7b9c0 100644 --- a/superblock/lang/de/strings.php +++ b/superblock/lang/de/strings.php @@ -5,9 +5,6 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} +$a->strings['Comma separated profile URLs to block'] = 'Profil-URLs, die geblockt werden sollen (durch Kommas getrennt)'; $a->strings['Superblock'] = 'Superblock'; -$a->strings['Comma separated profile URLS to block'] = 'Profil-URLs, die geblockt werden sollen (durch Kommas getrennt)'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; -$a->strings['SUPERBLOCK Settings saved.'] = 'Superblock Einstellungen gespeichert'; $a->strings['Block Completely'] = 'Vollständig blockieren'; -$a->strings['superblock settings updated'] = 'Superblock Einstellungen aktualisiert'; diff --git a/tictac/lang/de/messages.po b/tictac/lang/de/messages.po index 01ccff6d..da67a6f7 100644 --- a/tictac/lang/de/messages.po +++ b/tictac/lang/de/messages.po @@ -4,71 +4,72 @@ # # # Translators: -# bavatar , 2014 +# Tobias Diekershoff , 2014 +# Ulf Rompe , 2019 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-23 14:45+0200\n" -"PO-Revision-Date: 2014-09-28 12:51+0000\n" -"Last-Translator: bavatar \n" -"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" +"POT-Creation-Date: 2021-02-01 18:15+0100\n" +"PO-Revision-Date: 2019-02-11 13:44+0000\n" +"Last-Translator: Ulf Rompe \n" +"Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: tictac.php:20 +#: tictac.php:16 msgid "Three Dimensional Tic-Tac-Toe" msgstr "Dreidimensionales Tic-Tac-Toe" -#: tictac.php:53 +#: tictac.php:49 msgid "3D Tic-Tac-Toe" -msgstr "3D Tic-Tac-Toe" +msgstr "3D-Tic-Tac-Toe" -#: tictac.php:58 +#: tictac.php:54 msgid "New game" msgstr "Neues Spiel" -#: tictac.php:59 +#: tictac.php:55 msgid "New game with handicap" -msgstr "Neues Handicap Spiel" +msgstr "Neues Handicap-Spiel" -#: tictac.php:60 +#: tictac.php:56 msgid "" "Three dimensional tic-tac-toe is just like the traditional game except that " "it is played on multiple levels simultaneously. " msgstr "3D-Tic-Tac-Toe ist genauso wie das herkömmliche Spiel, nur das man es auf mehreren Ebenen gleichzeitig spielt." -#: tictac.php:61 +#: tictac.php:57 msgid "" "In this case there are three levels. You win by getting three in a row on " "any level, as well as up, down, and diagonally across the different levels." -msgstr "In diesem Fall sind es drei Ebenen. Man gewinnt indem man drei in einer Reihe auf einer beliebigen Reihe schafft, oder drei übereinander oder diagonal auf verschiedenen Ebenen." +msgstr "In diesem Fall sind es drei Ebenen. Man gewinnt, indem man drei in einer Reihe auf einer beliebigen Ebene schafft, oder drei übereinander oder diagonal auf verschiedenen Ebenen." -#: tictac.php:63 +#: tictac.php:59 msgid "" "The handicap game disables the center position on the middle level because " "the player claiming this square often has an unfair advantage." -msgstr "Beim Handicap-Spiel wird die zentrale Position der mittleren Ebene gesperrt da der Spieler der diese Ebene besitzt oft einen unfairen Vorteil genießt." +msgstr "Beim Handicap-Spiel wird die zentrale Position der mittleren Ebene gesperrt, da der Spieler, der diese Ebene besitzt, oft einen unfairen Vorteil genießt." -#: tictac.php:182 +#: tictac.php:178 msgid "You go first..." msgstr "Du fängst an..." -#: tictac.php:187 +#: tictac.php:183 msgid "I'm going first this time..." msgstr "Diesmal fange ich an..." -#: tictac.php:193 +#: tictac.php:189 msgid "You won!" msgstr "Du gewinnst!" -#: tictac.php:199 tictac.php:224 +#: tictac.php:195 tictac.php:220 msgid "\"Cat\" game!" msgstr "Unentschieden!" -#: tictac.php:222 +#: tictac.php:218 msgid "I won!" msgstr "Ich gewinne!" diff --git a/tictac/lang/de/strings.php b/tictac/lang/de/strings.php index 0aa742a5..bdb52e10 100644 --- a/tictac/lang/de/strings.php +++ b/tictac/lang/de/strings.php @@ -6,12 +6,12 @@ function string_plural_select_de($n){ return intval($n != 1); }} $a->strings['Three Dimensional Tic-Tac-Toe'] = 'Dreidimensionales Tic-Tac-Toe'; -$a->strings['3D Tic-Tac-Toe'] = '3D Tic-Tac-Toe'; +$a->strings['3D Tic-Tac-Toe'] = '3D-Tic-Tac-Toe'; $a->strings['New game'] = 'Neues Spiel'; -$a->strings['New game with handicap'] = 'Neues Handicap Spiel'; +$a->strings['New game with handicap'] = 'Neues Handicap-Spiel'; $a->strings['Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. '] = '3D-Tic-Tac-Toe ist genauso wie das herkömmliche Spiel, nur das man es auf mehreren Ebenen gleichzeitig spielt.'; -$a->strings['In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels.'] = 'In diesem Fall sind es drei Ebenen. Man gewinnt indem man drei in einer Reihe auf einer beliebigen Reihe schafft, oder drei übereinander oder diagonal auf verschiedenen Ebenen.'; -$a->strings['The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage.'] = 'Beim Handicap-Spiel wird die zentrale Position der mittleren Ebene gesperrt da der Spieler der diese Ebene besitzt oft einen unfairen Vorteil genießt.'; +$a->strings['In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels.'] = 'In diesem Fall sind es drei Ebenen. Man gewinnt, indem man drei in einer Reihe auf einer beliebigen Ebene schafft, oder drei übereinander oder diagonal auf verschiedenen Ebenen.'; +$a->strings['The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage.'] = 'Beim Handicap-Spiel wird die zentrale Position der mittleren Ebene gesperrt, da der Spieler, der diese Ebene besitzt, oft einen unfairen Vorteil genießt.'; $a->strings['You go first...'] = 'Du fängst an...'; $a->strings['I\'m going first this time...'] = 'Diesmal fange ich an...'; $a->strings['You won!'] = 'Du gewinnst!'; diff --git a/twitter/lang/de/messages.po b/twitter/lang/de/messages.po index 6366acfe..7a020d6d 100644 --- a/twitter/lang/de/messages.po +++ b/twitter/lang/de/messages.po @@ -6,14 +6,14 @@ # Translators: # Till Mohr , 2021 # Tobias Diekershoff , 2014-2015 -# Tobias Diekershoff , 2018,2020-2021 +# Tobias Diekershoff , 2018,2020-2022 # Ulf Rompe , 2019 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-23 18:33-0500\n" -"PO-Revision-Date: 2021-11-27 17:14+0000\n" +"POT-Creation-Date: 2021-11-27 10:25-0500\n" +"PO-Revision-Date: 2022-01-22 17:43+0000\n" "Last-Translator: Tobias Diekershoff \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -32,17 +32,13 @@ msgid "" "one." msgstr "Du hast keine PIN übertragen. Bitte melde dich erneut bei Twitter an, um eine neue PIN zu erhalten." -#: twitter.php:318 twitter.php:322 -msgid "Twitter Import/Export/Mirror" -msgstr "Twitter-Import/Export/Spiegeln" - -#: twitter.php:329 +#: twitter.php:321 msgid "" "No consumer key pair for Twitter found. Please contact your site " "administrator." msgstr "Kein Consumer-Schlüsselpaar für Twitter gefunden. Bitte wende dich an den Administrator der Seite." -#: twitter.php:341 +#: twitter.php:334 msgid "" "At this Friendica instance the Twitter addon was enabled but you have not " "yet connected your account to your Twitter account. To do so click the " @@ -51,42 +47,26 @@ msgid "" " be posted to Twitter." msgstr "Auf diesem Friendica-Server wurde das Twitter-Addon aktiviert, aber du hast deinen Account noch nicht mit deinem Twitter-Account verbunden. Klicke dazu auf die Schaltfläche unten. Du erhältst dann eine PIN von Twitter, die du in das Eingabefeld unten einfügst. Denk daran, den Senden-Knopf zu drücken! Nur öffentliche Beiträge werden bei Twitter veröffentlicht." -#: twitter.php:342 +#: twitter.php:335 msgid "Log in with Twitter" msgstr "bei Twitter anmelden" -#: twitter.php:344 +#: twitter.php:337 msgid "Copy the PIN from Twitter here" msgstr "Kopiere die Twitter-PIN hierher" -#: twitter.php:349 twitter.php:404 twitter.php:924 -msgid "Save Settings" -msgstr "Einstellungen speichern" - -#: twitter.php:351 twitter.php:406 +#: twitter.php:345 twitter.php:388 msgid "An error occured: " msgstr "Ein Fehler ist aufgetreten:" -#: twitter.php:368 -msgid "Currently connected to: " -msgstr "Momentan verbunden mit: " - -#: twitter.php:369 twitter.php:379 -msgid "Disconnect" -msgstr "Trennen" - -#: twitter.php:386 -msgid "Allow posting to Twitter" -msgstr "Veröffentlichung bei Twitter erlauben" - -#: twitter.php:386 +#: twitter.php:359 +#, php-format msgid "" -"If enabled all your public postings can be posted to the " -"associated Twitter account. You can choose to do so by default (here) or for" -" every posting separately in the posting options when writing the entry." -msgstr "Wenn aktiviert, können all deine öffentlichen Einträge auf dem verbundenen Twitter-Konto veröffentlicht werden. Du kannst dies (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen." +"Currently connected to: %1$s" +msgstr "Derzeit verbunden mit: %1$s" -#: twitter.php:389 +#: twitter.php:365 msgid "" "Note: Due to your privacy settings (Hide your profile " "details from unknown viewers?) the link potentially included in public " @@ -94,23 +74,42 @@ msgid "" "the visitor that the access to your profile has been restricted." msgstr "Hinweis: Aufgrund deiner Privatsphären-Einstellungen (Profil-Details vor unbekannten Betrachtern verbergen?) wird der Link, der eventuell an deinen Twitter-Beitrag angehängt wird, um auf den Originalbeitrag zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde." -#: twitter.php:392 +#: twitter.php:372 +msgid "Invalid Twitter info" +msgstr "Ungültige Twitter Informationen" + +#: twitter.php:373 +msgid "Disconnect" +msgstr "Trennen" + +#: twitter.php:378 +msgid "Allow posting to Twitter" +msgstr "Veröffentlichung bei Twitter erlauben" + +#: twitter.php:378 +msgid "" +"If enabled all your public postings can be posted to the " +"associated Twitter account. You can choose to do so by default (here) or for" +" every posting separately in the posting options when writing the entry." +msgstr "Wenn aktiviert, können all deine öffentlichen Einträge auf dem verbundenen Twitter-Konto veröffentlicht werden. Du kannst dies (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen." + +#: twitter.php:379 msgid "Send public postings to Twitter by default" msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Twitter" -#: twitter.php:395 +#: twitter.php:380 msgid "Mirror all posts from twitter that are no replies" msgstr "Spiegle alle Beiträge von Twitter, die keine Antworten sind" -#: twitter.php:398 +#: twitter.php:381 msgid "Import the remote timeline" msgstr "Importiere die Remote-Zeitleiste" -#: twitter.php:401 +#: twitter.php:382 msgid "Automatically create contacts" msgstr "Automatisch Kontakte anlegen" -#: twitter.php:401 +#: twitter.php:382 msgid "" "This will automatically create a contact in Friendica as soon as you receive" " a message from an existing contact via the Twitter network. If you do not " @@ -118,25 +117,33 @@ msgid "" "from whom you would like to see posts here." msgstr "Mit dieser Option wird automatisch ein Kontakt bei Friendica angelegt, wenn du eine Nachricht von einem bestehenden Kontakt auf Twitter erhältst. Ist die Option nicht aktiv, musst du manuell Kontakte für diejenigen deiner Twitter-Kontakte anlegen, deren Nachrichten du auf Friendica lesen möchtest." -#: twitter.php:557 +#: twitter.php:395 +msgid "Twitter Import/Export/Mirror" +msgstr "Twitter-Import/Export/Spiegeln" + +#: twitter.php:547 msgid "" "Please connect a Twitter account in your Social Network settings to import " "Twitter posts." msgstr "Bitte verbinde deinen Twitter Account in den Einstellungen zu den Soziale Netzwerken damit deine Twitter Beiträge importiert werden." -#: twitter.php:564 +#: twitter.php:554 msgid "Twitter post not found." msgstr "Beiträge auf Twitter nicht gefunden." -#: twitter.php:926 +#: twitter.php:914 +msgid "Save Settings" +msgstr "Einstellungen speichern" + +#: twitter.php:916 msgid "Consumer key" msgstr "Consumer Key" -#: twitter.php:927 +#: twitter.php:917 msgid "Consumer secret" msgstr "Consumer Secret" -#: twitter.php:1123 +#: twitter.php:1113 #, php-format msgid "%s on Twitter" msgstr "%s auf Twitter" diff --git a/twitter/lang/de/strings.php b/twitter/lang/de/strings.php index d8dd7ac9..85a96ad6 100644 --- a/twitter/lang/de/strings.php +++ b/twitter/lang/de/strings.php @@ -7,25 +7,26 @@ function string_plural_select_de($n){ }} $a->strings['Post to Twitter'] = 'Auf Twitter veröffentlichen'; $a->strings['You submitted an empty PIN, please Sign In with Twitter again to get a new one.'] = 'Du hast keine PIN übertragen. Bitte melde dich erneut bei Twitter an, um eine neue PIN zu erhalten.'; -$a->strings['Twitter Import/Export/Mirror'] = 'Twitter-Import/Export/Spiegeln'; $a->strings['No consumer key pair for Twitter found. Please contact your site administrator.'] = 'Kein Consumer-Schlüsselpaar für Twitter gefunden. Bitte wende dich an den Administrator der Seite.'; $a->strings['At this Friendica instance the Twitter addon was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter.'] = 'Auf diesem Friendica-Server wurde das Twitter-Addon aktiviert, aber du hast deinen Account noch nicht mit deinem Twitter-Account verbunden. Klicke dazu auf die Schaltfläche unten. Du erhältst dann eine PIN von Twitter, die du in das Eingabefeld unten einfügst. Denk daran, den Senden-Knopf zu drücken! Nur öffentliche Beiträge werden bei Twitter veröffentlicht.'; $a->strings['Log in with Twitter'] = 'bei Twitter anmelden'; $a->strings['Copy the PIN from Twitter here'] = 'Kopiere die Twitter-PIN hierher'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; $a->strings['An error occured: '] = 'Ein Fehler ist aufgetreten:'; -$a->strings['Currently connected to: '] = 'Momentan verbunden mit: '; +$a->strings['Currently connected to: %1$s'] = 'Derzeit verbunden mit: %1$s'; +$a->strings['Note: Due to your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted.'] = 'Hinweis: Aufgrund deiner Privatsphären-Einstellungen (Profil-Details vor unbekannten Betrachtern verbergen?) wird der Link, der eventuell an deinen Twitter-Beitrag angehängt wird, um auf den Originalbeitrag zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde.'; +$a->strings['Invalid Twitter info'] = 'Ungültige Twitter Informationen'; $a->strings['Disconnect'] = 'Trennen'; $a->strings['Allow posting to Twitter'] = 'Veröffentlichung bei Twitter erlauben'; $a->strings['If enabled all your public postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry.'] = 'Wenn aktiviert, können all deine öffentlichen Einträge auf dem verbundenen Twitter-Konto veröffentlicht werden. Du kannst dies (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen.'; -$a->strings['Note: Due to your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted.'] = 'Hinweis: Aufgrund deiner Privatsphären-Einstellungen (Profil-Details vor unbekannten Betrachtern verbergen?) wird der Link, der eventuell an deinen Twitter-Beitrag angehängt wird, um auf den Originalbeitrag zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde.'; $a->strings['Send public postings to Twitter by default'] = 'Veröffentliche öffentliche Beiträge standardmäßig bei Twitter'; $a->strings['Mirror all posts from twitter that are no replies'] = 'Spiegle alle Beiträge von Twitter, die keine Antworten sind'; $a->strings['Import the remote timeline'] = 'Importiere die Remote-Zeitleiste'; $a->strings['Automatically create contacts'] = 'Automatisch Kontakte anlegen'; $a->strings['This will automatically create a contact in Friendica as soon as you receive a message from an existing contact via the Twitter network. If you do not enable this, you need to manually add those Twitter contacts in Friendica from whom you would like to see posts here.'] = 'Mit dieser Option wird automatisch ein Kontakt bei Friendica angelegt, wenn du eine Nachricht von einem bestehenden Kontakt auf Twitter erhältst. Ist die Option nicht aktiv, musst du manuell Kontakte für diejenigen deiner Twitter-Kontakte anlegen, deren Nachrichten du auf Friendica lesen möchtest.'; +$a->strings['Twitter Import/Export/Mirror'] = 'Twitter-Import/Export/Spiegeln'; $a->strings['Please connect a Twitter account in your Social Network settings to import Twitter posts.'] = 'Bitte verbinde deinen Twitter Account in den Einstellungen zu den Soziale Netzwerken damit deine Twitter Beiträge importiert werden.'; $a->strings['Twitter post not found.'] = 'Beiträge auf Twitter nicht gefunden.'; +$a->strings['Save Settings'] = 'Einstellungen speichern'; $a->strings['Consumer key'] = 'Consumer Key'; $a->strings['Consumer secret'] = 'Consumer Secret'; $a->strings['%s on Twitter'] = '%s auf Twitter'; diff --git a/viewsrc/lang/de/messages.po b/viewsrc/lang/de/messages.po new file mode 100644 index 00000000..b397c392 --- /dev/null +++ b/viewsrc/lang/de/messages.po @@ -0,0 +1,26 @@ +# ADDON viewsrc +# Copyright (C) +# This file is distributed under the same license as the Friendica viewsrc addon package. +# +# +# Translators: +# Tobias Diekershoff , 2018 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-02-01 18:16+0100\n" +"PO-Revision-Date: 2018-03-20 07:26+0000\n" +"Last-Translator: Tobias Diekershoff , 2018\n" +"Language-Team: German (https://www.transifex.com/Friendica/teams/12172/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: viewsrc.php:49 +msgid "View Source" +msgstr "Quelle ansehen" diff --git a/viewsrc/lang/de/strings.php b/viewsrc/lang/de/strings.php index 356979be..a4f12490 100644 --- a/viewsrc/lang/de/strings.php +++ b/viewsrc/lang/de/strings.php @@ -1,3 +1,8 @@ -strings["View Source"] = "Quelle ansehen"; +strings['View Source'] = 'Quelle ansehen'; diff --git a/webrtc/lang/de/messages.po b/webrtc/lang/de/messages.po index b6abd14f..a8b153d0 100644 --- a/webrtc/lang/de/messages.po +++ b/webrtc/lang/de/messages.po @@ -4,56 +4,53 @@ # # # Translators: -# bavatar , 2014 +# Tobias Diekershoff , 2014 +# Ulf Rompe , 2019 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-23 14:45+0200\n" -"PO-Revision-Date: 2014-07-11 05:33+0000\n" -"Last-Translator: bavatar \n" -"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" +"POT-Creation-Date: 2021-02-01 18:16+0100\n" +"PO-Revision-Date: 2021-02-01 20:17+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: webrtc.php:20 +#: webrtc.php:19 msgid "WebRTC Videochat" msgstr "WebRTC Videochat" -#: webrtc.php:26 +#: webrtc.php:25 msgid "Save Settings" msgstr "Einstellungen speichern" -#: webrtc.php:27 +#: webrtc.php:26 msgid "WebRTC Base URL" -msgstr "Basis-URL des WebRTC Servers" +msgstr "Basis-URL des WebRTC-Servers" -#: webrtc.php:27 +#: webrtc.php:26 msgid "" "Page your users will create a WebRTC chat room on. For example you could use" " https://live.mayfirst.org ." -msgstr "Auf welcher Seite sollten deine Nutzer einen WebRTC Chatraum anlegen. Z.B. könntest du https://live.mayfirst.org verwenden." +msgstr "Auf welcher Seite sollten deine Nutzer einen WebRTC-Chatraum anlegen? Du könntest bspw. https://live.mayfirst.org verwenden." -#: webrtc.php:33 -msgid "Settings updated." -msgstr "Einstellungen aktualisiert." - -#: webrtc.php:47 +#: webrtc.php:45 msgid "Video Chat" msgstr "Video Chat" -#: webrtc.php:48 +#: webrtc.php:46 msgid "" "WebRTC is a video and audio conferencing tool that works with Firefox " "(version 21 and above) and Chrome/Chromium (version 25 and above). Just " "create a new chat room and send the link to someone you want to chat with." -msgstr "WebRTC ist ein Werkzeug für Audio- und Videokonferenzen das mit Firefox (Version 21 und höher) und Chrome/Chromium (Versionen 25 und höher) funktioniert. Lege einfach einen neuen Chatraum an und sende den Link an die Personen mit denen du chatten willst." +msgstr "WebRTC ist ein Werkzeug für Audio- und Videokonferenzen, das mit Firefox (Version 21 und höher) und Chrome/Chromium (Versionen 25 und höher) funktioniert. Lege einfach einen neuen Chatraum an und sende den Link an die Personen, mit denen du chatten willst." -#: webrtc.php:50 +#: webrtc.php:48 msgid "" "Please contact your friendica admin and send a reminder to configure the " "WebRTC addon." -msgstr "Bitte schicke eine Erinnerung an deinen friendica Admin, dass WebRTC noch nicht richtig konfiguriert ist." +msgstr "Bitte schicke eine Erinnerung an deinen Friendica-Admin, dass WebRTC noch nicht richtig konfiguriert ist." diff --git a/webrtc/lang/de/strings.php b/webrtc/lang/de/strings.php index 418fdec4..0f5f0a1e 100644 --- a/webrtc/lang/de/strings.php +++ b/webrtc/lang/de/strings.php @@ -7,9 +7,8 @@ function string_plural_select_de($n){ }} $a->strings['WebRTC Videochat'] = 'WebRTC Videochat'; $a->strings['Save Settings'] = 'Einstellungen speichern'; -$a->strings['WebRTC Base URL'] = 'Basis-URL des WebRTC Servers'; -$a->strings['Page your users will create a WebRTC chat room on. For example you could use https://live.mayfirst.org .'] = 'Auf welcher Seite sollten deine Nutzer einen WebRTC Chatraum anlegen. Z.B. könntest du https://live.mayfirst.org verwenden.'; -$a->strings['Settings updated.'] = 'Einstellungen aktualisiert.'; +$a->strings['WebRTC Base URL'] = 'Basis-URL des WebRTC-Servers'; +$a->strings['Page your users will create a WebRTC chat room on. For example you could use https://live.mayfirst.org .'] = 'Auf welcher Seite sollten deine Nutzer einen WebRTC-Chatraum anlegen? Du könntest bspw. https://live.mayfirst.org verwenden.'; $a->strings['Video Chat'] = 'Video Chat'; -$a->strings['WebRTC is a video and audio conferencing tool that works with Firefox (version 21 and above) and Chrome/Chromium (version 25 and above). Just create a new chat room and send the link to someone you want to chat with.'] = 'WebRTC ist ein Werkzeug für Audio- und Videokonferenzen das mit Firefox (Version 21 und höher) und Chrome/Chromium (Versionen 25 und höher) funktioniert. Lege einfach einen neuen Chatraum an und sende den Link an die Personen mit denen du chatten willst.'; -$a->strings['Please contact your friendica admin and send a reminder to configure the WebRTC addon.'] = 'Bitte schicke eine Erinnerung an deinen friendica Admin, dass WebRTC noch nicht richtig konfiguriert ist.'; +$a->strings['WebRTC is a video and audio conferencing tool that works with Firefox (version 21 and above) and Chrome/Chromium (version 25 and above). Just create a new chat room and send the link to someone you want to chat with.'] = 'WebRTC ist ein Werkzeug für Audio- und Videokonferenzen, das mit Firefox (Version 21 und höher) und Chrome/Chromium (Versionen 25 und höher) funktioniert. Lege einfach einen neuen Chatraum an und sende den Link an die Personen, mit denen du chatten willst.'; +$a->strings['Please contact your friendica admin and send a reminder to configure the WebRTC addon.'] = 'Bitte schicke eine Erinnerung an deinen Friendica-Admin, dass WebRTC noch nicht richtig konfiguriert ist.'; diff --git a/windowsphonepush/lang/de/messages.po b/windowsphonepush/lang/de/messages.po index 58bf87cf..d85e6999 100644 --- a/windowsphonepush/lang/de/messages.po +++ b/windowsphonepush/lang/de/messages.po @@ -4,37 +4,35 @@ # # # Translators: -# Abrax , 2014 +# Andreas H., 2014 +# Tobias Diekershoff , 2018,2022 +# Ulf Rompe , 2019 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-26 15:02+0100\n" -"PO-Revision-Date: 2014-10-31 14:06+0000\n" -"Last-Translator: Abrax \n" -"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" +"POT-Creation-Date: 2021-11-21 19:16-0500\n" +"PO-Revision-Date: 2022-01-22 17:44+0000\n" +"Last-Translator: Tobias Diekershoff \n" +"Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: windowsphonepush.php:85 -msgid "WindowsPhonePush settings updated." -msgstr "WindowsPhonePush Einstellungen aktualisiert." - -#: windowsphonepush.php:114 -msgid "WindowsPhonePush Settings" -msgstr "WindowsPhonePush Einstellungen" - -#: windowsphonepush.php:117 +#: windowsphonepush.php:102 msgid "Enable WindowsPhonePush Addon" -msgstr "Aktiviere WindowsPhonePush Addon" +msgstr "Aktiviere WindowsPhonePush-Addon" -#: windowsphonepush.php:122 +#: windowsphonepush.php:103 msgid "Push text of new item" msgstr "Text senden" -#: windowsphonepush.php:127 -msgid "Save Settings" -msgstr "Einstellungen speichern" +#: windowsphonepush.php:104 +msgid "Device URL" +msgstr "Geräte URL" + +#: windowsphonepush.php:109 +msgid "WindowsPhonePush Settings" +msgstr "WindowsPhonePush-Einstellungen" diff --git a/windowsphonepush/lang/de/strings.php b/windowsphonepush/lang/de/strings.php index 716cad3d..1c738053 100644 --- a/windowsphonepush/lang/de/strings.php +++ b/windowsphonepush/lang/de/strings.php @@ -5,8 +5,7 @@ function string_plural_select_de($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['WindowsPhonePush settings updated.'] = 'WindowsPhonePush Einstellungen aktualisiert.'; -$a->strings['WindowsPhonePush Settings'] = 'WindowsPhonePush Einstellungen'; -$a->strings['Enable WindowsPhonePush Addon'] = 'Aktiviere WindowsPhonePush Addon'; +$a->strings['Enable WindowsPhonePush Addon'] = 'Aktiviere WindowsPhonePush-Addon'; $a->strings['Push text of new item'] = 'Text senden'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; +$a->strings['Device URL'] = 'Geräte URL'; +$a->strings['WindowsPhonePush Settings'] = 'WindowsPhonePush-Einstellungen'; diff --git a/wppost/lang/de/messages.po b/wppost/lang/de/messages.po index eb10db40..6d2b1863 100644 --- a/wppost/lang/de/messages.po +++ b/wppost/lang/de/messages.po @@ -6,14 +6,15 @@ # Translators: # Andreas H., 2017 # Tobias Diekershoff , 2014-2015 -# Tobias Diekershoff , 2017 +# Tobias Diekershoff , 2017-2018,2022 +# Ulf Rompe , 2019 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-01-24 21:06+0100\n" -"PO-Revision-Date: 2017-02-10 11:11+0000\n" -"Last-Translator: Andreas H.\n" +"POT-Creation-Date: 2021-11-21 19:18-0500\n" +"PO-Revision-Date: 2022-01-22 17:45+0000\n" +"Last-Translator: Tobias Diekershoff \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,56 +22,52 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: wppost.php:42 +#: wppost.php:41 msgid "Post to Wordpress" msgstr "Bei WordPress veröffentlichen" -#: wppost.php:80 wppost.php:84 -msgid "Wordpress Export" -msgstr "Wordpress Export" +#: wppost.php:65 +msgid "Enable Wordpress Post Addon" +msgstr "Wordpress-Addon aktivieren" -#: wppost.php:87 -msgid "Enable WordPress Post Addon" -msgstr "WordPress Addon aktivieren" +#: wppost.php:66 +msgid "Wordpress username" +msgstr "Wordpress-Benutzername" -#: wppost.php:92 -msgid "WordPress username" -msgstr "WordPress-Benutzername" +#: wppost.php:67 +msgid "Wordpress password" +msgstr "Wordpress-Passwort" -#: wppost.php:97 -msgid "WordPress password" -msgstr "WordPress-Passwort" - -#: wppost.php:102 +#: wppost.php:68 msgid "WordPress API URL" msgstr "WordPress-API-URL" -#: wppost.php:107 -msgid "Post to WordPress by default" -msgstr "Standardmäßig auf WordPress veröffentlichen" +#: wppost.php:69 +msgid "Post to Wordpress by default" +msgstr "Standardmäßig auf Wordpress veröffentlichen" -#: wppost.php:112 +#: wppost.php:70 msgid "Provide a backlink to the Friendica post" msgstr "Einen Link zurück zum Friendica-Beitrag hinzufügen" -#: wppost.php:116 +#: wppost.php:71 msgid "" "Text for the backlink, e.g. Read the original post and comment stream on " "Friendica." -msgstr "Text für den Link zurück, z.B. lies den Original-Post und die Kommentare auf Friendica." +msgstr "Text für den Link zurück, z.B. \"Lies den Original-Post und die Kommentare auf Friendica\"." -#: wppost.php:121 +#: wppost.php:72 msgid "Don't post messages that are too short" msgstr "Zu kurze Mitteilungen nicht posten" -#: wppost.php:127 -msgid "Save Settings" -msgstr "Einstellungen speichern" +#: wppost.php:77 +msgid "Wordpress Export" +msgstr "Wordpress-Export" -#: wppost.php:206 +#: wppost.php:182 msgid "Read the orig­i­nal post and com­ment stream on Friendica" msgstr "Lies den Original-Post und die Kommentare auf Friendica" -#: wppost.php:269 +#: wppost.php:240 msgid "Post from Friendica" msgstr "Post via Friendica" diff --git a/wppost/lang/de/strings.php b/wppost/lang/de/strings.php index 12f17e75..c109b311 100644 --- a/wppost/lang/de/strings.php +++ b/wppost/lang/de/strings.php @@ -6,15 +6,14 @@ function string_plural_select_de($n){ return intval($n != 1); }} $a->strings['Post to Wordpress'] = 'Bei WordPress veröffentlichen'; -$a->strings['Wordpress Export'] = 'Wordpress Export'; -$a->strings['Enable WordPress Post Addon'] = 'WordPress Addon aktivieren'; -$a->strings['WordPress username'] = 'WordPress-Benutzername'; -$a->strings['WordPress password'] = 'WordPress-Passwort'; +$a->strings['Enable Wordpress Post Addon'] = 'Wordpress-Addon aktivieren'; +$a->strings['Wordpress username'] = 'Wordpress-Benutzername'; +$a->strings['Wordpress password'] = 'Wordpress-Passwort'; $a->strings['WordPress API URL'] = 'WordPress-API-URL'; -$a->strings['Post to WordPress by default'] = 'Standardmäßig auf WordPress veröffentlichen'; +$a->strings['Post to Wordpress by default'] = 'Standardmäßig auf Wordpress veröffentlichen'; $a->strings['Provide a backlink to the Friendica post'] = 'Einen Link zurück zum Friendica-Beitrag hinzufügen'; -$a->strings['Text for the backlink, e.g. Read the original post and comment stream on Friendica.'] = 'Text für den Link zurück, z.B. lies den Original-Post und die Kommentare auf Friendica.'; +$a->strings['Text for the backlink, e.g. Read the original post and comment stream on Friendica.'] = 'Text für den Link zurück, z.B. "Lies den Original-Post und die Kommentare auf Friendica".'; $a->strings['Don\'t post messages that are too short'] = 'Zu kurze Mitteilungen nicht posten'; -$a->strings['Save Settings'] = 'Einstellungen speichern'; +$a->strings['Wordpress Export'] = 'Wordpress-Export'; $a->strings['Read the orig­i­nal post and com­ment stream on Friendica'] = 'Lies den Original-Post und die Kommentare auf Friendica'; $a->strings['Post from Friendica'] = 'Post via Friendica';