From 577102c4ec81169dbdb403de3567fee0cafb5c7b Mon Sep 17 00:00:00 2001 From: harukin Date: Mon, 19 Nov 2018 21:40:07 +0900 Subject: [PATCH 01/18] merge from upsream 3.8.5 release --- CHANGELOG | 9 +++++++++ Zotlabs/Module/Photos.php | 29 +++++++++++++++++++---------- boot.php | 2 +- include/items.php | 2 -- include/photo/photo_driver.php | 4 ++-- include/zot.php | 6 +++--- install/schema_mysql.sql | 6 +++--- install/schema_postgres.sql | 4 ++-- 8 files changed, 39 insertions(+), 23 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 59e8bdfc9..b11016eba 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,12 @@ +Hubzilla 3.8.5 (2018-11-19) + - Fix pconfig for new installs + - Fix delayed publication of posts in combination with channel clones + - Fix issue where photo filesize was not updated in the DB when a photo was edited + - Fix issue where the original photo size was not set correct in the DB + - Fix delivery issue in zot_fetch() + - Fix typo in channel reputation addon + + Hubzilla 3.8.4 (2018-11-14) - Fix xss issue (thanks to Eduardo) - Implement hook in enotify to be used by superblock diff --git a/Zotlabs/Module/Photos.php b/Zotlabs/Module/Photos.php index 03fd8a53d..21f6293ef 100644 --- a/Zotlabs/Module/Photos.php +++ b/Zotlabs/Module/Photos.php @@ -264,7 +264,7 @@ class Photos extends \Zotlabs\Web\Controller { } $x = q("update photo set edited = '%s', content = '%s', filesize = %d, height = %d, width = %d where resource_id = '%s' and uid = %d and imgscale = 0", - dbesc(datetime_convert()), + dbesc(datetime_convert()), dbescbin($data), intval($fsize), intval($height), @@ -278,10 +278,13 @@ class Photos extends \Zotlabs\Web\Controller { $width = $ph->getWidth(); $height = $ph->getHeight(); + $data = $ph->imageString(); + $fsize = strlen($data); - $x = q("update photo set edited = '%s', content = '%s', height = %d, width = %d where resource_id = '%s' and uid = %d and imgscale = 1", - dbesc(datetime_convert()), - dbescbin($ph->imageString()), + $x = q("update photo set edited = '%s', content = '%s', filesize = %d, height = %d, width = %d where resource_id = '%s' and uid = %d and imgscale = 1", + dbesc(datetime_convert()), + dbescbin($data), + intval($fsize), intval($height), intval($width), dbesc($resource_id), @@ -294,10 +297,13 @@ class Photos extends \Zotlabs\Web\Controller { $width = $ph->getWidth(); $height = $ph->getHeight(); + $data = $ph->imageString(); + $fsize = strlen($data); - $x = q("update photo set edited = '%s', content = '%s', height = %d, width = %d where resource_id = '%s' and uid = %d and imgscale = 2", - dbesc(datetime_convert()), - dbescbin($ph->imageString()), + $x = q("update photo set edited = '%s', content = '%s', filesize = %d, height = %d, width = %d where resource_id = '%s' and uid = %d and imgscale = 2", + dbesc(datetime_convert()), + dbescbin($data), + intval($fsize), intval($height), intval($width), dbesc($resource_id), @@ -310,10 +316,13 @@ class Photos extends \Zotlabs\Web\Controller { $width = $ph->getWidth(); $height = $ph->getHeight(); + $data = $ph->imageString(); + $fsize = strlen($data); - $x = q("update photo set edited = '%s', content = '%s', height = %d, width = %d where resource_id = '%s' and uid = %d and imgscale = 3", - dbesc(datetime_convert()), - dbescbin($ph->imageString()), + $x = q("update photo set edited = '%s', content = '%s', filesize = %d, height = %d, width = %d where resource_id = '%s' and uid = %d and imgscale = 3", + dbesc(datetime_convert()), + dbescbin($data), + intval($fsize), intval($height), intval($width), dbesc($resource_id), diff --git a/boot.php b/boot.php index f4ef1a036..cbaec7000 100755 --- a/boot.php +++ b/boot.php @@ -50,7 +50,7 @@ require_once('include/attach.php'); require_once('include/bbcode.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '3.8.4' ); +define ( 'STD_VERSION', '3.8.5' ); define ( 'ZOT_REVISION', '6.0a' ); define ( 'DB_UPDATE_VERSION', 1225 ); diff --git a/include/items.php b/include/items.php index cae380b01..d8a9e8e56 100755 --- a/include/items.php +++ b/include/items.php @@ -608,8 +608,6 @@ function get_item_elements($x,$allow_code = false) { $arr['created'] = datetime_convert('UTC','UTC',$x['created']); $arr['edited'] = datetime_convert('UTC','UTC',$x['edited']); - if($arr['created'] > datetime_convert()) - $arr['created'] = datetime_convert(); if($arr['edited'] > datetime_convert()) $arr['edited'] = datetime_convert(); diff --git a/include/photo/photo_driver.php b/include/photo/photo_driver.php index 4173d727e..b70a13622 100644 --- a/include/photo/photo_driver.php +++ b/include/photo/photo_driver.php @@ -413,7 +413,7 @@ abstract class photo_driver { intval($p['width']), (intval($p['os_storage']) ? dbescbin($p['os_syspath']) : dbescbin($this->imageString())), intval($p['os_storage']), - intval(strlen($this->imageString())), + (intval($p['os_storage']) ? @filesize($p['os_syspath']) : strlen($this->imageString())), intval($p['imgscale']), intval($p['photo_usage']), dbesc($p['title']), @@ -445,7 +445,7 @@ abstract class photo_driver { intval($p['width']), (intval($p['os_storage']) ? dbescbin($p['os_syspath']) : dbescbin($this->imageString())), intval($p['os_storage']), - intval(strlen($this->imageString())), + (intval($p['os_storage']) ? @filesize($p['os_syspath']) : strlen($this->imageString())), intval($p['imgscale']), intval($p['photo_usage']), dbesc($p['title']), diff --git a/include/zot.php b/include/zot.php index 49fc89e33..3ccf0a81f 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1187,13 +1187,13 @@ function zot_fetch($arr) { $zret = zot6_check_sig(); - if($zret['success'] && $zret['hubloc'] && $zret['hubloc']['hubloc_guid'] === $data['sender']['guid'] && $data['msg']) { + if($zret['success'] && $zret['hubloc'] && $zret['hubloc']['hubloc_guid'] === $arr['sender']['guid'] && $arr['msg']) { logger('zot6_delivery',LOGGER_DEBUG); - logger('zot6_data: ' . print_r($data,true),LOGGER_DATA); + logger('zot6_data: ' . print_r($arr,true),LOGGER_DATA); $ret['collected'] = true; - $import = [ 'success' => true, 'body' => json_encode( [ 'success' => true, 'pickup' => [ [ 'notify' => $data, 'message' => json_decode($data['msg'],true) ] ] ] ) ]; + $import = [ 'success' => true, 'body' => json_encode( [ 'success' => true, 'pickup' => [ [ 'notify' => $arr, 'message' => json_decode($arr['msg'],true) ] ] ] ) ]; $hubs = [ $zret['hubloc'] ] ; } diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index ef7e2a516..7b7d9cc3a 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -910,7 +910,6 @@ CREATE TABLE IF NOT EXISTS `outq` ( KEY `outq_priority` (`outq_priority`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; - CREATE TABLE IF NOT EXISTS pchan ( `pchan_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, `pchan_guid` char(191) NOT NULL DEFAULT '', @@ -922,15 +921,16 @@ CREATE TABLE IF NOT EXISTS pchan ( KEY `pchan_hash` (`pchan_hash`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; - CREATE TABLE IF NOT EXISTS `pconfig` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uid` int(11) NOT NULL DEFAULT 0 , `cat` char(191) NOT NULL DEFAULT '', `k` char(191) NOT NULL DEFAULT '', `v` mediumtext NOT NULL, + `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', PRIMARY KEY (`id`), - UNIQUE KEY `access` (`uid`,`cat`,`k`) + UNIQUE KEY `access` (`uid`,`cat`,`k`), + KEY `pconfig_updated` (`updated`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `photo` ( diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index cb4476628..fd827978c 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -891,7 +891,6 @@ create index "outq_async" on outq ("outq_async"); create index "outq_delivered" on outq ("outq_delivered"); create index "outq_priority" on outq ("outq_priority"); - CREATE TABLE "pchan" ( "pchan_id" serial NOT NULL, "pchan_guid" text NOT NULL, @@ -900,7 +899,6 @@ CREATE TABLE "pchan" ( "pchan_prvkey" text NOT NULL, PRIMARY KEY ("pchan_id") ); - create index "pchan_guid" on pchan ("pchan_guid"); create index "pchan_hash" on pchan ("pchan_hash"); @@ -910,9 +908,11 @@ CREATE TABLE "pconfig" ( "cat" text NOT NULL, "k" text NOT NULL, "v" text NOT NULL, + "updated" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', PRIMARY KEY ("id"), UNIQUE ("uid","cat","k") ); +create index "pconfig_updated_idx" on pconfig ("updated"); CREATE TABLE "photo" ( "id" serial NOT NULL, From a761f9eb559c38a89022e598944f1a04e19a4426 Mon Sep 17 00:00:00 2001 From: harukin Date: Thu, 31 Jan 2019 16:57:50 +0900 Subject: [PATCH 02/18] =?UTF-8?q?=E6=97=A5=E6=9C=AC=E8=AA=9E=E3=81=AE?= =?UTF-8?q?=E5=AE=9F=E8=A3=85(=E6=9A=AB=E5=AE=9A=E7=9A=84)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- images/emoji/OSUSHI!.svg | 1 + view/ja/hstrings.php | 3347 ++++++++++++++++++++++++++++++++++++++ view/ja/strings.php | 1865 +++++++++++++++++++++ 3 files changed, 5213 insertions(+) create mode 100644 images/emoji/OSUSHI!.svg create mode 100644 view/ja/hstrings.php create mode 100644 view/ja/strings.php diff --git a/images/emoji/OSUSHI!.svg b/images/emoji/OSUSHI!.svg new file mode 100644 index 000000000..eed2b88c9 --- /dev/null +++ b/images/emoji/OSUSHI!.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/view/ja/hstrings.php b/view/ja/hstrings.php new file mode 100644 index 000000000..d7adc8f9e --- /dev/null +++ b/view/ja/hstrings.php @@ -0,0 +1,3347 @@ += 2 && $n % 10 <= 4 && ($n % 100 < 12 || $n % 100 > 14) ? 1 : 2)); + } +} +App::$rtl = 0; +App::$strings["Source channel not found."] = "ソースチャンネルがみつかりません。"; +App::$strings["lonely"] = ""; +App::$strings["drunk"] = ""; +App::$strings["horny"] = ""; +App::$strings["stoned"] = ""; +App::$strings["fucked up"] = ""; +App::$strings["clusterfucked"] = ""; +App::$strings["crazy"] = ""; +App::$strings["hurt"] = ""; +App::$strings["sleepy"] = ""; +App::$strings["grumpy"] = ""; +App::$strings["high"] = ""; +App::$strings["semi-conscious"] = ""; +App::$strings["in love"] = ""; +App::$strings["in lust"] = ""; +App::$strings["naked"] = ""; +App::$strings["stinky"] = ""; +App::$strings["sweaty"] = ""; +App::$strings["bleeding out"] = ""; +App::$strings["victorious"] = ""; +App::$strings["defeated"] = ""; +App::$strings["envious"] = ""; +App::$strings["jealous"] = ""; +App::$strings["Post to Dreamwidth"] = ""; +App::$strings["Enable Dreamwidth Post Plugin"] = ""; +App::$strings["No"] = "No"; +App::$strings["Yes"] = "Yes"; +App::$strings["Dreamwidth username"] = ""; +App::$strings["Dreamwidth password"] = ""; +App::$strings["Post to Dreamwidth by default"] = ""; +App::$strings["Dreamwidth Post Settings"] = ""; +App::$strings["Submit"] = "送信"; +App::$strings["Markdown"] = "まーくだうん"; +App::$strings["Use markdown for editing posts"] = "ポストの編集にMarkdownを使用する"; +App::$strings["You're welcome."] = "ようこそ!"; +App::$strings["Ah shucks..."] = ""; +App::$strings["Don't mention it."] = "これにメンションしないで"; +App::$strings["<blush>"] = ""; +App::$strings["Send test email"] = "テストメールを送信"; +App::$strings["No recipients found."] = ""; +App::$strings["Mail sent."] = "メールを送信しました。"; +App::$strings["Sending of mail failed."] = "メールの送信に失敗しました。"; +App::$strings["Mail Test"] = "メールテスト"; +App::$strings["Message subject"] = "メッセージのタイトル"; +App::$strings["Project Servers and Resources"] = "プロジェクトサーバーとリソース"; +App::$strings["Project Creator and Tech Lead"] = ""; +App::$strings["Admin, developer, directorymin, support bloke"] = ""; +App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = ""; +App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = "Redmatrix/hubzillaプロジェクトは寄付によって成り立っています"; +App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - you do.)"] = "企業の資金や広告はありません。また、個人情報を収集して販売することはありません。 (私たちはあなたの個人情報を管理していません。)"; +App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "分散化、Web ID、およびプライバシーに関する当社の革新的な作業を支援します。"; +App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "あなたの寄付はサーバーとサービスを稼働させ続け、革新的な新機能と継続的な開発を提供するのにも役立ちます。"; +App::$strings["Donate"] = "寄付"; +App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "1回限りの寄付で支援するプロジェクト、開発者、または公共の拠点を選択してください"; +App::$strings["Donate Now"] = "今寄付する"; +App::$strings["Or become a project sponsor (Hubzilla Project only)"] = "またはプロジェクトのスポンサーになる(Hubzillaプロジェクトのみ)"; +App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "あなたが私たちのスポンサーリストにあなたのファーストネームまたはフルネーム(あるいはニックネーム)を載せて欲しいかどうかも明記してください。"; +App::$strings["Sponsor"] = "スポンサー"; +App::$strings["Special thanks to: "] = "スペシャルサンクス : "; +App::$strings["Currently blocked"] = "現在のブロック"; +App::$strings["No channels currently blocked"] = "現在ブロックしているチャンネルはありません。"; +App::$strings["Remove"] = "削除"; +App::$strings["Superblock Settings"] = "Superblockの設定"; +App::$strings["Block Completely"] = "完璧にブロック"; +App::$strings["superblock settings updated"] = "Superblockの設定は更新されました。"; +App::$strings["XMPP settings updated."] = "XMPPの設定は更新されました。"; +App::$strings["Enable Chat"] = "チャットの有効化"; +App::$strings["Individual credentials"] = "アクセス権限の設定"; +App::$strings["Jabber BOSH server"] = ""; +App::$strings["XMPP Settings"] = "XMPPの設定"; +App::$strings["Save Settings"] = "設定の保存"; +App::$strings["Jabber BOSH host"] = ""; +App::$strings["Use central userbase"] = ""; +App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = ""; +App::$strings["Settings updated."] = "設定は更新されました"; +App::$strings["Send email to all members"] = "全てのメンバーにメールを送信する"; +App::$strings["%s Administrator"] = "%sのアドミン"; +App::$strings["%1\$d of %2\$d messages sent."] = "%"; +App::$strings["Send email to all hub members."] = "hubの全てのメンバーへメールを送信しました。"; +App::$strings["Sender Email address"] = "送信者のメールアドレス"; +App::$strings["Test mode (only send to hub administrator)"] = "テストモード (hubのアドミンにのみ送信されます)"; +App::$strings["Report Bug"] = "バグ報告"; +App::$strings["Post to Insanejournal"] = ""; +App::$strings["Enable InsaneJournal Post Plugin"] = ""; +App::$strings["InsaneJournal username"] = ""; +App::$strings["InsaneJournal password"] = ""; +App::$strings["Post to InsaneJournal by default"] = ""; +App::$strings["InsaneJournal Post Settings"] = ""; +App::$strings["Insane Journal Settings saved."] = ""; +App::$strings["Hubzilla Directory Stats"] = "Hubzilla ディレクトリ ステータス"; +App::$strings["Total Hubs"] = "全てのhub"; +App::$strings["Hubzilla Hubs"] = ""; +App::$strings["Friendica Hubs"] = ""; +App::$strings["Diaspora Pods"] = ""; +App::$strings["Hubzilla Channels"] = "Hubzillaチャンネル"; +App::$strings["Friendica Channels"] = "Friendicaチャンネル"; +App::$strings["Diaspora Channels"] = "Diasporaチャンネル"; +App::$strings["Aged 35 and above"] = "年齢 : 35歳やそれ以上"; +App::$strings["Aged 34 and under"] = "年齢 : 34歳やそれ以下"; +App::$strings["Average Age"] = "平均年齢"; +App::$strings["Known Chatrooms"] = "既知のチャットルーム"; +App::$strings["Known Tags"] = "既知のタグ"; +App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = ""; +App::$strings["Invalid game."] = ""; +App::$strings["You are not a player in this game."] = "あなたはこのゲームのプレーヤーではありません。"; +App::$strings["You must be a local channel to create a game."] = "あなたがゲームを作成するためにはローカルチャンネルに移動する必要があります。"; +App::$strings["You must select one opponent that is not yourself."] = "相手を選んでください。"; +App::$strings["Random color chosen."] = "ランダムにカラーを選択しました。"; +App::$strings["Error creating new game."] = "ゲーム作成のエラーです"; +App::$strings["Requested channel is not available."] = "リクエストされたチャンネルは存在しません。"; +App::$strings["You must select a local channel /chess/channelname"] = "ローカルチャンネルを選択する必要があります /chess/channelname"; +App::$strings["You must be logged in to see this page."] = "このページを表示するにはログインする必要があります。"; +App::$strings["Enable notifications"] = "通知の有効化"; +App::$strings["Planets Settings updated."] = "Planetsの設定は適用されました。"; +App::$strings["Enable Planets Plugin"] = "Planetsプラグインの有効化"; +App::$strings["Planets Settings"] = "Planetsの設定"; +App::$strings["Post to Libertree"] = ""; +App::$strings["Enable Libertree Post Plugin"] = "Libertreeプラグインの有効化"; +App::$strings["Libertree API token"] = ""; +App::$strings["Libertree site URL"] = ""; +App::$strings["Post to Libertree by default"] = ""; +App::$strings["Libertree Post Settings"] = ""; +App::$strings["Libertree Settings saved."] = ""; +App::$strings["Only authenticate automatically to sites of your friends"] = ""; +App::$strings["By default you are automatically authenticated anywhere in the network"] = "По умолчанию вы автоматически аутентифицируетесь во всей сети"; +App::$strings["Authchoose Settings"] = "Настройки выбора аутентификации"; +App::$strings["Atuhchoose Settings updated."] = "Настройки выбора аутентификации обновлены."; +App::$strings["Logfile archive directory"] = "Каталог архивирования журнала"; +App::$strings["Directory to store rotated logs"] = "Каталог для хранения заархивированных журналов"; +App::$strings["Logfile size in bytes before rotating"] = "Размер файла журнала в байтах для архивирования"; +App::$strings["Number of logfiles to retain"] = "Количество сохраняемых файлов журналов"; +App::$strings["QR code"] = "QR-код"; +App::$strings["QR Generator"] = "Генератор QR-кодов"; +App::$strings["Enter some text"] = "Введите любой текст"; +App::$strings["text to include in all outgoing posts from this site"] = "текст, который будет добавлен во все исходящие публикации с этого сайта"; +App::$strings["file"] = "файл"; +App::$strings["Permission denied"] = "Доступ запрещен"; +App::$strings["Redmatrix File Storage Import"] = "Импорт файлового хранилища Redmatrix"; +App::$strings["This will import all your Redmatrix cloud files to this channel."] = "Это позволит импортировать все ваши файлы в Redmatrix в этот канал."; +App::$strings["Redmatrix Server base URL"] = "Базовый URL сервера Redmatrix"; +App::$strings["Redmatrix Login Username"] = "Имя пользователя Redmatrix"; +App::$strings["Redmatrix Login Password"] = "Пароль Redmatrix"; +App::$strings["Deactivate the feature"] = ""; +App::$strings["Hide the button and show the smilies directly."] = ""; +App::$strings["Smileybutton Settings"] = ""; +App::$strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Этот плагин просматривает публикации для слов / текста, которые вы указываете ниже, и сворачивает любой контент, содержащий эти ключевые слова, поэтому он не отображается в неподходящее время, например, сексуальные инсинуации, которые могут быть неправильными в настройке работы. Например, мы рекомендуем отмечать любой контент, содержащий наготу, тегом #NSFW. Этот фильтр также способен реагировать на любое другое указанное вами слово / текст и может использоваться в качестве фильтра содержимого общего назначения."; +App::$strings["Enable Content filter"] = "コンテンツフィルターの有効化"; +App::$strings["Comma separated list of keywords to hide"] = "Список ключевых слов для скрытия, через запятую"; +App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "слово, /регулярное_выражение/, lang=xx, lang!=xx"; +App::$strings["Not Safe For Work Settings"] = "Настройка \"Not Safe For Work\""; +App::$strings["General Purpose Content Filter"] = "Фильтр содержимого общего назначения"; +App::$strings["NSFW Settings saved."] = "Настройки NSFW сохранены."; +App::$strings["Possible adult content"] = "Возможно содержимое для взрослых"; +App::$strings["%s - view"] = "%s - 表示"; +App::$strings["Flattr this!"] = ""; +App::$strings["Flattr widget settings updated."] = ""; +App::$strings["Flattr user"] = ""; +App::$strings["URL of the Thing to flattr"] = ""; +App::$strings["If empty channel URL is used"] = ""; +App::$strings["Title of the Thing to flattr"] = ""; +App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = ""; +App::$strings["Static or dynamic flattr button"] = ""; +App::$strings["static"] = ""; +App::$strings["dynamic"] = ""; +App::$strings["Alignment of the widget"] = ""; +App::$strings["left"] = ""; +App::$strings["right"] = ""; +App::$strings["Enable Flattr widget"] = ""; +App::$strings["Flattr Widget Settings"] = ""; +App::$strings["Permission denied."] = "権限がありません。"; +App::$strings["You are now authenticated to pumpio."] = "Вы аутентифицированы в Pump.io"; +App::$strings["return to the featured settings page"] = "Вернутся к странице настроек"; +App::$strings["Post to Pump.io"] = "Опубликовать в Pump.io"; +App::$strings["Pump.io servername"] = "Имя сервера Pump.io"; +App::$strings["Without \"http://\" or \"https://\""] = "Без \"http://\" или \"https://\""; +App::$strings["Pump.io username"] = "Имя пользователя Pump.io"; +App::$strings["Without the servername"] = "без имени сервера"; +App::$strings["You are not authenticated to pumpio"] = "Вы не аутентифицированы на Pump.io"; +App::$strings["(Re-)Authenticate your pump.io connection"] = "Аутентифицировать (повторно) ваше соединение с Pump.io"; +App::$strings["Enable pump.io Post Plugin"] = "Включить плагин публикаций Pump.io"; +App::$strings["Post to pump.io by default"] = "Публиковать в Pump.io по умолчанию"; +App::$strings["Should posts be public"] = "Публикации должны быть общедоступными"; +App::$strings["Mirror all public posts"] = "Отображать все общедоступные публикации"; +App::$strings["Pump.io Post Settings"] = "Настройки публикаций в Pump.io"; +App::$strings["PumpIO Settings saved."] = "Настройки публикаций в Pump.io сохранены."; +App::$strings["Save Bookmarks"] = "ブックマークに保存する"; +App::$strings["Status:"] = "配偶者:"; +App::$strings["Activate addon"] = "Активировать расширение"; +App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = "Скрыть виджет чата Jappixmini из веб-интерфейса"; +App::$strings["Jabber username"] = "Имя пользователя Jabber"; +App::$strings["Jabber server"] = "Сервер Jabber"; +App::$strings["Jabber BOSH host URL"] = "URL узла Jabber BOSH"; +App::$strings["Jabber password"] = "Пароль Jabber"; +App::$strings["Encrypt Jabber password with Hubzilla password"] = "Зашифровать пароль Jabber с помощью пароля Hubzilla"; +App::$strings["Recommended"] = "オンを推奨"; +App::$strings["Hubzilla password"] = ""; +App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = "Утверждать запросы на подписку от контактов Hubzilla автоматически"; +App::$strings["Purge internal list of jabber addresses of contacts"] = "Очистить внутренний список адресов контактов Jabber"; +App::$strings["Configuration Help"] = "Помощь по конфигурации"; +App::$strings["Add Contact"] = "Добавить контакт"; +App::$strings["Jappix Mini Settings"] = "Настройки Jappix Mini"; +App::$strings["Post to LiveJournal"] = "Опубликовать в LiveJournal"; +App::$strings["Enable LiveJournal Post Plugin"] = "Включить плагин публикаций LiveJournal"; +App::$strings["LiveJournal username"] = "Имя пользователя LiveJournal"; +App::$strings["LiveJournal password"] = "Пароль LiveJournal"; +App::$strings["Post to LiveJournal by default"] = "Публиковать в LiveJournal по умолчанию"; +App::$strings["LiveJournal Post Settings"] = "Настройки публикаций в LiveJournal"; +App::$strings["LiveJournal Settings saved."] = "Настройки LiveJournal сохранены."; +App::$strings["Errors encountered deleting database table "] = "Возникшие при удалении таблицы базы данных ошибки"; +App::$strings["Submit Settings"] = "Отправить настройки"; +App::$strings["Drop tables when uninstalling?"] = "Удалить таблицы при деинсталляции?"; +App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "Если включено, то таблицы базы данных Rendezvous будут удалены при удалении плагина."; +App::$strings["Mapbox Access Token"] = "Токен доступа к Mapbox"; +App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = "Если вы введете токен доступа к Mapbox, он будет использоваться для извлечения фрагментов карты из Mapbox вместо стандартного сервера OpenStreetMap."; +App::$strings["Rendezvous"] = ""; +App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "Этот идентификатор был удалён другим участником из-за неактивности. Пожалуйста нажмите кнопку \"Новый идентификатор\" для обновления страницы и получения нового идентификатора. Вы можете использовать то же имя."; +App::$strings["Welcome to Rendezvous!"] = "Добро пожаловать в Rendezvous!"; +App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "Введите ваше имя для вступления в это Rendezvous. Для того, чтобы делиться вашим положением с другими участниками, нажмите \"GPS control\". Когда ваше местоположение определно, красная точка появится и остальные смогут увидеть вас на карте."; +App::$strings["Let's meet here"] = "Давайте встретимся здесь"; +App::$strings["Name"] = "名前"; +App::$strings["Description"] = "説明"; +App::$strings["New marker"] = "Новый маркер"; +App::$strings["Edit marker"] = "Редактировать маркер"; +App::$strings["New identity"] = "Новый идентификатор"; +App::$strings["Delete marker"] = "Удалить маркер"; +App::$strings["Delete member"] = "Удалить участника"; +App::$strings["Edit proximity alert"] = "Изменить оповещение о близости"; +App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = "Оповещение о близости будет произведено, если этот участник находится на определённом расстоянии от вас.

Введите радиус в метрах (0 для отключения):"; +App::$strings["distance"] = "расстояние"; +App::$strings["Proximity alert distance (meters)"] = "Расстояние для уведомления о близости (метров)"; +App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = "Оповещение о близости будет произведено, если вы находитесь на определённом расстоянии местоположения маркера.

Введите радиус в метрах (0 для отключения):"; +App::$strings["Marker proximity alert"] = "Маркер уведомления о близости"; +App::$strings["Reminder note"] = "Напоминание"; +App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "Введите сообщение для отображения когда вы находитесь рядом"; +App::$strings["Add new rendezvous"] = "Добавить новое Rendezvous."; +App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "Создайте новое Rendezvous и поделитесь ссылкой доступа с теми, кого вы хотите пригласить в группу. Тот, кто откроет эту ссылку, станет её участником. Участники могут видеть местоположение, добавлять маркеры на карту или делится своим собственным местоположением с группой."; +App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "У вас нет Rendezvous. Нажмите на кнопку ниже чтобы создать его!"; +App::$strings["Errors encountered creating database tables."] = ""; +App::$strings["View Larger"] = "大きく見る"; +App::$strings["Tile Server URL"] = "URL сервера Tile"; +App::$strings["A list of public tile servers"] = "Список общедоступных серверов"; +App::$strings["Nominatim (reverse geocoding) Server URL"] = "URL сервера Nominatim (обратное геокодирование)"; +App::$strings["A list of Nominatim servers"] = "Список серверов Nominatim"; +App::$strings["Default zoom"] = "Масштаб по умолчанию"; +App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "Уровень размера по умолчанию (1 - весь мир, 18 - максимальный; зависит от сервера)."; +App::$strings["Include marker on map"] = "Включите маркер на карте"; +App::$strings["Include a marker on the map."] = "Включить маркер на карте"; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Мы столкнулись с проблемой входа с предоставленным вами OpenID. Пожалуйста, проверьте корректность его написания."; +App::$strings["The error message was:"] = "Сообщение об ошибке было:"; +App::$strings["OpenID protocol error. No ID returned."] = "Ошибка протокола OpenID. Идентификатор не возвращён."; +App::$strings["Welcome %s. Remote authentication successful."] = "Добро пожаловать %s. Удаленная аутентификация успешно завершена."; +App::$strings["Login failed."] = "Не удалось войти."; +App::$strings["First Name"] = "Имя"; +App::$strings["Last Name"] = "Фамилия"; +App::$strings["Nickname"] = ""; +App::$strings["Full Name"] = "フルネーム"; +App::$strings["Email"] = ""; +App::$strings["Profile Photo"] = "Фотография профиля"; +App::$strings["Profile Photo 16px"] = "Фотография профиля 16px"; +App::$strings["Profile Photo 32px"] = "Фотография профиля 32px"; +App::$strings["Profile Photo 48px"] = "Фотография профиля 48px"; +App::$strings["Profile Photo 64px"] = "Фотография профиля 64px"; +App::$strings["Profile Photo 80px"] = "Фотография профиля 80px"; +App::$strings["Profile Photo 128px"] = "Фотография профиля 128px"; +App::$strings["Timezone"] = "Часовой пояс"; +App::$strings["Homepage URL"] = "ホームページのURL"; +App::$strings["Language"] = "言語"; +App::$strings["Birth Year"] = "Год рождения"; +App::$strings["Birth Month"] = "Месяц рождения"; +App::$strings["Birth Day"] = "День рождения"; +App::$strings["Birthdate"] = "Дата рождения"; +App::$strings["Gender"] = "Гендер"; +App::$strings["Male"] = "男性"; +App::$strings["Female"] = "女性"; +App::$strings["Your Webbie:"] = "Ваш Webbie:"; +App::$strings["Fontsize (px):"] = "Размер шрифта (px):"; +App::$strings["Link:"] = "Ссылка:"; +App::$strings["Like us on Hubzilla"] = "Нравится на Hubzilla"; +App::$strings["Embed:"] = "Встроить:"; +App::$strings["Extended Identity Sharing"] = "Расширенный обмен идентификацией"; +App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "Поделиться вашим идентификатором на всех веб-сайтах в Интернет. Если выключено, то идентификатор доступен только для сайтов \$Projectname."; +App::$strings["An account has been created for you."] = "Учётная запись, которая была для вас создана."; +App::$strings["Authentication successful but rejected: account creation is disabled."] = "Аутентификация выполнена успешно, но отклонена: создание учетной записи отключено."; +App::$strings["Post to Twitter"] = "Опубликовать в Twitter"; +App::$strings["Twitter settings updated."] = "Настройки Twitter обновлены"; +App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Не найдено пары ключей для Twitter. Пожалуйста, свяжитесь с администратором сайта."; +App::$strings["At this Hubzilla instance the Twitter plugin 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."] = ""; +App::$strings["Log in with Twitter"] = "Войти в Twitter"; +App::$strings["Copy the PIN from Twitter here"] = ""; +App::$strings["Currently connected to: "] = "В настоящее время подключён к:"; +App::$strings["Note: Due 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."] = "Замечание: Из-за настроек конфиденциальности (скрыть данные своего профиля от неизвестных зрителей?) cсылка, потенциально включенная в общедоступные публикации, переданные в Twitter, приведет посетителя к пустой странице, информирующей его о том, что доступ к вашему профилю был ограничен."; +App::$strings["Allow posting to Twitter"] = "Разрешить публиковать в Twitter"; +App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи Twitter"; +App::$strings["Twitter post length"] = "Длина публикации Twitter"; +App::$strings["Maximum tweet length"] = "Максимальная длина твита"; +App::$strings["Send public postings to Twitter by default"] = "Отправлять общедоступные публикации в Twitter по умолчанию"; +App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи Twitter по умолчанию"; +App::$strings["Clear OAuth configuration"] = "Очистить конфигурацию OAuth"; +App::$strings["Twitter Post Settings"] = ""; +App::$strings["Consumer Key"] = "Ключ клиента"; +App::$strings["Consumer Secret"] = "Код клиента"; +App::$strings["Flag Adult Photos"] = "Пометка фотографий для взрослых"; +App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Предоставьте возможность редактирования фотографий, чтобы скрыть неприемлемые фотографии из альбома по умолчанию"; +App::$strings["Unknown"] = "Неизвестный"; +App::$strings["ActivityPub"] = ""; +App::$strings["photo"] = "画像"; +App::$strings["status"] = "投稿"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$sが%2\$sの%3\$sにいいね!しました。"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s わるいね! %2\$s %3\$s"; +App::$strings["ActivityPub Protocol Settings updated."] = "Настройки протокола ActivityPub обновлены."; +App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Activity pub プロトコルはNomadic Identityをサポートしていません。チャンネルのクローン先からは投稿の表示をすることはできなくなっています。"; +App::$strings["Enable the ActivityPub protocol for this channel"] = "このチャンネルでActivity pubを有効化する"; +App::$strings["Deliver to ActivityPub recipients in privacy groups"] = "Activitypubユーザーの含まれるプライバシーグループの範囲選択時でも送信する"; +App::$strings["May result in a large number of mentions and expose all the members of your privacy group"] = "投稿は大量のメンション、ダイレクトメッセージで構成されることになるはずです。"; +App::$strings["Send multi-media HTML articles"] = "Multi-media HTML articlesを送信する"; +App::$strings["Not supported by some microblog services such as Mastodon"] = "Mastodonのようないくつかのマイクロブログサービスはこの機能をサポートしていません。"; +App::$strings["ActivityPub Protocol Settings"] = "ActivityPubの設定"; +App::$strings["No username found in import file."] = "インポートファイルにユーザー名がありません。"; +App::$strings["Unable to create a unique channel address. Import failed."] = "ユニークなチャンネルアドレスの作成に失敗しました。インポートに失敗しました。"; +App::$strings["Import completed."] = "インポートが完了しました。"; +App::$strings["\$projectname"] = ""; +App::$strings["Diaspora Protocol Settings updated."] = "Настройки протокола Diaspora обновлены."; +App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Прокол Diaspora не поддерживает независимость от расположения. Ваши контакты установленные в этой сети могут быть недоступны из альтернативных мест размещения канала."; +App::$strings["Enable the Diaspora protocol for this channel"] = "Включить протокол Diaspora для этого канала"; +App::$strings["Allow any Diaspora member to comment on your public posts"] = "Разрешить любому участнику Diaspora комментировать ваши общедоступные публикации"; +App::$strings["Prevent your hashtags from being redirected to other sites"] = "Предотвратить перенаправление тегов на другие сайты"; +App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Подписывать и отправлять публикации и комментарии с несуществующей подписью Diaspora"; +App::$strings["Followed hashtags (comma separated, do not include the #)"] = "Отслеживаемые теги (через запятую, исключая #)"; +App::$strings["Diaspora Protocol Settings"] = "Настройки протокола Diaspora"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s посещает %2\$s%3\$s"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s не посещает %2\$s%3\$s"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s может посетить %2\$s%3\$s"; +App::$strings["System defaults:"] = "Системные по умолчанию:"; +App::$strings["Preferred Clipart IDs"] = "Предпочитаемый Clipart ID"; +App::$strings["List of preferred clipart ids. These will be shown first."] = "Список предпочитаемых Clipart ID. Эти будут показаны первыми."; +App::$strings["Default Search Term"] = "Условие поиска по умолчанию"; +App::$strings["The default search term. These will be shown second."] = "Условие поиска по умолчанию. Показываются во вторую очередь."; +App::$strings["Return After"] = "Вернуться после"; +App::$strings["Page to load after image selection."] = "Страница для загрузки после выбора изображения."; +App::$strings["View Profile"] = "ユーザー情報"; +App::$strings["Edit Profile"] = "Edit Profile"; +App::$strings["Profile List"] = "Список профилей"; +App::$strings["Order of Preferred"] = "Порядок предпочтения"; +App::$strings["Sort order of preferred clipart ids."] = "Порядок сортировки предпочитаемых Clipart ID. "; +App::$strings["Newest first"] = "Новое первым"; +App::$strings["As entered"] = "По мере ввода"; +App::$strings["Order of other"] = "Порядок других"; +App::$strings["Sort order of other clipart ids."] = "Порядок сортировки остальных Clipart ID."; +App::$strings["Most downloaded first"] = "Самое загружаемое первым"; +App::$strings["Most liked first"] = "Самое нравящееся первым"; +App::$strings["Preferred IDs Message"] = "Сообщение от предпочитаемых ID"; +App::$strings["Message to display above preferred results."] = "Отображаемое сообщение над предпочитаемыми результатами."; +App::$strings["Uploaded by: "] = "Загружено:"; +App::$strings["Drawn by: "] = "Нарисовано:"; +App::$strings["Use this image"] = "Использовать это изображение"; +App::$strings["Or select from a free OpenClipart.org image:"] = "Или выберите из бесплатных изображений на OpenClipart.org"; +App::$strings["Search Term"] = "Условие поиска"; +App::$strings["Unknown error. Please try again later."] = "Неизвестная ошибка. Пожалуйста, повторите попытку позже."; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "もし写真の変更後に反映されていない場合はキャッシュを削除してページを再読み込みしてみてください。"; +App::$strings["Profile photo updated successfully."] = "Фотография профиля обновлена успешно."; +App::$strings["Edit your profile and change settings."] = "Отредактировать ваш профиль и изменить настройки."; +App::$strings["Click here to see activity from your connections."] = "Нажмите сюда для отображения активности ваши контактов."; +App::$strings["Click here to see your channel home."] = "Нажмите сюда чтобы увидеть главную страницу вашего канала."; +App::$strings["You can access your private messages from here."] = "Вы можете получить доступ с личной переписке здесь."; +App::$strings["Create new events here."] = "Создать новое событие здесь."; +App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = "Вы можете подключать новые контакты и менять разрешения для существующих здесь. Также вы можете создавать их группы."; +App::$strings["System notifications will arrive here"] = "届いた通知はここに表示されます。"; +App::$strings["Search for content and users"] = "Поиск пользователей и содержимого"; +App::$strings["Browse for new contacts"] = "Поиск новых контактов"; +App::$strings["Launch installed apps"] = "インストール済みのアプリを起動する"; +App::$strings["Looking for help? Click here."] = "Нужна помощь? Нажмите сюда."; +App::$strings["New events have occurred in your network. Click here to see what has happened!"] = "Новые события произошли в вашей сети. Нажмите здесь для того, чтобы знать что случилось!"; +App::$strings["You have received a new private message. Click here to see from who!"] = "Вы получили новое личное сообщение. Нажмите чтобы увидеть от кого!"; +App::$strings["There are events this week. Click here too see which!"] = "На этой неделе есть события. Нажмите здесь чтобы увидеть какие!"; +App::$strings["You have received a new introduction. Click here to see who!"] = "Вы были представлены. Нажмите чтобы увидеть кому!"; +App::$strings["There is a new system notification. Click here to see what has happened!"] = "Это новое системное уведомление. Нажмите чтобы посмотреть что случилось!"; +App::$strings["Click here to share text, images, videos and sound."] = "Нажмите сюда чтобы поделиться текстом, изображениями, видео или треком."; +App::$strings["You can write an optional title for your update (good for long posts)."] = "Вы можете написать необязательный заголовок для вашей публикации (желательно для больших постов)."; +App::$strings["Entering some categories here makes it easier to find your post later."] = "Введите категории здесь чтобы было проще найти вашу публикацию позднее."; +App::$strings["Share photos, links, location, etc."] = "Поделиться фотографией, ссылками, местоположение и т.п."; +App::$strings["Only want to share content for a while? Make it expire at a certain date."] = "Хотите только поделиться временным содержимым? Установите срок его действия."; +App::$strings["You can password protect content."] = "Вы можете защитить содержимое паролем."; +App::$strings["Choose who you share with."] = "Выбрать с кем поделиться."; +App::$strings["Click here when you are done."] = "Нажмите здесь когда закончите."; +App::$strings["Adjust from which channels posts should be displayed."] = "Настройте из каких каналов должны отображаться публикации."; +App::$strings["Only show posts from channels in the specified privacy group."] = "Показывать только публикации из определённой группы безопасности."; +App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = "Лёгкий поиск сообщения, содержащего теги (ключевые слова, которым предшествует символ #)."; +App::$strings["Easily find posts in given category."] = "Лёгкий поиск публикаций в данной категории."; +App::$strings["Easily find posts by date."] = "Лёгкий поиск публикаций по дате."; +App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = "Рекомендуемые пользователи, которые были представлены в качестве предложений, и которые, по нашему мнению, могут оказаться интересными."; +App::$strings["Here you see channels you have connected to."] = "Здесь вы видите каналы, к которым вы подключились."; +App::$strings["Save your search so you can repeat it at a later date."] = "Сохраните ваш поиск с тем, чтобы повторить его позже."; +App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = "Если вы видите этот значок, вы можете быть уверены, что отправитель - это тот, кто это говорит. Это нормально, что не всегда можно проверить отправителя, поэтому значок иногда будет отсутствовать. Обычно об этом не нужно беспокоиться."; +App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "Опасность! Кажется, кто-то пытался подделать сообщение! Это сообщение не обязательно от того, от кого оно значится!"; +App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

You can also advance by pressing the return key"] = "Добро пожаловать в Hubzilla! Желаете получить обзор пользовательского интерфейса?

Вы можете его приостановаить и в любое время перезагрузив страницу или перейдя на другую.

Также вы можете нажать клавишу \"Назад\""; +App::$strings["Some setting"] = ""; +App::$strings["A setting"] = ""; +App::$strings["Skeleton Settings"] = ""; +App::$strings["Show Upload Limits"] = "Показать ограничения на загрузку"; +App::$strings["Hubzilla configured maximum size: "] = "Максимальный размер настроенный в Hubzilla:"; +App::$strings["PHP upload_max_filesize: "] = ""; +App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = ""; +App::$strings["GNU-Social Protocol Settings updated."] = "Настройки протокола GNU Social обновлены."; +App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Прокол GNU Social не поддерживает независимость от расположения. Ваши контакты установленные в этой сети могут быть недоступны из альтернативных мест размещения канала."; +App::$strings["Enable the GNU-Social protocol for this channel"] = "Включить протокол GNU Social для этого канала"; +App::$strings["GNU-Social Protocol Settings"] = "Настройки протокола GNU Social"; +App::$strings["Follow"] = "Отслеживать"; +App::$strings["%1\$s is now following %2\$s"] = "%1\$s сейчас отслеживает %2\$s"; +App::$strings["Gallery"] = "ギャラリー"; +App::$strings["Photo Gallery"] = "フォトギャラリー"; +App::$strings["Page to load after login"] = "ページはログインの後に表示されます。"; +App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = "Примеры: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (оставьте пустым для для страницы сети по умолчанию)."; +App::$strings["Startpage Settings"] = "Настройки стартовой страницы"; +App::$strings["Message to display on every page on this server"] = ""; +App::$strings["Pageheader Settings"] = ""; +App::$strings["pageheader Settings saved."] = ""; +App::$strings["Three Dimensional Tic-Tac-Toe"] = "Tic-Tac-Toe в трёх измерениях"; +App::$strings["3D Tic-Tac-Toe"] = ""; +App::$strings["New game"] = "Новая игра"; +App::$strings["New game with handicap"] = "Новая игра с форой"; +App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Трехмерный Tic-Tac-Toe похож на традиционную игру, за исключением того, что игра идёт на нескольких уровнях одновременно."; +App::$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."] = "Имеется три уровня. Вы выигрываете, получая три подряд на любом уровне, а также вверх, вниз и по диагонали на разных уровнях."; +App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Игра с форой отключает центральную позицию на среднем уровне, потому что игрок, претендующий на этот квадрат, часто имеет несправедливое преимущество."; +App::$strings["You go first..."] = "Вы начинаете..."; +App::$strings["I'm going first this time..."] = "На этот раз начинаю я..."; +App::$strings["You won!"] = "Вы выиграли!"; +App::$strings["\"Cat\" game!"] = "Ничья!"; +App::$strings["I won!"] = "Я выиграл!"; +App::$strings["Fuzzloc Settings updated."] = ""; +App::$strings["Fuzzloc allows you to blur your precise location if your channel uses browser location mapping."] = ""; +App::$strings["Enable Fuzzloc Plugin"] = ""; +App::$strings["Minimum offset in meters"] = ""; +App::$strings["Maximum offset in meters"] = ""; +App::$strings["Fuzzloc Settings"] = ""; +App::$strings["Post to Friendica"] = "Опубликовать в Friendica"; +App::$strings["rtof Settings saved."] = "Настройки rtof сохранены."; +App::$strings["Allow posting to Friendica"] = ""; +App::$strings["Send public postings to Friendica by default"] = ""; +App::$strings["Friendica API Path"] = ""; +App::$strings["https://{sitename}/api"] = ""; +App::$strings["Friendica login name"] = ""; +App::$strings["Friendica password"] = ""; +App::$strings["Hubzilla to Friendica Post Settings"] = ""; +App::$strings["Post to GNU social"] = "Опубликовать в GNU Social"; +App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = "Пожалуйста свяжитесь с администратором сайта.
Предоставленный URL API недействителен."; +App::$strings["We could not contact the GNU social API with the Path you entered."] = "Нам не удалось установить контакт с GNU Social API по введённому вами пути"; +App::$strings["GNU social settings updated."] = "Настройки GNU Social обновлены."; +App::$strings["Globally Available GNU social OAuthKeys"] = "Глобально доступные ключи OAuthKeys GNU Social"; +App::$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)."] = "Существуют предварительно настроенные пары ключей OAuth для некоторых доступных серверов GNU social. Если вы используете один из них, используйте эти учетные данные.
Если вы не хотите подключаться к какому-либо другому серверу GNU social (см. ниже)."; +App::$strings["Provide your own OAuth Credentials"] = ""; +App::$strings["No consumer key pair for GNU social found. Register your Hubzilla 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 Hubzilla installation at your favourite GNU social installation."] = "
"; +App::$strings["OAuth Consumer Key"] = "Ключ клиента OAuth"; +App::$strings["OAuth Consumer Secret"] = "Пароль клиента OAuth"; +App::$strings["Base API Path"] = "Основной путь к API"; +App::$strings["Remember the trailing /"] = "Запомнить закрывающий /"; +App::$strings["GNU social application name"] = "Имя приложения GNU social"; +App::$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."] = "Чтобы подключиться к вашей учетной записи GNU social нажмите кнопку ниже для получения кода безопасности из GNU social, который вы должны скопировать в поле ввода ниже и отправить форму. Только ваши общедоступные сообщения будут опубликованы в GNU social."; +App::$strings["Log in with GNU social"] = "Войти с GNU social"; +App::$strings["Copy the security code from GNU social here"] = "Скопируйте код безопасности GNU social здесь"; +App::$strings["Cancel Connection Process"] = "Отменить процесс подключения"; +App::$strings["Current GNU social API is"] = "Текущий GNU social API"; +App::$strings["Cancel GNU social Connection"] = "Отменить подключение с GNU social"; +App::$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."] = "Замечание: Из-за настроек конфиденциальности (скрыть данные своего профиля от неизвестных зрителей?) cсылка, потенциально включенная в общедоступные публикации, переданные в GNU social, приведет посетителя к пустой странице, информирующей его о том, что доступ к вашему профилю был ограничен."; +App::$strings["Allow posting to GNU social"] = "Разрешить публиковать в GNU social"; +App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи GNU social"; +App::$strings["Post to GNU social by default"] = "Публиковать в GNU social по умолчанию"; +App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи GNU social по умолчанию"; +App::$strings["GNU social Post Settings"] = ""; +App::$strings["Site name"] = "Название сайта"; +App::$strings["API URL"] = ""; +App::$strings["Application name"] = "Название приложения"; +App::$strings["Enable Rainbowtag"] = "Включить Rainbowtag"; +App::$strings["Rainbowtag Settings"] = "Настройки Rainbowtag"; +App::$strings["Rainbowtag Settings saved."] = "Настройки Rainbowtag сохранены."; +App::$strings["Friendica Photo Album Import"] = "Импортировать альбом фотографий Friendica"; +App::$strings["This will import all your Friendica photo albums to this Red channel."] = "Это позволит импортировать все ваши альбомы фотографий Friendica в этот канал."; +App::$strings["Friendica Server base URL"] = "Базовый URL сервера Friendica"; +App::$strings["Friendica Login Username"] = "Имя пользователя для входа Friendica"; +App::$strings["Friendica Login Password"] = "Пароль для входа Firendica"; +App::$strings["This website is tracked using the Piwik analytics tool."] = "Этот сайт отслеживается с помощью инструментов аналитики Piwik."; +App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Если вы не хотите, чтобы ваши визиты регистрировались таким образом, вы можете отключить cookie с тем, чтобы Piwik не отслеживал дальнейшие посещения сайта."; +App::$strings["Piwik Base URL"] = "Базовый URL Piwik"; +App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Абсолютный путь к вашей установке Piwik (без типа протокола, с начальным слэшем)"; +App::$strings["Site ID"] = "ID сайта"; +App::$strings["Show opt-out cookie link?"] = "Показывать ссылку на отказ от использования cookies?"; +App::$strings["Asynchronous tracking"] = "Асинхронное отслеживание"; +App::$strings["Enable frontend JavaScript error tracking"] = "Включить отслеживание ошибок JavaScript на фронтенде."; +App::$strings["This feature requires Piwik >= 2.2.0"] = "Эта функция требует версию Piwik >= 2.2.0"; +App::$strings["Photos imported"] = "Фотографии импортированы"; +App::$strings["Redmatrix Photo Album Import"] = "Импортировать альбом фотографий Redmatrix"; +App::$strings["This will import all your Redmatrix photo albums to this channel."] = "Это позволит импортировать все ваши альбомы фотографий Redmatrix в этот канал."; +App::$strings["Import just this album"] = "Импортировать только этот альбом"; +App::$strings["Leave blank to import all albums"] = "Оставьте пустым для импорта всех альбомов"; +App::$strings["Maximum count to import"] = "Максимальное количество для импорта"; +App::$strings["0 or blank to import all available"] = "0 или пусто для импорта всех доступных"; +App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Искать %1\$s (%2\$s)"; +App::$strings["__ctx:opensearch__ \$Projectname"] = ""; +App::$strings["\$Projectname"] = ""; +App::$strings["Search \$Projectname"] = "Поиск \$Projectname"; +App::$strings["Recent Channel/Profile Viewers"] = ""; +App::$strings["This plugin/addon has not been configured."] = "このプラグイン/アドオンは設定されていません。"; +App::$strings["Please visit the Visage settings on %s"] = "%sのVisage Settingsに行ってください。"; +App::$strings["your feature settings page"] = "あなたのfeature設定ページ"; +App::$strings["No entries."] = ""; +App::$strings["Enable Visage Visitor Logging"] = ""; +App::$strings["Visage Settings"] = ""; +App::$strings["Error: order mismatch. Please try again."] = "Ошибка: несоответствие заказа. Пожалуйста, попробуйте ещё раз"; +App::$strings["Manual payments are not enabled."] = "Ручные платежи не подключены."; +App::$strings["Order not found."] = "Заказ не найден."; +App::$strings["Finished"] = "Завершено"; +App::$strings["Invalid channel"] = "Недействительный канал"; +App::$strings["[cart] Item Added"] = "[cart] Элемент добавлен"; +App::$strings["Order already checked out."] = "Заказ уже проверен."; +App::$strings["Enable Shopping Cart"] = "Включить корзину"; +App::$strings["Enable Test Catalog"] = "Включить тестовый каталог"; +App::$strings["Enable Manual Payments"] = "Включить ручные платежи"; +App::$strings["Base Merchant Currency"] = "Основная торговая валюта"; +App::$strings["Cart - Base Settings"] = "Корзина - Основные настройки"; +App::$strings["Shop"] = "Магазин"; +App::$strings["Profile Unavailable."] = "Профиль недоступен."; +App::$strings["Order Not Found"] = "Заказ не найден"; +App::$strings["You must be logged into the Grid to shop."] = "Вы должны быть в сети для доступа к магазину"; +App::$strings["Cart Not Enabled (profile: "] = "Корзина не подключена (профиль:"; +App::$strings["Access denied."] = "Доступ запрещён."; +App::$strings["No Order Found"] = "Нет найденных заказов"; +App::$strings["An unknown error has occurred Please start again."] = "Произошла неизвестная ошибка. Пожалуйста, начните снова."; +App::$strings["Invalid Payment Type. Please start again."] = "Недействительный тип платежа. Пожалуйста, начните снова."; +App::$strings["Order not found"] = "Заказ не найден"; +App::$strings["Enable Paypal Button Module"] = "Включить модуль кнопки Paypal"; +App::$strings["Use Production Key"] = "Использовать ключ Production"; +App::$strings["Paypal Sandbox Client Key"] = "Ключ клиента Paypal Sandbox"; +App::$strings["Paypal Sandbox Secret Key"] = "Секретный ключ Paypal Sandbox"; +App::$strings["Paypal Production Client Key"] = "Ключ клиента Paypal Production"; +App::$strings["Paypal Production Secret Key"] = "Секретный ключ Paypal Production"; +App::$strings["Cart - Paypal Addon"] = "Корзина - Paypal плагин"; +App::$strings["Paypal button payments are not enabled."] = "Кнопка Paypal для платежей не включена."; +App::$strings["Paypal button payments are not properly configured. Please choose another payment option."] = "Кнопка Paypal для платежей настроена неправильно. Пожалуйста, используйте другой вариант оплаты."; +App::$strings["Enable Hubzilla Services Module"] = "Включить модуль сервиса Hubzilla"; +App::$strings["Cart - Hubzilla Services Addon"] = "Корзина - плагин сервиса Hubzilla"; +App::$strings["New Sku"] = "Новый код"; +App::$strings["Cannot save edits to locked item."] = "Невозможно сохранить изменения заблокированной позиции."; +App::$strings["SKU not found."] = "Код не найден."; +App::$strings["Invalid Activation Directive."] = "Недействительная директива активации."; +App::$strings["Invalid Deactivation Directive."] = "Недействительная директива деактивации"; +App::$strings["Add to this privacy group"] = "Добавить в эту группу безопасности"; +App::$strings["Set user service class"] = "Установить класс обслуживания пользователя"; +App::$strings["You must be using a local account to purchase this service."] = "Вы должны использовать локальную учётноую запись для покупки этого сервиса."; +App::$strings["Changes Locked"] = "Изменения заблокированы"; +App::$strings["Item available for purchase."] = "Позиция доступна для приобретения."; +App::$strings["Price"] = "Цена"; +App::$strings["Add buyer to privacy group"] = "Добавить покупателя в группу безопасности"; +App::$strings["Add buyer as connection"] = "Добавить покупателя как контакт"; +App::$strings["Set Service Class"] = "Установить класс обслуживания"; +App::$strings["Access Denied."] = "Доступ запрещён."; +App::$strings["Access Denied"] = "Доступ запрещён"; +App::$strings["Invalid Item"] = "Недействительный элемент"; +App::$strings["Nsabait Settings updated."] = "Настройки Nsabait обновлены"; +App::$strings["Enable NSAbait Plugin"] = "Включить плагин NSAbait"; +App::$strings["NSAbait Settings"] = "Настройки Nsabait"; +App::$strings["Hubzilla File Storage Import"] = "Импорт файлового хранилища Hubzilla"; +App::$strings["This will import all your cloud files from another server."] = "Это позволит импортировать все ваши файлы с другого сервера."; +App::$strings["Hubzilla Server base URL"] = "Базовый URL сервера Hubzilla"; +App::$strings["Since modified date yyyy-mm-dd"] = "Начиная с даты изменений yyyy-mm-dd"; +App::$strings["Until modified date yyyy-mm-dd"] = "Заканчивая датой изменений yyyy-mm-dd"; +App::$strings["Federate"] = ""; +App::$strings["nofed Settings saved."] = "Настройки nofed сохранены."; +App::$strings["Allow Federation Toggle"] = "Разрешить переключение федерации"; +App::$strings["Federate posts by default"] = "Разрешить федерацию публикаций по умолчанию"; +App::$strings["NoFed Settings"] = "Настройки NoFed"; +App::$strings["generic profile image"] = "Стандартное изображение профиля"; +App::$strings["random geometric pattern"] = "Случайный геометрический рисунок"; +App::$strings["monster face"] = "Лицо чудовища"; +App::$strings["computer generated face"] = "Сгенерированное компьютером лицо"; +App::$strings["retro arcade style face"] = "Лицо в стиле старой аркадной игры"; +App::$strings["Hub default profile photo"] = "Фотография профиля по умолчанию"; +App::$strings["Information"] = "Информация"; +App::$strings["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."] = "Плагин Libravatar также установлен. Пожалуйста, отключите плагин Libravatar или этот плагин Gravatar. Если Плагин Libravatar ничего не найдёт, он вернётся в Gravatar."; +App::$strings["Default avatar image"] = "Изображение аватара по умолчанию"; +App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "Выберите изображения аватар по умолчанию если ничего не было найдено в Gravatar (см. README)."; +App::$strings["Rating of images"] = "Оценки изображений"; +App::$strings["Select the appropriate avatar rating for your site. See README"] = "Выберите подходящую оценку аватара для вашего сайта (см. README)."; +App::$strings["Gravatar settings updated."] = "Настройки Gravatar обновлены."; +App::$strings["Post to Red"] = "Опубликовать в Red"; +App::$strings["Channel is required."] = "チャンネルが必要です。"; +App::$strings["Invalid channel."] = "Недействительный канал."; +App::$strings["redred Settings saved."] = "Настройки RedRed сохранены."; +App::$strings["Allow posting to another Hubzilla Channel"] = ""; +App::$strings["Send public postings to Hubzilla channel by default"] = ""; +App::$strings["Hubzilla API Path"] = ""; +App::$strings["Hubzilla login name"] = ""; +App::$strings["Hubzilla channel name"] = ""; +App::$strings["Hubzilla Crosspost Settings"] = ""; +App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = ""; +App::$strings["Chord names start with a root note (A-G) and may include sharps (#) and flats (b). This software will parse most of the standard naming conventions such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements."] = ""; +App::$strings["Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."] = "Примеры действительных включают A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."; +App::$strings["Guitar Chords"] = "ギターコード"; +App::$strings["The complete online chord dictionary"] = "Полный онлайн словарь аккордов"; +App::$strings["Tuning"] = "Настройка"; +App::$strings["Chord name: example: Em7"] = "Наименование аккорда - example: Em7"; +App::$strings["Show for left handed stringing"] = "Показывать струны для левшей"; +App::$strings["Quick Reference"] = "Быстрая ссылка"; +App::$strings["New registration"] = "Новая регистрация"; +App::$strings["%s : Message delivery failed."] = "%s : Доставка сообщения не удалась."; +App::$strings["Message sent to %s. New account registration: %s"] = "Сообщение отправлено в %s. Регистрация нового аккаунта: %s"; +App::$strings["Channels to auto connect"] = ""; +App::$strings["Comma separated list"] = ""; +App::$strings["Popular Channels"] = ""; +App::$strings["IRC Settings"] = ""; +App::$strings["IRC settings saved."] = ""; +App::$strings["IRC Chatroom"] = "Чат IRC"; +App::$strings["bitchslap"] = "дать леща"; +App::$strings["bitchslapped"] = "получил леща"; +App::$strings["shag"] = "вздрючить"; +App::$strings["shagged"] = "вздрюченный"; +App::$strings["patent"] = ""; +App::$strings["patented"] = ""; +App::$strings["hug"] = "обнять"; +App::$strings["hugged"] = "обнятый"; +App::$strings["murder"] = "убить"; +App::$strings["murdered"] = "убитый"; +App::$strings["worship"] = "почитать"; +App::$strings["worshipped"] = "почитаемый"; +App::$strings["kiss"] = "целовать"; +App::$strings["kissed"] = "поцелованный"; +App::$strings["tempt"] = "искушать"; +App::$strings["tempted"] = "искушённый"; +App::$strings["raise eyebrows at"] = "поднять брови"; +App::$strings["raised their eyebrows at"] = "поднял брови"; +App::$strings["insult"] = "оскорбить"; +App::$strings["insulted"] = "оскорблённый"; +App::$strings["praise"] = "хвалить"; +App::$strings["praised"] = "похваленный"; +App::$strings["be dubious of"] = "усомниться"; +App::$strings["was dubious of"] = "усомнился"; +App::$strings["eat"] = "есть"; +App::$strings["ate"] = "съел"; +App::$strings["giggle and fawn at"] = ""; +App::$strings["giggled and fawned at"] = ""; +App::$strings["doubt"] = "сомневаться"; +App::$strings["doubted"] = "сомневался"; +App::$strings["glare"] = ""; +App::$strings["glared at"] = ""; +App::$strings["fuck"] = "трахнуть"; +App::$strings["fucked"] = "трахнул"; +App::$strings["bonk"] = ""; +App::$strings["bonked"] = ""; +App::$strings["declare undying love for"] = "признаться в любви к"; +App::$strings["declared undying love for"] = "признался в любви к"; +App::$strings["Post to WordPress"] = "Опубликовать в WordPress"; +App::$strings["Enable WordPress Post Plugin"] = "Включить плагин публикаций WordPress"; +App::$strings["WordPress username"] = "Имя пользователя WordPress"; +App::$strings["WordPress password"] = "Пароль WordPress"; +App::$strings["WordPress API URL"] = "URL API WordPress"; +App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "Обычно https://your-blog.tld/xmlrpc.php"; +App::$strings["WordPress blogid"] = ""; +App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "Для многопользовательских сайтов, таких, как wordpress.com. В противном случае оставьте пустым"; +App::$strings["Post to WordPress by default"] = "Публиковать в WordPress по умолчанию"; +App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Пересылать комментарии (требуется плагин hubzilla_wp)"; +App::$strings["WordPress Post Settings"] = "Настройки публикации в WordPress"; +App::$strings["Wordpress Settings saved."] = "Настройки WordPress сохранены."; +App::$strings["Who likes me?"] = "Кому я нравлюсь?"; +App::$strings["Your account on %s will expire in a few days."] = "Ваш аккаунт на %s перестанет работать через несколько дней."; +App::$strings["Your $Productname test account is about to expire."] = "Срок действия пробного аккаунта в $Productname близок к окончанию."; +App::$strings["Create an account to access services and applications"] = "Создайте аккаунт для доступа к службам и приложениям"; +App::$strings["Register"] = "登録"; +App::$strings["Logout"] = "ログアウト"; +App::$strings["Login"] = "ログイン"; +App::$strings["Stream"] = "ストリーム"; +App::$strings["Remote Authentication"] = "リモートログインをする"; +App::$strings["Login/Email"] = "ログイン / email"; +App::$strings["Password"] = "パスワード"; +App::$strings["Remember me"] = "ログイン情報を記憶する"; +App::$strings["Forgot your password?"] = "パスワードを忘れましたか?"; +App::$strings["Password Reset"] = "パスワードのリセット"; +App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Ошибка SSL/TLS веб-сайта для %s"; +App::$strings["Website SSL certificate is not valid. Please correct."] = "SSL/TLS сертификат веб-сайт недействителен. Исправьте это."; +App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Задания Cron не запущены на %s"; +App::$strings["Cron/Scheduled tasks not running."] = "Задания Cron / планировщика не запущены."; +App::$strings["never"] = ""; +App::$strings["Default"] = "デフォルト"; +App::$strings["Focus (Hubzilla default)"] = ""; +App::$strings["Theme settings"] = "テーマ設定"; +App::$strings["Narrow navbar"] = ""; +App::$strings["Navigation bar background color"] = ""; +App::$strings["Navigation bar icon color "] = ""; +App::$strings["Navigation bar active icon color "] = ""; +App::$strings["Link color"] = ""; +App::$strings["Set font-color for banner"] = ""; +App::$strings["Set the background color"] = ""; +App::$strings["Set the background image"] = ""; +App::$strings["Set the background color of items"] = ""; +App::$strings["Set the background color of comments"] = ""; +App::$strings["Set font-size for the entire application"] = ""; +App::$strings["Examples: 1rem, 100%, 16px"] = ""; +App::$strings["Set font-color for posts and comments"] = ""; +App::$strings["Set radius of corners"] = ""; +App::$strings["Example: 4px"] = ""; +App::$strings["Set shadow depth of photos"] = ""; +App::$strings["Set maximum width of content region in pixel"] = ""; +App::$strings["Leave empty for default width"] = ""; +App::$strings["Set size of conversation author photo"] = ""; +App::$strings["Set size of followup author photos"] = ""; +App::$strings["Image/photo"] = "Изображение / фотография"; +App::$strings["Encrypted content"] = "Зашифрованное содержание"; +App::$strings["Install %1\$s element %2\$s"] = "%1\$sエレメント%2\$sをインストールする"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Эта публикация содержит устанавливаемый %s элемент, однако у вас нет разрешений для его установки на этом сайте."; +App::$strings["webpage"] = "ウェブページ"; +App::$strings["layout"] = "レイアウト"; +App::$strings["block"] = "ブロック"; +App::$strings["menu"] = "メニュー"; +App::$strings["card"] = "カード"; +App::$strings["article"] = "記事"; +App::$strings["post"] = "この投稿"; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$sが%3\$sに%2\$sを作成しました。"; +App::$strings["Click to open/close"] = "Click to open/close"; +App::$strings["spoiler"] = "спойлер"; +App::$strings["View article"] = "記事を見る"; +App::$strings["View summary"] = "概略へ戻る"; +App::$strings["Different viewers will see this text differently"] = "Различные зрители увидят этот текст по-разному"; +App::$strings["$1 wrote:"] = "$1が書きました:"; +App::$strings["Not a valid email address"] = "Недействительный адрес электронной почты"; +App::$strings["Your email domain is not among those allowed on this site"] = "Домен электронной почты не входит в число тех, которые разрешены на этом сайте"; +App::$strings["Your email address is already registered at this site."] = "Ваш адрес электронной почты уже зарегистрирован на этом сайте."; +App::$strings["An invitation is required."] = "Требуется приглашение."; +App::$strings["Invitation could not be verified."] = "Не удалось проверить приглашение."; +App::$strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию."; +App::$strings["Failed to store account information."] = "Не удалось сохранить информацию аккаунта."; +App::$strings["Registration confirmation for %s"] = "Подтверждение регистрации для %s"; +App::$strings["Registration request at %s"] = "Запрос регистрации на %s"; +App::$strings["your registration password"] = "ваш пароль регистрации"; +App::$strings["Registration details for %s"] = "Регистрационные данные для %s"; +App::$strings["Account approved."] = "Аккаунт утвержден."; +App::$strings["Registration revoked for %s"] = "Регистрация отозвана для %s"; +App::$strings["Click here to upgrade."] = "Нажмите здесь для обновления."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Это действие превышает ограничения, установленные в вашем плане."; +App::$strings["This action is not available under your subscription plan."] = "Это действие невозможно из-за ограничений в вашем плане."; +App::$strings["Delegation session ended."] = "Делегированная сессия завершена."; +App::$strings["Logged out."] = "Вышел из системы."; +App::$strings["Email validation is incomplete. Please check your email."] = "Проверка email не завершена. Пожалуйста, проверьте вашу почту."; +App::$strings["Failed authentication"] = "Ошибка аутентификации"; +App::$strings["event"] = "событие"; +App::$strings["channel"] = "チャンネル"; +App::$strings["comment"] = "コメント"; +App::$strings["likes %1\$s's %2\$s"] = "%1\$sの %2\$sをいいね!しました。"; +App::$strings["doesn't like %1\$s's %2\$s"] = "%1\$sの %2\$sをわるいね!しました。"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$sは%2\$sにコネクトしました。"; +App::$strings["%1\$s poked %2\$s"] = "%1\$sは%2\$sをpokeしました。"; +App::$strings["poked"] = ""; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s は %2\$s"; +App::$strings["This is an unsaved preview"] = "これはセーブされていないプレビューです。"; +App::$strings["__ctx:title__ Likes"] = "いいね!"; +App::$strings["__ctx:title__ Dislikes"] = "わるいね!"; +App::$strings["__ctx:title__ Agree"] = ""; +App::$strings["__ctx:title__ Disagree"] = ""; +App::$strings["__ctx:title__ Abstain"] = "欠席"; +App::$strings["__ctx:title__ Attending"] = "出席"; +App::$strings["__ctx:title__ Not attending"] = "出席しない"; +App::$strings["__ctx:title__ Might attend"] = "出席するかも"; +App::$strings["Select"] = "選択"; +App::$strings["Delete"] = "削除"; +App::$strings["Toggle Star Status"] = "ホシをつける"; +App::$strings["Private Message"] = "プライベートメッセージ"; +App::$strings["Message signature validated"] = "メッセージ署名が検証されました"; +App::$strings["Message signature incorrect"] = "メッセージ署名が正しくありません"; +App::$strings["Approve"] = "許可"; +App::$strings["View %s's profile @ %s"] = "%sのプロファイルを見る%s"; +App::$strings["Categories:"] = "カテゴリー:"; +App::$strings["Filed under:"] = ""; +App::$strings["from %s"] = "via %s"; +App::$strings["last edited: %s"] = "最終更新: %s"; +App::$strings["Expires: %s"] = "期限: %s"; +App::$strings["View in context"] = "さらに表示..."; +App::$strings["Please wait"] = "お待ちください"; +App::$strings["remove"] = "削除"; +App::$strings["Loading..."] = "読み込み中....."; +App::$strings["Delete Selected Items"] = "選択した項目を削除"; +App::$strings["View Source"] = "ソースコードを見る"; +App::$strings["Follow Thread"] = "スレッドをフォローする"; +App::$strings["Unfollow Thread"] = "スレッドのフォローを解除"; +App::$strings["Recent Activity"] = "サーバーに届いているアクティビティ"; +App::$strings["Connect"] = "フォロー"; +App::$strings["Edit Connection"] = "コネクションの編集"; +App::$strings["Message"] = "メッセージ"; +App::$strings["Ratings"] = "レーティング"; +App::$strings["Poke"] = ""; +App::$strings["%s likes this."] = "%s人がいいね!"; +App::$strings["%s doesn't like this."] = "%s人がわるいね!"; +App::$strings["%2\$d people like this."] = "%2\$d人がいいね!しました。"; +App::$strings["%2\$d people don't like this."] = "%2\$d人がわるいね!しました。"; +App::$strings["and"] = "と"; +App::$strings[", and %d other people"] = array( + 0 => ", и ещё %d человеку", + 1 => ", и ещё %d человекам", + 2 => ", и ещё %d человекам", +); +App::$strings["%s like this."] = "%sがいいね!しました。"; +App::$strings["%s don't like this."] = "%sがわるいね!しました。"; +App::$strings["Set your location"] = "位置情報"; +App::$strings["Clear browser location"] = "ブラウザの位置情報を削除"; +App::$strings["Insert web link"] = "リンクの挿入"; +App::$strings["Embed (existing) photo from your photo albums"] = "アルバムから画像を選択"; +App::$strings["Please enter a link URL:"] = "URLを入力してください : "; +App::$strings["Tag term:"] = "タグの入力:"; +App::$strings["Where are you right now?"] = "位置情報を入力してください : "; +App::$strings["Choose images to embed"] = "画像を選択してください。"; +App::$strings["Choose an album"] = "アルバムを選択してください。"; +App::$strings["Choose a different album..."] = "アルバム選択に戻る"; +App::$strings["Error getting album list"] = "アルバムリストの取得に失敗しました..."; +App::$strings["Error getting photo link"] = "画像リンクの取得に失敗しました..."; +App::$strings["Error getting album"] = "アルバムの取得に失敗しました..."; +App::$strings["Comments enabled"] = "コメントは有効です。"; +App::$strings["Comments disabled"] = "コメントは無効です。"; +App::$strings["Preview"] = "プレビュー"; +App::$strings["Share"] = "投稿"; +App::$strings["Page link name"] = "ページリンク名"; +App::$strings["Post as"] = "投稿先"; +App::$strings["Bold"] = "太字"; +App::$strings["Italic"] = "斜体"; +App::$strings["Underline"] = "下線"; +App::$strings["Quote"] = "引用"; +App::$strings["Code"] = "プログラム"; +App::$strings["Attach/Upload file"] = "ファイルのアップロード"; +App::$strings["Embed an image from your albums"] = "アルバムから画像を選択"; +App::$strings["Cancel"] = "キャンセル"; +App::$strings["OK"] = ""; +App::$strings["Toggle voting"] = "投票"; +App::$strings["Disable comments"] = "コメントの無効化(zot範囲内のみ)"; +App::$strings["Toggle comments"] = "コメント許可の切り変え"; +App::$strings["Title (optional)"] = "タイトル (任意)"; +App::$strings["Categories (optional, comma-separated list)"] = "カテゴリ指定 (任意、カンマで追加)"; +App::$strings["Permission settings"] = "投稿の表示範囲の設定"; +App::$strings["Other networks and post services"] = "他のネットワーク送信サービス"; +App::$strings["Set expiration date"] = "時限性投稿作成"; +App::$strings["Set publish date"] = "投稿作成予約"; +App::$strings["Encrypt text"] = "暗号化テキスト"; +App::$strings["Commented Order"] = "コメント順"; +App::$strings["Sort by Comment Date"] = "コメント順で並べる"; +App::$strings["Posted Order"] = "投稿順"; +App::$strings["Sort by Post Date"] = "投稿の作成日時で並べる"; +App::$strings["Personal"] = "基本情報"; +App::$strings["Posts that mention or involve you"] = "あなたへのメンション付き投稿を作成しました。"; +App::$strings["New"] = ""; +App::$strings["Activity Stream - by date"] = "アクティビティストリーム - 日付順"; +App::$strings["Starred"] = "ホシつけ済み"; +App::$strings["Favourite Posts"] = "ホシをつけた投稿"; +App::$strings["Spam"] = "スパム"; +App::$strings["Posts flagged as SPAM"] = "投稿にスパムフラグを建てる"; +App::$strings["Channel"] = "チャンネル"; +App::$strings["Status Messages and Posts"] = "メッセージや投稿のステータス"; +App::$strings["About"] = ""; +App::$strings["Profile Details"] = "プロファイルの詳細"; +App::$strings["Photos"] = "写真"; +App::$strings["Photo Albums"] = "フォトアルバム"; +App::$strings["Files"] = "ファイル"; +App::$strings["Files and Storage"] = "ファイルとストレージ"; +App::$strings["Events"] = "イベント"; +App::$strings["Chatrooms"] = "チャットルーム"; +App::$strings["Bookmarks"] = "ブックマーク"; +App::$strings["Saved Bookmarks"] = "保存済みのブックマーク"; +App::$strings["Cards"] = "カード"; +App::$strings["View Cards"] = "カードを見る"; +App::$strings["articles"] = "記事"; +App::$strings["View Articles"] = "記事を見る"; +App::$strings["Webpages"] = "Webページ"; +App::$strings["View Webpages"] = "Webページを見る"; +App::$strings["Wikis"] = ""; +App::$strings["Wiki"] = ""; +App::$strings["__ctx:noun__ Like"] = "いいね!"; +App::$strings["__ctx:noun__ Dislike"] = "わるいね!"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Посетит", + 1 => "Посетят", + 2 => "Посетят", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Не посетит", + 1 => "Не посетят", + 2 => "Не посетят", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Не решил", + 1 => "Не решили", + 2 => "Не решили", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "Согласен", + 1 => "Согласны", + 2 => "Согласны", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Не согласен", + 1 => "Не согласны", + 2 => "Не согласны", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Воздержался", + 1 => "Воздержались", + 2 => "Воздержались", +); +App::$strings["Invalid data packet"] = "Неверный пакет данных"; +App::$strings["Unable to verify channel signature"] = "Невозможно проверить подпись канала"; +App::$strings["Unable to verify site signature for %s"] = "Невозможно проверить подпись сайта %s"; +App::$strings["invalid target signature"] = "недопустимая целевая подпись"; +App::$strings["l F d, Y \\@ g:i A"] = ""; +App::$strings["Starts:"] = "開始:"; +App::$strings["Finishes:"] = "終了:"; +App::$strings["Location:"] = "ロケーション"; +App::$strings["This event has been added to your calendar."] = "このイベントは貴方のカレンダーに追加されました。"; +App::$strings["Not specified"] = "Не указано"; +App::$strings["Needs Action"] = "Требует действия"; +App::$strings["Completed"] = "Завершено"; +App::$strings["In Process"] = "В процессе"; +App::$strings["Cancelled"] = "Отменено"; +App::$strings["Mobile"] = "携帯"; +App::$strings["Home"] = "家"; +App::$strings["Home, Voice"] = "Дом, голос"; +App::$strings["Home, Fax"] = "Дом, факс"; +App::$strings["Work"] = "仕事場"; +App::$strings["Work, Voice"] = "Работа, голос"; +App::$strings["Work, Fax"] = "Работа, факс"; +App::$strings["Other"] = "その他"; +App::$strings["Item was not found."] = "Элемент не найден."; +App::$strings["Unknown error."] = "Неизвестная ошибка."; +App::$strings["No source file."] = "Нет исходного файла."; +App::$strings["Cannot locate file to replace"] = "Не удается найти файл для замены"; +App::$strings["Cannot locate file to revise/update"] = "Не удается найти файл для пересмотра / обновления"; +App::$strings["File exceeds size limit of %d"] = "Файл превышает предельный размер %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Вы достигли предела %1$.0f Мбайт для хранения вложений."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Загрузка файла не удалась. Возможно система перегружена или попытка прекращена."; +App::$strings["Stored file could not be verified. Upload failed."] = "Файл для сохранения не может быть проверен. Загрузка не удалась."; +App::$strings["Path not available."] = "Путь недоступен."; +App::$strings["Empty pathname"] = "Пустое имя пути"; +App::$strings["duplicate filename or path"] = "дублирующееся имя файла или пути"; +App::$strings["Path not found."] = "Путь не найден."; +App::$strings["mkdir failed."] = "mkdir не удался"; +App::$strings["database storage failed."] = "ошибка при записи базы данных."; +App::$strings["Empty path"] = "Пустое имя пути"; +App::$strings["unknown"] = "неизвестный"; +App::$strings["%1\$s's bookmarks"] = "%1\$s"; +App::$strings["Directory Options"] = "ディレクトリオプション"; +App::$strings["Safe Mode"] = "セーフモード"; +App::$strings["Public Forums Only"] = "フォーラムのみ"; +App::$strings["This Website Only"] = "このサーバーのみ"; +App::$strings["view full size"] = "посмотреть в полный размер"; +App::$strings["Friendica"] = ""; +App::$strings["OStatus"] = ""; +App::$strings["GNU-Social"] = "GNU social"; +App::$strings["RSS/Atom"] = ""; +App::$strings["Diaspora"] = ""; +App::$strings["Facebook"] = ""; +App::$strings["Zot"] = ""; +App::$strings["LinkedIn"] = ""; +App::$strings["XMPP/IM"] = ""; +App::$strings["MySpace"] = ""; +App::$strings[" and "] = " と "; +App::$strings["public profile"] = "общедоступный профиль"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s изменил %2\$s на “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Посетить %1\$s %2\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s обновлено %2\$s, изменено %3\$s."; +App::$strings["Remote authentication"] = "Удаленная аутентификация"; +App::$strings["Click to authenticate to your home hub"] = "Нажмите, чтобы аутентифицировать себя на домашнем узле"; +App::$strings["Channel Manager"] = "チャンネルの管理"; +App::$strings["Manage your channels"] = "Управление вашими каналами"; +App::$strings["Privacy Groups"] = "プライバシーグループ"; +App::$strings["Manage your privacy groups"] = "Управление вашим группами безопасности"; +App::$strings["Settings"] = "チャンネルの設定"; +App::$strings["Account/Channel Settings"] = "アカウント/チャンネルの設定"; +App::$strings["End this session"] = "このセッションの終了"; +App::$strings["Your profile page"] = "プロファイルページ"; +App::$strings["Edit Profiles"] = "ユーザー情報の編集"; +App::$strings["Manage/Edit profiles"] = "プロファイルの管理/編集"; +App::$strings["Edit your profile"] = "プロフィールを編集する"; +App::$strings["Sign in"] = "ログイン"; +App::$strings["Take me home"] = "自分のホームに戻る"; +App::$strings["Log me out of this site"] = "Выйти с этого сайта"; +App::$strings["Create an account"] = "アカウント作成"; +App::$strings["Help"] = "ヘルプ"; +App::$strings["Help and documentation"] = "ヘルプとドキュメント"; +App::$strings["Search"] = "検索"; +App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "@ユーザー, !フォーラム, #タグ, ?docs, contentsで検索"; +App::$strings["Admin"] = "管理画面"; +App::$strings["Site Setup and Configuration"] = "サイト設定"; +App::$strings["Loading"] = "読み込み"; +App::$strings["@name, !forum, #tag, ?doc, content"] = ""; +App::$strings["Please wait..."] = "お待ちください ..."; +App::$strings["Add Apps"] = "アプリの追加"; +App::$strings["Arrange Apps"] = "アプリの並び換え"; +App::$strings["Toggle System Apps"] = "システムアプリを表示する"; +App::$strings["Calendar"] = "カレンダー"; +App::$strings["Articles"] = "記事"; +App::$strings["Help:"] = "ヘルプ:"; +App::$strings["Not Found"] = ""; +App::$strings["Page not found."] = ""; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Удаленная группа с этим названием была восстановлена. Существующие разрешения пункт могут применяться к этой группе и к её будущих участников. Если это не то, чего вы хотели, пожалуйста, создайте другую группу с другим именем."; +App::$strings["Add new connections to this privacy group"] = "新しいコネクションをこのプライバシーグループに追加する"; +App::$strings["edit"] = "編集"; +App::$strings["Edit group"] = "グループの編集"; +App::$strings["Add privacy group"] = "プライバシーグループの追加"; +App::$strings["Channels not in any privacy group"] = "Каналы не включены ни в одну группу безопасности"; +App::$strings["add"] = "追加"; +App::$strings["Unable to import a removed channel."] = "削除されたチャンネルをインポートできませんでした。"; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "重複したアイデンティティはインポートできません。この作業は失敗しました。"; +App::$strings["Cloned channel not found. Import failed."] = "クローンチャンネルは存在しません。インポートは失敗しました。"; +App::$strings["Profile Photos"] = "プロファイル画像"; +App::$strings["Trending"] = "トレンド"; +App::$strings["Tags"] = "タグ"; +App::$strings["Categories"] = "カテゴリー"; +App::$strings["Keywords"] = "キーワード"; +App::$strings["have"] = ""; +App::$strings["has"] = ""; +App::$strings["want"] = ""; +App::$strings["wants"] = ""; +App::$strings["like"] = "いいね!"; +App::$strings["likes"] = "いいね!"; +App::$strings["dislike"] = "わるいね!"; +App::$strings["dislikes"] = "わるいね!"; +App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = ""; +App::$strings["default"] = "デフォルト"; +App::$strings["Select an alternate language"] = "言語を選択してください。"; +App::$strings["Channel is blocked on this site."] = "チャンネルはこのサイトでブロックされています。"; +App::$strings["Channel location missing."] = "チャンネルロケーションが不明です。"; +App::$strings["Response from remote channel was incomplete."] = "Ответ удаленного канала неполный."; +App::$strings["Premium channel - please visit:"] = "プレミアムチャンネル - 見てください:"; +App::$strings["Channel was deleted and no longer exists."] = "Канал удален и больше не существует."; +App::$strings["Remote channel or protocol unavailable."] = "Удалённый канал или протокол недоступен."; +App::$strings["Channel discovery failed."] = "Не удалось обнаружить канал."; +App::$strings["Protocol disabled."] = "Протокол отключен."; +App::$strings["Cannot connect to yourself."] = "Нельзя подключиться к самому себе."; +App::$strings["Visible to your default audience"] = "デフォルトのユーザーに表示"; +App::$strings["__ctx:acl__ Profile"] = "プロファイル"; +App::$strings["Only me"] = "自分だけ"; +App::$strings["Who can see this?"] = "投稿範囲 : "; +App::$strings["Custom selection"] = "カスタマイズ"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = " +\"表示\"で表示されます。\"非表示\"は\"表示\"よりも優先されます。"; +App::$strings["Show"] = "表示"; +App::$strings["Don't show"] = "非表示"; +App::$strings["Permissions"] = "表示範囲設定"; +App::$strings["Close"] = "閉じる"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "投稿範囲は %s 投稿後に %s 変更することはできません。ここで設定した人のみがこの投稿を観覧でいるようになります。"; +App::$strings["Miscellaneous"] = "その他"; +App::$strings["Birthday"] = "誕生日"; +App::$strings["Age: "] = "年齢:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD или MM-DD"; +App::$strings["Required"] = "必須"; +App::$strings["less than a second ago"] = "一秒未満"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d%2\$s前"; +App::$strings["__ctx:relative_date__ year"] = "年"; +App::$strings["__ctx:relative_date__ month"] = "月"; +App::$strings["__ctx:relative_date__ week"] = "週"; +App::$strings["__ctx:relative_date__ day"] = "日"; +App::$strings["__ctx:relative_date__ hour"] = "時間"; +App::$strings["__ctx:relative_date__ minute"] = "分"; +App::$strings["__ctx:relative_date__ second"] = "秒"; +App::$strings["%1\$s's birthday"] = "%1\$sの誕生日"; +App::$strings["Happy Birthday %1\$s"] = "はっぴばーすでぇーでぃあ%1\$s!!!"; +App::$strings["Cannot locate DNS info for database server '%s'"] = ""; +App::$strings["prev"] = "前へ"; +App::$strings["first"] = "最初"; +App::$strings["last"] = "最後"; +App::$strings["next"] = "次へ"; +App::$strings["older"] = "古い"; +App::$strings["newer"] = "新しい"; +App::$strings["No connections"] = "コネクション無し"; +App::$strings["Connections"] = "コネクション"; +App::$strings["View all %s connections"] = "全ての%s件のコネクションを見る"; +App::$strings["Network: %s"] = "ネットワーク: %s"; +App::$strings["Save"] = "保存"; +App::$strings["poke"] = ""; +App::$strings["ping"] = ""; +App::$strings["pinged"] = ""; +App::$strings["prod"] = ""; +App::$strings["prodded"] = ""; +App::$strings["slap"] = ""; +App::$strings["slapped"] = ""; +App::$strings["finger"] = ""; +App::$strings["fingered"] = ""; +App::$strings["rebuff"] = ""; +App::$strings["rebuffed"] = ""; +App::$strings["happy"] = ""; +App::$strings["sad"] = ""; +App::$strings["mellow"] = ""; +App::$strings["tired"] = ""; +App::$strings["perky"] = ""; +App::$strings["angry"] = ""; +App::$strings["stupefied"] = ""; +App::$strings["puzzled"] = ""; +App::$strings["interested"] = ""; +App::$strings["bitter"] = ""; +App::$strings["cheerful"] = ""; +App::$strings["alive"] = ""; +App::$strings["annoyed"] = ""; +App::$strings["anxious"] = ""; +App::$strings["cranky"] = ""; +App::$strings["disturbed"] = ""; +App::$strings["frustrated"] = ""; +App::$strings["depressed"] = ""; +App::$strings["motivated"] = ""; +App::$strings["relaxed"] = ""; +App::$strings["surprised"] = ""; +App::$strings["Monday"] = "月曜日"; +App::$strings["Tuesday"] = "火曜日"; +App::$strings["Wednesday"] = "水曜日"; +App::$strings["Thursday"] = "木曜日"; +App::$strings["Friday"] = "金曜日"; +App::$strings["Saturday"] = "土曜日"; +App::$strings["Sunday"] = "日曜日"; +App::$strings["January"] = "1月"; +App::$strings["February"] = "2月"; +App::$strings["March"] = "3月"; +App::$strings["April"] = "4月"; +App::$strings["May"] = "5月"; +App::$strings["June"] = "6月"; +App::$strings["July"] = "7月"; +App::$strings["August"] = "8月"; +App::$strings["September"] = "9月"; +App::$strings["October"] = "10月"; +App::$strings["November"] = "11月"; +App::$strings["December"] = "12月"; +App::$strings["Unknown Attachment"] = "未定義のファイル"; +App::$strings["Size"] = "サイズ"; +App::$strings["remove category"] = "カテゴリーの削除"; +App::$strings["remove from file"] = "ファイルからの削除"; +App::$strings["Download binary/encrypted content"] = "バイナリ/暗号化済みコンテンツをダウンロード"; +App::$strings["Link to Source"] = "投稿元のサイトへ移動"; +App::$strings["Page layout"] = "ページレイアウト"; +App::$strings["You can create your own with the layouts tool"] = "レイアウトツールで自分のレイアウトを作成することができます。"; +App::$strings["BBcode"] = ""; +App::$strings["HTML"] = ""; +App::$strings["Text"] = "テキスト"; +App::$strings["Comanche Layout"] = ""; +App::$strings["PHP"] = ""; +App::$strings["Page content type"] = "ページの方式を選択"; +App::$strings["activity"] = "ホーム"; +App::$strings["a-z, 0-9, -, and _ only"] = "a-z, 0-9, -, _ のみ"; +App::$strings["Design Tools"] = "デザインツール"; +App::$strings["Blocks"] = "ブロック"; +App::$strings["Menus"] = "メニュー"; +App::$strings["Layouts"] = "レイアウト"; +App::$strings["Pages"] = "ページ"; +App::$strings["Import"] = "インポート"; +App::$strings["Import website..."] = "webサイトのインポート"; +App::$strings["Select folder to import"] = "フォルダーを選んでインポート"; +App::$strings["Import from a zipped folder:"] = "zipフォルダーからインポート:"; +App::$strings["Import from cloud files:"] = "クラウドファイルからインポート:"; +App::$strings["/cloud/channel/path/to/folder"] = ""; +App::$strings["Enter path to website files"] = ""; +App::$strings["Select folder"] = "フォルダーの選択"; +App::$strings["Export website..."] = "webサイトをエクスポートする...."; +App::$strings["Export to a zip file"] = "zipファイルでエクスポートする"; +App::$strings["website.zip"] = ""; +App::$strings["Enter a name for the zip file."] = "zipファイルの名前を入力"; +App::$strings["Export to cloud files"] = "クラウドへエクスポートする"; +App::$strings["/path/to/export/folder"] = ""; +App::$strings["Enter a path to a cloud files destination."] = "Введите путь к расположению сетевых файлов."; +App::$strings["Specify folder"] = "特別なフォルダー"; +App::$strings["Collection"] = "コレクション"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "セッションは長時間無操作だったため切断されました(3時間以上)。作業をするためには画面を再読み込みしてください。"; +App::$strings["Edit"] = "編集"; +App::$strings["(Unknown)"] = "(Неизвестный)"; +App::$strings["Visible to anybody on the internet."] = "ネット界の誰でも見ることができます。"; +App::$strings["Visible to you only."] = "貴方しか見ることはできません。"; +App::$strings["Visible to anybody in this network."] = "このネットワークの中の誰でも見ることができます。"; +App::$strings["Visible to anybody authenticated."] = "認証されたユーザーのみが見ることができます。"; +App::$strings["Visible to anybody on %s."] = ""; +App::$strings["Visible to all connections."] = "全てのコネクションに表示"; +App::$strings["Visible to approved connections."] = "許可済みのコネクションだけに表示"; +App::$strings["Visible to specific connections."] = "特定のコネクションにだけ表示"; +App::$strings["Item not found."] = "アイテムは存在しません。"; +App::$strings["Privacy group not found."] = "プライバシーグループはありません。"; +App::$strings["Privacy group is empty."] = "プライバシーグループは空です。"; +App::$strings["Privacy group: %s"] = "プライバシーグループ : %s"; +App::$strings["Connection: %s"] = "コネクション: %s"; +App::$strings["Connection not found."] = "コネクションがありません"; +App::$strings["female"] = "女性"; +App::$strings["%1\$s updated her %2\$s"] = "%1\$sが%2\$sをアップデートしました。"; +App::$strings["male"] = "男性"; +App::$strings["%1\$s updated his %2\$s"] = "%1\$sが%2\$sをアップデートしました。"; +App::$strings["%1\$s updated their %2\$s"] = "%1\$sが%2\$sをアップデートしました。"; +App::$strings["profile photo"] = "プロファイル画像"; +App::$strings["[Edited %s]"] = "[編集 %s]"; +App::$strings["__ctx:edit_activity__ Post"] = "投稿"; +App::$strings["__ctx:edit_activity__ Comment"] = "コメント"; +App::$strings["%d invitation available"] = ""; +App::$strings["Advanced"] = ""; +App::$strings["Find Channels"] = "友達を探す"; +App::$strings["Enter name or interest"] = "名前または興味を入力"; +App::$strings["Connect/Follow"] = "接続/フォロー"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Владимир Ильич, Революционер"; +App::$strings["Find"] = "検索"; +App::$strings["Channel Suggestions"] = "チャンネルの提案"; +App::$strings["Random Profile"] = "チャンネルガチャ"; +App::$strings["Invite Friends"] = "友人を招待しよう!"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Расширенный пример: name=ivan and country=russia"; +App::$strings["Saved Folders"] = "投稿のフォルダーへの保存"; +App::$strings["Everything"] = "全て"; +App::$strings["Common Connections"] = "Общие контакты"; +App::$strings["View all %d common connections"] = "%d件の全てのコネクションを表示"; +App::$strings["Unable to obtain identity information from database"] = "Невозможно получить идентификационную информацию из базы данных"; +App::$strings["Empty name"] = "空の名前"; +App::$strings["Name too long"] = "名前が長すぎます"; +App::$strings["No account identifier"] = ""; +App::$strings["Nickname is required."] = "ニックネームは必須です。"; +App::$strings["Reserved nickname. Please choose another."] = "このニックネームは利用済みです。他を利用してください。"; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "ニックネームが使用済みか、利用できない文字列が含まれています。"; +App::$strings["Unable to retrieve created identity"] = ""; +App::$strings["Default Profile"] = "デフォルトのプロファイル"; +App::$strings["Friends"] = ""; +App::$strings["Unable to retrieve modified identity"] = "Не удается найти изменённый идентификатор"; +App::$strings["Requested profile is not available."] = "要求されたプロファイルは利用できませんでした。"; +App::$strings["Change profile photo"] = "プロ画の変更"; +App::$strings["Create New Profile"] = "新しいプロファイルの作成"; +App::$strings["Profile Image"] = "プロファイルイメージ"; +App::$strings["Visible to everybody"] = "全員へ表示"; +App::$strings["Edit visibility"] = "表示範囲を指定する"; +App::$strings["Gender:"] = "性別:"; +App::$strings["Homepage:"] = "ホームページ:"; +App::$strings["Online Now"] = "オンライン"; +App::$strings["Change your profile photo"] = "プロファイル画像の変更"; +App::$strings["Trans"] = ""; +App::$strings["Neuter"] = ""; +App::$strings["Non-specific"] = ""; +App::$strings["Full Name:"] = "フルネーム:"; +App::$strings["Like this channel"] = "このチャンネルをいいね!する"; +App::$strings["j F, Y"] = ""; +App::$strings["j F"] = ""; +App::$strings["Birthday:"] = "誕生日:"; +App::$strings["Age:"] = "年齢:"; +App::$strings["for %1\$d %2\$s"] = "for %1\$d %2\$s"; +App::$strings["Tags:"] = "タグ:"; +App::$strings["Sexual Preference:"] = ""; +App::$strings["Hometown:"] = ""; +App::$strings["Political Views:"] = "政治関心:"; +App::$strings["Religion:"] = "信仰:"; +App::$strings["About:"] = ""; +App::$strings["Hobbies/Interests:"] = "趣味/興味:"; +App::$strings["Likes:"] = "好き:"; +App::$strings["Dislikes:"] = "嫌い:"; +App::$strings["Contact information and Social Networks:"] = "連絡先とソーシャルネットワーク:"; +App::$strings["My other channels:"] = "他のチャンネル:"; +App::$strings["Musical interests:"] = "好きな音楽:"; +App::$strings["Books, literature:"] = "好きな本やリテラチャー:"; +App::$strings["Television:"] = "好きなテレビ:"; +App::$strings["Film/dance/culture/entertainment:"] = "映画/ダンス/カルチャー/エンタメ:"; +App::$strings["Love/Romance:"] = "ラブ/ロマンス:"; +App::$strings["Work/employment:"] = "職 / 従業員:"; +App::$strings["School/education:"] = "学校 / 教育:"; +App::$strings["Profile"] = "プロファイル"; +App::$strings["Like this thing"] = "これにいいね!"; +App::$strings["Export"] = "エクスポート"; +App::$strings["cover photo"] = "カバー画像"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "あなたのチャンネルアドレスを入力してください(例: channel@example.com)"; +App::$strings["Authenticate"] = "Проверка подлинности"; +App::$strings["Account '%s' deleted"] = "アカウント'%s'は削除されました。"; +App::$strings["General Features"] = "Главные функции"; +App::$strings["New Member Links"] = "初めての人へ"; +App::$strings["Display new member quick links menu"] = "新規さんのためにクイックメニューを表示します。"; +App::$strings["Advanced Profiles"] = ""; +App::$strings["Additional profile sections and selections"] = "追加のプロファイルを作成する"; +App::$strings["Profile Import/Export"] = "プロファイルのインポートとエクスポート"; +App::$strings["Save and load profile details across sites/channels"] = "サイトやチャンネルを越えてプロファイルを保存、読み込みする"; +App::$strings["Web Pages"] = ""; +App::$strings["Provide managed web pages on your channel"] = "Предоставлять управляемые веб-страницы на Вашем канале"; +App::$strings["Provide a wiki for your channel"] = ""; +App::$strings["Private Notes"] = "プライバシーノート"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Включает инструмент для хранения заметок и напоминаний (прим.: не зашифровано)"; +App::$strings["Create personal planning cards"] = "Создать личные карточки планирования"; +App::$strings["Create interactive articles"] = "Создать интерактивные статьи"; +App::$strings["Navigation Channel Select"] = "ナビゲーションバーでのチャンネル切り換え"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "アカウント画像のメニューから簡単にチャンネルを切り換えができるようになります。"; +App::$strings["Photo Location"] = "画像の位置情報"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Если данные о местоположении доступны на загруженных фотографий, связать их с картой."; +App::$strings["Access Controlled Chatrooms"] = "チャットルームのアクセス権限"; +App::$strings["Provide chatrooms and chat services with access control."] = "Предоставлять чаты и их службы с контролем доступа."; +App::$strings["Smart Birthdays"] = "スマート誕生日"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "国境を越えた人も祝えるように誕生日の時間をそれぞれのタイムゾーンに依存せず固定する"; +App::$strings["Event Timezone Selection"] = "イベントタイムゾーンセレクション"; +App::$strings["Allow event creation in timezones other than your own."] = "自分以外のタイムゾーンでイベントの作成を許可する"; +App::$strings["Premium Channel"] = "プレミアムチャンネル"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Позволяет установить ограничения и условия для подключающихся к вашему каналу"; +App::$strings["Advanced Directory Search"] = ""; +App::$strings["Allows creation of complex directory search queries"] = "複雑なディレクトリ検索クエリの作成が可能になります"; +App::$strings["Advanced Theme and Layout Settings"] = "詳細なテーマ/レイアウト設定"; +App::$strings["Allows fine tuning of themes and page layouts"] = "Разрешает тонкую настройку тем и шаблонов страниц"; +App::$strings["Access Control and Permissions"] = "アクセスコントロールと権限"; +App::$strings["Enable management and selection of privacy groups"] = "Включить управление и выбор групп безопасности"; +App::$strings["Multiple Profiles"] = "複数のプロファイル"; +App::$strings["Ability to create multiple profiles"] = "プロファイルが一つだといつから錯覚していた....???"; +App::$strings["Permission Categories"] = "権限カテゴリー"; +App::$strings["Create custom connection permission limits"] = "Создать пользовательские ограничения на доступ к подключению"; +App::$strings["OAuth1 Clients"] = "Клиенты OAuth1"; +App::$strings["Manage OAuth1 authenticatication tokens for mobile and remote apps."] = "Управлять токенами аутентификации OAuth1 для мобильных и удалённых приложений."; +App::$strings["OAuth2 Clients"] = "Клиенты OAuth2"; +App::$strings["Manage OAuth2 authenticatication tokens for mobile and remote apps."] = "Управлять токенами аутентификации OAuth2 для мобильных и удалённых приложений."; +App::$strings["Access Tokens"] = "Токены доступа"; +App::$strings["Create access tokens so that non-members can access private content."] = "Создать токены доступа для доступа к приватному содержимому."; +App::$strings["Post Composition Features"] = "Функции создания публикаций"; +App::$strings["Large Photos"] = "大きい画像"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "1024px以上のサイズの大きいサムネイルを投稿に表示します。有効にしていない時は640pxの小さいサムネイルが表示されます。"; +App::$strings["Channel Sources"] = "チャンネルソース"; +App::$strings["Automatically import channel content from other channels or feeds"] = ""; +App::$strings["Even More Encryption"] = "暗号化"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = " +共通暗号化キーによるエンドツーエンドの暗号化処理のできるオプションです。"; +App::$strings["Enable Voting Tools"] = "投票ツール"; +App::$strings["Provide a class of post which others can vote on"] = "投稿に対して賛成反対の意思を選択できるボックスを追加できるようになるオプションです。"; +App::$strings["Disable Comments"] = "コメントの無効化"; +App::$strings["Provide the option to disable comments for a post"] = "投稿に対してコメントができなくなります(Activitypubやdiasporaユーザーには通用しないので気をつけてください)。"; +App::$strings["Delayed Posting"] = "投稿予約"; +App::$strings["Allow posts to be published at a later date"] = "投稿を指定時刻に自動的に投稿する予約をできるようにするオプションです。"; +App::$strings["Content Expiration"] = "時限性投稿"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "投稿/コメントを指定時刻に自動的に削除してくれるようにするオプションです。"; +App::$strings["Suppress Duplicate Posts/Comments"] = "投稿の連投阻止"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = " +同じ内容の投稿を連続でしようとした時に阻止してくれるようになります。"; +App::$strings["Auto-save drafts of posts and comments"] = "下書きの自動保存"; +App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = " +自動で書きかけの投稿を保存します。画面が復帰した時に入力欄に復元されるようになります。"; +App::$strings["Network and Stream Filtering"] = "ストリームフィルター"; +App::$strings["Search by Date"] = "日付で検索"; +App::$strings["Ability to select posts by date ranges"] = "日付範囲で投稿を選択できるようになります。"; +App::$strings["Saved Searches"] = "保存済みの検索ワード"; +App::$strings["Save search terms for re-use"] = "検索ワードを保存すると後で簡単に利用できるようになります。"; +App::$strings["Alternate Stream Order"] = "ストリームオーダー"; +App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = "ストリームオーダーではストリームを\"コメント更新順\"、\"投稿日時順\"、\"スレッドの分解\"で時系列に並び変えができるようになります。"; +App::$strings["Contact Filter"] = "コンタクトフィルター"; +App::$strings["Ability to display only posts of a selected contact"] = "入力欄に入力したユーザーのみの投稿を表示するフィルターです。"; +App::$strings["Forum Filter"] = "フォーラムフィルター"; +App::$strings["Ability to display only posts of a specific forum"] = "参加している特定フォーラムの投稿だけを表示するフィルターです。"; +App::$strings["Personal Posts Filter"] = "マイアクションフィルター"; +App::$strings["Ability to display only posts that you've interacted on"] = "自分の全ての行動を表示するフィルターです。他者の投稿へのコメント等も含まれます。"; +App::$strings["Affinity Tool"] = "友好深度フィルター(適語募集中)"; +App::$strings["Filter stream activity by depth of relationships"] = "フォロワーの親友度でフィルタリングをします。(日本語不完全)"; +App::$strings["Suggest Channels"] = "チャンネルの提案"; +App::$strings["Show friend and connection suggestions"] = "新たなフォローの候補を表示します。"; +App::$strings["Connection Filtering"] = "コネクションフィルタリング"; +App::$strings["Use blog/list mode"] = "ブログ/リストモード"; +App::$strings["Community Tagging"] = "第三者からのタグ付け"; +App::$strings["Max height of content (in pixels)"] = "コンテンツの高さ(ピクセル指定)"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "受信したポストをキーワードやコンテンツでフィルタリングする"; +App::$strings["Post/Comment Tools"] = "投稿/コメントツール"; +App::$strings["Comments will be displayed separately"] = "投稿一覧とコメントとを分割する"; +App::$strings["Ability to tag existing posts"] = "タグを追加でつけるためのボタン"; +App::$strings["Post Categories"] = "投稿カテゴリー"; +App::$strings["Add categories to your posts"] = "投稿にカテゴリーを追加する"; +App::$strings["Emoji Reactions"] = "絵文字リアクション"; +App::$strings["Add emoji reaction ability to posts"] = "絵文字一つでリアクションするための便利なボタン"; +App::$strings["Ability to file posts under folders"] = "投稿をフォルダーに保存して整理をすることができるようになります。"; +App::$strings["Dislike Posts"] = "わるいね!"; +App::$strings["Ability to dislike posts/comments"] = "投稿やコメントにわるいね!をするボタン"; +App::$strings["Star Posts"] = "ホシ付け"; +App::$strings["Ability to mark special posts with a star indicator"] = "目印のホシをつけるためのボタン"; +App::$strings["Tag Cloud"] = "タグクラウド"; +App::$strings["Provide a personal tag cloud on your channel page"] = "自分の投稿からタグクラウドを生成します。"; +App::$strings["Unable to determine sender."] = "Невозможно определить отправителя."; +App::$strings["No recipient provided."] = "Получатель не предоставлен."; +App::$strings["[no subject]"] = ""; +App::$strings["Stored post could not be verified."] = "Сохранённая публикация не может быть проверена."; +App::$strings["Frequently"] = "頻度"; +App::$strings["Hourly"] = "毎時"; +App::$strings["Twice daily"] = "隔日"; +App::$strings["Daily"] = "毎日"; +App::$strings["Weekly"] = "毎週"; +App::$strings["Monthly"] = "毎月"; +App::$strings["Currently Male"] = "今は男"; +App::$strings["Currently Female"] = "今は女"; +App::$strings["Mostly Male"] = "ほぼ男"; +App::$strings["Mostly Female"] = "ほぼ女"; +App::$strings["Transgender"] = "トランスジェンダー"; +App::$strings["Intersex"] = "インターセックス"; +App::$strings["Transsexual"] = "トランスセクシャル"; +App::$strings["Hermaphrodite"] = "半陰陽"; +App::$strings["Undecided"] = "未定義"; +App::$strings["Males"] = "男"; +App::$strings["Females"] = "女"; +App::$strings["Gay"] = "ゲイ"; +App::$strings["Lesbian"] = "レズ"; +App::$strings["No Preference"] = "性的指向無し"; +App::$strings["Bisexual"] = "バイセクシャル"; +App::$strings["Autosexual"] = "オートセクシャル"; +App::$strings["Abstinent"] = "禁欲"; +App::$strings["Virgin"] = "ヴァージン"; +App::$strings["Deviant"] = ""; +App::$strings["Fetish"] = ""; +App::$strings["Oodles"] = ""; +App::$strings["Nonsexual"] = ""; +App::$strings["Single"] = "独身"; +App::$strings["Lonely"] = "孤独"; +App::$strings["Available"] = ""; +App::$strings["Unavailable"] = ""; +App::$strings["Has crush"] = ""; +App::$strings["Infatuated"] = ""; +App::$strings["Dating"] = ""; +App::$strings["Unfaithful"] = ""; +App::$strings["Sex Addict"] = ""; +App::$strings["Friends/Benefits"] = ""; +App::$strings["Casual"] = ""; +App::$strings["Engaged"] = ""; +App::$strings["Married"] = "既婚"; +App::$strings["Imaginarily married"] = ""; +App::$strings["Partners"] = ""; +App::$strings["Cohabiting"] = ""; +App::$strings["Common law"] = ""; +App::$strings["Happy"] = ""; +App::$strings["Not looking"] = ""; +App::$strings["Swinger"] = ""; +App::$strings["Betrayed"] = ""; +App::$strings["Separated"] = "別居"; +App::$strings["Unstable"] = ""; +App::$strings["Divorced"] = ""; +App::$strings["Imaginarily divorced"] = "В воображаемом разводе"; +App::$strings["Widowed"] = ""; +App::$strings["Uncertain"] = "Неопределенный"; +App::$strings["It's complicated"] = ""; +App::$strings["Don't care"] = "Всё равно"; +App::$strings["Ask me"] = "聞いて"; +App::$strings["Delete this item?"] = "このアイテムを削除しますか?"; +App::$strings["Comment"] = "コメント"; +App::$strings["%s show all"] = "%s 全て表示する"; +App::$strings["%s show less"] = "%s 隠されてたものを隠す"; +App::$strings["%s expand"] = "%s 展開する"; +App::$strings["%s collapse"] = "%s 縮小する"; +App::$strings["Password too short"] = "パスワードが短かすぎます。"; +App::$strings["Passwords do not match"] = "パスワードが一致しません。"; +App::$strings["everybody"] = "だれでも"; +App::$strings["Secret Passphrase"] = "パスワード"; +App::$strings["Passphrase hint"] = "パスワードのヒント"; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Уведомление: Права доступа изменились, но до сих пор не сохранены."; +App::$strings["close all"] = "з全て閉じる"; +App::$strings["Nothing new here"] = "新しいものはありません"; +App::$strings["Rate This Channel (this is public)"] = "Оценкa этoго канала (общедоступно)"; +App::$strings["Rating"] = "Оценка"; +App::$strings["Describe (optional)"] = "Охарактеризовать (необязательно)"; +App::$strings["Please enter a link URL"] = "URLを入力してください : "; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Есть несохраненные изменения. Вы уверены, что хотите покинуть эту страницу?"; +App::$strings["Location"] = "ロケーション"; +App::$strings["lovely"] = "かわいらしい"; +App::$strings["wonderful"] = "素晴しい"; +App::$strings["fantastic"] = "わくわくする"; +App::$strings["great"] = "いい"; +App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = "このニックネームは利用できません。こちら("; +App::$strings[") or enter a new one."] = ")はどうですか?このまま続行するか新しいニックネームを入力してください。"; +App::$strings["Thank you, this nickname is valid."] = "Спасибо, этот псевдоним может быть использован."; +App::$strings["A channel name is required."] = "チャンネル名は必須です。"; +App::$strings["This is a "] = "これは"; +App::$strings[" channel name"] = "チャンネル名だ!"; +App::$strings["timeago.prefixAgo"] = ""; +App::$strings["timeago.prefixFromNow"] = ""; +App::$strings["timeago.suffixAgo"] = "前"; +App::$strings["timeago.suffixFromNow"] = ""; +App::$strings["less than a minute"] = "ほんのちょっとすぐ"; +App::$strings["about a minute"] = "1分ぐらい"; +App::$strings["%d minutes"] = "%d分"; +App::$strings["about an hour"] = "約1時間"; +App::$strings["about %d hours"] = "約%d時間"; +App::$strings["a day"] = "1日"; +App::$strings["%d days"] = "%d日"; +App::$strings["about a month"] = "約1ヶ月"; +App::$strings["%d months"] = "%dヶ月"; +App::$strings["about a year"] = "約1年"; +App::$strings["%d years"] = "%d年"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = ""; +App::$strings["__ctx:long__ May"] = "5月"; +App::$strings["Jan"] = "1月"; +App::$strings["Feb"] = "2月"; +App::$strings["Mar"] = "3月"; +App::$strings["Apr"] = "4月"; +App::$strings["__ctx:short__ May"] = "5月"; +App::$strings["Jun"] = "6月"; +App::$strings["Jul"] = "7月"; +App::$strings["Aug"] = "8月"; +App::$strings["Sep"] = "9月"; +App::$strings["Oct"] = "10月"; +App::$strings["Nov"] = "11月"; +App::$strings["Dec"] = "12月"; +App::$strings["Sun"] = "日"; +App::$strings["Mon"] = "月"; +App::$strings["Tue"] = "火"; +App::$strings["Wed"] = "水"; +App::$strings["Thu"] = "木"; +App::$strings["Fri"] = "金"; +App::$strings["Sat"] = "土"; +App::$strings["__ctx:calendar__ today"] = "今日"; +App::$strings["__ctx:calendar__ month"] = "月"; +App::$strings["__ctx:calendar__ week"] = "週"; +App::$strings["__ctx:calendar__ day"] = "日"; +App::$strings["__ctx:calendar__ All day"] = "毎日"; +App::$strings["View PDF"] = "PDFで見る"; +App::$strings[" by "] = ""; +App::$strings[" on "] = ""; +App::$strings["Embedded content"] = "Встроенное содержимое"; +App::$strings["Embedding disabled"] = "Встраивание отключено"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "Файл превышает предельный размер для сайта в %lu байт"; +App::$strings["Image file is empty."] = "Файл изображения пуст."; +App::$strings["Unable to process image"] = "Не удается обработать изображение"; +App::$strings["Photo storage failed."] = "Ошибка хранилища фотографий."; +App::$strings["a new photo"] = "новая фотография"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s опубликовал %2\$s в %3\$s"; +App::$strings["Recent Photos"] = "最近の画像"; +App::$strings["Upload New Photos"] = "Загрузить новые фотографии"; +App::$strings["New window"] = "Новое окно"; +App::$strings["Open the selected location in a different window or browser tab"] = "Открыть выбранное местоположение в другом окне или вкладке браузера"; +App::$strings["Wiki updated successfully"] = "Wiki успешно обновлена"; +App::$strings["Wiki files deleted successfully"] = "Wiki успешно удалена"; +App::$strings["0. Beginner/Basic"] = "Начинающий / Базовый"; +App::$strings["1. Novice - not skilled but willing to learn"] = "1. Новичок - не опытный, но желающий учиться"; +App::$strings["2. Intermediate - somewhat comfortable"] = "2. Промежуточный - более удобный"; +App::$strings["3. Advanced - very comfortable"] = "3. Продвинутый - очень удобный"; +App::$strings["4. Expert - I can write computer code"] = "4. Эксперт - я умею программировать"; +App::$strings["5. Wizard - I probably know more than you do"] = "5. Волшебник - возможно я знаю больше чем ты"; +App::$strings["Public"] = "一般公開"; +App::$strings["Anybody in the \$Projectname network"] = "Любому в сети \$Projectname"; +App::$strings["Any account on %s"] = "Любой аккаунт в %s"; +App::$strings["Any of my connections"] = "Любой из моих контактов"; +App::$strings["Only connections I specifically allow"] = "Только те контакты, кому я дам разрешение"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Любой аутентифицированный (может включать посетителей их других сетей)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Любые контакты включая те, которые вы ещё не одобрили"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Это настройка по умолчанию для аудитории ваших обычных потоков и публикаций"; +App::$strings["This is your default setting for who can view your default channel profile"] = "Это настройка по умолчанию для тех, кто может просматривать профиль вашего основного канала"; +App::$strings["This is your default setting for who can view your connections"] = "Это настройка по умолчанию для тех, кто может просматривать ваши контакты"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Это настройка по умолчанию для тех, кто может просматривать ваше хранилище файлов и фотографий"; +App::$strings["This is your default setting for the audience of your webpages"] = "Это настройка по умолчанию для аудитории ваших веб-страниц"; +App::$strings["Admin Delete"] = "管理者削除"; +App::$strings["Save to Folder"] = "フォルダに保存する"; +App::$strings["I will attend"] = "Я буду присутствовать"; +App::$strings["I will not attend"] = "Я не буду присутствовать"; +App::$strings["I might attend"] = "Я возможно буду присутствовать"; +App::$strings["I agree"] = "同意"; +App::$strings["I disagree"] = "反対"; +App::$strings["I abstain"] = "辞退"; +App::$strings["View all"] = "全て表示"; +App::$strings["Add Tag"] = "タグを追加する"; +App::$strings["I like this (toggle)"] = "いいね!する"; +App::$strings["I don't like this (toggle)"] = "わるいね!する"; +App::$strings["Share This"] = "再共有"; +App::$strings["share"] = ""; +App::$strings["Delivery Report"] = "投稿の転送状況"; +App::$strings["%d comment"] = "%d件のコメント"; +App::$strings["View %s's profile - %s"] = "%sのプロファイルを表示 - %s"; +App::$strings["to"] = ""; +App::$strings["via"] = ""; +App::$strings["Wall-to-Wall"] = "Стена-к-Стене"; +App::$strings["via Wall-To-Wall:"] = "через Стена-к-Стене:"; +App::$strings["Attend"] = "Посетить"; +App::$strings["Attendance Options"] = "Параметры посещаемости"; +App::$strings["Vote"] = "Голосовать"; +App::$strings["Voting Options"] = "Параметры голосования"; +App::$strings["Add to Calendar"] = "カレンダーに追加"; +App::$strings["Mark all seen"] = "全部既読する"; +App::$strings["__ctx:noun__ Likes"] = "__ctx:noun__ が'いいね!'をしました。"; +App::$strings["__ctx:noun__ Dislikes"] = "__ctx:noun__ が'わるいね!'をしました。"; +App::$strings["This is you"] = "This is you"; +App::$strings["Image"] = "画像の挿入"; +App::$strings["Insert Link"] = "リンクの挿入"; +App::$strings["Video"] = "ビデオ"; +App::$strings["Your full name (required)"] = "フルネーム(必須)"; +App::$strings["Your email address (required)"] = "Eメールアドレス(必須)"; +App::$strings["Your website URL (optional)"] = "URL(webサイト)"; +App::$strings["Apps"] = "アプリ"; +App::$strings["Site Admin"] = "管理画面"; +App::$strings["View Bookmarks"] = "ブックマークの表示"; +App::$strings["My Chatrooms"] = "チャット"; +App::$strings["Remote Diagnostics"] = ""; +App::$strings["Activity"] = "ホーム"; +App::$strings["Channel Home"] = "ユーザーの投稿"; +App::$strings["Directory"] = "ディレクトリ"; +App::$strings["Mail"] = "ダイレクトメッセージ"; +App::$strings["Mood"] = "Mood"; +App::$strings["Chat"] = "チャット"; +App::$strings["Probe"] = ""; +App::$strings["Suggest"] = "あなたへのおすすめ"; +App::$strings["Random Channel"] = "チャンネルガチャ"; +App::$strings["Invite"] = "招待する"; +App::$strings["Features"] = "Функции"; +App::$strings["Post"] = "投稿"; +App::$strings["Update"] = "更新"; +App::$strings["Install"] = "インストール"; +App::$strings["Purchase"] = "Купить"; +App::$strings["Undelete"] = "Восстановить"; +App::$strings["Add to app-tray"] = "app-trayに追加"; +App::$strings["Remove from app-tray"] = "app-trayから削除"; +App::$strings["Pin to navbar"] = "ナビバーに固定する"; +App::$strings["Unpin from navbar"] = "ナビバーのピンを外す"; +App::$strings["\$Projectname Notification"] = "\$Projectname通知"; +App::$strings["Thank You,"] = "ありがとう。"; +App::$strings["This email was sent by %1\$s at %2\$s."] = "このEmailは%1\$sから%2\$sへ送信されました。"; +App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "メッセージの受信を停止したい場合は、あなたの通知設定を調整してください。%s"; +App::$strings["To stop receiving these messages, please adjust your %s."] = "メッセージの受信を停止したい場合は、あなたの%sを調整してください。"; +App::$strings["Notification Settings"] = "通知設定"; +App::$strings["%s "] = ""; +App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Notify] Получено новое сообщение в %s"; +App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s отправил вам новое личное сообщение в %2\$s."; +App::$strings["%1\$s sent you %2\$s."] = "%1\$s послал вам %2\$s."; +App::$strings["a private message"] = "личное сообщение"; +App::$strings["Please visit %s to view and/or reply to your private messages."] = "Пожалуйста, посетите %s для просмотра и/или ответа на ваши личные сообщения."; +App::$strings["commented on"] = "コメント :"; +App::$strings["liked"] = "いいね!"; +App::$strings["disliked"] = "わるいね!"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = ""; +App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = ""; +App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s%2\$s [zrl=%3\$s]あなたの %4\$s[/zrl]"; +App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Отмодерирован комментарий к беседе #%1\$d по %2\$s"; +App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Комментарий к беседе #%1\$d по %2\$s"; +App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$sがあなたがフォローしている投稿/コンテンツにコメントしました"; +App::$strings["Please visit %s to view and/or reply to the conversation."] = "Пожалуйста, посетите %s для просмотра и / или ответа в беседе."; +App::$strings["Please visit %s to approve or reject this comment."] = "Пожалуйста посетитет %s для одобрения и отклонения комментария."; +App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$sが[zrl=%2\$s]あなたの%3\$s[/zrl]をいいね!しました。"; +App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Беседа получила отметку \"нравится\" #%1\$d от %2\$s"; +App::$strings["%1\$s liked an item/conversation you created."] = "%1\$s нравится тема / беседа которую вы создали."; +App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Notify] %s сделал публикацию на стене вашего профиля"; +App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s сделал публикацию на стене вашего профиля в %2\$s"; +App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s опубликовал на [zrl=%2\$s]вашей стене[/zrl]"; +App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Notify] %sがタグ付けしました。"; +App::$strings["%1\$s tagged you at %2\$s"] = "%1\$sが%2\$sにタグ付けしました。"; +App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$s]タグ付けしました[/zrl]。"; +App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Notify] %1\$sがpokeしました。"; +App::$strings["%1\$s poked you at %2\$s"] = "%1\$sが%2\$sをpokeしました。"; +App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]がpokeしました[/zrl]。"; +App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Notify] %sがあなたの投稿にタグ付けしました。"; +App::$strings["%1\$s tagged your post at %2\$s"] = ""; +App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$sが[zrl=%2\$s]あなたの投稿[/zrl]にタグ付けしました。"; +App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Notify] Получено приглашение"; +App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Вы получили новый запрос контакта от '%1\$s' в %2\$s"; +App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Вы получили [zrl=%1\$s]новый запрос контакта[/zrl] от %2\$s."; +App::$strings["You may visit their profile at %s"] = "Вы можете увидеть его профиль по ссылке %s"; +App::$strings["Please visit %s to approve or reject the connection request."] = "Пожалуйста, посетите %s, чтобы одобрить или отклонить запрос контакта."; +App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Notify] Получено предложение дружить"; +App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Вы получили предложение дружить от '%1\$s' в %2\$s"; +App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Вы получили [zrl=%1\$s]предложение дружить[/zrl] для %2\$s от %3\$s."; +App::$strings["Name:"] = "Имя:"; +App::$strings["Photo:"] = "Фото:"; +App::$strings["Please visit %s to approve or reject the suggestion."] = "Пожалуйста, посетите %s, чтобы одобрить или отклонить предложение."; +App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Уведомление]"; +App::$strings["created a new post"] = "新しい投稿を作成しました。"; +App::$strings["commented on %s's post"] = "%sの投稿にコメントしました。"; +App::$strings["edited a post dated %s"] = "отредактировал публикацию датированную %s"; +App::$strings["edited a comment dated %s"] = "отредактировал комментарий датированный %s"; +App::$strings["(No Title)"] = "(нет заголовка)"; +App::$strings["Wiki page create failed."] = "Не удалось создать страницу Wiki."; +App::$strings["Wiki not found."] = "Wiki не найдена."; +App::$strings["Destination name already exists"] = "Имя назначения уже существует"; +App::$strings["Page not found"] = "Страница не найдена."; +App::$strings["Error reading page content"] = "Ошибка чтения содержимого страницы"; +App::$strings["Error reading wiki"] = "Ошибка чтения Wiki"; +App::$strings["Page update failed."] = "Не удалось обновить страницу."; +App::$strings["Nothing deleted"] = "Ничего не удалено"; +App::$strings["Compare: object not found."] = "Сравнение: объект не найден."; +App::$strings["Page updated"] = "Страница обновлена"; +App::$strings["Untitled"] = "Не озаглавлено"; +App::$strings["Wiki resource_id required for git commit"] = "Требуется resource_id Wiki для отправки в Git"; +App::$strings["__ctx:wiki_history__ Message"] = "Сообщение"; +App::$strings["__ctx:permcat__ default"] = "デフォルト"; +App::$strings["__ctx:permcat__ follower"] = "フォロワー"; +App::$strings["__ctx:permcat__ contributor"] = "コントリビューター"; +App::$strings["__ctx:permcat__ publisher"] = "パブリッシャー"; +App::$strings["Update Error at %s"] = "アップデートが%sでエラーしました"; +App::$strings["Update %s failed. See error logs."] = "%sのアップデートに失敗しました。エラーログを確認してください。"; +App::$strings["Missing room name"] = "[ルーム名が無い]"; +App::$strings["Duplicate room name"] = "[ルーム名の重複]"; +App::$strings["Invalid room specifier."] = ""; +App::$strings["Room not found."] = "ルームは存在しません。"; +App::$strings["Room is full"] = " ルームは満杯です。"; +App::$strings["Commented Date"] = "コメント更新順"; +App::$strings["Order by last commented date"] = "コメントが新しい順に投稿を並べる"; +App::$strings["Posted Date"] = "投稿日時順"; +App::$strings["Order by last posted date"] = "投稿日時が新しい順に投稿を並べる"; +App::$strings["Date Unthreaded"] = "スレッドの分解/Twitter風"; +App::$strings["Order unthreaded by date"] = "投稿コメント関係無しに時系列に並べる"; +App::$strings["Activity Order"] = "投稿の並び"; +App::$strings["Site"] = "サイト"; +App::$strings["Accounts"] = "アカウント"; +App::$strings["Member registrations waiting for confirmation"] = "メンバーが登録の許可を待っています"; +App::$strings["Channels"] = "チャンネル"; +App::$strings["Security"] = "セキュリティ"; +App::$strings["Addons"] = "アドオン"; +App::$strings["Themes"] = "テーマ"; +App::$strings["Inspect queue"] = "待機中のキュー"; +App::$strings["Profile Fields"] = "プロファイルの内容"; +App::$strings["DB updates"] = ""; +App::$strings["Logs"] = "ログ"; +App::$strings["Addon Features"] = "アドオンの設定"; +App::$strings["Tasks"] = "タスク"; +App::$strings["Ignore/Hide"] = "拒否/隠す"; +App::$strings["Suggestions"] = "知り合いかも?"; +App::$strings["See more..."] = "もっと見る"; +App::$strings["Received Messages"] = "メッセージを受信しました"; +App::$strings["Sent Messages"] = "メッセージを送信しました"; +App::$strings["Conversations"] = "会話"; +App::$strings["No messages."] = "メッセージはありません"; +App::$strings["Delete conversation"] = "会話を削除"; +App::$strings["Select Channel"] = "チャンネルの選択"; +App::$strings["Read-write"] = "読み書き"; +App::$strings["Read-only"] = "読む"; +App::$strings["My Calendars"] = "マイ カレンダー"; +App::$strings["Shared Calendars"] = "共有カレンダー"; +App::$strings["Share this calendar"] = "このカレンダーを共有する"; +App::$strings["Calendar name and color"] = "カレンダー名と色"; +App::$strings["Create new calendar"] = "新しいカレンダーを作成"; +App::$strings["Create"] = "作成"; +App::$strings["Calendar Name"] = "カレンダー名"; +App::$strings["Calendar Tools"] = "カレンダーツール"; +App::$strings["Import calendar"] = "カレンダーのインポート"; +App::$strings["Select a calendar to import to"] = "インポートするカレンダーを選択してください"; +App::$strings["Upload"] = "アップロード"; +App::$strings["Addressbooks"] = "アドレス帳"; +App::$strings["Addressbook name"] = "アドレス帳の名前"; +App::$strings["Create new addressbook"] = "新しいアドレス帳の作成"; +App::$strings["Addressbook Name"] = "アドレス帳の名前"; +App::$strings["Addressbook Tools"] = "アドレス帳ツール"; +App::$strings["Import addressbook"] = "アドレス帳のインポート"; +App::$strings["Select an addressbook to import to"] = "インポートするアドレス帳を選択してください"; +App::$strings["__ctx:widget__ Activity"] = "Активность"; +App::$strings["HQ Control Panel"] = "Панель управления HQ"; +App::$strings["Create a new post"] = "新規投稿の作成"; +App::$strings["Add new page"] = "新しいページの追加"; +App::$strings["Options"] = "オプション"; +App::$strings["Wiki Pages"] = "Wikiページ一覧"; +App::$strings["Page name"] = "ページの名前"; +App::$strings["Private Mail Menu"] = "プライベートメッセージメニュー"; +App::$strings["Combined View"] = "統合ビュー"; +App::$strings["Inbox"] = "受信ボックス"; +App::$strings["Outbox"] = "送信ボックス"; +App::$strings["New Message"] = "新規メッセージ"; +App::$strings["photo/image"] = "画像"; +App::$strings["Archives"] = "アーカイブ"; +App::$strings["Events Tools"] = "イベントツール"; +App::$strings["Export Calendar"] = "カレンダーのエクスポート"; +App::$strings["Import Calendar"] = "カレンダーのインポート"; +App::$strings["Wiki List"] = "Wikiリスト"; +App::$strings["Account settings"] = "アカウント設定"; +App::$strings["Channel settings"] = "チャンネルの設定"; +App::$strings["Additional features"] = ""; +App::$strings["Addon settings"] = "アドオンの設定"; +App::$strings["Display settings"] = "見た目の設定"; +App::$strings["Manage locations"] = "所在地の管理"; +App::$strings["Export channel"] = "チャンネルのエクスポート"; +App::$strings["OAuth1 apps"] = "OAuth1アプリケーション"; +App::$strings["OAuth2 apps"] = "OAuth2アプリケーション"; +App::$strings["Guest Access Tokens"] = "ゲスト アクセストゥークン"; +App::$strings["Connection Default Permissions"] = "規定のコネクション権限"; +App::$strings["Premium Channel Settings"] = "プレミアムチャンネル設定"; +App::$strings["View Photo"] = "画像を見る"; +App::$strings["Edit Album"] = "アルバムの編集"; +App::$strings["Public Hubs"] = ""; +App::$strings["Notes"] = "メモ"; +App::$strings["Overview"] = ""; +App::$strings["App Collections"] = "アプリ一覧"; +App::$strings["Available Apps"] = "利用可能なアプリ"; +App::$strings["Installed apps"] = "インストール済みアプリ"; +App::$strings["Bookmarked Chatrooms"] = "ブックマーク済みのチャットルーム"; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "У вас есть %1$.0f из %2$.0f разрешенных контактов."; +App::$strings["Add New Connection"] = "新しい接続の作成"; +App::$strings["Enter channel address"] = "チャンネルのurlを入力してください。"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "例 : harukin@plus.haruk.in https://plus.haruk.in/channel/harukin"; +App::$strings["Chat Members"] = "チャットメンバー"; +App::$strings["Suggested Chatrooms"] = "チャットルームの提案"; +App::$strings["Rating Tools"] = "評価ツール"; +App::$strings["Rate Me"] = "自分の評価"; +App::$strings["View Ratings"] = "評価を見る"; +App::$strings["Remove term"] = "Удалить термин"; +App::$strings["Me"] = ""; +App::$strings["Family"] = "Семья"; +App::$strings["Acquaintances"] = "Знакомые"; +App::$strings["All"] = "全部"; +App::$strings["Refresh"] = "更新"; +App::$strings["Personal Posts"] = "マイアクション"; +App::$strings["Show posts that mention or involve me"] = "自分がコメント、いいね!等をした投稿を表示する"; +App::$strings["Starred Posts"] = "ホシをつけた投稿"; +App::$strings["Show posts that I have starred"] = "ホシをつけた投稿を表示する"; +App::$strings["Show posts related to the %s privacy group"] = "プライバシーグループ\"%s\"の中の投稿を表示する"; +App::$strings["Show my privacy groups"] = "プライバシーグループを表示する"; +App::$strings["Show posts to this forum"] = "このフォーラムへの投稿を表示する"; +App::$strings["Forums"] = "フォーラム"; +App::$strings["Show forums"] = "フォーラムの表示"; +App::$strings["Show posts that I have filed to %s"] = "フォルダ'%s'に保存した投稿を表示"; +App::$strings["Show filed post categories"] = "保存した投稿"; +App::$strings["Panel search"] = "パネルサーチ"; +App::$strings["Filter by name"] = "特定文字列でフィルタリング"; +App::$strings["Remove active filter"] = "アクティビティフィルターの消去"; +App::$strings["Activity Filters"] = "アクティビティフィルター"; +App::$strings["Click to show more"] = "更に表示....."; +App::$strings["New Network Activity"] = "ホーム"; +App::$strings["New Network Activity Notifications"] = "ホームへの通知"; +App::$strings["View your network activity"] = "ホームを見る"; +App::$strings["Mark all notifications read"] = "全部既読にする"; +App::$strings["Show new posts only"] = "新しい投稿のみ表示する"; +App::$strings["New Home Activity"] = "自分への新しいアクティビティ"; +App::$strings["New Home Activity Notifications"] = "自分への新しいアクティビティ通知"; +App::$strings["View your home activity"] = "自分の投稿を見る"; +App::$strings["Mark all notifications seen"] = "全部既読にする"; +App::$strings["New Mails"] = "新しいダイレクトメッセージ"; +App::$strings["New Mails Notifications"] = "メッセージ通知"; +App::$strings["View your private mails"] = "メッセージを見る"; +App::$strings["Mark all messages seen"] = "全てのメッセージを既読にする"; +App::$strings["New Events"] = "新しいイベント"; +App::$strings["New Events Notifications"] = "新しいイベントの通知"; +App::$strings["View events"] = "イベントを見る"; +App::$strings["Mark all events seen"] = "全部既読にする"; +App::$strings["New Connections"] = "新規フォロー"; +App::$strings["New Connections Notifications"] = "新規フォローの通知"; +App::$strings["View all connections"] = "全てのコネクションを見る"; +App::$strings["New Files"] = "新しいファイル"; +App::$strings["New Files Notifications"] = "新しいファイルの通知"; +App::$strings["Notices"] = "通知"; +App::$strings["View all notices"] = "全ての通知を見る"; +App::$strings["Mark all notices seen"] = "全部既読にする"; +App::$strings["New Registrations"] = "新規登録"; +App::$strings["New Registrations Notifications"] = "新規登録の通知"; +App::$strings["Public Stream"] = "連合タイムライン"; +App::$strings["Public Stream Notifications"] = "連合タイムライン通知"; +App::$strings["View the public stream"] = "連合タイムラインを見る"; +App::$strings["Sorry, you have got no notifications at the moment"] = "申し訳ありませんが現在通知が取得できません。もう少しお待ちください。接続状況を確認して頂き、問題の無い場合は鯖主へご連絡ください。"; +App::$strings["Profile Creation"] = "プロフィールを作成しよう!"; +App::$strings["Upload profile photo"] = "プロ画をアップロードしよう!"; +App::$strings["Upload cover photo"] = "カバー画をアップロードしよう!"; +App::$strings["Find and Connect with others"] = "人を探してフォローしよう!"; +App::$strings["View the directory"] = "ディレクトリを見る"; +App::$strings["View friend suggestions"] = "フォローの提案を見る"; +App::$strings["Manage your connections"] = "自分のコネクションを管理する"; +App::$strings["Communicate"] = "さぁコミュニケーションだ!"; +App::$strings["View your channel homepage"] = "自分のチャンネルを見る"; +App::$strings["View your network stream"] = "自分のホームを見る"; +App::$strings["Documentation"] = "ドキュメント"; +App::$strings["View public stream"] = "連合タイムラインを見る"; +App::$strings["Social Networking"] = "一般的SNS用途"; +App::$strings["Social - Federation"] = "Social - 連合"; +App::$strings["Social - Mostly Public"] = "Social - 公開"; +App::$strings["Social - Restricted"] = "Social - 限定"; +App::$strings["Social - Private"] = "Social - 非公開"; +App::$strings["Community Forum"] = "コミュニティ / フォーラム"; +App::$strings["Forum - Mostly Public"] = "Forum - 公開"; +App::$strings["Forum - Restricted"] = "Forum - 限定"; +App::$strings["Forum - Private"] = "Forum - 非公開"; +App::$strings["Feed Republish"] = ""; +App::$strings["Feed - Mostly Public"] = "Feed - 公開"; +App::$strings["Feed - Restricted"] = "Feed - 限定"; +App::$strings["Special Purpose"] = ""; +App::$strings["Special - Celebrity/Soapbox"] = ""; +App::$strings["Special - Group Repository"] = ""; +App::$strings["Custom/Expert Mode"] = "カスタム / エキスパートモード"; +App::$strings["Can view my channel stream and posts"] = "チャンネルストリームや投稿の表示"; +App::$strings["Can send me their channel stream and posts"] = "個人のチャンネルストリームへの投稿"; +App::$strings["Can view my default channel profile"] = "規定のチャンネルプロファイルの表示"; +App::$strings["Can view my connections"] = "コネクションの表示"; +App::$strings["Can view my file storage and photos"] = "ストレージや画像の表示"; +App::$strings["Can upload/modify my file storage and photos"] = "ストレージやアルバムへのアップロード"; +App::$strings["Can view my channel webpages"] = "チャンネルウェブページの表示"; +App::$strings["Can view my wiki pages"] = "ウィキページの表示"; +App::$strings["Can create/edit my channel webpages"] = "ウェブページの編集"; +App::$strings["Can write to my wiki pages"] = "wikiへの寄稿"; +App::$strings["Can post on my channel (wall) page"] = "チャンネルページへの寄稿"; +App::$strings["Can comment on or like my posts"] = "投稿へのコメントやいいね!"; +App::$strings["Can send me private mail messages"] = "プライベートメッセージ(DM)の送信"; +App::$strings["Can like/dislike profiles and profile things"] = "プロファイルやプロファイル項目へのいいね!/わるいね!"; +App::$strings["Can forward to all my channel connections via ! mentions in posts"] = "!マークでのメンション&投稿"; +App::$strings["Can chat with me"] = "チャット"; +App::$strings["Can source my public posts in derived channels"] = "送信された投稿のソースへのリンク"; +App::$strings["Can administer my channel"] = "自分のチャンネルの管理権限"; +App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = " +リモートログインに失敗しました。既にローカルでログインしています。ログアウトしてから再試行してください。"; +App::$strings["App installed."] = "アプリはインストール済みです。"; +App::$strings["Malformed app."] = "不正な形式のアプリ."; +App::$strings["Embed code"] = ""; +App::$strings["Edit App"] = "アプリの編集"; +App::$strings["Create App"] = "アプリの作成"; +App::$strings["Name of app"] = "アプリの名前"; +App::$strings["Location (URL) of app"] = "アプリのURL"; +App::$strings["Photo icon URL"] = "アプリのアイコンのURL"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 ピクセル - 任意"; +App::$strings["Categories (optional, comma separated list)"] = "カテゴリー (任意、コンマで分けれます。)"; +App::$strings["Version ID"] = "バージョンID"; +App::$strings["Price of app"] = "アプリの価格"; +App::$strings["Location (URL) to purchase app"] = "アプリ購入先URL"; +App::$strings["network"] = "ネットワーク"; +App::$strings["INVALID EVENT DISMISSED!"] = ""; +App::$strings["Summary: "] = "サマリー:"; +App::$strings["Date: "] = "日付:"; +App::$strings["Reason: "] = "理由:"; +App::$strings["INVALID CARD DISMISSED!"] = ""; +App::$strings["Name: "] = "名前:"; +App::$strings["Event title"] = "イベントのタイトル"; +App::$strings["Start date and time"] = "開始日と時刻"; +App::$strings["Example: YYYY-MM-DD HH:mm"] = "例: YYYY-MM-DD HH:mm"; +App::$strings["End date and time"] = "終了日と時刻"; +App::$strings["Previous"] = "前へ"; +App::$strings["Next"] = "次へ"; +App::$strings["Today"] = "今日"; +App::$strings["Month"] = "月"; +App::$strings["Week"] = "週"; +App::$strings["Day"] = "日"; +App::$strings["List month"] = "月リスト"; +App::$strings["List week"] = "週リスト"; +App::$strings["List day"] = "日リスト"; +App::$strings["More"] = "増やす"; +App::$strings["Less"] = "減らす"; +App::$strings["Select calendar"] = "カレンダーの選択"; +App::$strings["Delete all"] = "全部削除"; +App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Простите, но редактирование повторяющихся событий пока не реализовано."; +App::$strings["Organisation"] = "Организация"; +App::$strings["Title"] = "Наименование"; +App::$strings["Phone"] = "電話番号"; +App::$strings["Instant messenger"] = "メッセージ"; +App::$strings["Website"] = "Веб-сайт"; +App::$strings["Address"] = "アドレス"; +App::$strings["Note"] = "Заметка"; +App::$strings["Add Field"] = "追加"; +App::$strings["P.O. Box"] = "абонентский ящик"; +App::$strings["Additional"] = "Дополнительно"; +App::$strings["Street"] = "Улица"; +App::$strings["Locality"] = "Населённый пункт"; +App::$strings["Region"] = "Регион"; +App::$strings["ZIP Code"] = "Индекс"; +App::$strings["Country"] = "国"; +App::$strings["Default Calendar"] = "デフォルトカレンダー"; +App::$strings["Default Addressbook"] = "デフォルトアドレスブック"; +App::$strings["This page is available only to site members"] = "Эта страница доступна только для подписчиков сайта"; +App::$strings["Welcome"] = ""; +App::$strings["What would you like to do?"] = "Что бы вы хотели сделать?"; +App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Пожалуйста, запомните эту страницу если вы хотите вернуться на неё в будущем"; +App::$strings["Upload a profile photo"] = "Загрузить фотографию профиля"; +App::$strings["Upload a cover photo"] = "Загрузить фотографию обложки"; +App::$strings["Edit your default profile"] = "Редактировать ваш профиль по умолчанию"; +App::$strings["View the channel directory"] = "Просмотр каталога каналов"; +App::$strings["View/edit your channel settings"] = "Просмотреть / редактировать настройки вашего канала"; +App::$strings["View the site or project documentation"] = "Просмотр документации сайта / проекта"; +App::$strings["Visit your channel homepage"] = "Посетить страницу вашего канала"; +App::$strings["View your connections and/or add somebody whose address you already know"] = "Просмотреть ваши контакты и / или добавить кого-то чей адрес в уже знаете"; +App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Ваш персональный поток (может быть пуст пока вы не добавите контакты)"; +App::$strings["View the public stream. Warning: this content is not moderated"] = "Просмотр публичного потока. Предупреждение: этот контент не модерируется"; +App::$strings["Page owner information could not be retrieved."] = "Информация о владельце страницы не может быть получена."; +App::$strings["Album not found."] = "Альбом не найден."; +App::$strings["Delete Album"] = "Удалить альбом"; +App::$strings["Delete Photo"] = "画像の削除"; +App::$strings["Public access denied."] = "Общественный доступ запрещен."; +App::$strings["No photos selected"] = "Никакие фотографии не выбраны"; +App::$strings["Access to this item is restricted."] = "Доступ к этому элементу ограничен."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "画像に%1$.2f MB中%2$.2fMBの容量を消費しています。"; +App::$strings["%1$.2f MB photo storage used."] = "画像に%1$.2fMBの容量を消費しています。"; +App::$strings["Upload Photos"] = "画像のアップロード"; +App::$strings["Enter an album name"] = "アルバム名"; +App::$strings["or select an existing album (doubleclick)"] = "または既にあるアルバムに追加(ダブルクリック)"; +App::$strings["Create a status post for this upload"] = "このアップロードに関して自動でインフォメーション投稿をする"; +App::$strings["Description (optional)"] = "説明(オプション)"; +App::$strings["Show Newest First"] = "名前順"; +App::$strings["Show Oldest First"] = "古い順"; +App::$strings["Add Photos"] = "画像の追加"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Доступ запрещен. Доступ к этому элементу может быть ограничен."; +App::$strings["Photo not available"] = "画像は利用できません"; +App::$strings["Use as profile photo"] = "プロファイル画像として使用"; +App::$strings["Use as cover photo"] = "カバー画像として使用"; +App::$strings["Private Photo"] = "プライベート画像"; +App::$strings["View Full Size"] = "フルサイズで表示"; +App::$strings["Edit photo"] = "画像の編集"; +App::$strings["Rotate CW (right)"] = "右に回転"; +App::$strings["Rotate CCW (left)"] = "左に回転"; +App::$strings["Move photo to album"] = "画像を指定のアルバムへ移動"; +App::$strings["Enter a new album name"] = "新しいアルバム名の入力"; +App::$strings["or select an existing one (doubleclick)"] = "又は既存のアルバムの使用(ダブルクリック)"; +App::$strings["Add a Tag"] = "タグの追加"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "例: @bob, @Barbara_Jensen, @jim@example.com"; +App::$strings["Flag as adult in album view"] = "アルバム内でアダルトフラグを付ける"; +App::$strings["Photo Tools"] = "画像ツール"; +App::$strings["In This Photo:"] = "На этой фотографии:"; +App::$strings["Map"] = "Карта"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Указанные хабы разрешают публичную регистрацию для сети \$Projectname. Все хабы в сети взаимосвязаны, поэтому членство в любом из них передает членство во всю сеть. Некоторым хабам может потребоваться подписка или предоставление многоуровневых планов обслуживания. Сам хаб может предоставить дополнительные сведения."; +App::$strings["Hub URL"] = "URL сервера"; +App::$strings["Access Type"] = "Тип доступа"; +App::$strings["Registration Policy"] = "Политика регистрации"; +App::$strings["Stats"] = "Статистика"; +App::$strings["Software"] = "Программное обеспечение"; +App::$strings["Rate"] = "Оценка"; +App::$strings["View"] = "表示"; +App::$strings["Continue"] = "続ける"; +App::$strings["Premium Channel Setup"] = "Установка премиум канала"; +App::$strings["Enable premium channel connection restrictions"] = "Включить ограничения для премиум канала"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Пожалуйста введите ваши ограничения или условия, такие, как оплата PayPal, правила использования и т.п."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "このチャンネルをフォローするためには追加のステップや許諾が必要になる可能性があります :"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Потенциальные соединения будут видеть следующий предварительный текст:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "継続することにより、私はこのページで提供された指示に従ったとみなします。"; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Владельцем канала не было представлено никаких специальных инструкций.)"; +App::$strings["Restricted or Premium Channel"] = "制限された、またはプレミアムなチャンネル"; +App::$strings["Poke somebody"] = ""; +App::$strings["Poke/Prod"] = ""; +App::$strings["Poke, prod or do other things to somebody"] = ""; +App::$strings["Recipient"] = ""; +App::$strings["Choose what you wish to do to recipient"] = ""; +App::$strings["Make this post private"] = ""; +App::$strings["Unable to find your hub."] = "あなたのhubからみつけることができませんでした。"; +App::$strings["Post successful."] = "投稿しました。"; +App::$strings["%s element installed"] = "%sのエレメントがインストールされました。"; +App::$strings["%s element installation failed"] = "%sのエレメントのインストールに失敗しました。"; +App::$strings["sent you a private message"] = "あなたにプライベートメッセージを送信しました。"; +App::$strings["added your channel"] = "あなたのチャンネルを追加しました。"; +App::$strings["requires approval"] = "Требуется подтверждение"; +App::$strings["g A l F d"] = "g A l F d"; +App::$strings["[today]"] = "[今日]"; +App::$strings["posted an event"] = "イベントを投稿しました。"; +App::$strings["shared a file with you"] = "あなたとファイルを共有しました。"; +App::$strings["Private forum"] = "プライベートフォーラム"; +App::$strings["Public forum"] = "パブリックフォーラム"; +App::$strings["Some blurb about what to do when you're new here"] = "Некоторые предложения о том, что делать, если вы здесь новичок "; +App::$strings["Active"] = "アクティブ"; +App::$strings["Blocked"] = "ブロック"; +App::$strings["Ignored"] = "拒否"; +App::$strings["Hidden"] = "隠し"; +App::$strings["Archived/Unreachable"] = "アーカイブ/リーチ"; +App::$strings["Active Connections"] = "アクティブなコネクション"; +App::$strings["Show active connections"] = "アクティブなコネクションを表示"; +App::$strings["Show pending (new) connections"] = "許可待ちな新しいコネクションを表示"; +App::$strings["Only show blocked connections"] = "ブロック済みのコネクションだけを表示"; +App::$strings["Only show ignored connections"] = "拒否済みのコネクションだけを表示"; +App::$strings["Only show archived/unreachable connections"] = "アーカイブ/リーチ済みのコネクションだけを表示"; +App::$strings["Only show hidden connections"] = "隠したコネクションだけを表示"; +App::$strings["All Connections"] = "全てのコネクション"; +App::$strings["Show all connections"] = "全てのコネクションを表示する"; +App::$strings["Pending approval"] = "許可待ち"; +App::$strings["Archived"] = "アーカイブ済み"; +App::$strings["Not connected at this location"] = "このロケーションからはアクセスできません。"; +App::$strings["%1\$s [%2\$s]"] = ""; +App::$strings["Edit connection"] = "コネクションの編集"; +App::$strings["Delete connection"] = "コネクションの削除"; +App::$strings["Channel address"] = "チャンネルアドレス"; +App::$strings["Network"] = "ネットワーク"; +App::$strings["Call"] = ""; +App::$strings["Status"] = "ステータス"; +App::$strings["Connected"] = "コネクト日時"; +App::$strings["Approve connection"] = "コネクション要求の許可"; +App::$strings["Ignore connection"] = "コネクション要求の拒否"; +App::$strings["Ignore"] = "拒否"; +App::$strings["Recent activity"] = "最近のアクティビティ"; +App::$strings["Search your connections"] = "コネクションを検索"; +App::$strings["Connections search"] = "コネクションの検索"; +App::$strings["Unable to locate original post."] = "ポストのオリジナルの場所を特定できませんでした。"; +App::$strings["Empty post discarded."] = "空のポストは作成できません。"; +App::$strings["Duplicate post suppressed."] = "多重投稿を検出しました。"; +App::$strings["System error. Post not saved."] = "システムエラーです。投稿は保存されませんでした。"; +App::$strings["Your comment is awaiting approval."] = "Ваш комментарий ожидает одобрения."; +App::$strings["Unable to obtain post information from database."] = "データベースから投稿の情報を取得できませんでした。"; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Вы достигли вашего ограничения в %1$.0f публикаций высокого уровня."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Вы достигли вашего ограничения в %1$.0f страниц."; +App::$strings["Calendar entries imported."] = "События календаря импортированы."; +App::$strings["No calendar entries found."] = "Не найдено событий в календаре."; +App::$strings["Event can not end before it has started."] = "Событие не может завершиться до его начала."; +App::$strings["Unable to generate preview."] = "プレビューの生成ができませんでした。"; +App::$strings["Event title and start time are required."] = "イベントのタイトルと開始時刻は必須です"; +App::$strings["Event not found."] = "Событие не найдено."; +App::$strings["Edit event title"] = "イベントタイトル"; +App::$strings["Categories (comma-separated list)"] = "カテゴリ指定 (任意、カンマで追加)"; +App::$strings["Edit Category"] = "カテゴリーの編集"; +App::$strings["Category"] = "カテゴリー"; +App::$strings["Edit start date and time"] = "開始時刻と日時"; +App::$strings["Finish date and time are not known or not relevant"] = "終了時期は未定、又は終了概念が無い"; +App::$strings["Edit finish date and time"] = "終了時刻と日時"; +App::$strings["Finish date and time"] = "終了時刻と日時"; +App::$strings["Adjust for viewer timezone"] = "観覧者のタイムゾーンに自動で調整する"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "局所的なイベントには的していますが、世界的なイベントには適していないかもしれません。"; +App::$strings["Edit Description"] = "説明"; +App::$strings["Edit Location"] = "位置情報"; +App::$strings["Timezone:"] = "タイムゾーン:"; +App::$strings["Advanced Options"] = "詳細設定"; +App::$strings["l, F j"] = ""; +App::$strings["Edit event"] = "イベントの編集"; +App::$strings["Delete event"] = "イベントの削除"; +App::$strings["calendar"] = "カレンダー"; +App::$strings["Edit Event"] = "イベントの編集"; +App::$strings["Create Event"] = "イベントの作成"; +App::$strings["Event removed"] = "イベントは削除されました"; +App::$strings["Failed to remove event"] = "イベントの削除に失敗しました"; +App::$strings["Layout Name"] = "レイアウト名"; +App::$strings["Layout Description (Optional)"] = "レイアウトの説明(任意)"; +App::$strings["Comanche page description language help"] = "Помощь по языку описания страниц Comanche "; +App::$strings["Layout Description"] = "レイアウトの説明"; +App::$strings["Created"] = "作成"; +App::$strings["Edited"] = "編集"; +App::$strings["Download PDL file"] = "PDLファイルのダウンロード"; +App::$strings["No more system notifications."] = "通知はありません。"; +App::$strings["System Notifications"] = "通知"; +App::$strings["Layout updated."] = "レイアウトはアップデートされました"; +App::$strings["Feature disabled."] = "機能は無効化されています"; +App::$strings["Edit System Page Description"] = "ページのレイアウト全体のデザイン設定を変更できます。"; +App::$strings["(modified)"] = "(編集済み)"; +App::$strings["Reset"] = "リセット"; +App::$strings["Layout not found."] = "レイアウトはありません"; +App::$strings["Module Name:"] = "モジュール名:"; +App::$strings["Layout Help"] = "レイアウトヘルプ"; +App::$strings["Edit another layout"] = "他のレイアウトを編集"; +App::$strings["System layout"] = "システムレイアウト"; +App::$strings["Unable to lookup recipient."] = ""; +App::$strings["Unable to communicate with requested channel."] = "Не удалось установить связь с запрашиваемым каналом."; +App::$strings["Cannot verify requested channel."] = "Не удалось установить подлинность требуемого канала."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Выбранный канал ограничивает частные сообщения. Отправка не удалась."; +App::$strings["Messages"] = "Сообщения"; +App::$strings["message"] = "メッセージ"; +App::$strings["Message recalled."] = "Сообщение отозванно."; +App::$strings["Conversation removed."] = "Разговор удален."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Истекает YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "Запрашиваемый канал не доступен."; +App::$strings["Send Private Message"] = "Отправить личное сообщение"; +App::$strings["To:"] = "Кому:"; +App::$strings["Subject:"] = "Тема:"; +App::$strings["Your message:"] = "Сообщение:"; +App::$strings["Attach file"] = "Прикрепить файл"; +App::$strings["Send"] = "Отправить"; +App::$strings["Delete message"] = "Удалить сообщение"; +App::$strings["Delivery report"] = "転送状況"; +App::$strings["Recall message"] = "Отозвать сообщение"; +App::$strings["Message has been recalled."] = "Сообщение отозванно"; +App::$strings["Delete Conversation"] = "Удалить разговор"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Безопасная связь недоступна. Вы можете попытаться ответить со страницы профиля отправителя."; +App::$strings["Send Reply"] = "Отправить ответ"; +App::$strings["Your message for %s (%s):"] = "Ваше сообщение для %s (%s):"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Удаление канала не разрешается в течении 48 часов после смены пароля у аккаунта."; +App::$strings["Remove This Channel"] = "チャンネルの削除"; +App::$strings["WARNING: "] = "警告 : "; +App::$strings["This channel will be completely removed from the network. "] = "このチャンネルはネットワークから完全に削除されます。"; +App::$strings["This action is permanent and can not be undone!"] = "この作業は取り消せませんので注意して実行してください。"; +App::$strings["Please enter your password for verification:"] = "パスワードを入力してください : "; +App::$strings["Remove this channel and all its clones from the network"] = "このチャンネルとそのクローンを全て削除する"; +App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "デフォルトではこのhubのチャンネルだけがネットワークから削除されます。クローンを作成している場合は削除されません。"; +App::$strings["Remove Channel"] = "チャンネルの削除"; +App::$strings["Reset form"] = "Очистить форму"; +App::$strings["Welcome to Hubzilla!"] = "hubzillaへようこそ!!!!"; +App::$strings["You have got no unseen posts..."] = "У вас нет видимых публикаций..."; +App::$strings["Item not found"] = "Элемент не найден"; +App::$strings["Channel not found."] = "Канал не найден."; +App::$strings["Edit Card"] = "Редактировать карточку"; +App::$strings["Xchan Lookup"] = "Поиск Xchan"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "Запрос Xchan начинается с (или webbie):"; +App::$strings["Not found."] = "Не найдено."; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "ユーザーのおすすめはありません。もしこのサイトが作成されたばかりなのであれば24時間後にもう一度確認してみてください。"; +App::$strings["Posts and comments"] = "Публикации и комментарии"; +App::$strings["Only posts"] = "Только публикации"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Недостаточно прав. Запрос перенаправлен на страницу профиля."; +App::$strings["Search Results For:"] = "検索結果: "; +App::$strings["Documentation Search"] = "Поиск документации"; +App::$strings["Members"] = "Участники"; +App::$strings["Administrators"] = "Администраторы"; +App::$strings["Developers"] = "Разработчики"; +App::$strings["Tutorials"] = "Руководства"; +App::$strings["\$Projectname Documentation"] = "\$Projectnameヘルプ"; +App::$strings["Contents"] = "コンテンツ"; +App::$strings["This site is not a directory server"] = "Этот сайт не является сервером каталога"; +App::$strings["Export Channel"] = "Экспорт канала"; +App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Экспортировать основную информацию из канала в файл. Служит в качестве резервной копии ваших контактов, основных данных и профиля, однако не включает содержимое. Может быть использовано для импорта ваши данных на новый сервер."; +App::$strings["Export Content"] = "Экспортировать содержимое"; +App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Экспортировать информацию из вашего канала и его содержимое в резервную копию в формате JSON которая может быть использована для восстановления или импорта на другом сервере. Сохраняет все ваши контакты, разрешения, данные профиля и публикации за несколько месяцев. Файл может иметь очень большой размер. Пожалуйста, будьте терпеливы и подождите несколько минут пока не начнётся загрузка."; +App::$strings["Export your posts from a given year."] = "Экспортировать ваши публикации за данный год."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Вы также можете экспортировать ваши публикации и беседы за определённый месяц или год. Выберите дату в панели местоположения в браузере. Если экспорт будет неудачным (это возможно, например, из-за исчерпания памяти на сервере), повторите попытку, выбрав меньший диапазон дат."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Для выбора всех публикаций заданного года, например текущего, посетите %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Для выбора всех публикаций заданного месяца, например за январь сего года, посетите %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Данные файлы с содержимым могут быть импортированы и восстановлены на любом содержащем ваш канал сайте. Посетите %2\$s. Для лучших результатов пожалуйста производите импорт и восстановление в порядке датировки (старые сначала)."; +App::$strings["Away"] = "Нет на месте"; +App::$strings["Online"] = "В сети"; +App::$strings["Invalid item."] = "Недействительный элемент."; +App::$strings["Authorize application connection"] = "Авторизовать подключение приложения"; +App::$strings["Return to your app and insert this Security Code:"] = "Вернитесь к своему приложению и вставьте этот код безопасности:"; +App::$strings["Please login to continue."] = "Пожалуйста, войдите, чтобы продолжить."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Вы хотите авторизовать это приложение для доступа к вашим публикациям и контактам и / или созданию новых публикаций?"; +App::$strings["item"] = "пункт"; +App::$strings["No ratings"] = "Оценок нет"; +App::$strings["Rating: "] = "Оценкa:"; +App::$strings["Website: "] = "Веб-сайт:"; +App::$strings["Description: "] = "Описание:"; +App::$strings["Failed to create source. No channel selected."] = "Не удалось создать источник. Канал не выбран."; +App::$strings["Source created."] = "Источник создан."; +App::$strings["Source updated."] = "Источник обновлен."; +App::$strings["*"] = ""; +App::$strings["Manage remote sources of content for your channel."] = "Управлять удалённым источниками содержимого для вашего канала"; +App::$strings["New Source"] = "Новый источник"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Импортировать всё или выбранное содержимое из следующего канала в этот канал и распределить его в соответствии с вашими настройками."; +App::$strings["Only import content with these words (one per line)"] = "Импортировать содержимое только с этим текстом (построчно)"; +App::$strings["Leave blank to import all public content"] = "Оставьте пустым для импорта всего общедоступного содержимого"; +App::$strings["Channel Name"] = "チャンネル名"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Добавить следующие категории к импортированным публикациям из этого источника (через запятые)"; +App::$strings["Optional"] = "Необязательно"; +App::$strings["Resend posts with this channel as author"] = "Отправить публикации в этот канал повторно как автор"; +App::$strings["Copyrights may apply"] = "Могут применяться авторские права"; +App::$strings["Source not found."] = "Источник не найден."; +App::$strings["Edit Source"] = "Редактировать источник"; +App::$strings["Delete Source"] = "Удалить источник"; +App::$strings["Source removed"] = "Источник удален"; +App::$strings["Unable to remove source."] = "Невозможно удалить источник."; +App::$strings["About this site"] = "Об этом сайте"; +App::$strings["Site Name"] = "Название сайта"; +App::$strings["Site Information"] = "Информация о сайте"; +App::$strings["Administrator"] = "Администратор"; +App::$strings["Terms of Service"] = "利用規約"; +App::$strings["Software and Project information"] = "Информация о программном обеспечении и проекте"; +App::$strings["This site is powered by \$Projectname"] = "Этот сайт работает на \$Projectname"; +App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Объединенные и децентрализованные сети и службы идентификациии обеспечиваются Zot"; +App::$strings["Additional federated transport protocols:"] = "Дополнительные федеративные транспортные протоколы:"; +App::$strings["Version %s"] = "Версия %s"; +App::$strings["Project homepage"] = "Домашняя страница проекта"; +App::$strings["Developer homepage"] = "Домашняя страница разработчика"; +App::$strings["Image uploaded but image cropping failed."] = "Изображение загружено но обрезка не удалась."; +App::$strings["Image resize failed."] = "Не удалось изменить размер изображения."; +App::$strings["Image upload failed."] = "Загрузка изображения не удалась."; +App::$strings["Unable to process image."] = "画像処理に失敗しました。"; +App::$strings["Photo not available."] = "Фотография недоступна."; +App::$strings["Your default profile photo is visible to anybody on the internet. Profile photos for alternate profiles will inherit the permissions of the profile"] = "Фотография вашего профиля по умолчанию видна всем в Интернете. Фотографияпрофиля для альтернативных профилей наследуют разрешения текущего профиля"; +App::$strings["Your profile photo is visible to anybody on the internet and may be distributed to other websites."] = "プロフィール写真はインターネット上の誰でも見ることができ、他のウェブサイトに配布される可能性があります。"; +App::$strings["Upload File:"] = "ファイルをアップロード:"; +App::$strings["Select a profile:"] = "Выбрать профиль:"; +App::$strings["Use Photo for Profile"] = "Использовать фотографию для профиля"; +App::$strings["Change Profile Photo"] = "プロ画の変更"; +App::$strings["Use"] = "Использовать"; +App::$strings["Use a photo from your albums"] = "アップロード済画像から選ぶ"; +App::$strings["Choose a different album"] = "別のアルバムを選ぶ"; +App::$strings["Select existing photo"] = "アップロード済画像から選ぶ"; +App::$strings["Crop Image"] = "画像の切り取り"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "画像を四角に切り取ってください。"; +App::$strings["Done Editing"] = "編集の終了"; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s отслеживает %2\$s's %3\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s прекратил отслеживать %2\$s's %3\$s"; +App::$strings["No channel."] = "Канала нет."; +App::$strings["No connections in common."] = "Общих контактов нет."; +App::$strings["View Common Connections"] = "コモンなコネクションを表示"; +App::$strings["Permission Denied."] = "権限がありません."; +App::$strings["File not found."] = "ファイルがありません"; +App::$strings["Edit file permissions"] = "ファイルの権限の編集"; +App::$strings["Set/edit permissions"] = "権限の設定、編集"; +App::$strings["Include all files and sub folders"] = "全てのファイルとサブフォルダーを含める"; +App::$strings["Return to file list"] = "ファイルリストに戻る"; +App::$strings["Copy/paste this code to attach file to a post"] = "Копировать / вставить этот код для прикрепления файла к публикации"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Копировать / вставить эту URL для ссылки на файл со страницы"; +App::$strings["Share this file"] = "Поделиться этим файлом"; +App::$strings["Show URL to this file"] = "Показать URL этого файла"; +App::$strings["Show in your contacts shared folder"] = "あなたのフォロワーが共有したフォルダも表示する"; +App::$strings["Post not found."] = "ポストがありません"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s отметил тегом %2\$s %3\$s с %4\$s"; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Бля бля бля Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Block Name"] = "ブロック名"; +App::$strings["Edit Block"] = "ブロックの編集"; +App::$strings["Item is not editable"] = "アイテムは編集不可になっています。"; +App::$strings["Edit post"] = "投稿の作成"; +App::$strings["Tag removed"] = "タグは削除されました。"; +App::$strings["Remove Item Tag"] = "アイテムタグの削除"; +App::$strings["Select a tag to remove: "] = "削除するタグを選択:"; +App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Удаление канала не разрешается в течении 48 часов после смены пароля у аккаунта."; +App::$strings["Remove This Account"] = "このアカウントを削除する"; +App::$strings["This account and all its channels will be completely removed from the network. "] = "このアカウントとそのチャンネルはネットワークから完全に削除されます。"; +App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "アカウントを削除し全てのチャンネルとそのクローンを削除"; +App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "デフォルトでは、このハブにあるチャネルのインスタンスのみがネットワークから削除されます(クローン先やクローン元のチャンネルは削除されません)。"; +App::$strings["Remove Account"] = "アカウントの削除"; +App::$strings["Blocked accounts"] = "Заблокированные аккаунты"; +App::$strings["Expired accounts"] = "Просроченные аккаунты"; +App::$strings["Expiring accounts"] = "Близкие к просрочке аккаунты"; +App::$strings["Primary"] = "プライマリ"; +App::$strings["Clones"] = "Клоны"; +App::$strings["Message queues"] = "Очередь сообщений"; +App::$strings["Your software should be updated"] = "Ваше программное обеспечение должно быть обновлено"; +App::$strings["Administration"] = "Администрирование"; +App::$strings["Summary"] = "Резюме"; +App::$strings["Registered accounts"] = "Зарегистрированные аккаунты"; +App::$strings["Pending registrations"] = "Ждут утверждения"; +App::$strings["Registered channels"] = "Зарегистрированные каналы"; +App::$strings["Active addons"] = "Активные расширения"; +App::$strings["Version"] = "Версия системы"; +App::$strings["Repository version (master)"] = "Версия репозитория (master)"; +App::$strings["Repository version (dev)"] = "Версия репозитория (dev)"; +App::$strings["Could not access contact record."] = "Не удалось получить доступ к записи контакта."; +App::$strings["Could not locate selected profile."] = "Не удалось обнаружить выбранный профиль."; +App::$strings["Connection updated."] = "コネクションはアップデートされました。"; +App::$strings["Failed to update connection record."] = "Не удалось обновить запись контакта."; +App::$strings["is now connected to"] = "теперь подключён к"; +App::$strings["Could not access address book record."] = "Не удалось получить доступ к записи адресной книги."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Обновление невозможно - в настоящее время канал недоступен."; +App::$strings["Unable to set address book parameters."] = "Не удалось получить доступ к параметрам адресной книги."; +App::$strings["Connection has been removed."] = "Контакт был удалён."; +App::$strings["View %s's profile"] = "%sのプロファイルを見る"; +App::$strings["Refresh Permissions"] = "パーミッションの更新"; +App::$strings["Fetch updated permissions"] = ""; +App::$strings["Refresh Photo"] = "画像の更新"; +App::$strings["Fetch updated photo"] = ""; +App::$strings["View recent posts and comments"] = "最近の投稿やコメントを見る"; +App::$strings["Unblock"] = "ブロックの解除"; +App::$strings["Block"] = "ブロック"; +App::$strings["Block (or Unblock) all communications with this connection"] = "このコネクションとの全ての関係をブロック(解除)する"; +App::$strings["This connection is blocked!"] = "このコネクションはブロックしています!"; +App::$strings["Unignore"] = "拒否の解除"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "全ての自分に対するコミュニケーションを拒否する"; +App::$strings["This connection is ignored!"] = "このコネクションは拒否されました!"; +App::$strings["Unarchive"] = "アンアーカイブ"; +App::$strings["Archive"] = "アーカイブ"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "チャンネルのアーカイブ(又はアーカイブの復帰) - チャンネルを死亡マークするがアクセスは可能"; +App::$strings["This connection is archived!"] = "このコネクションはアーカイブされました!"; +App::$strings["Unhide"] = "出す"; +App::$strings["Hide"] = "隠す"; +App::$strings["Hide or Unhide this connection from your other connections"] = "このコネクションを他のチャンネルから表示/非表示にする"; +App::$strings["This connection is hidden!"] = "このコネクションは非表示になっています!"; +App::$strings["Delete this connection"] = "このコネクションを削除する"; +App::$strings["Fetch Vcard"] = ""; +App::$strings["Fetch electronic calling card for this connection"] = ""; +App::$strings["Open Individual Permissions section by default"] = "Открывать раздел \"Индивидуальные разрешения\" по умолчанию"; +App::$strings["Affinity"] = "Сходство"; +App::$strings["Open Set Affinity section by default"] = "Открыть секцию установления сходства по умолчанию"; +App::$strings["Filter"] = "Фильтр"; +App::$strings["Open Custom Filter section by default"] = "Открывать секцию \"Настраиваемый фильтр\" по умолчанию"; +App::$strings["Approve this connection"] = "コネクションを許可する"; +App::$strings["Accept connection to allow communication"] = "コミュニケーションを取るために許可します!"; +App::$strings["Set Affinity"] = "Установить сходство"; +App::$strings["Set Profile"] = "プロファイルの設定"; +App::$strings["Set Affinity & Profile"] = "Установить сходство и профиль"; +App::$strings["This connection is unreachable from this location."] = "このコネクションはこの場所からリーチできません"; +App::$strings["This connection may be unreachable from other channel locations."] = "このチャンネルの投稿は本体のhub以外では取得できない可能性があります。"; +App::$strings["Location independence is not supported by their network."] = "連合コネクションが相手のネットワークでサポートされていません。"; +App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "ここからこのチャンネルに接続できません。連合コネクションが相手のネットワークでサポートされていません。"; +App::$strings["Apply these permissions automatically"] = "これらの権限設定を自動でセットする"; +App::$strings["Connection requests will be approved without your interaction"] = "Запросы контактов будут одобрены без вашего участия"; +App::$strings["Permission role"] = "権限ルール"; +App::$strings["Add permission role"] = "権限ルールの追加"; +App::$strings["This connection's primary address is"] = "このコネクションの住所 : "; +App::$strings["Available locations:"] = "このコネクションの別荘"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Разрешения, указанные на этой странице, будут применяться ко всем новым соединениям."; +App::$strings["Connection Tools"] = "コネクションツール"; +App::$strings["Slide to adjust your degree of friendship"] = "Прокрутить для настройки степени дружбы"; +App::$strings["Slide to adjust your rating"] = "Прокрутить для настройки оценки"; +App::$strings["Optionally explain your rating"] = "Объясните свою оценку (не обязательно)"; +App::$strings["Custom Filter"] = "カスタムフィルター"; +App::$strings["Only import posts with this text"] = "次のテキストにマッチする投稿だけ表示"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "一単語、又は #ハッシュタグ, /パターン/ や lang=xxl;で指定できます。空白で全ての投稿を取得します。"; +App::$strings["Do not import posts with this text"] = "次のテキストにマッチする投稿を表示しない"; +App::$strings["This information is public!"] = "Эта информация общедоступна!"; +App::$strings["Connection Pending Approval"] = "コネクション要求が来ています。"; +App::$strings["inherited"] = "継承済み"; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "%sのフォローに使用するプロファイルを選択してください。 相手にもこのプロファイルが表示されます。"; +App::$strings["Their Settings"] = "相手の設定"; +App::$strings["My Settings"] = "自分の設定"; +App::$strings["Individual Permissions"] = "アクセス権限の設定"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = " +幾つかの権限はあなたのチャンネルのプライバシー設定によって隠されています。それは隠された設定よりも優先度が高いです(翻訳不定)。 あなたはこれらの設定をここで変更できません。"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Некоторые разрешения могут быть унаследованы из настроек приватности вашего канала, которые могут иметь более высокий приоритет чем индивидуальные. Вы можете изменить эти настройки, однако они не будут применены до изменения переданных по наследству настроек."; +App::$strings["Last update:"] = "最終更新 : "; +App::$strings["Details"] = "Сведения"; +App::$strings["Import Webpage Elements"] = "Импортировать части веб-страницы"; +App::$strings["Import selected"] = "Импортировать выбранное"; +App::$strings["Export Webpage Elements"] = "Экспортировать часть веб-страницы"; +App::$strings["Export selected"] = "Экспортировать выбранное"; +App::$strings["Actions"] = "Действия"; +App::$strings["Page Link"] = "ページリンク"; +App::$strings["Page Title"] = "ページタイトル"; +App::$strings["Invalid file type."] = "Неверный тип файла."; +App::$strings["Error opening zip file"] = "Ошибка открытия ZIP файла"; +App::$strings["Invalid folder path."] = "Неверный путь к каталогу."; +App::$strings["No webpage elements detected."] = "Не обнаружено частей веб-страницы."; +App::$strings["Import complete."] = "Импорт завершен."; +App::$strings["Page link"] = "ページリンク"; +App::$strings["Edit Webpage"] = "Редактировать веб-страницу"; +App::$strings["Edit Layout"] = "Редактировать шаблон"; +App::$strings["This directory server requires an access token"] = "Для доступа к этому серверу каталогов требуется токен"; +App::$strings["Comment approved"] = "Комментарий одобрен"; +App::$strings["Comment deleted"] = "Комментарий удалён"; +App::$strings["Add Article"] = "記事の入力"; +App::$strings["Bookmark added"] = "ブックマークに追加されました。"; +App::$strings["My Bookmarks"] = "マイブックマーク"; +App::$strings["My Connections Bookmarks"] = "自分のコネクションのブックマーク"; +App::$strings["Files: shared with me"] = "ファイル : 自分に共有された項目"; +App::$strings["NEW"] = "НОВОЕ"; +App::$strings["Last Modified"] = "変更履歴"; +App::$strings["Remove all files"] = "全てのファイルを削除"; +App::$strings["Remove this file"] = "このファイルを削除"; +App::$strings["Select a bookmark folder"] = "ブックマークフォルダーの選択"; +App::$strings["Save Bookmark"] = "ブックマークの保存"; +App::$strings["URL of bookmark"] = "ブックマークのURL"; +App::$strings["Or enter new bookmark folder name"] = "又は新しいブックマークフォルダーの名前を入力"; +App::$strings["Permissions denied."] = "権限がありません。"; +App::$strings["Unknown App"] = "未知のアプリ"; +App::$strings["Authorize"] = "登録"; +App::$strings["Do you authorize the app %s to access your channel data?"] = "あなたのチャンネルデータにアクセスするために次のアプリ %s を登録しますか?"; +App::$strings["Allow"] = "許可"; +App::$strings["Deny"] = "拒否"; +App::$strings["Items tagged with: %s"] = "次によってタグ付け: %s"; +App::$strings["Search results for: %s"] = "次の検索結果: %s"; +App::$strings["\$Projectname Server - Setup"] = "\$Projectname サーバーのセットアップ"; +App::$strings["Could not connect to database."] = "データベースに接続できませんでした。"; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "URLにアクセスできませんでした。SSLかDNSに問題があるようです。"; +App::$strings["Could not create table."] = "テーブルが作成できませんでした。"; +App::$strings["Your site database has been installed."] = ""; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = ""; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = ""; +App::$strings["System check"] = "システムチェック画面"; +App::$strings["Check again"] = "再チェック"; +App::$strings["Database connection"] = "データベースの設定"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "インストールを続行するためには \$Projectname がデータベースと接続する必要があります。"; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "設定方法は管理者やプロバイダーへご確認ください。"; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "下記で指定するデータベースは既に作成されている必要があります。もしまだ作成していない場合は作成してからこの画面を続行してください。"; +App::$strings["Database Server Name"] = "サーバー名"; +App::$strings["Default is 127.0.0.1"] = "デフォルト : 127.0.0.1"; +App::$strings["Database Port"] = "データベースのポート"; +App::$strings["Communication port number - use 0 for default"] = "通信ポートの設定です。 0でデフォルト設定を維持します。"; +App::$strings["Database Login Name"] = "データベースのユーザー名"; +App::$strings["Database Login Password"] = "パスワード"; +App::$strings["Database Name"] = "データベース名"; +App::$strings["Database Type"] = "データベースタイプ"; +App::$strings["Site administrator email address"] = "サイト管理者のメールアドレス"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = ""; +App::$strings["Website URL"] = "サイトのURL"; +App::$strings["Please use SSL (https) URL if available."] = "可能であればssl(https)を利用することを強くお勧めします。"; +App::$strings["Please select a default timezone for your website"] = "webサイトのデフォルトのタイムゾーンを選択してください。"; +App::$strings["Site settings"] = "サイト設定"; +App::$strings["PHP version 5.5 or greater is required."] = "PHPバージョン5.5以上が必須です。"; +App::$strings["PHP version"] = "PHPバージョン"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = " +CUIのphpバージョン取得コマンドがありません。サーバーのPATHを確認してください。"; +App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Если у вас на сервере не установлена консольная версия PHP вы не сможете запустить фоновый опрос через cron. "; +App::$strings["PHP executable path"] = "Пусть к исполняемому модулю PHP"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Введите полный путь к исполняемому модулю PHP. Вы можете оставить его пустым для продолжения установки."; +App::$strings["Command line PHP"] = "PHPコマンドライン"; +App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "Невозможно проверить командную строку PHP поскольку требуемая функция shell_exec() отключена."; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "このバージョンのphpは \"register_argc_argv\" に対応していません。"; +App::$strings["This is required for message delivery to work."] = "これは投稿の他サーバーへの送信に必要となります。"; +App::$strings["PHP register_argc_argv"] = ""; +App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "合計ファイル送信の最大値は %s に設定されています。一ファイルの最大値は %s です。 %d 個のファイルまで一度にアップロードできます。"; +App::$strings["You can adjust these settings in the server php.ini file."] = "php.iniでこれを設定することができます。"; +App::$strings["PHP upload limits"] = "PHP Upload limits"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Ошибка: функция \"openssl_pkey_new\" не может сгенерировать ключи шифрования"; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Если работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"."; +App::$strings["Generate encryption keys"] = "暗号化キーの生成"; +App::$strings["libCurl PHP module"] = ""; +App::$strings["GD graphics PHP module"] = ""; +App::$strings["OpenSSL PHP module"] = ""; +App::$strings["PDO database PHP module"] = ""; +App::$strings["mb_string PHP module"] = ""; +App::$strings["xml PHP module"] = ""; +App::$strings["zip PHP module"] = ""; +App::$strings["Apache mod_rewrite module"] = ""; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: требуемый модуль mod_rewrite веб-сервера Apache не установлен."; +App::$strings["exec"] = ""; +App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = ""; +App::$strings["shell_exec"] = ""; +App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = ""; +App::$strings["Error: libCURL PHP module required but not installed."] = ""; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = ""; +App::$strings["Error: openssl PHP module required but not installed."] = ""; +App::$strings["Error: PDO database PHP module required but not installed."] = ""; +App::$strings["Error: mb_string PHP module required but not installed."] = ""; +App::$strings["Error: xml PHP module required for DAV but not installed."] = ""; +App::$strings["Error: zip PHP module required but not installed."] = ""; +App::$strings[".htconfig.php is writable"] = ""; +App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = ""; +App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = ""; +App::$strings["Please see install/INSTALL.txt for additional information."] = ""; +App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; +App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = ""; +App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; +App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = ""; +App::$strings["%s is writable"] = "%s の書き込み権限"; +App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the top level web folder"] = "Эта программа использует каталог хранения для загруженных файлов. Для веб-сервера требуется доступ на запись начиная с верхнего уровня каталога хранения."; +App::$strings["store is writable"] = "./storeの書き込み権限"; +App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = ""; +App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = ""; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Эти ограничения приняты поскольку ваши общедоступные публикации могут, например, содержать ссылки на изображения на вашем собственном хабе."; +App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = ""; +App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = ""; +App::$strings["Providers are available that issue free certificates which are browser-valid."] = ""; +App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = ""; +App::$strings["SSL certificate validation"] = ""; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = ""; +App::$strings["Url rewrite is working"] = ""; +App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; +App::$strings["

What next?

"] = "

次に

"; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; +App::$strings["Remote privacy information not available."] = ""; +App::$strings["Visible to:"] = "見れる人:"; +App::$strings["Connection added."] = "コネクションを追加しました。"; +App::$strings["Menu not found."] = "Меню не найдено"; +App::$strings["Unable to create element."] = "Невозможно создать элемент."; +App::$strings["Unable to update menu element."] = "Невозможно обновить элемент меню."; +App::$strings["Unable to add menu element."] = "Невозможно добавить элемент меню."; +App::$strings["Menu Item Permissions"] = "Разрешения на пункт меню"; +App::$strings["(click to open/close)"] = "(クリックして開く、閉じる)"; +App::$strings["Link Name"] = "Имя ссылки"; +App::$strings["Link or Submenu Target"] = "Ссылка или цель подменю"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Введите URL ссылки или выберите имя меню для создания подменю"; +App::$strings["Use magic-auth if available"] = "Использовать magic-auth если возможно"; +App::$strings["Open link in new window"] = "Открыть ссылку в новом окне"; +App::$strings["Order in list"] = "Порядок в списке"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Большие значения в конце списка"; +App::$strings["Submit and finish"] = "Отправить и завершить"; +App::$strings["Submit and continue"] = "Отправить и продолжить"; +App::$strings["Menu:"] = "Меню:"; +App::$strings["Link Target"] = "Цель ссылки"; +App::$strings["Edit menu"] = "Редактировать меню"; +App::$strings["Edit element"] = "Редактировать элемент"; +App::$strings["Drop element"] = "Удалить элемент"; +App::$strings["New element"] = "Новый элемент"; +App::$strings["Edit this menu container"] = "Редактировать контейнер меню"; +App::$strings["Add menu element"] = "Добавить элемент меню"; +App::$strings["Delete this menu item"] = "Удалить этот элемент меню"; +App::$strings["Edit this menu item"] = "Редактировать этот элемент меню"; +App::$strings["Menu item not found."] = "Элемент меню не найден."; +App::$strings["Menu item deleted."] = "メニューアイテムは削除されました。"; +App::$strings["Menu item could not be deleted."] = "Невозможно удалить элемент меню."; +App::$strings["Edit Menu Element"] = "Редактировать элемент меню"; +App::$strings["Link text"] = "Текст ссылки"; +App::$strings["Plugin %s disabled."] = "Плагин %s отключен."; +App::$strings["Plugin %s enabled."] = "Плагин %s включен."; +App::$strings["Disable"] = "Запретить"; +App::$strings["Enable"] = "Разрешить"; +App::$strings["Toggle"] = "Переключить"; +App::$strings["Author: "] = "Автор: "; +App::$strings["Maintainer: "] = "Сопровождающий:"; +App::$strings["Minimum project version: "] = "Минимальная версия проекта:"; +App::$strings["Maximum project version: "] = "Максимальная версия проекта:"; +App::$strings["Minimum PHP version: "] = "Минимальная версия PHP:"; +App::$strings["Compatible Server Roles: "] = "Совместимые роли сервера:"; +App::$strings["Requires: "] = "Необходимо:"; +App::$strings["Disabled - version incompatibility"] = "Отключено - несовместимость версий"; +App::$strings["Enter the public git repository URL of the addon repo."] = "Введите URL публичного репозитория расширений git"; +App::$strings["Addon repo git URL"] = "URL репозитория расширений git"; +App::$strings["Custom repo name"] = "Пользовательское имя репозитория"; +App::$strings["(optional)"] = "(необязательно)"; +App::$strings["Download Addon Repo"] = "Загрузить репозиторий расширений"; +App::$strings["Install new repo"] = "Установить новый репозиторий"; +App::$strings["Manage Repos"] = "Управление репозиториями"; +App::$strings["Installed Addon Repositories"] = "Установленные репозитории расширений"; +App::$strings["Install a New Addon Repository"] = "Установить новый репозиторий расширений"; +App::$strings["Switch branch"] = "Переключить ветку"; +App::$strings["Site settings updated."] = "Настройки сайта обновлены."; +App::$strings["%s - (Incompatible)"] = "%s - (несовместимо)"; +App::$strings["mobile"] = "携帯電話"; +App::$strings["experimental"] = "экспериментальный"; +App::$strings["unsupported"] = "неподдерживаемый"; +App::$strings["Yes - with approval"] = "Да - требует подтверждения"; +App::$strings["My site is not a public server"] = "Мой сайт не является публичным сервером"; +App::$strings["My site has paid access only"] = "Мой сайт доступен только с оплатой "; +App::$strings["My site has free access only"] = "На моём сайте разрешён свободный доступ"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "На моём сайте разрешены бесплатные аккаунты с дополнительными платными услугами"; +App::$strings["Beginner/Basic"] = "Начинающий/Базовый"; +App::$strings["Novice - not skilled but willing to learn"] = "Новичок - не опытный, но желающий учиться"; +App::$strings["Intermediate - somewhat comfortable"] = "Промежуточный - более удобный"; +App::$strings["Advanced - very comfortable"] = "Продвинутый - очень удобный"; +App::$strings["Expert - I can write computer code"] = "Эксперт - я умею программировать"; +App::$strings["Wizard - I probably know more than you do"] = "Волшебник - возможно я знаю больше чем ты"; +App::$strings["Default permission role for new accounts"] = "Разрешения по умолчанию для новых аккаунтов"; +App::$strings["This role will be used for the first channel created after registration."] = "Эта роль будет использоваться для первого канала, созданного после регистрации."; +App::$strings["Registration"] = "登録"; +App::$strings["File upload"] = "Загрузка файла"; +App::$strings["Policies"] = "Правила"; +App::$strings["Site default technical skill level"] = "Уровень технических навыков на сайте по умолчанию"; +App::$strings["Used to provide a member experience matched to technical comfort level"] = "Используется чтобы обеспечить удобство на уровне технических навыков пользователя"; +App::$strings["Lock the technical skill level setting"] = "Заблокировать уровень технических навыков"; +App::$strings["Members can set their own technical comfort level by default"] = "Участники могут выбрать уровень своих технических навыков по умолчанию"; +App::$strings["Banner/Logo"] = "Баннер / логотип"; +App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Разрешён нефильтруемый HTML/CSS/JS"; +App::$strings["Administrator Information"] = "Информация об администраторе"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Контактная информация для администраторов сайта. Показывается на информационной странице сайта. Можно использовать BBCode."; +App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Публичное видимое описание сайта. Показывается на информационной странице сайта. Можно использовать BBCode."; +App::$strings["System language"] = "Язык системы"; +App::$strings["System theme"] = "Системная тема"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Системная тема по умолчанию - может быть изменена в профиле пользователя - изменить параметры темы."; +App::$strings["Allow Feeds as Connections"] = "Разрешить ленты новостей как контакты"; +App::$strings["(Heavy system resource usage)"] = "(Высокое использование системных ресурсов)"; +App::$strings["Maximum image size"] = "Максимальный размер изображения"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Максимальный размер загруженных изображений в байтах. По умолчанию 0 или без ограничений."; +App::$strings["Does this site allow new member registration?"] = "Разрешается ли регистрация новых пользователей на этом сайте?"; +App::$strings["Invitation only"] = "Только по приглашениям"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Регистрация пользователей разрешается только по приглашениям. Вышеуказанная политика регистрация должны быть установлена в \"Да\"."; +App::$strings["Minimum age"] = "Минимальный возраст"; +App::$strings["Minimum age (in years) for who may register on this site."] = "Минимальный возраст (в годах) для регистрации на этом сайте."; +App::$strings["Which best describes the types of account offered by this hub?"] = "Как лучше описать тип учётных записей предлагаемых на этом хабе?"; +App::$strings["Register text"] = "Текст регистрации"; +App::$strings["Will be displayed prominently on the registration page."] = "Будет отображаться на странице регистрации на видном месте."; +App::$strings["Site homepage to show visitors (default: login box)"] = "Домашняя страница, которая будет показываться посетителям сайт (по умочанию - форма входа)."; +App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "например: 'public' для показа публичного потока, 'page/sys/home' показывает системную страницу home или 'include:home.html' для подключения файла."; +App::$strings["Preserve site homepage URL"] = "Сохранить URL главной страницы сайта"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Показывать домашнюю страницу сайта во фрейме вместо стандартной переадресации"; +App::$strings["Accounts abandoned after x days"] = "Аккаунты считаются заброшенными после N дней"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Системные ресурсы не будут расходоваться для опроса внешних сайтов для заброшенных аккаунтов. Введите 0 для отсутствия ограничений."; +App::$strings["Allowed friend domains"] = "Разрешенные домены друзей"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Список разделённых запятыми доменов с которыми разрешено устанавливать дружеские отношения на этом сайте. Wildcards разрешены. Пусто означает разрешены любые домены."; +App::$strings["Verify Email Addresses"] = "Проверка адреса электронной почты"; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Включите для проверки адреса электронной почты использованного при регистрации (рекомендуется)."; +App::$strings["Force publish"] = "Принудительно публиковать"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Включите для принудительного включения всех учётных записей на данном сайте в каталог."; +App::$strings["Import Public Streams"] = "Импортированные публичные потоки"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Импортировать и разрешить публичный доступ к загружаемым с других сайтов потоков. Внимание - этот контент не может модерироваться."; +App::$strings["Site only Public Streams"] = "Публичные потоки только с сайта"; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Разрешить доступ к общедоступному контенту, исходящему только с этого сайта, если импортированные публичные потоки отключены."; +App::$strings["Allow anybody on the internet to access the Public streams"] = "Разрешить всем доступ к публичным потокам"; +App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Отключите если для просмотра требуется аутентификация. Внимание - этот контент не может модерироваться."; +App::$strings["Only import Public stream posts with this text"] = "Импортировать только публичные потоки с этим текстом"; +App::$strings["Do not import Public stream posts with this text"] = "Не импортировать публичные потоки с этим текстом"; +App::$strings["Login on Homepage"] = "Вход на домашней странице"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Предоставлять форму входа для посетителей на домашней странице если другого содержимого не настроено."; +App::$strings["Enable context help"] = "Включить контекстную помощь"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Показывать контекстную помощь для текущей странице при нажатии на кнопку \"Помощь\"."; +App::$strings["Reply-to email address for system generated email."] = "Адрес email Reply-to для генерируемых системой сообщений."; +App::$strings["Sender (From) email address for system generated email."] = "Адрес email отправителя (From) для генерируемых системой сообщений."; +App::$strings["Name of email sender for system generated email."] = "Имя отправителя для генерируемых системой сообщений."; +App::$strings["Directory Server URL"] = "URL сервера каталогов"; +App::$strings["Default directory server"] = "Сервер каталогов по умолчанию"; +App::$strings["Proxy user"] = "Имя пользователя proxy-сервера"; +App::$strings["Proxy URL"] = "URL proxy-сервера"; +App::$strings["Network timeout"] = "Время ожидания сети"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Значение в секундах. Если установлен в 0 - без ограничений (не рекомендуется)."; +App::$strings["Delivery interval"] = "Интервал доставки"; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Значение задержки фоновых процессов доставки в секундах для снижения нагрузки на систему. Рекомендуется 4-5 для серверов совместного использования, 2-3 для частных виртуальных и 0-1 для выделенных серверов."; +App::$strings["Deliveries per process"] = "Доставок на процесс"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Количество доставок для одного процесса. Настройте в соответствии с производительностью системы. Рекомендуется 1-5."; +App::$strings["Queue Threshold"] = "Порог очереди"; +App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Всегда откладывать немедленную доставку, если в очереди содержится большее количество записей, чем это."; +App::$strings["Poll interval"] = "Интервал опроса"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Задержка фоновых процессов опроса на указанное количество секунд для снижения нагрузки на систему. Если 0 - использовать интервал доставки."; +App::$strings["Path to ImageMagick convert program"] = "Путь к ImageMagick"; +App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "При установке эта программа генерирует миниатюры изображений для больших файлов (свыше 4000 в любом измерении) для предотвращения утечки памяти. Пример: /usr/bin/convert"; +App::$strings["Allow SVG thumbnails in file browser"] = "Разрешить SVG миниатюры в просмотрщике файлов"; +App::$strings["WARNING: SVG images may contain malicious code."] = "Внимание: изображения SVG могут содержать вредоносный код."; +App::$strings["Maximum Load Average"] = "Максимальная средняя нагрузка"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Максимальная нагрузка системы для откладывания процессов опроса и доставки - по умолчанию 50."; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Срок хранения в днях для импортированного содержимого (из матрицы / сети)."; +App::$strings["0 for no expiration of imported content"] = "0 для постоянного хранения импортированного содержимого"; +App::$strings["Do not expire any posts which have comments less than this many days ago"] = "Продлевать строк хранения для любых публикаций, которые имею комментарии возрастом менее этого значения"; +App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Публичные серверы: необязательная маркетинговая лэндинг-страница для новых пользователей"; +App::$strings["Create this page first. Default is %s/register"] = "Создать эту страницу первой. По умолчанию %s/register"; +App::$strings["Page to display after creating a new channel"] = "Страница для показа после создания нового канала"; +App::$strings["Default: profiles"] = "По умолчанию: профили"; +App::$strings["Optional: site location"] = "Необязательно: место размещения сайта"; +App::$strings["Region or country"] = "Регион или страна"; +App::$strings["Log settings updated."] = "Настройки журнала обновлены."; +App::$strings["Clear"] = "Очистить"; +App::$strings["Debugging"] = "Отладка"; +App::$strings["Log file"] = "Файл журнала"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Должен быть доступен для записи веб-сервером. Пусть относителен основного каталога веб-сайта."; +App::$strings["Log level"] = "Уровень журнала"; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "%s аккаунт блокирован/разблокирован", + 1 => "%s аккаунта блокированы/разблокированы", + 2 => "%s аккаунтов блокированы/разблокированы", +); +App::$strings["%s account deleted"] = array( + 0 => "%s аккаунт удалён", + 1 => "%s аккаунта удалёны", + 2 => "%s аккаунтов удалёны", +); +App::$strings["Account not found"] = "Аккаунт не найден"; +App::$strings["Account '%s' blocked"] = "Аккаунт '%s' заблокирован"; +App::$strings["Account '%s' unblocked"] = "Аккаунт '%s' разблокирован"; +App::$strings["select all"] = "выбрать все"; +App::$strings["Registrations waiting for confirm"] = "Регистрации ждут подтверждения"; +App::$strings["Request date"] = "Дата запроса"; +App::$strings["No registrations."] = "Нет новых регистраций."; +App::$strings["ID"] = ""; +App::$strings["All Channels"] = "Все каналы"; +App::$strings["Register date"] = "Дата регистрации"; +App::$strings["Last login"] = "Последний вход"; +App::$strings["Expires"] = "Срок действия"; +App::$strings["Service Class"] = "Класс обслуживания"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Выбранные учётные записи будут удалены!\n\nВсё что было ими опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?"; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Этот аккаунт {0} будет удалён!\n\nВсё что им было опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "По умолчанию, HTML без фильтрации доступен во встраиваемых медиа. Это небезопасно."; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Рекомендуется настроить разрешения использовать HTML без фильтрации только для следующих сайтов:"; +App::$strings["https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = ""; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "се остальные встроенные материалы будут отфильтрованы, если встроенное содержимое с этого сайта явно заблокировано."; +App::$strings["Block public"] = "Блокировать публичный доступ"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Установите флажок для блокировки публичного доступа ко всем другим общедоступным страницам на этом сайте, если вы в настоящее время не аутентифицированы."; +App::$strings["Provide a cloud root directory"] = "Предоставить корневой каталог в облаке"; +App::$strings["The cloud root directory lists all channel names which provide public files"] = "В корневом каталоге облака показываются все имена каналов, которые предоставляют общедоступные файлы"; +App::$strings["Show total disk space available to cloud uploads"] = "Показывать общее доступное для загрузок место в хранилище"; +App::$strings["Set \"Transport Security\" HTTP header"] = "Установить HTTP-заголовок \"Transport Security\""; +App::$strings["Set \"Content Security Policy\" HTTP header"] = "Установить HTTP-заголовок \"Content Security Policy\""; +App::$strings["Allowed email domains"] = "Разрешённые домены email"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Список разделённых запятыми доменов для которых разрешена регистрация на этом сайте. Wildcards разрешены. Если пусто то разрешены любые домены."; +App::$strings["Not allowed email domains"] = "Запрещённые домены email"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Список разделённых запятыми доменов для которых запрещена регистрация на этом сайте. Wildcards разрешены. Если пусто то разрешены любые домены до тех пор, пока разрешённые домены не будут указаны."; +App::$strings["Allow communications only from these sites"] = "Разрешить связь только с этими сайтами"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Один сайт на строку. Оставьте пустым для разрешения взаимодействия без ограничений (по умочанию)."; +App::$strings["Block communications from these sites"] = "Блокировать связь с этими сайтами"; +App::$strings["Allow communications only from these channels"] = "Разрешить связь только для этих каналов"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Один канал (или его хэш) на строку. Оставьте пустым для разрешения взаимодействия с любым каналом (по умолчанию)."; +App::$strings["Block communications from these channels"] = "Блокировать связь с этими каналами"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Разрешать встраивание только для безопасных (SSL/TLS) сайтов и ссылок."; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Разрешить встраивать нефильтруемое HTML-содержимое только для этих доменов"; +App::$strings["One site per line. By default embedded content is filtered."] = "Один сайт на строку. По умолчанию встраиваемое содержимое фильтруется."; +App::$strings["Block embedded HTML from these domains"] = "Блокировать встраивание HTML-содержимого для этих доменов"; +App::$strings["Update has been marked successful"] = "Обновление было помечено как успешное"; +App::$strings["Executing %s failed. Check system logs."] = "Выполнение %s неудачно. Проверьте системный журнал."; +App::$strings["Update %s was successfully applied."] = "Обновление %sбыло успешно применено."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Обновление %s не вернуло статус. Неизвестно было ли оно успешным."; +App::$strings["Update function %s could not be found."] = "Функция обновления %sне может быть найдена."; +App::$strings["Failed Updates"] = "Обновления с ошибками"; +App::$strings["Mark success (if update was manually applied)"] = "Пометить успешным (если обновление было применено вручную)"; +App::$strings["Attempt to execute this update step automatically"] = "Попытаться применить это обновление автоматически"; +App::$strings["No failed updates."] = "Ошибок обновлений нет."; +App::$strings["New Profile Field"] = "Поле нового профиля"; +App::$strings["Field nickname"] = "Псевдоним поля"; +App::$strings["System name of field"] = "Системное имя поля"; +App::$strings["Input type"] = "Тип ввода"; +App::$strings["Field Name"] = "Имя поля"; +App::$strings["Label on profile pages"] = "Метка на странице профиля"; +App::$strings["Help text"] = "Текст подсказки"; +App::$strings["Additional info (optional)"] = "Дополнительная информация (необязательно)"; +App::$strings["Field definition not found"] = "Определения поля не найдено"; +App::$strings["Edit Profile Field"] = "Редактировать поле профиля"; +App::$strings["Basic Profile Fields"] = "Основные поля профиля"; +App::$strings["Advanced Profile Fields"] = "Дополнительные поля профиля"; +App::$strings["(In addition to basic fields)"] = "(к основым полям)"; +App::$strings["All available fields"] = "Все доступные поля"; +App::$strings["Custom Fields"] = "Настраиваемые поля"; +App::$strings["Create Custom Field"] = "Создать настраиваемое поле"; +App::$strings["Theme settings updated."] = "Настройки темы обновленны."; +App::$strings["No themes found."] = "Темы не найдены."; +App::$strings["Screenshot"] = "Снимок экрана"; +App::$strings["[Experimental]"] = "[экспериментальный]"; +App::$strings["[Unsupported]"] = "[неподдерживаемый]"; +App::$strings["Off"] = ""; +App::$strings["On"] = ""; +App::$strings["Lock feature %s"] = "Заблокировать функцию \"%s\""; +App::$strings["Manage Additional Features"] = "Управлять дополнительными функциями"; +App::$strings["Queue Statistics"] = "Статистика очереди"; +App::$strings["Total Entries"] = "Всего записей"; +App::$strings["Priority"] = "Приоритет"; +App::$strings["Destination URL"] = "Конечный URL-адрес"; +App::$strings["Mark hub permanently offline"] = "Пометить хаб как постоянно отключенный"; +App::$strings["Empty queue for this hub"] = "Освободить очередь для этого хаба"; +App::$strings["Last known contact"] = "Последний известный контакт"; +App::$strings["Password changed for account %d."] = "Пароль для аккаунта %d изменён."; +App::$strings["Account settings updated."] = "アカウント設定がアップデートされました。"; +App::$strings["Account not found."] = "Учётная запись не найдена."; +App::$strings["Account Edit"] = "Редактировать аккаунт"; +App::$strings["New Password"] = "Новый пароль"; +App::$strings["New Password again"] = "Повторите новый пароль"; +App::$strings["Technical skill level"] = "Уровень технических навыков"; +App::$strings["Account language (for emails)"] = "Язык сообщения для email"; +App::$strings["Service class"] = "Класс обслуживания"; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "%s канал цензурируется/нецензурируется", + 1 => "%s канала цензурируются/нецензурируются", + 2 => "%s каналов цензурируются/нецензурируются", +); +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "в %s канале код разрешён/запрещён", + 1 => "в %s каналах код разрешён/запрещён", + 2 => "в %s каналах код разрешён/запрещён", +); +App::$strings["%s channel deleted"] = array( + 0 => "%s канал удалён", + 1 => "%s канала удалены", + 2 => "%s каналов удалены", +); +App::$strings["Channel not found"] = "Канал не найден"; +App::$strings["Channel '%s' deleted"] = "Канал '%s' удалён"; +App::$strings["Channel '%s' censored"] = "Канал '%s' цензурируется"; +App::$strings["Channel '%s' uncensored"] = "Канал '%s' нецензурируется"; +App::$strings["Channel '%s' code allowed"] = "Код в канале '%s' разрешён"; +App::$strings["Channel '%s' code disallowed"] = "Код в канале '%s' запрещён"; +App::$strings["Censor"] = "Цензурировать"; +App::$strings["Uncensor"] = "Нецензурировать"; +App::$strings["Allow Code"] = "Разрешить код"; +App::$strings["Disallow Code"] = "Запретить код"; +App::$strings["UID"] = ""; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Выбранные каналы будут удалены!\n\nВсё что было опубликовано в этих каналах на этом сайте будет удалено навсегда!\n\nВы уверены?"; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Канал {0} будет удалён!\n\nВсё что было опубликовано в этом канале на этом сайте будет удалено навсегда!\n\nВы уверены?"; +App::$strings["Token verification failed."] = "トークンが違います。"; +App::$strings["Email Verification Required"] = "Eメール認証が必要です。"; +App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "認証トークンをメールへ送信しました [%s]メールに記載してあるトークンを下のボックスに入力してください。メールが届かない場合は迷惑メールを確認して頂き、そこにも無かった場合はサーバーの管理主へ連絡してください。"; +App::$strings["Resend Email"] = "メールを再送信する"; +App::$strings["Validation token"] = "トークン"; +App::$strings["Total invitation limit exceeded."] = "Превышено общее количество приглашений."; +App::$strings["%s : Not a valid email address."] = "%s : Недействительный адрес электронной почты."; +App::$strings["Please join us on \$Projectname"] = "Присоединятесь к \$Projectname !"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Превышен лимит приглашений. Пожалуйста, свяжитесь с администрацией сайта."; +App::$strings["%d message sent."] = array( + 0 => "%d сообщение отправлено.", + 1 => "%d сообщения отправлено.", + 2 => "%d сообщений отправлено.", +); +App::$strings["You have no more invitations available"] = "У вас больше нет приглашений"; +App::$strings["Send invitations"] = "Отправить приглашение"; +App::$strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному в строке:"; +App::$strings["Please join my community on \$Projectname."] = "Присоединятесь к нашему сообществу \$Projectname !"; +App::$strings["You will need to supply this invitation code:"] = "Вам нужно предоставит этот код приглашения:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Зарегистрируйтесь на любом из серверов \$Projectname"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Введите сетевой адрес \$Projectname в поисковой строке сайта"; +App::$strings["or visit"] = "или посетите"; +App::$strings["3. Click [Connect]"] = "Нажать [Подключиться]"; +App::$strings["Block Title"] = "ブロックのタイトル"; +App::$strings["Cover Photos"] = "Фотографии обложки"; +App::$strings["Your cover photo may be visible to anybody on the internet"] = "カバー写真はインターネット上の誰でも見ることができ、他のウェブサイトに配布される可能性があります。"; +App::$strings["Change Cover Photo"] = "カバ画の変更"; +App::$strings["Like/Dislike"] = "いいね! / わるいね!"; +App::$strings["This action is restricted to members."] = "Это действие доступно только участникам."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Пожалуйста, для продолжения войдите с вашим \$Projectname ID или зарегистрируйтесь как новый участник \$Projectname."; +App::$strings["Invalid request."] = "Неверный запрос."; +App::$strings["thing"] = "предмет"; +App::$strings["Channel unavailable."] = "Канал недоступен."; +App::$strings["Previous action reversed."] = "Предыдущее действие отменено."; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s согласен с %2\$s %3\$s"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s не согласен с %2\$s %3\$s"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s воздерживается от решения по %2\$s%3\$s"; +App::$strings["Action completed."] = "Действие завершено."; +App::$strings["Thank you."] = "Спасибо."; +App::$strings["If enabled, connection requests will be approved without your interaction"] = "Если включено, запросы контактов будут одобрены без вашего участия"; +App::$strings["Automatic approval settings"] = "Настройки автоматического одобрения"; +App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Некоторые индивидуальные разрешения могут быть предустановлены или заблокированы на основании типа вашего канала и настроек приватности."; +App::$strings["Unable to update menu."] = "メニューを更新できませんでした。"; +App::$strings["Unable to create menu."] = "メニューを作成できませんでした。"; +App::$strings["Menu Name"] = "メニュー名"; +App::$strings["Unique name (not visible on webpage) - required"] = "重複しない名前(webページには表示されません)。 - 必須"; +App::$strings["Menu Title"] = "メニューのタイトル"; +App::$strings["Visible on webpage - leave empty for no title"] = "webページに表示されます(空白にすることで非表示にもできます)。"; +App::$strings["Allow Bookmarks"] = "ブックマークの許可"; +App::$strings["Menu may be used to store saved bookmarks"] = "メニューはブックマークの保存のために使用されることとなります。"; +App::$strings["Submit and proceed"] = "確定して進む"; +App::$strings["Drop"] = "削除"; +App::$strings["Bookmarks allowed"] = "ブックマークの許可"; +App::$strings["Delete this menu"] = "このメニューを削除"; +App::$strings["Edit menu contents"] = "メニューの内容を編集"; +App::$strings["Edit this menu"] = "このメニューを編集"; +App::$strings["Menu could not be deleted."] = "メニューの削除ができません。"; +App::$strings["Edit Menu"] = "メニューの編集"; +App::$strings["Add or remove entries to this menu"] = "このメニューへのエントリーの追加/削除"; +App::$strings["Menu name"] = "メニュー名"; +App::$strings["Must be unique, only seen by you"] = "他と重複してはいけません(あなただけに表示されます)。"; +App::$strings["Menu title"] = "メニューのタイトル"; +App::$strings["Menu title as seen by others"] = "メニュータイトルは他のユーザーにも表示されます。"; +App::$strings["Allow bookmarks"] = "ブックマークの許可"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "あなたは%2$.0f個許可されてる中%1$.0f個のチャンネルをこのhubに作成しています。"; +App::$strings["Create a new channel"] = "新しいチャンネルを作成"; +App::$strings["Create New"] = "新規作成"; +App::$strings["Current Channel"] = "現在のチャンネル"; +App::$strings["Switch to one of your channels by selecting it."] = "選択したチャンネルに切り変えます。"; +App::$strings["Default Channel"] = "デフォルトのチャンネル"; +App::$strings["Make Default"] = "デフォルトのチャンネルにする"; +App::$strings["%d new messages"] = "%d件の新着メッセージ"; +App::$strings["%d new introductions"] = "%d件の新規フォローリクエスト"; +App::$strings["Delegated Channel"] = "Делегированный канал"; +App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Изменение названия канала не разрешается в течении 48 часов после смены пароля у аккаунта."; +App::$strings["Change channel nickname/address"] = "Изменить псевдоним / адрес канала"; +App::$strings["Any/all connections on other networks will be lost!"] = "Любые / все контакты в других сетях будут утеряны!"; +App::$strings["New channel address"] = "Новый адрес канала"; +App::$strings["Rename Channel"] = "Переименовать канал"; +App::$strings["Additional Features"] = "Дополнительные функции"; +App::$strings["Your technical skill level"] = "Ваш уровень технических навыков"; +App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Используется чтобы обеспечить соответствие опыта пользователя и функций на комфортном для вас уровне"; +App::$strings["Nobody except yourself"] = "Никто кроме вас"; +App::$strings["Only those you specifically allow"] = "Только персонально разрешённые"; +App::$strings["Approved connections"] = "Одобренные контакты"; +App::$strings["Any connections"] = "Любые контакты"; +App::$strings["Anybody on this website"] = "Любой на этом сайте"; +App::$strings["Anybody in this network"] = "Любой в этой сети"; +App::$strings["Anybody authenticated"] = "Любой аутентифицированный"; +App::$strings["Anybody on the internet"] = "Любой в интернете"; +App::$strings["Publish your default profile in the network directory"] = "Публиковать ваш профиль по умолчанию в сетевом каталоге"; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = "システム側でおすすめのユーザーとして紹介することを許可する"; +App::$strings["or"] = ""; +App::$strings["Your channel address is"] = "このチャンネルのアドレス : "; +App::$strings["Your files/photos are accessible via WebDAV at"] = "貴方のファイルや写真は次のWebDAVアドレスからアクセスできます : "; +App::$strings["Automatic membership approval"] = "Членство одобрено автоматически"; +App::$strings["Channel Settings"] = "チャンネル設定"; +App::$strings["Basic Settings"] = "基本設定"; +App::$strings["Email Address:"] = "メールアドレス:"; +App::$strings["Your Timezone:"] = "タイムゾーン:"; +App::$strings["Default Post Location:"] = "デフォルトの位置情報の指定 : "; +App::$strings["Geographical location to display on your posts"] = "デフォルトの現在地として投稿に記録される位置情報です。"; +App::$strings["Use Browser Location:"] = "ブラウザーから位置情報を取得する"; +App::$strings["Adult Content"] = "アダルトコンテンツ指定"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "しばしばor常にアダルトコンテンツを送信している場合はOnにしてください。(アダルトな要素を送信する時には#nsfwを付けるのを忘れないでください。)"; +App::$strings["Security and Privacy Settings"] = "セキュリティーとプライバシー"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "Ваши разрешения уже настроены. Нажмите чтобы просмотреть или изменить"; +App::$strings["Hide my online presence"] = "Скрывать моё присутствие онлайн"; +App::$strings["Prevents displaying in your profile that you are online"] = "Предотвращает отображения статуса \"в сети\" в вашем профиле"; +App::$strings["Simple Privacy Settings:"] = "Простые настройки безопасности:"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Полностью открытый - сверхлиберальный (должен использоваться с осторожностью)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Обычный - открытый по умолчанию, приватность по желанию (как в социальных сетях, но с улучшенными настройками)"; +App::$strings["Private - default private, never open or public"] = "Частный - частный по умочанию, не открытый и не публичный"; +App::$strings["Blocked - default blocked to/from everybody"] = "Закрытый - заблокированный по умолчанию от / для всех"; +App::$strings["Allow others to tag your posts"] = "他人が貴方の投稿にタグを追加することを許可する"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "主にコミュニティによって不適切なコンテンツに遡及的にフラグを立てるために使用されます。"; +App::$strings["Channel Permission Limits"] = "Ограничения разрешений канала"; +App::$strings["Expire other channel content after this many days"] = ""; +App::$strings["0 or blank to use the website limit."] = ""; +App::$strings["This website expires after %d days."] = "Срок хранения содержимого этого сайта истекает через %d дней"; +App::$strings["This website does not expire imported content."] = ""; +App::$strings["The website limit takes precedence if lower than your limit."] = ""; +App::$strings["Maximum Friend Requests/Day:"] = "Запросов в друзья в день:"; +App::$strings["May reduce spam activity"] = "Может ограничить спам активность"; +App::$strings["Default Privacy Group"] = "Группа конфиденциальности по умолчанию"; +App::$strings["Use my default audience setting for the type of object published"] = "Использовать настройки аудитории по умолчанию для типа опубликованного объекта"; +App::$strings["Profile to assign new connections"] = "コネクションをアサインするプロファイル"; +App::$strings["Channel role and privacy"] = "チャンネルの使い方"; +App::$strings["Default Permissions Group"] = "Группа разрешений по умолчанию"; +App::$strings["Maximum private messages per day from unknown people:"] = "Максимально количество сообщений от незнакомых людей, в день:"; +App::$strings["Useful to reduce spamming"] = "Полезно для сокращения количества спама"; +App::$strings["By default post a status message when:"] = "次のアクションの実行時に投稿を自動作成"; +App::$strings["accepting a friend request"] = "フレンドリクエストの許可"; +App::$strings["joining a forum/community"] = "フォーラム/コミュニティへの参加"; +App::$strings["making an interesting profile change"] = "おもしろい プロファイル更新"; +App::$strings["Send a notification email when:"] = "通知メールの送信"; +App::$strings["You receive a connection request"] = "コネクションリクエストを受け取った時"; +App::$strings["Your connections are confirmed"] = "あなたのコネクションリクエストが受理された時"; +App::$strings["Someone writes on your profile wall"] = "あなたのチャンネルに誰かが寄稿した時"; +App::$strings["Someone writes a followup comment"] = "誰かがフォローアップコメントを書いた時"; +App::$strings["You receive a private message"] = "プライベートメッセージ(DM)を取得した時"; +App::$strings["You receive a friend suggestion"] = "友達の提案が届いた時"; +App::$strings["You are tagged in a post"] = "ポストで名前リンクが貼られた時"; +App::$strings["You are poked/prodded/etc. in a post"] = "Poke(やその系統)された時"; +App::$strings["Someone likes your post/comment"] = "誰かが投稿やコメントにいいね!した時"; +App::$strings["Show visual notifications including:"] = "画面に表示する通知"; +App::$strings["Unseen grid activity"] = "未読のグリッドアクティビティ"; +App::$strings["Unseen stream activity"] = "未読のストリームアクティビティ"; +App::$strings["Unseen channel activity"] = "未読のチャンネルアクティビティ"; +App::$strings["Unseen private messages"] = "未読のプライベートメッセージ(DM)"; +App::$strings["Upcoming events"] = "イベント開始"; +App::$strings["Events today"] = "イベント当日"; +App::$strings["Upcoming birthdays"] = "誕生日当日"; +App::$strings["Not available in all themes"] = "一部のテーマには実装されていません。"; +App::$strings["System (personal) notifications"] = "システム(パーソナル)通知"; +App::$strings["System info messages"] = "システムインフォメーション"; +App::$strings["System critical alerts"] = "システムクリティカルアラート"; +App::$strings["New connections"] = "新しいコネクション"; +App::$strings["System Registrations"] = "システムへのユーザー登録"; +App::$strings["Unseen shared files"] = "未読の共有ファイル"; +App::$strings["Unseen public activity"] = "未読のパブリックアクティビティ"; +App::$strings["Unseen likes and dislikes"] = "未読のいいね!わるいね!"; +App::$strings["Unseen forum posts"] = "未読のフォーラムポスト"; +App::$strings["Email notification hub (hostname)"] = ""; +App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "もし貴方のチャンネルをクローンしている場合はメインのhubを選択してください。メールが二重に送信される原因となります。"; +App::$strings["Show new wall posts, private messages and connections under Notices"] = " +通知の下に優先度の低い内容(新しい投稿、プライベートメッセージ、コネクション等自分と直接関係の無い通知)を表示する"; +App::$strings["Notify me of events this many days in advance"] = ""; +App::$strings["Must be greater than 0"] = "0以上である必要があります。"; +App::$strings["Advanced Account/Page Type Settings"] = "Дополнительные настройки учётной записи / страницы"; +App::$strings["Change the behaviour of this account for special situations"] = "Изменить поведение этого аккаунта в особых ситуациях"; +App::$strings["Miscellaneous Settings"] = "他の設定"; +App::$strings["Default photo upload folder"] = "画像アップロードフォルダ名規則"; +App::$strings["%Y - current year, %m - current month"] = "%Y - 現在の年, %m -現在の月"; +App::$strings["Default file upload folder"] = "ファイルアップロードフォルダ名規則"; +App::$strings["Personal menu to display in your channel pages"] = "チャンネルページに表示するメニューを選択"; +App::$strings["Remove this channel."] = "このチャンネルを削除する"; +App::$strings["Firefox Share \$Projectname provider"] = ""; +App::$strings["Start calendar week on Monday"] = "カレンダーを頭月曜日にする"; +App::$strings["Affinity Slider settings updated."] = "Обновлены настройки слайдера cходства."; +App::$strings["No feature settings configured"] = "設定は変更されていません"; +App::$strings["Default maximum affinity level"] = "Максимальный уровень сходства по умолчанию."; +App::$strings["0-99 default 99"] = "0-99 (по умолчанию 99)"; +App::$strings["Default minimum affinity level"] = "Минимальный уровень сходства по умолчанию."; +App::$strings["0-99 - default 0"] = "0-99 (по умолчанию 0)"; +App::$strings["Affinity Slider Settings"] = "Настройки слайдера сходства"; +App::$strings["Addon Settings"] = "アドオンの設定"; +App::$strings["Please save/submit changes to any panel before opening another."] = "他のパネルを開く前に変更項目の保存をしてください。"; +App::$strings["Not valid email."] = "Не действительный адрес email."; +App::$strings["Protected email address. Cannot change to that email."] = "Защищенный адрес электронной почты. Нельзя изменить."; +App::$strings["System failure storing new email. Please try again."] = "Системная ошибка сохранения email. Пожалуйста попробуйте ещё раз."; +App::$strings["Technical skill level updated"] = "Уровень технических навыков обновлён"; +App::$strings["Password verification failed."] = "Не удалось выполнить проверку пароля."; +App::$strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменён."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменён."; +App::$strings["Password changed."] = "Пароль изменен."; +App::$strings["Password update failed. Please try again."] = "Изменение пароля не удалось. Пожалуйста, попробуйте ещё раз."; +App::$strings["Account Settings"] = "アカウント設定"; +App::$strings["Current Password"] = "現在のパスワード"; +App::$strings["Enter New Password"] = "新しいパスワード:"; +App::$strings["Confirm New Password"] = "新しいパスワードの再入力:"; +App::$strings["Leave password fields blank unless changing"] = "パスワードに変更を加えたくない場合は空欄で送信してください。"; +App::$strings["Remove this account including all its channels"] = "全てのチャンネル纏めてアカウントを削除する"; +App::$strings["%s - (Experimental)"] = "%s - (экспериментальный)"; +App::$strings["Display Settings"] = "画面表示設定"; +App::$strings["Theme Settings"] = "テーマ設定"; +App::$strings["Custom Theme Settings"] = "テーマのカスタマイズ設定"; +App::$strings["Content Settings"] = "コンテンツ設定"; +App::$strings["Display Theme:"] = "テーマ:"; +App::$strings["Select scheme"] = "スキームの選択"; +App::$strings["Preload images before rendering the page"] = "ページをレンダリングする前に画像をロードする"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "ページ自体の読み込みは遅くなりますが、ロード完了時に投稿がすぐ表示されます。"; +App::$strings["Enable user zoom on mobile devices"] = "モバイル端末でのズームを許可する"; +App::$strings["Update browser every xx seconds"] = "ブラウザーの情報更新頻度"; +App::$strings["Minimum of 10 seconds, no maximum"] = "最短10秒、最大値はありません。"; +App::$strings["Maximum number of conversations to load at any time:"] = ""; +App::$strings["Maximum of 100 items"] = "最大100アイテム"; +App::$strings["Show emoticons (smilies) as images"] = "絵文字を画像として扱う"; +App::$strings["Provide channel menu in navigation bar"] = "チャンネルメニューをナビゲーションバーに移動する"; +App::$strings["Default: channel menu located in app menu"] = "通常はアプリメニューに位置しています。"; +App::$strings["Manual conversation updates"] = "会話の自動更新"; +App::$strings["Default is on, turning this off may increase screen jumping"] = "デフォルトではオンです。スクリーンがジャンプする場合にこれをオフにしてください。"; +App::$strings["Link post titles to source"] = "ポストタイトルのクリックで投稿の本体へ移動"; +App::$strings["System Page Layout Editor - (advanced)"] = "システムページレイアウトエディタ(Advanced)"; +App::$strings["Use blog/list mode on channel page"] = "Использовать режим блога / списка на странице канала"; +App::$strings["(comments displayed separately)"] = "(комментарии отображаются отдельно)"; +App::$strings["Use blog/list mode on grid page"] = "Использовать режим блога / списка на странице матрицы"; +App::$strings["Channel page max height of content (in pixels)"] = "Максимальная высота содержания канала (в пикселях)"; +App::$strings["click to expand content exceeding this height"] = "нажмите, чтобы увеличить содержимое, превышающее эту высоту"; +App::$strings["Grid page max height of content (in pixels)"] = "Максимальная высота содержания на страницах матрицы (в пикселях)"; +App::$strings["Permission Name is required."] = "権限名は必須です。"; +App::$strings["Permission category saved."] = "権限カテゴリーは保存されました。"; +App::$strings["Use this form to create permission rules for various classes of people or connections."] = "このフォームを使用して複数の人で選別できる権限ルールを作成できます。"; +App::$strings["Permission Name"] = "権限名"; +App::$strings["Name and Secret are required"] = "名前とシークレットは必須です"; +App::$strings["Add OAuth2 application"] = "OAuth2アプリケーションの追加"; +App::$strings["Name of application"] = "アプリケーション名"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Сгенерирован автоматические - измените если требуется. Макс. длина 20"; +App::$strings["Redirect"] = "リダイレクト"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI перенаправления - оставьте пустыми до тех пока ваше приложение не требует этого"; +App::$strings["Grant Types"] = "Разрешить типы"; +App::$strings["leave blank unless your application sepcifically requires this"] = "оставьте пустыми до тех пока ваше приложение не требует этого"; +App::$strings["Authorization scope"] = "Область полномочий"; +App::$strings["OAuth2 Application not found."] = "Приложение OAuth2 не найдено."; +App::$strings["Add application"] = "Добавить приложение"; +App::$strings["Connected OAuth2 Apps"] = "Подключённые приложения OAuth2"; +App::$strings["Client key starts with"] = "Ключ клиента начинаетя с"; +App::$strings["No name"] = "名前無し"; +App::$strings["Remove authorization"] = "登録の削除"; +App::$strings["Name is required"] = "名前は必須です。"; +App::$strings["Key and Secret are required"] = "キーとシークレットキーは必須です。"; +App::$strings["Icon url"] = "アイコンURL"; +App::$strings["Application not found."] = "アプリケーションがありません。"; +App::$strings["Connected Apps"] = "接続済みアプリ"; +App::$strings["This channel is limited to %d tokens"] = "このチャンネルは%dのトークンで制限されています。"; +App::$strings["Name and Password are required."] = "名前とパスワードは必須です"; +App::$strings["Token saved."] = "トークンが保存されました。"; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Используйте эту форму для создания идентификаторов временного доступа для сторонних пользователей. Эти идентификаторы могут использоваться в списках контроля доступа, и посетители могут использовать эти учетные данные для доступа к частному контенту."; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Вы также можете предоставить доступ в стиле dropbox для друзей и коллег, добавив имя и пароль для входа на любой URL-адрес сайта. Например:"; +App::$strings["Login Name"] = "ログイン名"; +App::$strings["Login Password"] = "ログインパスワード"; +App::$strings["Expires (yyyy-mm-dd)"] = "期限(yyyy-mm-dd)"; +App::$strings["Room not found"] = "ルームがありません。"; +App::$strings["Leave Room"] = "ルームを去る"; +App::$strings["Delete Room"] = "ルームの削除"; +App::$strings["I am away right now"] = "退出中"; +App::$strings["I am online"] = "オンライン"; +App::$strings["Bookmark this room"] = "この部屋をブックマーク"; +App::$strings["New Chatroom"] = "新しいチャットルーム"; +App::$strings["Chatroom name"] = "チャットルームの名前"; +App::$strings["Expiration of chats (minutes)"] = "チャットの有効期限 (分単位)"; +App::$strings["%1\$s's Chatrooms"] = "%1\$sのチャットルーム"; +App::$strings["No chatrooms available"] = "チャットルームはありません"; +App::$strings["Expiration"] = "期限"; +App::$strings["min"] = "分"; +App::$strings["Website:"] = "サイト:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "リモートチャンネル[%s] (このサイトでは把握されていません。)"; +App::$strings["Rating (this information is public)"] = "Оценка (эта информация общедоступна)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Объясните свою оценку (необязательно; эта информация общедоступна)"; +App::$strings["Fetching URL returns error: %1\$s"] = ""; +App::$strings["Location not found."] = "ロケーションがありません。"; +App::$strings["Location lookup failed."] = "Поиск местоположения не удался"; +App::$strings["Please select another location to become primary before removing the primary location."] = "Пожалуйста, выберите другое местоположение в качестве основного прежде чем удалить предыдущее"; +App::$strings["Syncing locations"] = "同期中です...."; +App::$strings["No locations found."] = "他のロケーションがありません。"; +App::$strings["Manage Channel Locations"] = "チャンネル所在地の管理"; +App::$strings["Sync Now"] = "今すぐ同期"; +App::$strings["Please wait several minutes between consecutive operations."] = "作業を要求してからしばらくお待ちください。サーバー間の同期には時間がかかります。"; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "できるならそれぞれのクローン先に実際にログインして作業してもらえると負荷分散になり嬉しいです。。。。。"; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "当該のクローン先が閉鎖したなどログインできない状況の時にここを使用してください。"; +App::$strings["Nothing to import."] = "Ничего импортировать."; +App::$strings["Unable to download data from old server"] = "旧サーバーからデータを取得できませんでした。"; +App::$strings["Imported file is empty."] = "Импортированный файл пуст."; +App::$strings["Your service plan only allows %d channels."] = "Ваш класс обслуживания разрешает только %d каналов."; +App::$strings["No channel. Import failed."] = "Канала нет. Импорт невозможен."; +App::$strings["You must be logged in to use this feature."] = "Вы должны войти в систему, чтобы использовать эту функцию."; +App::$strings["Import Channel"] = "チャンネルのインポート"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "このフォームは外部サーバー/hubのチャンネルをインポートするためのものです。今利用している古いチャンネルの設定ファイルをご用意ください。"; +App::$strings["File to Upload"] = "ファイルのアップロード"; +App::$strings["Or provide the old server/hub details"] = "又は古いサーバーの情報を入力する"; +App::$strings["Your old identity address (xyz@example.com)"] = "古いチャンネルのアドレス(xyz@example.com 固有id@ドメイン)"; +App::$strings["Your old login email address"] = "古いアカウントのログインアドレス"; +App::$strings["Your old login password"] = "古いログインパスワード"; +App::$strings["Import a few months of posts if possible (limited by available memory"] = "最近の投稿のみを取得する(メモリによって制限されます)"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "ここをメインとして使うか、他をサブとして使うか選択することができます。ドメインはメインとした側のhubのドメインを利用することになります。"; +App::$strings["Make this hub my primary location"] = "ここをメインとする"; +App::$strings["Move this channel (disable all previous locations)"] = "完全にここにお引っこしする(以前の鯖の個人データを完全に消す)"; +App::$strings["Use this channel nickname instead of the one provided"] = "新しいチャンネルニックネームの設定"; +App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "新しいニックネームを指定することができます。空白のままにすると元のニックネームに似た別のニックネームが割り当てられます。"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "この作業にはそこそこ時間が掛ります。送信は一度だけにしてそのままお待ちください。"; +App::$strings["No connections."] = "Контактов нет."; +App::$strings["Visit %s's profile [%s]"] = "Посетить %s ​​профиль [%s]"; +App::$strings["View Connections"] = "コネクションの表示"; +App::$strings["Authentication failed."] = "Ошибка аутентификации."; +App::$strings["Your real name is recommended."] = "本名を使うことをオススメします!(義務ではない"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "例: \"harukin\", \"股尾前科\", \"唐澤貴洋\", \"龍神\""; +App::$strings["This will be used to create a unique network address (like an email address)."] = "これはメールのような固有のアドレスとなります。後から変更できません。"; +App::$strings["Allowed characters are a-z 0-9, - and _"] = "a-z 0-9, - и _ のみに対応しております。"; +App::$strings["Channel name"] = "チャンネル名"; +App::$strings["Choose a short nickname"] = "ニックネーム"; +App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = "貴方のプライバシー要求に従うように権限を設定してください。"; +App::$strings["Read more about channel permission roles"] = "チャンネルの権限についての詳細はこちらから"; +App::$strings["Create a Channel"] = "チャンネルの作成"; +App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = + "チャンネルはネットワークの中での一つの存在です。これは一般的なアカウントとして投稿することもできればフォーラムの中心やwebページ、ニュースフィードの基点等様々な事に利用できます。"; +App::$strings["or import an existing channel from another location."] = "又は チャンネルのインポート をする"; +App::$strings["Validate"] = "Проверить"; +App::$strings["Manage apps"] = "Управление приложениями"; +App::$strings["Create new app"] = "Создать новое приложение"; +App::$strings["No default suggestions were found."] = "Предложений по умолчанию не найдено."; +App::$strings["%d rating"] = array( + 0 => "%d оценка", + 1 => "%d оценки", + 2 => "%d оценок", +); +App::$strings["Gender: "] = "性別:"; +App::$strings["Status: "] = "配偶者:"; +App::$strings["Homepage: "] = "ホームページ:"; +App::$strings["Description:"] = "説明:"; +App::$strings["Public Forum:"] = "パブリックフォーラム:"; +App::$strings["Keywords: "] = "キーワード:"; +App::$strings["Don't suggest"] = "提案しない"; +App::$strings["Common connections (estimated):"] = "有名なコネクション:"; +App::$strings["Global Directory"] = "グローバルディレクトリ"; +App::$strings["Local Directory"] = "ローカルディレクトリ"; +App::$strings["Finding:"] = "検索:"; +App::$strings["next page"] = "次のページ"; +App::$strings["previous page"] = "前のページ"; +App::$strings["Sort options"] = "並べ替え"; +App::$strings["Alphabetic"] = "アルファベット(A->Z)"; +App::$strings["Reverse Alphabetic"] = "アルファベット(Z->A)"; +App::$strings["Newest to Oldest"] = "新しい順"; +App::$strings["Oldest to Newest"] = "古い順"; +App::$strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты)."; +App::$strings["Enter a folder name"] = "フォルダ名を入力してください"; +App::$strings["or select an existing folder (doubleclick)"] = "又はフォルダを選択する(ダブルクリックをしてください)"; +App::$strings["Invalid message"] = ""; +App::$strings["no results"] = "情報無し"; +App::$strings["channel sync processed"] = "チャンネルの同期は実行されました"; +App::$strings["queued"] = "キュー追加済"; +App::$strings["posted"] = "投稿完了"; +App::$strings["accepted for delivery"] = "転送が受理されました"; +App::$strings["updated"] = "アップデート済み"; +App::$strings["update ignored"] = "アップデートが拒否されました"; +App::$strings["permission denied"] = "権限が弾かれました"; +App::$strings["recipient not found"] = "レセプションがありません"; +App::$strings["mail recalled"] = "メールが再送信されました"; +App::$strings["duplicate mail received"] = "重複メールを受信しました"; +App::$strings["mail delivered"] = "メールを配送しました"; +App::$strings["Delivery report for %1\$s"] = "転送レポート : %1\$s"; +App::$strings["Redeliver"] = "再配送する"; +App::$strings["No such group"] = "そのようなグループは存在しません"; +App::$strings["No such channel"] = "そのようなチャンネルは存在しません"; +App::$strings["Privacy group is empty"] = "プライバシーグループは空です"; +App::$strings["Privacy group: "] = "プライバシーグループ : "; +App::$strings["Please login."] = "ログインしてください。"; +App::$strings["No service class restrictions found."] = "Ограничений класса обслуживание не найдено."; +App::$strings["Add Card"] = "カードの追加"; +App::$strings["Change Order of Pinned Navbar Apps"] = "Изменить порядок приложений на панели навигации"; +App::$strings["Change Order of App Tray Apps"] = "アプリの配置を変更できます。"; +App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Используйте стрелки для перемещения приложения влево (вверх) или вправо (вниз) в панели навигации"; +App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "上下の矢印を利用してアイテムの配置を変更します。"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Превышено максимальное количество регистраций на сегодня. Пожалуйста, попробуйте снова завтра."; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Пожалуйста, подтвердите согласие с \"Условиями обслуживания\". Регистрация не удалась."; +App::$strings["Passwords do not match."] = "Пароли не совпадают."; +App::$strings["Registration successful. Continue to create your first channel..."] = "Регистрация завершена успешно. Для продолжения создайте свой первый канал..."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "Регистрация завершена успешно. Пожалуйста проверьте вашу электронную почту для подтверждения."; +App::$strings["Your registration is pending approval by the site owner."] = "Ваша регистрация ожидает одобрения администрации сайта."; +App::$strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана."; +App::$strings["Registration on this hub is disabled."] = "Регистрация на этом хабе отключена."; +App::$strings["Registration on this hub is by approval only."] = "Регистрация на этом хабе только по утверждению."; +App::$strings["Register at another affiliated hub."] = "Зарегистрироваться на другом хабе."; +App::$strings["Registration on this hub is by invitation only."] = "Регистрация на этом хабе доступна только по приглашениям."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Этот сайт превысил максимальное количество регистраций на сегодня. Пожалуйста, попробуйте снова завтра. "; +App::$strings["I accept the %s for this website"] = "Я принимаю %s для этого веб-сайта."; +App::$strings["I am over %s years of age and accept the %s for this website"] = "私は %s 歳以上であり %s に同意します。"; +App::$strings["Your email address"] = "メールアドレス"; +App::$strings["Choose a password"] = "パスワード"; +App::$strings["Please re-enter your password"] = "パスワードの再入力"; +App::$strings["Please enter your invitation code"] = "Пожалуйста, введите Ваш код приглашения"; +App::$strings["Your Name"] = "Ваше имя"; +App::$strings["Real names are preferred."] = "Предпочтительны реальные имена."; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Ваш псевдоним будет использован для создания легко запоминаемого адреса канала, напр. nickname %s"; +App::$strings["Select a channel permission role for your usage needs and privacy requirements."] = "Выберите разрешения для канала в зависимости от ваших потребностей и требований приватности."; +App::$strings["no"] = "No"; +App::$strings["yes"] = "Yes"; +App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "Eメールでの認証を行います。この後メールボックスを確認してください。(迷惑メールになっている可能性があります。)"; +App::$strings["This setting requires special processing and editing has been blocked."] = "Этот параметр требует специальной обработки и редактирования и был заблокирован."; +App::$strings["Configuration Editor"] = "Редактор конфигурации"; +App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Предупреждение. Изменение некоторых настроек может привести к неработоспособности вашего канала. Пожалуйста, покиньте эту страницу, если вы точно не значете, как правильно использовать эту функцию."; +App::$strings["Edit Article"] = "記事の編集"; +App::$strings["Not found"] = ""; +App::$strings["Error retrieving wiki"] = "Ошибка при получении Wiki"; +App::$strings["Error creating zip file export folder"] = "zipファイルのエクスポートフォルダーの作成に失敗しました。"; +App::$strings["Error downloading wiki: "] = "wikiのダウンロードエラー:"; +App::$strings["Download"] = "ダウンロード"; +App::$strings["Wiki name"] = "Wikiの名前"; +App::$strings["Content type"] = "コンテンツタイプ"; +App::$strings["Type"] = "タイプ"; +App::$strings["Any type"] = ""; +App::$strings["Lock content type"] = "コンテンツタイプを固定する"; +App::$strings["Create a status post for this wiki"] = "このwikiに対してステータス投稿を設定する"; +App::$strings["Edit Wiki Name"] = "Wikiの名前の編集"; +App::$strings["Wiki not found"] = "Wikiはありません"; +App::$strings["Rename page"] = "ページの名前編集"; +App::$strings["Error retrieving page content"] = "ページコンテンツの検索に失敗しました"; +App::$strings["New page"] = "新しいページ"; +App::$strings["Revision Comparison"] = "差分の表示"; +App::$strings["Revert"] = "打ち消す"; +App::$strings["Short description of your changes (optional)"] = "この編集に対して説明を追加する"; +App::$strings["Source"] = "ソース"; +App::$strings["New page name"] = "新規ページ名"; +App::$strings["Embed image from photo albums"] = "フォトアルバムからの埋め込み画像"; +App::$strings["Error creating wiki. Invalid name."] = "wiki作成エラー: 名前が無効です。"; +App::$strings["A wiki with this name already exists."] = "そのwikiの名前は既に存在します。"; +App::$strings["Wiki created, but error creating Home page."] = "wikiは作成されましたがホームページの作成中にエラーが発生しました。"; +App::$strings["Error creating wiki"] = "Wiki作成エラーです。"; +App::$strings["Error updating wiki. Invalid name."] = "Wikiアップデートエラー: 名前が無効です。"; +App::$strings["Error updating wiki"] = "Wikiアップデートエラーです。"; +App::$strings["Wiki delete permission denied."] = "Wiki削除権限がありません。"; +App::$strings["Error deleting wiki"] = "Wiki削除エラーです。"; +App::$strings["New page created"] = "新規ページの作成"; +App::$strings["Cannot delete Home"] = "homeを削除できません。"; +App::$strings["Current Revision"] = "現在のバージョン"; +App::$strings["Selected Revision"] = "前のバージョンの探索"; +App::$strings["You must be authenticated."] = "あなたは認証されている必要があります。"; +App::$strings["Hub not found."] = "hubは存在しません。"; +App::$strings["Item not available."] = "アイテムは利用できません。"; +App::$strings["Privacy group created."] = "プライバシーグループを作成しました。"; +App::$strings["Could not create privacy group."] = "プライバシーグループをアップデートできません。"; +App::$strings["Privacy group updated."] = "プライバシーグループはアップデートされました。"; +App::$strings["Add Group"] = "グループへ追加"; +App::$strings["Privacy group name"] = "プライバシーグループ名"; +App::$strings["Members are visible to other channels"] = "メンバーは他のチャンネルへ公開されます。"; +App::$strings["Privacy group removed."] = "プライバシーグループを削除しました。"; +App::$strings["Unable to remove privacy group."] = "プライバシーグループを削除できませんでした。"; +App::$strings["Privacy Group: %s"] = "プライバシーグループ: %s"; +App::$strings["Privacy group name: "] = "プライバシーグループの名前: "; +App::$strings["Delete Group"] = "グループを削除する"; +App::$strings["Group members"] = "グループのメンバー"; +App::$strings["Not in this group"] = "グループ外のアカウント"; +App::$strings["Click a channel to toggle membership"] = "ユーザーをクリックしてグループを操作します。"; +App::$strings["Profile not found."] = "プロファイルは存在しません。"; +App::$strings["Profile deleted."] = "プロファイルを削除しました。"; +App::$strings["Profile-"] = "プロファイル"; +App::$strings["New profile created."] = "新しいプロファイルが作成されました。"; +App::$strings["Profile unavailable to clone."] = "プロファイルがクローンできません。"; +App::$strings["Profile unavailable to export."] = "プロファイルをエクスポートできません。"; +App::$strings["Profile Name is required."] = "プロファイル名は必須です。"; +App::$strings["Marital Status"] = "マテリアルステータス"; +App::$strings["Romantic Partner"] = "ロマンチックパートナー"; +App::$strings["Likes"] = "好きなもの"; +App::$strings["Dislikes"] = "嫌いなもの"; +App::$strings["Work/Employment"] = "職 / 従業員"; +App::$strings["Religion"] = "信仰"; +App::$strings["Political Views"] = "政治感心"; +App::$strings["Sexual Preference"] = "性的興味感心"; +App::$strings["Homepage"] = "ホームページ"; +App::$strings["Interests"] = "興味"; +App::$strings["Profile updated."] = "プロファイルをアップデートしました。"; +App::$strings["Hide your connections list from viewers of this profile"] = "見に来た人にこのプロフィールを見せない"; +App::$strings["Edit Profile Details"] = "プロフィールの編集"; +App::$strings["View this profile"] = "このプロフィールを表示"; +App::$strings["Profile Tools"] = "プロファイルツール"; +App::$strings["Change cover photo"] = "カバ画の変更"; +App::$strings["Create a new profile using these settings"] = "この情報を元にして新しいプロファイルを作成する"; +App::$strings["Clone this profile"] = "このプロファイルを複製する"; +App::$strings["Delete this profile"] = "このプロファイルを削除する"; +App::$strings["Add profile things"] = "カスタム項目...."; +App::$strings["Relationship"] = "交友関係"; +App::$strings["Import profile from file"] = "プロファイルをファイルからインポートする"; +App::$strings["Export profile to file"] = "プロファイルをファイルへエクスポートする"; +App::$strings["Your gender"] = "性別"; +App::$strings["Marital status"] = "配偶者の有無"; +App::$strings["Sexual preference"] = "性的興味感心"; +App::$strings["Profile name"] = "プロファイル名"; +App::$strings["This is your default profile."] = "これはデフォルトのプロファイルです。"; +App::$strings["Your full name"] = "フルネーム"; +App::$strings["Title/Description"] = "ひとこと"; +App::$strings["Street address"] = "住所"; +App::$strings["Locality/City"] = "都市"; +App::$strings["Region/State"] = "地域"; +App::$strings["Postal/Zip code"] = "郵便番号"; +App::$strings["Who (if applicable)"] = "相手"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "例: ivan1990, Ivan Petrov, ivan@example.com"; +App::$strings["Since (date)"] = "いつから(日付)"; +App::$strings["Tell us about yourself"] = "あなたについて"; +App::$strings["Hometown"] = "街"; +App::$strings["Political views"] = "政治関心"; +App::$strings["Religious views"] = "信仰"; +App::$strings["Keywords used in directory listings"] = "自分の趣味"; +App::$strings["Example: fishing photography software"] = "例: 釣り 写真 ソフトウェア"; +App::$strings["Musical interests"] = "好きな音楽"; +App::$strings["Books, literature"] = "好きな本やリテラチャー"; +App::$strings["Television"] = "好きなテレビ"; +App::$strings["Film/Dance/Culture/Entertainment"] = "映画/ダンス/文化/娯楽"; +App::$strings["Hobbies/Interests"] = "趣味/興味"; +App::$strings["Love/Romance"] = "ラブ/ロマンス"; +App::$strings["School/Education"] = "学校 / 教育"; +App::$strings["Contact information and social networks"] = "連絡先とSNS"; +App::$strings["My other channels"] = "他のチャンネル"; +App::$strings["Communications"] = "コミュニケーション"; +App::$strings["Email verification resent"] = "Сообщение для проверки email отправлено повторно"; +App::$strings["Unable to resend email verification message."] = "Невозможно повторно отправить сообщение для проверки email"; +App::$strings["vcard"] = "vCard"; +App::$strings["Invalid profile identifier."] = "Неверный идентификатор профиля"; +App::$strings["Profile Visibility Editor"] = "プロファイル可視エディター"; +App::$strings["Click on a contact to add or remove."] = "クリックしてチャンネルを追加又は削除できます。"; +App::$strings["Visible To"] = "表示"; +App::$strings["Thing updated"] = "アップデートされました。"; +App::$strings["Object store: failed"] = "Хранлищие объектов: неудача"; +App::$strings["Thing added"] = "追加されました。"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = ""; +App::$strings["Show Thing"] = "表示する"; +App::$strings["item not found."] = "アイテムはありません。"; +App::$strings["Edit Thing"] = "編集する"; +App::$strings["Select a profile"] = "プロファイルの選択"; +App::$strings["Post an activity"] = ""; +App::$strings["Only sends to viewers of the applicable profile"] = ""; +App::$strings["Name of thing e.g. something"] = "要素の名前"; +App::$strings["URL of thing (optional)"] = "URL(任意)"; +App::$strings["URL for photo of thing (optional)"] = ""; +App::$strings["Add Thing to your Profile"] = "プロファイルへカスタム項目を追加"; +App::$strings["Article"] = "記事"; +App::$strings["Item has been removed."] = "アイテムは削除されます。"; +App::$strings["Welcome to %s"] = "%sへようこそ!!"; +App::$strings["Please refresh page"] = "ページを更新してください。"; +App::$strings["Unknown error"] = "原因不明のエラーです。"; +App::$strings["No valid account found."] = "そのアカウントは見つかりませんでした。"; +App::$strings["Password reset request issued. Check your email."] = "パスワードのリセットリクエストがあります。メールを確認してください。"; +App::$strings["Site Member (%s)"] = ""; +App::$strings["Password reset requested at %s"] = ""; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "リクエストは承認されませんでした。パスワードのリセットに失敗しました(既に過去に実行しているのかもしれません)。"; +App::$strings["Your password has been reset as requested."] = "あなたのパスワードを入力値にリセットしました。"; +App::$strings["Your new password is"] = "あなたの新しいパスワードは"; +App::$strings["Save or copy your new password - and then"] = "Сохраните ваш новый пароль и затем"; +App::$strings["click here to login"] = "ここをクリックしてログイン"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Ваш пароль может быть изменён на странице Настройкипосле успешного входа."; +App::$strings["Your password has changed at %s"] = "Пароль был изменен на %s"; +App::$strings["Forgot your Password?"] = "パスワードを忘れましたか?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите ваш адрес электронной почты и нажмите отправить чтобы сбросить пароль. Затем проверьте ваш почтовый ящик для дальнейших инструкций. "; +App::$strings["Email Address"] = "Адрес электронной почты"; +App::$strings["Set your current mood and tell your friends"] = "Установить текущее настроение и рассказать друзьям"; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Предупреждение: Версия базы данных отличается от %1\$d обновления."; +App::$strings["Import completed"] = "インポートは完了しました。"; +App::$strings["Import Items"] = "アイテムのインポート"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Используйте эту форму для импорта существующих публикаций и содержимого из файла."; +App::$strings["toggle full screen mode"] = "フルスクリーンモードの切り替え"; +App::$strings["parent"] = ""; +App::$strings["Principal"] = ""; +App::$strings["Addressbook"] = "アドレス帳"; +App::$strings["Schedule Inbox"] = "インボックススケジュール"; +App::$strings["Schedule Outbox"] = "アウトボックススケジュール"; +App::$strings["Total"] = "合計"; +App::$strings["Shared"] = "共有"; +App::$strings["Add Files"] = "追加"; +App::$strings["You are using %1\$s of your available file storage."] = "あなたは%1\$sの容量を使っています。"; +App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Вы используете %1\$s из %2\$s доступного хранилища файлов (%3\$s%)."; +App::$strings["WARNING:"] = "わーにんぐ:"; +App::$strings["Create new folder"] = "新規フォルダの作成"; +App::$strings["Upload file"] = "ファイルのアップロード"; +App::$strings["Drop files here to immediately upload"] = "ファイルをここにドラックしてアップロードできます。"; + +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$sが[zrl=%3\$s]%4\$sの%5\$s[/zrl]にコメントしました"; \ No newline at end of file diff --git a/view/ja/strings.php b/view/ja/strings.php new file mode 100644 index 000000000..6ec115860 --- /dev/null +++ b/view/ja/strings.php @@ -0,0 +1,1865 @@ +=2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2);; +}} +; +App::$strings["Cannot locate DNS info for database server '%s'"] = ""; +App::$strings["Profile Photos"] = "Фотографии профиля"; +App::$strings["Image/photo"] = "Изображение / фото"; +App::$strings["Encrypted content"] = "Зашифрованное содержание"; +App::$strings["QR code"] = "QR код"; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s написал следующее %2\$s %3\$s"; +App::$strings["post"] = "сообщение"; +App::$strings["$1 wrote:"] = "$1 писал:"; +App::$strings["Embedded content"] = "Внедренное содержание"; +App::$strings["Embedding disabled"] = "Внедрение отключенно"; +App::$strings["created a new post"] = "создал новое сообщение"; +App::$strings["commented on %s's post"] = "прокомментировал %s's сообщение"; +App::$strings["photo"] = "фото"; +App::$strings["event"] = "мероприятие"; +App::$strings["channel"] = "канал"; +App::$strings["status"] = "статус"; +App::$strings["comment"] = "комментарий"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %2\$s's %3\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %2\$s's %3\$s"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s теперь соединен с %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s подпихнул %2\$s"; +App::$strings["poked"] = "подпихнул"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = ""; +App::$strings["Select"] = "Выбрать"; +App::$strings["Delete"] = "Удалить"; +App::$strings["Private Message"] = "Личное сообщение"; +App::$strings["Message is verified"] = "Сообщение проверено"; +App::$strings["View %s's profile @ %s"] = "Просмотр %s's профиля @ %s"; +App::$strings["Categories:"] = "Категории:"; +App::$strings["Filed under:"] = "Хранить под:"; +App::$strings[" from %s"] = " от %s"; +App::$strings["last edited: %s"] = ""; +App::$strings["Expires: %s"] = ""; +App::$strings["View in context"] = "Показать в контексте"; +App::$strings["Please wait"] = "Подождите пожалуйста"; +App::$strings["remove"] = "удалить"; +App::$strings["Loading..."] = "Загрузка..."; +App::$strings["Delete Selected Items"] = "Удалить выбранные элементы"; +App::$strings["View Source"] = "Просмотр источника"; +App::$strings["Follow Thread"] = "Следовать теме"; +App::$strings["View Status"] = "Просмотр состояния"; +App::$strings["View Profile"] = "Просмотр профиля"; +App::$strings["View Photos"] = "Просмотр фотографий"; +App::$strings["Matrix Activity"] = "Активность матрицы"; +App::$strings["Edit Contact"] = "Редактировать контакт"; +App::$strings["Send PM"] = "Отправить личное сообщение"; +App::$strings["Poke"] = "Подпихнуть"; +App::$strings["%s likes this."] = "%s нравится это."; +App::$strings["%s doesn't like this."] = "%s не нравится это."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d чел. нравится это.", + 1 => "%2\$d чел. нравится это.", + 2 => "%2\$d чел. нравится это.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "", + 1 => "", + 2 => "%2\$d чел. не нравится это.", +); +App::$strings["and"] = "и"; +App::$strings[", and %d other people"] = array( + 0 => "", + 1 => "", + 2 => ", и %d другие люди", +); +App::$strings["%s like this."] = "%s нравится это."; +App::$strings["%s don't like this."] = "%s не нравится это."; +App::$strings["Visible to everybody"] = "Видно для всех"; +App::$strings["Please enter a link URL:"] = "Пожалуйста, введите URL ссылки:"; +App::$strings["Please enter a video link/URL:"] = "Пожалуйста, введите URL видео-ссылки:"; +App::$strings["Please enter an audio link/URL:"] = "Пожалуйста, введите URL аудио-ссылки:"; +App::$strings["Tag term:"] = "Теги:"; +App::$strings["Save to Folder:"] = "Сохранить в папку:"; +App::$strings["Where are you right now?"] = "Где вы сейчас?"; +App::$strings["Expires YYYY-MM-DD HH:MM"] = ""; +App::$strings["Preview"] = "Предварительный просмотр"; +App::$strings["Share"] = "Поделиться"; +App::$strings["Page link title"] = "Ссылка заголовока страницы"; +App::$strings["Post as"] = ""; +App::$strings["Upload photo"] = "Загрузить фотографию"; +App::$strings["upload photo"] = "загрузить фотографию"; +App::$strings["Attach file"] = "Прикрепить файл"; +App::$strings["attach file"] = "прикрепить файл"; +App::$strings["Insert web link"] = "Вставить веб-ссылку"; +App::$strings["web link"] = "веб-ссылка"; +App::$strings["Insert video link"] = "Вставить видео-ссылку"; +App::$strings["video link"] = "видео-ссылка"; +App::$strings["Insert audio link"] = "Вставить аудио-ссылку"; +App::$strings["audio link"] = "аудио-ссылка"; +App::$strings["Set your location"] = "Указание своего расположения"; +App::$strings["set location"] = "указание расположения"; +App::$strings["Clear browser location"] = "Стереть указание расположения"; +App::$strings["clear location"] = "стереть указание расположения"; +App::$strings["Set title"] = "Заголовок"; +App::$strings["Categories (comma-separated list)"] = "Категории (список через запятую)"; +App::$strings["Permission settings"] = "Настройки разрешений"; +App::$strings["permissions"] = "разрешения"; +App::$strings["Public post"] = "Публичное сообщение"; +App::$strings["Example: bob@example.com, mary@example.com"] = "Пример: bob@example.com, mary@example.com"; +App::$strings["Set expiration date"] = ""; +App::$strings["Encrypt text"] = ""; +App::$strings["OK"] = "OK"; +App::$strings["Cancel"] = "Отменить"; +App::$strings["Discover"] = "Обнаруженные"; +App::$strings["Imported public streams"] = ""; +App::$strings["Commented Order"] = "По комментариям"; +App::$strings["Sort by Comment Date"] = "Сортировка по дате создания комментариев"; +App::$strings["Posted Order"] = "По добавлениям"; +App::$strings["Sort by Post Date"] = "Сортировка по дате создания сообщения"; +App::$strings["Personal"] = "Личные"; +App::$strings["Posts that mention or involve you"] = "Сообщения, в которых упоминули или вовлекли вас"; +App::$strings["New"] = "Новые"; +App::$strings["Activity Stream - by date"] = "Лента активности - по дате"; +App::$strings["Starred"] = "Помеченные"; +App::$strings["Favourite Posts"] = "Фаворит-сообщения"; +App::$strings["Spam"] = "Спам"; +App::$strings["Posts flagged as SPAM"] = "Как СПАМ помеченные сообщения"; +App::$strings["Channel"] = "Канал"; +App::$strings["Status Messages and Posts"] = ""; +App::$strings["About"] = "О себе"; +App::$strings["Profile Details"] = "Сведения о профиле"; +App::$strings["Photos"] = "Фотографии"; +App::$strings["Photo Albums"] = "Фотоальбомы"; +App::$strings["Files"] = "Файлы"; +App::$strings["Files and Storage"] = ""; +App::$strings["Chatrooms"] = "Чаты"; +App::$strings["Bookmarks"] = "Закладки"; +App::$strings["Saved Bookmarks"] = "Сохранённые закладки"; +App::$strings["Webpages"] = "Веб-страницы"; +App::$strings["Manage Webpages"] = "Управление веб-страниц"; +App::$strings["New Page"] = "Новая страница"; +App::$strings["Edit"] = "Редактировать"; +App::$strings["View"] = "Просмотр"; +App::$strings["Actions"] = ""; +App::$strings["Page Link"] = "Ссылка страницы"; +App::$strings["Title"] = "Заголовок"; +App::$strings["Created"] = "Создано"; +App::$strings["Edited"] = "Отредактирован"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; +App::$strings["Not a valid email address"] = "Не действительный адрес электронной почты"; +App::$strings["Your email domain is not among those allowed on this site"] = "Домен электронной почты не входит в число тех, которые разрешены на этом сайте"; +App::$strings["Your email address is already registered at this site."] = "Ваш адрес электронной почты уже зарегистрирован на этом сайте."; +App::$strings["An invitation is required."] = "Требуется приглашение."; +App::$strings["Invitation could not be verified."] = "Не удалось проверить приглашение."; +App::$strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию."; +App::$strings["Failed to store account information."] = "Не удалось сохранить информацию аккаунта."; +App::$strings["Registration request at %s"] = "Требуется регистрация на %s"; +App::$strings["Administrator"] = "Администратор"; +App::$strings["your registration password"] = "Ваш пароль регистрации"; +App::$strings["Registration details for %s"] = "Регистрационные данные для %s"; +App::$strings["Account approved."] = "Аккаунт утвержден."; +App::$strings["Registration revoked for %s"] = "Регистрация отозвана для %s"; +App::$strings["Permission denied."] = "Доступ запрещен."; +App::$strings["Image exceeds website size limit of %lu bytes"] = ""; +App::$strings["Image file is empty."] = "файл пуст."; +App::$strings["Unable to process image"] = "Не удается обработать изображение"; +App::$strings["Photo storage failed."] = "Ошибка в банке фотографий"; +App::$strings["Upload New Photos"] = "Загрузить новые фотографии"; +App::$strings["Visible to everybody"] = "Видно всем"; +App::$strings["Show"] = "Показывать"; +App::$strings["Don't show"] = "Не показывать"; +App::$strings["Permissions"] = "Разрешения"; +App::$strings["Close"] = "Закрыть"; +App::$strings[" and "] = "и"; +App::$strings["public profile"] = "Публичный профиль"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s изменил %2\$s на “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Посетить %1\$s's %2\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; +App::$strings["Public Timeline"] = "Публичная шкала времени"; +App::$strings["Item was not found."] = "Элемент не найден."; +App::$strings["No source file."] = "Нет исходного файла."; +App::$strings["Cannot locate file to replace"] = "Не удается найти файл, чтобы заменить"; +App::$strings["Cannot locate file to revise/update"] = "Не удается найти файл для пересмотра / обновления"; +App::$strings["File exceeds size limit of %d"] = "Файл превышает предельный размер %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = ""; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Загрузка файла не удалась. Возможно система перегружена или попытка прекращена."; +App::$strings["Stored file could not be verified. Upload failed."] = "Файл для сохранения не проверен. Загрузка не удалась."; +App::$strings["Path not available."] = "Путь недоступен."; +App::$strings["Empty pathname"] = ""; +App::$strings["duplicate filename or path"] = ""; +App::$strings["Path not found."] = "Путь не найден."; +App::$strings["mkdir failed."] = "mkdir безуспешно."; +App::$strings["database storage failed."] = ""; +App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +App::$strings["Starts:"] = "Начало:"; +App::$strings["Finishes:"] = "\t\nКонец:"; +App::$strings["Location:"] = "Откуда:"; +App::$strings["Logout"] = "Выход"; +App::$strings["End this session"] = "Закончить эту сессию"; +App::$strings["Home"] = "Мой канал"; +App::$strings["Your posts and conversations"] = "Ваши сообщения и разговоры"; +App::$strings["Your profile page"] = "Страницa вашего профиля"; +App::$strings["Edit Profiles"] = "Редактирование профилей"; +App::$strings["Manage/Edit profiles"] = "Управление / Редактирование профилей"; +App::$strings["Your photos"] = "Ваши фотографии"; +App::$strings["Your files"] = "Ваши файлы"; +App::$strings["Chat"] = "Чат"; +App::$strings["Your chatrooms"] = "Ваши чаты"; +App::$strings["Your bookmarks"] = "Ваши закладки"; +App::$strings["Your webpages"] = "Ваши веб-страницы"; +App::$strings["Login"] = "Войти"; +App::$strings["Sign in"] = "Войти"; +App::$strings["%s - click to logout"] = "%s - нажмите чтобы выйти"; +App::$strings["Click to authenticate to your home hub"] = ""; +App::$strings["Home Page"] = "Моя страница"; +App::$strings["Register"] = "Регистрация"; +App::$strings["Create an account"] = "Создать аккаунт"; +App::$strings["Help"] = "ヘルプ"; +App::$strings["Help and documentation"] = "Справочная информация и документация"; +App::$strings["Apps"] = "Приложения"; +App::$strings["Applications, utilities, links, games"] = ""; +App::$strings["Search"] = "Поиск"; +App::$strings["Search site content"] = "Поиск по содержанию сайту"; +App::$strings["Directory"] = "Каталог"; +App::$strings["Channel Locator"] = "Локатор каналов"; +App::$strings["Matrix"] = "Матрица"; +App::$strings["Your matrix"] = "Собственная матрица"; +App::$strings["Mark all matrix notifications seen"] = "Пометить все оповещения матрицы как прочитанное"; +App::$strings["Channel Home"] = "Главная канала"; +App::$strings["Channel home"] = "Главная канала"; +App::$strings["Mark all channel notifications seen"] = "Пометить все оповещения канала как прочитанное"; +App::$strings["Connections"] = "Контакты"; +App::$strings["Notices"] = "Оповещения"; +App::$strings["Notifications"] = "Оповещения"; +App::$strings["See all notifications"] = "Просмотреть все оповещения"; +App::$strings["Mark all system notifications seen"] = "Пометить все оповещения как прочитанное"; +App::$strings["Mail"] = "Переписка"; +App::$strings["Private mail"] = "Ваша личная переписка"; +App::$strings["See all private messages"] = "Просмотреть все личные сообщения"; +App::$strings["Mark all private messages seen"] = "Пометить все личные сообщения как прочитанное"; +App::$strings["Inbox"] = "Входящие"; +App::$strings["Outbox"] = "Исходящие"; +App::$strings["New Message"] = "Новое личное сообщение"; +App::$strings["Events"] = "Мероприятия"; +App::$strings["Event Calendar"] = "Календарь мероприятий"; +App::$strings["See all events"] = "Показать все мероприятия"; +App::$strings["Mark all events seen"] = "Пометить все мероприятия как прочитанное"; +App::$strings["Channel Select"] = "Выбор каналов"; +App::$strings["Manage Your Channels"] = "Управление каналов"; +App::$strings["Settings"] = "Настройки"; +App::$strings["Account/Channel Settings"] = "Настройки аккаунта/канала"; +App::$strings["Admin"] = "Администрация"; +App::$strings["Site Setup and Configuration"] = "Установка и конфигурация сайта"; +App::$strings["Nothing new here"] = "Ничего нового здесь"; +App::$strings["Please wait..."] = "Подождите пожалуйста ..."; +App::$strings["%1\$s's bookmarks"] = "Закладки пользователя %1\$s"; +App::$strings["Missing room name"] = ""; +App::$strings["Duplicate room name"] = ""; +App::$strings["Invalid room specifier."] = ""; +App::$strings["Room not found."] = ""; +App::$strings["Room is full"] = ""; +App::$strings["Tags"] = "Тэги"; +App::$strings["Keywords"] = "Ключевые слова"; +App::$strings["have"] = "иметь"; +App::$strings["has"] = "есть"; +App::$strings["want"] = "хотеть"; +App::$strings["wants"] = "хочет"; +App::$strings["like"] = "нравится"; +App::$strings["likes"] = "нравится"; +App::$strings["dislike"] = "не-нравится"; +App::$strings["dislikes"] = "не-нравится"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "нравится", + 1 => "нравится", + 2 => "нравится", +); +App::$strings["Default"] = "По умолчанию"; +App::$strings["Unknown | Not categorised"] = "Неизвестные | Без категории"; +App::$strings["Block immediately"] = "Немедленно заблокировать"; +App::$strings["Shady, spammer, self-marketer"] = ""; +App::$strings["Known to me, but no opinion"] = "Известныo мне, но нет своего мнения"; +App::$strings["OK, probably harmless"] = "OK, наверное безвредно"; +App::$strings["Reputable, has my trust"] = "Авторитетно, имеет мое доверие"; +App::$strings["Frequently"] = "Часто"; +App::$strings["Hourly"] = "Ежечасно"; +App::$strings["Twice daily"] = "Два раза в день"; +App::$strings["Daily"] = "Ежедневно"; +App::$strings["Weekly"] = "Еженедельно"; +App::$strings["Monthly"] = "Ежемесячно"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Email"] = "E-mail"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot!"] = "Zot!"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["%d invitation available"] = array( + 0 => "имеется %d приглашение", + 1 => "имеются %d приглашения", + 2 => "имеется %d приглашений", +); +App::$strings["Advanced"] = "Дополнительно"; +App::$strings["Find Channels"] = "Поиск контактов"; +App::$strings["Enter name or interest"] = "Впишите имя или интерес"; +App::$strings["Connect/Follow"] = "Подключить/следовать"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Владимир Ильич, Революционер"; +App::$strings["Find"] = "Поиск"; +App::$strings["Channel Suggestions"] = "Рекомендации каналов"; +App::$strings["Random Profile"] = "Случайные"; +App::$strings["Invite Friends"] = "Пригласить друзей"; +App::$strings["Exammple: name=fred and country=iceland"] = ""; +App::$strings["Advanced Find"] = "Расширенный поиск"; +App::$strings["Saved Folders"] = "Запомненные папки"; +App::$strings["Everything"] = "Все"; +App::$strings["Categories"] = "Категории"; +App::$strings["%d connection in common"] = array( + 0 => "%d совместный контакт", + 1 => "%d совместных контакта", + 2 => "%d совместных контактов", +); +App::$strings["show more"] = "показать все"; +App::$strings["This event has been added to your calendar."] = "Это событие было добавлено в календарь."; +App::$strings["Miscellaneous"] = "Прочее"; +App::$strings["year"] = "год"; +App::$strings["month"] = "месяц"; +App::$strings["day"] = "день"; +App::$strings["never"] = "никогда"; +App::$strings["less than a second ago"] = "менее чем одну секунду назад"; +App::$strings["years"] = "лет"; +App::$strings["months"] = "мес."; +App::$strings["week"] = "неделя"; +App::$strings["weeks"] = "недель"; +App::$strings["days"] = "дней"; +App::$strings["hour"] = "час"; +App::$strings["hours"] = "часов"; +App::$strings["minute"] = "минута"; +App::$strings["minutes"] = "мин."; +App::$strings["second"] = "секунда"; +App::$strings["seconds"] = "секунд"; +App::$strings["%1\$d %2\$s ago"] = "%1\$d %2\$s назад"; +App::$strings["%1\$s's birthday"] = "%1\$s's День Рождения"; +App::$strings["Happy Birthday %1\$s"] = "С Днем Рождения %1\$s"; +App::$strings["Sort Options"] = "Параметры сортировки"; +App::$strings["Alphabetic"] = "По алфавиту"; +App::$strings["Reverse Alphabetic"] = "По обратному алфавиту"; +App::$strings["Newest to Oldest"] = "От новых к старым"; +App::$strings["Enable Safe Search"] = ""; +App::$strings["Disable Safe Search"] = ""; +App::$strings["Safe Mode"] = "Безопасный режим"; +App::$strings["Hubzilla Notification"] = "Оповещения Red матрицы"; +App::$strings["hubzilla"] = "hubzilla"; +App::$strings["Thank You,"] = "Спасибо,"; +App::$strings["%s Administrator"] = "%s администратор"; +App::$strings["%s "] = "%s "; +App::$strings["[Red:Notify] New mail received at %s"] = "[Red:Уведомление] Получено новое сообщение в %s"; +App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = ""; +App::$strings["%1\$s sent you %2\$s."] = "%1\$s послал вам %2\$s."; +App::$strings["a private message"] = "личное сообщение"; +App::$strings["Please visit %s to view and/or reply to your private messages."] = "Пожалуйста, посетите %s для просмотра и/или ответа на ваши личные сообщения."; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = ""; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = ""; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = ""; +App::$strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Уведомление] Комментарий к разговору #%1\$d по %2\$s"; +App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = ""; +App::$strings["Please visit %s to view and/or reply to the conversation."] = "Пожалуйста, посетите %s для просмотра и/или ответа разговора."; +App::$strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Уведомление] %s добавил сообщениe на стену вашего профиля"; +App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = ""; +App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = ""; +App::$strings["[Red:Notify] %s tagged you"] = "[Red:Уведомление] %s добавил у вас тег"; +App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = ""; +App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = ""; +App::$strings["[Red:Notify] %1\$s poked you"] = "[Red:Уведомление] %1\$s подпихнул вас"; +App::$strings["%1\$s, %2\$s poked you at %3\$s"] = ""; +App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = ""; +App::$strings["[Red:Notify] %s tagged your post"] = "[Red:Уведомление] %s добавил у вас в сообщении тег"; +App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = ""; +App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = ""; +App::$strings["[Red:Notify] Introduction received"] = "[Red:Уведомление] введение получено"; +App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = ""; +App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = ""; +App::$strings["You may visit their profile at %s"] = "Вы можете посетить ​​профиль в %s"; +App::$strings["Please visit %s to approve or reject the connection request."] = ""; +App::$strings["[Red:Notify] Friend suggestion received"] = "[Red:Уведомление] Получено предложение дружить"; +App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = ""; +App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = ""; +App::$strings["Name:"] = "Имя:"; +App::$strings["Photo:"] = "Фото:"; +App::$strings["Please visit %s to approve or reject the suggestion."] = ""; +App::$strings["parent"] = ""; +App::$strings["Collection"] = "Коллекция"; +App::$strings["Principal"] = ""; +App::$strings["Addressbook"] = "Адресная книга"; +App::$strings["Calendar"] = "Календарь"; +App::$strings["Schedule Inbox"] = ""; +App::$strings["Schedule Outbox"] = ""; +App::$strings["%1\$s used"] = ""; +App::$strings["%1\$s used of %2\$s (%3\$s%)"] = ""; +App::$strings["Create new folder"] = "Создать новую папку"; +App::$strings["Create"] = "Создать"; +App::$strings["Upload file"] = "Загрузить файл"; +App::$strings["Upload"] = "Загрузка"; +App::$strings["General Features"] = "Главные функции"; +App::$strings["Content Expiration"] = ""; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "Удалять посты/комментарии и/или личные сообщения"; +App::$strings["Multiple Profiles"] = "Несколько профилей"; +App::$strings["Ability to create multiple profiles"] = "Возможность создания нескольких профилей"; +App::$strings["Web Pages"] = "Веб-страницы"; +App::$strings["Provide managed web pages on your channel"] = ""; +App::$strings["Private Notes"] = "Личные заметки"; +App::$strings["Enables a tool to store notes and reminders"] = ""; +App::$strings["Extended Identity Sharing"] = "Расширенный обмен идентичности"; +App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = ""; +App::$strings["Expert Mode"] = "Экспертный режим"; +App::$strings["Enable Expert Mode to provide advanced configuration options"] = ""; +App::$strings["Premium Channel"] = "Премиум канал"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = ""; +App::$strings["Post Composition Features"] = ""; +App::$strings["Richtext Editor"] = "Редактор RichText"; +App::$strings["Enable richtext editor"] = "Включить редактор RichText"; +App::$strings["Post Preview"] = "Предварительный просмотр сообщения"; +App::$strings["Allow previewing posts and comments before publishing them"] = "Разрешить предварительный просмотр сообщений и комментариев перед их публикацией"; +App::$strings["Channel Sources"] = "Источники канала"; +App::$strings["Automatically import channel content from other channels or feeds"] = ""; +App::$strings["Even More Encryption"] = "Еще больше шифрования"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = ""; +App::$strings["Network and Stream Filtering"] = "Фильтрация сети и потока"; +App::$strings["Search by Date"] = "Поиск по дате"; +App::$strings["Ability to select posts by date ranges"] = "Возможность выбора сообщений по датам"; +App::$strings["Collections Filter"] = "Фильтр коллекций"; +App::$strings["Enable widget to display Network posts only from selected collections"] = ""; +App::$strings["Saved Searches"] = "Запомненные поиски"; +App::$strings["Save search terms for re-use"] = "Сохранять результаты поиска для повторного использования"; +App::$strings["Network Personal Tab"] = "Сеть - Личная вкладка"; +App::$strings["Enable tab to display only Network posts that you've interacted on"] = ""; +App::$strings["Network New Tab"] = "Сеть - Новая вкладка"; +App::$strings["Enable tab to display all new Network activity"] = ""; +App::$strings["Affinity Tool"] = "Инструмент сходства или соответствия"; +App::$strings["Filter stream activity by depth of relationships"] = ""; +App::$strings["Suggest Channels"] = ""; +App::$strings["Show channel suggestions"] = ""; +App::$strings["Post/Comment Tools"] = "Инструменты сообщений/комментарий "; +App::$strings["Edit Sent Posts"] = "Редактировать отправленные сообщения"; +App::$strings["Edit and correct posts and comments after sending"] = "Редактировать и исправлять сообщения и комментарии после отправки"; +App::$strings["Tagging"] = "Пометка"; +App::$strings["Ability to tag existing posts"] = "Возможность использовать теги"; +App::$strings["Post Categories"] = "Категории сообщения"; +App::$strings["Add categories to your posts"] = "Добавить категории для ваших сообщений"; +App::$strings["Ability to file posts under folders"] = ""; +App::$strings["Dislike Posts"] = "Сообщение не нравится"; +App::$strings["Ability to dislike posts/comments"] = "Возможность выбора нравится/не-нравится"; +App::$strings["Star Posts"] = "Помечать сообщения"; +App::$strings["Ability to mark special posts with a star indicator"] = ""; +App::$strings["Tag Cloud"] = "Облако тегов"; +App::$strings["Provide a personal tag cloud on your channel page"] = ""; +App::$strings["Channel is blocked on this site."] = "Канал блокируется на этом сайте."; +App::$strings["Channel location missing."] = "Местоположение канала отсутствует."; +App::$strings["Response from remote channel was incomplete."] = ""; +App::$strings["Channel was deleted and no longer exists."] = ""; +App::$strings["Channel discovery failed."] = "Не удалось обнаружить канал."; +App::$strings["local account not found."] = "локальный аккаунт не найден."; +App::$strings["Cannot connect to yourself."] = "Нельзя подключиться к самому себе."; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = ""; +App::$strings["Default privacy group for new contacts"] = "Группа конфиденциальности по умолчанию для новых контактов"; +App::$strings["All Channels"] = "Все каналы"; +App::$strings["edit"] = "редактировать"; +App::$strings["Collections"] = "Коллекции"; +App::$strings["Edit collection"] = "Редактировать коллекцию"; +App::$strings["Create a new collection"] = "Создать новую коллекцию"; +App::$strings["Channels not in any collection"] = "Контакты не в какой коллекции"; +App::$strings["add"] = "добавить"; +App::$strings["Unable to obtain identity information from database"] = "Невозможно получить идентификационную информацию из базы данных"; +App::$strings["Empty name"] = "Пустое имя"; +App::$strings["Name too long"] = "Слишком длинное имя"; +App::$strings["No account identifier"] = "идентификатор аккаунта отсутствует"; +App::$strings["Nickname is required."] = "Требуется псевдоним."; +App::$strings["Reserved nickname. Please choose another."] = ""; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Псевдоним имеет недопустимые символы или уже используется на этом сайте."; +App::$strings["Unable to retrieve created identity"] = ""; +App::$strings["Default Profile"] = "Профиль по умолчанию"; +App::$strings["Friends"] = "Друзья"; +App::$strings["Requested channel is not available."] = "Запрашиваемый канал не доступен."; +App::$strings["Requested profile is not available."] = "Запрашиваемый профиль не доступен."; +App::$strings["Connect"] = "Подключить"; +App::$strings["Change profile photo"] = "Изменить фотографию профиля"; +App::$strings["Profiles"] = "Профили"; +App::$strings["Manage/edit profiles"] = "Управление / Редактирование профилей"; +App::$strings["Create New Profile"] = "Создать новый профиль"; +App::$strings["Edit Profile"] = "Редактировать профиль"; +App::$strings["Profile Image"] = "Изображение профиля"; +App::$strings["visible to everybody"] = "видно всем"; +App::$strings["Edit visibility"] = "Редактировать видимость"; +App::$strings["Gender:"] = "Пол:"; +App::$strings["Status:"] = "Статус:"; +App::$strings["Homepage:"] = "Домашняя страница:"; +App::$strings["Online Now"] = "Сейчас в сети"; +App::$strings["g A l F d"] = "g A l F d"; +App::$strings["F d"] = "F d"; +App::$strings["[today]"] = "[сегодня]"; +App::$strings["Birthday Reminders"] = "Напоминания о Днях Рождения"; +App::$strings["Birthdays this week:"] = "Дни Рождения на этой неделе:"; +App::$strings["[No description]"] = "[без описания]"; +App::$strings["Event Reminders"] = "Напоминания мероприятий"; +App::$strings["Events this week:"] = "Мероприятия на этой неделе:"; +App::$strings["Profile"] = "Профиль"; +App::$strings["Full Name:"] = "Полное имя:"; +App::$strings["Like this channel"] = "нравиться этот канал"; +App::$strings["j F, Y"] = "j F, Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "День Рождения:"; +App::$strings["Age:"] = "Возраст:"; +App::$strings["for %1\$d %2\$s"] = "для %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Сексуальная ориентация:"; +App::$strings["Hometown:"] = "Родной город:"; +App::$strings["Tags:"] = "Тэги:"; +App::$strings["Political Views:"] = "Политические взгляды:"; +App::$strings["Religion:"] = "Религия:"; +App::$strings["About:"] = "О себе:"; +App::$strings["Hobbies/Interests:"] = "Хобби / интересы:"; +App::$strings["Likes:"] = "Что вам нравится:"; +App::$strings["Dislikes:"] = "Что вам не нравится:"; +App::$strings["Contact information and Social Networks:"] = "Информация и социальные сети контакта:"; +App::$strings["My other channels:"] = "Мои другие каналы:"; +App::$strings["Musical interests:"] = "Музыкальные интересы:"; +App::$strings["Books, literature:"] = "Книги, литература:"; +App::$strings["Television:"] = "Телевидение:"; +App::$strings["Film/dance/culture/entertainment:"] = "Кино / танцы / культура / развлечения:"; +App::$strings["Love/Romance:"] = "Любовь / Романс:"; +App::$strings["Work/employment:"] = "Работа / Занятость:"; +App::$strings["School/education:"] = "Школа / образование:"; +App::$strings["Like this thing"] = "нравится этo"; +App::$strings["view full size"] = "посмотреть в полный размер"; +App::$strings["prev"] = "предыдущий"; +App::$strings["first"] = "первый"; +App::$strings["last"] = "последний"; +App::$strings["next"] = "следующий"; +App::$strings["older"] = "старший"; +App::$strings["newer"] = "новее"; +App::$strings["No connections"] = "Нет контактов"; +App::$strings["%d Connection"] = array( + 0 => "%d контакт", + 1 => "%d контакта", + 2 => "%d контактов", +); +App::$strings["View Connections"] = "Просмотр контактов"; +App::$strings["Save"] = "Запомнить"; +App::$strings["poke"] = "подпихнуть"; +App::$strings["ping"] = "пинг - проверка связи"; +App::$strings["pinged"] = ""; +App::$strings["prod"] = ""; +App::$strings["prodded"] = ""; +App::$strings["slap"] = ""; +App::$strings["slapped"] = ""; +App::$strings["finger"] = ""; +App::$strings["fingered"] = ""; +App::$strings["rebuff"] = ""; +App::$strings["rebuffed"] = ""; +App::$strings["happy"] = "счастливый"; +App::$strings["sad"] = "грустный"; +App::$strings["mellow"] = "спокойный"; +App::$strings["tired"] = "усталый"; +App::$strings["perky"] = "весёлый"; +App::$strings["angry"] = "сердитый"; +App::$strings["stupified"] = "отупевший"; +App::$strings["puzzled"] = "недоумённый"; +App::$strings["interested"] = "заинтересованный"; +App::$strings["bitter"] = "озлобленный"; +App::$strings["cheerful"] = "бодрый"; +App::$strings["alive"] = "энергичный"; +App::$strings["annoyed"] = "раздражённый"; +App::$strings["anxious"] = "обеспокоенный"; +App::$strings["cranky"] = "капризный"; +App::$strings["disturbed"] = "встревоженный"; +App::$strings["frustrated"] = "разочарованный"; +App::$strings["depressed"] = ""; +App::$strings["motivated"] = "мотивированный"; +App::$strings["relaxed"] = "расслабленный"; +App::$strings["surprised"] = "удивленный"; +App::$strings["Monday"] = "Понедельник"; +App::$strings["Tuesday"] = "Вторник"; +App::$strings["Wednesday"] = "Среда"; +App::$strings["Thursday"] = "Четверг"; +App::$strings["Friday"] = "Пятница"; +App::$strings["Saturday"] = "Суббота"; +App::$strings["Sunday"] = "Воскресенье"; +App::$strings["January"] = "Январь"; +App::$strings["February"] = "Февраль"; +App::$strings["March"] = "Март"; +App::$strings["April"] = "Апрель"; +App::$strings["May"] = "Май"; +App::$strings["June"] = "Июнь"; +App::$strings["July"] = "Июль"; +App::$strings["August"] = "Август"; +App::$strings["September"] = "Сентябрь"; +App::$strings["October"] = "Октябрь"; +App::$strings["November"] = "Ноябрь"; +App::$strings["December"] = "Декабрь"; +App::$strings["unknown.???"] = "неизвестный.???"; +App::$strings["bytes"] = "байт"; +App::$strings["remove category"] = ""; +App::$strings["remove from file"] = ""; +App::$strings["Click to open/close"] = "Нажмите, чтобы открыть/закрыть"; +App::$strings["Link to Source"] = "Ссылка на источник"; +App::$strings["Select a page layout: "] = ""; +App::$strings["default"] = "по умолчанию"; +App::$strings["Page content type: "] = ""; +App::$strings["Select an alternate language"] = "Выбор альтернативного языка"; +App::$strings["activity"] = "активность"; +App::$strings["Design"] = "Дизайн"; +App::$strings["Blocks"] = "Блоки"; +App::$strings["Menus"] = "Меню"; +App::$strings["Layouts"] = "Шаблоны"; +App::$strings["Pages"] = "Страницы"; +App::$strings["Site Admin"] = "Админ сайта"; +App::$strings["Address Book"] = "Адресная книга"; +App::$strings["Mood"] = "Настроение"; +App::$strings["Probe"] = ""; +App::$strings["Suggest"] = ""; +App::$strings["Update"] = "Обновление"; +App::$strings["Install"] = "Установка"; +App::$strings["Purchase"] = ""; +App::$strings["Unknown"] = "Неизвестный"; +App::$strings["Invalid data packet"] = "Неверный пакет данных"; +App::$strings["Unable to verify channel signature"] = "Невозможно проверить сигнатуру канала"; +App::$strings["Unable to verify site signature for %s"] = ""; +App::$strings["No recipient provided."] = ""; +App::$strings["[no subject]"] = "[без темы]"; +App::$strings["Unable to determine sender."] = "Невозможно определить отправителя."; +App::$strings["Stored post could not be verified."] = ""; +App::$strings["Click here to upgrade."] = "Нажмите здесь, чтобы обновить."; +App::$strings["This action exceeds the limits set by your subscription plan."] = ""; +App::$strings["This action is not available under your subscription plan."] = ""; +App::$strings["System"] = "Система"; +App::$strings["Create Personal App"] = "Создать собственное приложение"; +App::$strings["Edit Personal App"] = "Редактировать собственное приложение"; +App::$strings["Ignore/Hide"] = "Игнорировать / Скрыть"; +App::$strings["Suggestions"] = "Рекомендации"; +App::$strings["See more..."] = "Просмотреть больше..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = ""; +App::$strings["Add New Connection"] = "Добавить новый контакт"; +App::$strings["Enter the channel address"] = "Введите адрес канала"; +App::$strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara"; +App::$strings["Notes"] = "Заметки"; +App::$strings["Remove term"] = "Удалить термин"; +App::$strings["Archives"] = "Архивы"; +App::$strings["Refresh"] = "Обновить"; +App::$strings["Me"] = "Я"; +App::$strings["Best Friends"] = "Лучшие друзья"; +App::$strings["Co-workers"] = "Сотрудники"; +App::$strings["Former Friends"] = "Приятели"; +App::$strings["Acquaintances"] = "Знакомые"; +App::$strings["Everybody"] = "Все"; +App::$strings["Account settings"] = "Настройки аккаунта"; +App::$strings["Channel settings"] = "Настройки канала"; +App::$strings["Additional features"] = "Дополнительные функции"; +App::$strings["Feature settings"] = "Настройки компонентов"; +App::$strings["Display settings"] = "Настройки отображения"; +App::$strings["Connected apps"] = "Подключенные приложения"; +App::$strings["Export channel"] = "Экспорт канала"; +App::$strings["Automatic Permissions (Advanced)"] = "Автоматические разрешения (дополнительно)"; +App::$strings["Premium Channel Settings"] = "Настройки премиум канала"; +App::$strings["Check Mail"] = "Проверить снова"; +App::$strings["Chat Rooms"] = "Чаты"; +App::$strings["Bookmarked Chatrooms"] = "Закладки чатов"; +App::$strings["Suggested Chatrooms"] = "Рекомендуемые чаты"; +App::$strings["Save to Folder"] = "Сохранить в папку"; +App::$strings["View all"] = "Просмотреть все"; +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "не-нравится", + 1 => "не-нравится", + 2 => "не-нравится", +); +App::$strings["Add Star"] = "Добавить маркировку"; +App::$strings["Remove Star"] = "Удалить маркировку"; +App::$strings["Toggle Star Status"] = "Переключить статус маркировки"; +App::$strings["starred"] = "помеченные"; +App::$strings["Add Tag"] = "Добавить тег"; +App::$strings["I like this (toggle)"] = "мне это нравится (переключение)"; +App::$strings["I don't like this (toggle)"] = "мне это не нравится (переключение)"; +App::$strings["Share This"] = "Поделиться этим"; +App::$strings["share"] = "поделиться"; +App::$strings["View %s's profile - %s"] = "Просмотр %s's профиля - %s"; +App::$strings["to"] = "к"; +App::$strings["via"] = "через"; +App::$strings["Wall-to-Wall"] = "Стена-к-Стене"; +App::$strings["via Wall-To-Wall:"] = "через Стена-к-Стене:"; +App::$strings["Save Bookmarks"] = "Сохранить закладки"; +App::$strings["Add to Calendar"] = "Добавить в календарь"; +App::$strings["__ctx:noun__ Likes"] = "нравится"; +App::$strings["__ctx:noun__ Dislikes"] = "не-нравится"; +App::$strings["%d comment"] = array( + 0 => "%d комментарий", + 1 => "%d комментария", + 2 => "%d комментариев", +); +App::$strings["[+] show all"] = "[+] показать все"; +App::$strings["This is you"] = "Это вы"; +App::$strings["Comment"] = "Комментарий"; +App::$strings["Submit"] = "Отправить"; +App::$strings["Bold"] = "Жирный"; +App::$strings["Italic"] = "Курсив"; +App::$strings["Underline"] = "Подчеркнутый"; +App::$strings["Quote"] = "Цитата"; +App::$strings["Code"] = "Код"; +App::$strings["Image"] = "Изображение"; +App::$strings["Link"] = "Ссылка"; +App::$strings["Video"] = "Видео"; +App::$strings["Delete this item?"] = "Удалить этот элемент?"; +App::$strings["[-] show less"] = "[-] показать меньше"; +App::$strings["[+] expand"] = "[+] развернуть"; +App::$strings["[-] collapse"] = "[-] свернуть"; +App::$strings["Password too short"] = "Пароль слишком короткий"; +App::$strings["Passwords do not match"] = "Пароли не совпадают"; +App::$strings["everybody"] = "все"; +App::$strings["Secret Passphrase"] = "Тайный пароль"; +App::$strings["Passphrase hint"] = ""; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = ""; +App::$strings["close all"] = "закрыть все"; +App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +App::$strings["ago"] = "тому назад"; +App::$strings["from now"] = "с этого времени"; +App::$strings["less than a minute"] = "менее чем одну минуту назад"; +App::$strings["about a minute"] = "около минуты"; +App::$strings["%d minutes"] = "%d мин."; +App::$strings["about an hour"] = "около часа"; +App::$strings["about %d hours"] = "около %d час."; +App::$strings["a day"] = "день"; +App::$strings["%d days"] = "%d дн."; +App::$strings["about a month"] = "около месяца"; +App::$strings["%d months"] = "%d мес."; +App::$strings["about a year"] = "около года"; +App::$strings["%d years"] = "%d лет"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = "timeago.numbers"; +App::$strings["New window"] = "Новое окно"; +App::$strings["Open the selected location in a different window or browser tab"] = "Откройте выбранное местоположение в другом окне или вкладке браузера"; +App::$strings["Male"] = "Мужской"; +App::$strings["Female"] = "Женский"; +App::$strings["Currently Male"] = "В настоящее время мужской"; +App::$strings["Currently Female"] = "В настоящее время женский"; +App::$strings["Mostly Male"] = "В основном мужской"; +App::$strings["Mostly Female"] = "В основном женский"; +App::$strings["Transgender"] = "Транссексуал"; +App::$strings["Intersex"] = "Intersex"; +App::$strings["Transsexual"] = "Транссексуал"; +App::$strings["Hermaphrodite"] = "Гермафродит"; +App::$strings["Neuter"] = "Среднего рода"; +App::$strings["Non-specific"] = "Неспецифический"; +App::$strings["Other"] = "Другой"; +App::$strings["Undecided"] = "Нерешительный"; +App::$strings["Males"] = "Самец"; +App::$strings["Females"] = "Самка"; +App::$strings["Gay"] = "Гей"; +App::$strings["Lesbian"] = "Лесбиянка"; +App::$strings["No Preference"] = "Без предпочтений"; +App::$strings["Bisexual"] = "Двуполый"; +App::$strings["Autosexual"] = "Autosexual"; +App::$strings["Abstinent"] = "Воздержанный"; +App::$strings["Virgin"] = "Девственница"; +App::$strings["Deviant"] = "Отклоняющийся от нормы"; +App::$strings["Fetish"] = "Фетиш"; +App::$strings["Oodles"] = "Множественный"; +App::$strings["Nonsexual"] = "Несексуальный"; +App::$strings["Single"] = "Одинок"; +App::$strings["Lonely"] = "Уединенный"; +App::$strings["Available"] = "Доступный"; +App::$strings["Unavailable"] = "Недоступный"; +App::$strings["Has crush"] = "Столкновение"; +App::$strings["Infatuated"] = "Влюбленный"; +App::$strings["Dating"] = "Датировка"; +App::$strings["Unfaithful"] = "Неверный"; +App::$strings["Sex Addict"] = "Секс наркоман"; +App::$strings["Friends/Benefits"] = "Друзья / Преимущества"; +App::$strings["Casual"] = "Случайный"; +App::$strings["Engaged"] = "Помолвленный"; +App::$strings["Married"] = "Женат"; +App::$strings["Imaginarily married"] = "Мысленно женат"; +App::$strings["Partners"] = "Партнеры"; +App::$strings["Cohabiting"] = "Сожительствующие"; +App::$strings["Common law"] = ""; +App::$strings["Happy"] = "Счастливый"; +App::$strings["Not looking"] = "Не нуждаюсь"; +App::$strings["Swinger"] = ""; +App::$strings["Betrayed"] = ""; +App::$strings["Separated"] = ""; +App::$strings["Unstable"] = "Колеблющийся"; +App::$strings["Divorced"] = "Разведенный"; +App::$strings["Imaginarily divorced"] = "Мысленно разведенный"; +App::$strings["Widowed"] = "Овдовевший"; +App::$strings["Uncertain"] = "Неопределенный"; +App::$strings["It's complicated"] = "Это сложно"; +App::$strings["Don't care"] = "Не заботьтесь"; +App::$strings["Ask me"] = "Спроси меня"; +App::$strings["Logged out."] = "Вышел из системы."; +App::$strings["Failed authentication"] = "Ошибка аутентификации"; +App::$strings["Login failed."] = "Не удалось войти."; +App::$strings["Permission denied"] = "Доступ запрещен"; +App::$strings["(Unknown)"] = "(Неизвестный)"; +App::$strings["Item not found."] = "Элемент не найден."; +App::$strings["Collection not found."] = "Коллекция не найдена."; +App::$strings["Collection is empty."] = "Коллекция пуста."; +App::$strings["Collection: %s"] = "Коллекции: %s"; +App::$strings["Connection: %s"] = "Контакты: %s"; +App::$strings["Connection not found."] = "Контакт не найден."; +App::$strings["Can view my \"public\" stream and posts"] = "Может просматривать мои \"публичные\" поток и сообщения"; +App::$strings["Can view my \"public\" channel profile"] = "Может просматривать мой \"публичный\" профиль канала"; +App::$strings["Can view my \"public\" photo albums"] = "Может просматривать мои \"публичные\" фотоальбомы"; +App::$strings["Can view my \"public\" address book"] = "Может просматривать мою \"публичную\" адресную книгу"; +App::$strings["Can view my \"public\" file storage"] = "Может просматривать мои \"публичные\" файлы"; +App::$strings["Can view my \"public\" pages"] = "Может просматривать мои \"публичные\" страницы"; +App::$strings["Can send me their channel stream and posts"] = "Может прислать мне свои потоки и сообщения"; +App::$strings["Can post on my channel page (\"wall\")"] = "Может публиковать на моей странице канала (\"стена\")"; +App::$strings["Can comment on my posts"] = "Может комментировать мои сообщения"; +App::$strings["Can send me private mail messages"] = "Может отправлять мне личные сообщения по эл. почте"; +App::$strings["Can post photos to my photo albums"] = "Может публиковать фотографии в мои фотоальбомы"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = ""; +App::$strings["Advanced - useful for creating group forum channels"] = ""; +App::$strings["Can chat with me (when available)"] = "Можете общаться со мной в чате (при наличии)"; +App::$strings["Can write to my \"public\" file storage"] = "Может писать в моё \"публичное\" хранилище файлов"; +App::$strings["Can edit my \"public\" pages"] = "Может редактировать мои \"публичные\" страницы"; +App::$strings["Can source my \"public\" posts in derived channels"] = ""; +App::$strings["Somewhat advanced - very useful in open communities"] = ""; +App::$strings["Can administer my channel resources"] = "Может администрировать мои ресурсы канала"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = ""; +App::$strings["Set your current mood and tell your friends"] = ""; +App::$strings["Menu not found."] = "Меню не найдено."; +App::$strings["Menu element updated."] = "Меню обновлено."; +App::$strings["Unable to update menu element."] = ""; +App::$strings["Menu element added."] = "Элемент меню добавлен."; +App::$strings["Unable to add menu element."] = "Невозможно добавить элемент меню."; +App::$strings["Not found."] = "Не найдено."; +App::$strings["Manage Menu Elements"] = "Управление элементов меню"; +App::$strings["Edit menu"] = "Редактировать меню"; +App::$strings["Edit element"] = "Редактировать элемент"; +App::$strings["Drop element"] = "Удалить элемент"; +App::$strings["New element"] = "Новый элемент"; +App::$strings["Edit this menu container"] = ""; +App::$strings["Add menu element"] = "Добавить элемент меню"; +App::$strings["Delete this menu item"] = "Удалить элемент меню"; +App::$strings["Edit this menu item"] = "Редактировать элемент меню"; +App::$strings["New Menu Element"] = "Новый элемент меню"; +App::$strings["Menu Item Permissions"] = ""; +App::$strings["(click to open/close)"] = "(нажмите, чтобы открыть / закрыть)"; +App::$strings["Link text"] = "Текст ссылки"; +App::$strings["URL of link"] = "URL ссылки"; +App::$strings["Use Red magic-auth if available"] = ""; +App::$strings["Open link in new window"] = "Открыть ссылку в новом окне"; +App::$strings["Order in list"] = ""; +App::$strings["Higher numbers will sink to bottom of listing"] = ""; +App::$strings["Menu item not found."] = "Элемент меню не найден."; +App::$strings["Menu item deleted."] = "Элемент меню удален."; +App::$strings["Menu item could not be deleted."] = ""; +App::$strings["Edit Menu Element"] = "Редактировать элемент меню"; +App::$strings["Modify"] = "Изменить"; +App::$strings["sent you a private message"] = "отправил вам личное сообщение"; +App::$strings["added your channel"] = "добавил ваш канал"; +App::$strings["posted an event"] = ""; +App::$strings["network"] = "сеть"; +App::$strings["Name is required"] = "Необходимо имя"; +App::$strings["Key and Secret are required"] = ""; +App::$strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменён."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменён."; +App::$strings["Password changed."] = "Пароль изменен."; +App::$strings["Password update failed. Please try again."] = "Изменение пароля закончилось неуспешно. Пожалуйста, попробуйте еще раз."; +App::$strings["Not valid email."] = "Не действительный адрес электронной почты."; +App::$strings["Protected email address. Cannot change to that email."] = "Защищенный адрес электронной почты. Нельзя изменить."; +App::$strings["System failure storing new email. Please try again."] = ""; +App::$strings["Settings updated."] = "Настройки обновленны."; +App::$strings["Add application"] = "Добавить приложения"; +App::$strings["Name"] = "Имя"; +App::$strings["Name of application"] = "Название приложения"; +App::$strings["Consumer Key"] = "Ключ клиента"; +App::$strings["Automatically generated - change if desired. Max length 20"] = ""; +App::$strings["Consumer Secret"] = "Секрет клиента"; +App::$strings["Redirect"] = "Перенаправление"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = ""; +App::$strings["Icon url"] = "URL-адрес значка"; +App::$strings["Optional"] = "Необязательно"; +App::$strings["You can't edit this application."] = "Вы не можете редактировать это приложение."; +App::$strings["Connected Apps"] = "Подключенные приложения"; +App::$strings["Client key starts with"] = ""; +App::$strings["No name"] = "Без названия"; +App::$strings["Remove authorization"] = "Удалить разрешение"; +App::$strings["No feature settings configured"] = "Параметры функций не настроены"; +App::$strings["Feature Settings"] = "Настройки функции"; +App::$strings["Account Settings"] = "Настройки аккаунта"; +App::$strings["Password Settings"] = "Настройки пароля"; +App::$strings["New Password:"] = "Новый пароль:"; +App::$strings["Confirm:"] = "Подтверждение:"; +App::$strings["Leave password fields blank unless changing"] = "Оставьте поля пустыми, если не меняется"; +App::$strings["Email Address:"] = "Адрес электронной почты:"; +App::$strings["Remove Account"] = "Удалить аккаунт"; +App::$strings["Warning: This action is permanent and cannot be reversed."] = ""; +App::$strings["Off"] = "Выкл."; +App::$strings["On"] = "Вкл."; +App::$strings["Additional Features"] = "Дополнительные функции"; +App::$strings["Connector Settings"] = "Настройки соединителя"; +App::$strings["No special theme for mobile devices"] = "Нет специальной темы для мобильных устройств"; +App::$strings["%s - (Experimental)"] = "%s - (экспериментальный)"; +App::$strings["Display Settings"] = "Настройки отображения"; +App::$strings["Display Theme:"] = "Тема отображения:"; +App::$strings["Mobile Theme:"] = "Мобильная тема отображения:"; +App::$strings["Update browser every xx seconds"] = "Обновление браузера каждые ХХ секунд"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Минимум 10 секунд, без максимума"; +App::$strings["Maximum number of conversations to load at any time:"] = ""; +App::$strings["Maximum of 100 items"] = "Максимум 100 элементов"; +App::$strings["Don't show emoticons"] = "Не показывать emoticons"; +App::$strings["System Page Layout Editor - (advanced)"] = ""; +App::$strings["Nobody except yourself"] = "Никто, кроме вас"; +App::$strings["Only those you specifically allow"] = "Только комы вы разрешили"; +App::$strings["Approved connections"] = "Утвержденные контакты"; +App::$strings["Any connections"] = "Все контакты"; +App::$strings["Anybody on this website"] = "Любой на этом веб-сайте"; +App::$strings["Anybody in this network"] = "Любой в этой сети"; +App::$strings["Anybody authenticated"] = ""; +App::$strings["Anybody on the internet"] = "Любой в интернете"; +App::$strings["Publish your default profile in the network directory"] = "Публикация вашего профиля по умолчанию в каталоге сети"; +App::$strings["No"] = "Нет"; +App::$strings["Yes"] = "Да"; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = ""; +App::$strings["or"] = "или"; +App::$strings["Your channel address is"] = "Адрес канала:"; +App::$strings["Channel Settings"] = "Настройки канала"; +App::$strings["Basic Settings"] = "Основные настройки"; +App::$strings["Your Timezone:"] = "Часовой пояс:"; +App::$strings["Default Post Location:"] = "Откуда по умолчанию:"; +App::$strings["Geographical location to display on your posts"] = ""; +App::$strings["Use Browser Location:"] = "Использовать указание браузерa:"; +App::$strings["Adult Content"] = "Содержимое для взрослых"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = ""; +App::$strings["Security and Privacy Settings"] = "Параметры безопасности и конфиденциальности"; +App::$strings["Hide my online presence"] = "Скрыть мое присутствие"; +App::$strings["Prevents displaying in your profile that you are online"] = "Предотвращает показ в вашем профиле, что вы онлайн"; +App::$strings["Simple Privacy Settings:"] = "Быстрые настройки:"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = ""; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = ""; +App::$strings["Private - default private, never open or public"] = ""; +App::$strings["Blocked - default blocked to/from everybody"] = ""; +App::$strings["Allow others to tag your posts"] = "Разрешить другим помечать сообщения"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = ""; +App::$strings["Advanced Privacy Settings"] = "Дополнительные настройки"; +App::$strings["Expire other channel content after this many days"] = ""; +App::$strings["0 or blank prevents expiration"] = ""; +App::$strings["Maximum Friend Requests/Day:"] = ""; +App::$strings["May reduce spam activity"] = "Может уменьшить активность спам"; +App::$strings["Default Post Permissions"] = "Настройки по умолчанию"; +App::$strings["Maximum private messages per day from unknown people:"] = "Максимальное количество личных сообщений от незнакомых людей:"; +App::$strings["Useful to reduce spamming"] = "Полезно для уменьшения активности спам"; +App::$strings["Notification Settings"] = "Настройки уведомлений"; +App::$strings["By default post a status message when:"] = ""; +App::$strings["accepting a friend request"] = ""; +App::$strings["joining a forum/community"] = ""; +App::$strings["making an interesting profile change"] = ""; +App::$strings["Send a notification email when:"] = "Отправить уведомление по электронной почте, если:"; +App::$strings["You receive a connection request"] = ""; +App::$strings["Your connections are confirmed"] = ""; +App::$strings["Someone writes on your profile wall"] = ""; +App::$strings["Someone writes a followup comment"] = ""; +App::$strings["You receive a private message"] = "Вы получили личное сообщение"; +App::$strings["You receive a friend suggestion"] = "Вы получили предложение дружить"; +App::$strings["You are tagged in a post"] = ""; +App::$strings["You are poked/prodded/etc. in a post"] = ""; +App::$strings["Advanced Account/Page Type Settings"] = ""; +App::$strings["Change the behaviour of this account for special situations"] = ""; +App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = ""; +App::$strings["Miscellaneous Settings"] = "Дополнительные настройки"; +App::$strings["Personal menu to display in your channel pages"] = ""; +App::$strings["Poke/Prod"] = ""; +App::$strings["poke, prod or do other things to somebody"] = ""; +App::$strings["Recipient"] = "Получатель"; +App::$strings["Choose what you wish to do to recipient"] = ""; +App::$strings["Make this post private"] = "Сделать это сообщение личным"; +App::$strings["Authorize application connection"] = ""; +App::$strings["Return to your app and insert this Securty Code:"] = ""; +App::$strings["Please login to continue."] = "Пожалуйста, войдите, чтобы продолжить."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = ""; +App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = ""; +App::$strings["Welcome %s. Remote authentication successful."] = "Добро пожаловать %s. Удаленная аутентификация успешно завершена."; +App::$strings["Item not available."] = "Элемент недоступен."; +App::$strings["Fetching URL returns error: %1\$s"] = ""; +App::$strings["Invalid item."] = "Недействительный элемент."; +App::$strings["Channel not found."] = "Канал не найден."; +App::$strings["Page not found."] = "Страница не найдена."; +App::$strings["Image uploaded but image cropping failed."] = ""; +App::$strings["Image resize failed."] = "Изменение размера изображения не удалось."; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; +App::$strings["Image exceeds size limit of %d"] = ""; +App::$strings["Unable to process image."] = "Невозможно обработать изображение."; +App::$strings["Photo not available."] = "Фотография не доступна."; +App::$strings["Upload File:"] = "Загрузить файл:"; +App::$strings["Select a profile:"] = "Выберите профиль:"; +App::$strings["Upload Profile Photo"] = "Загрузить фотографию профиля"; +App::$strings["skip this step"] = "пропустить этот шаг"; +App::$strings["select a photo from your photo albums"] = ""; +App::$strings["Crop Image"] = "Обрезать изображение"; +App::$strings["Please adjust the image cropping for optimum viewing."] = ""; +App::$strings["Done Editing"] = "Закончить редактирование"; +App::$strings["Image uploaded successfully."] = "Загрузка изображениея прошла успешно."; +App::$strings["Image upload failed."] = "Загрузка изображениея прошла безуспешно."; +App::$strings["Image size reduction [%s] failed."] = ""; +App::$strings["Block Name"] = "Название блока"; +App::$strings["Profile not found."] = "Профиль не найден."; +App::$strings["Profile deleted."] = "Профиль удален."; +App::$strings["Profile-"] = "Профиль-"; +App::$strings["New profile created."] = "Новый профиль создан."; +App::$strings["Profile unavailable to clone."] = "Профиль недоступен для клонирования."; +App::$strings["Profile Name is required."] = "Имя профиля требуется."; +App::$strings["Marital Status"] = "Семейное положение"; +App::$strings["Romantic Partner"] = "Романтический партнер"; +App::$strings["Likes"] = "нравится"; +App::$strings["Dislikes"] = "не-нравится"; +App::$strings["Work/Employment"] = "Работа / Занятость"; +App::$strings["Religion"] = "Религия"; +App::$strings["Political Views"] = "Политические взгляды"; +App::$strings["Gender"] = "Пол"; +App::$strings["Sexual Preference"] = "Сексуальная ориентация"; +App::$strings["Homepage"] = "Домашняя страница"; +App::$strings["Interests"] = "Интересы"; +App::$strings["Address"] = "Адрес"; +App::$strings["Location"] = "Место"; +App::$strings["Profile updated."] = "Профиль обновлен."; +App::$strings["Hide your contact/friend list from viewers of this profile?"] = "Скрывать от просмотра ваш список контактов/друзей в этом профиле?"; +App::$strings["Edit Profile Details"] = "Редактирование профиля"; +App::$strings["View this profile"] = "Посмотреть этот профиль"; +App::$strings["Change Profile Photo"] = "Изменить фотографию профиля"; +App::$strings["Create a new profile using these settings"] = "Создайте новый профиль со следующими настройками"; +App::$strings["Clone this profile"] = "Клонировать этот профиль"; +App::$strings["Delete this profile"] = "Удалить этот профиль"; +App::$strings["Profile Name:"] = "Имя профиля:"; +App::$strings["Your Full Name:"] = "Ваше полное имя:"; +App::$strings["Title/Description:"] = "Название / Описание:"; +App::$strings["Your Gender:"] = "Ваш пол:"; +App::$strings["Birthday (%s):"] = "Ваш День Рождения (%s):"; +App::$strings["Street Address:"] = "Улица:"; +App::$strings["Locality/City:"] = "Населенный пункт / город:"; +App::$strings["Postal/Zip Code:"] = "Почтовый индекс:"; +App::$strings["Country:"] = "Страна:"; +App::$strings["Region/State:"] = "Регион / Область:"; +App::$strings[" Marital Status:"] = ""; +App::$strings["Who: (if applicable)"] = "Кто: (если это применимо)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Примеры: cathy123, Cathy Williams, cathy@example.com"; +App::$strings["Since [date]:"] = "С тех пор [date]:"; +App::$strings["Homepage URL:"] = "URL-адрес домашней страницы:"; +App::$strings["Religious Views:"] = "Религиозные взгляды:"; +App::$strings["Keywords:"] = "Ключевые слова:"; +App::$strings["Example: fishing photography software"] = "Пример: fishing photography software"; +App::$strings["Used in directory listings"] = ""; +App::$strings["Tell us about yourself..."] = "Расскажите нам о себе ..."; +App::$strings["Hobbies/Interests"] = "Хобби / интересы"; +App::$strings["Contact information and Social Networks"] = "Информация и социальные сети контакта"; +App::$strings["My other channels"] = "Мои другие контакты"; +App::$strings["Musical interests"] = "Музыкальные интересы"; +App::$strings["Books, literature"] = "Книги, литература"; +App::$strings["Television"] = "Телевидение"; +App::$strings["Film/dance/culture/entertainment"] = "Кино / танцы / культура / развлечения"; +App::$strings["Love/romance"] = "Любовь / Романс"; +App::$strings["Work/employment"] = "Работа / Занятость"; +App::$strings["School/education"] = "Школа / образование"; +App::$strings["This is your public profile.
It may be visible to anybody using the internet."] = ""; +App::$strings["Age: "] = "Возраст:"; +App::$strings["Edit/Manage Profiles"] = "Редактирование / Управление профилей"; +App::$strings["Add profile things"] = ""; +App::$strings["Include desirable objects in your profile"] = ""; +App::$strings["Bookmark added"] = "Закладка добавлена"; +App::$strings["My Bookmarks"] = "Мои закладки"; +App::$strings["My Connections Bookmarks"] = "Закладки моих контактов"; +App::$strings["Invalid profile identifier."] = ""; +App::$strings["Profile Visibility Editor"] = "Редактор видимости профиля"; +App::$strings["Click on a contact to add or remove."] = "Нажмите на канал, чтобы добавить или удалить."; +App::$strings["Visible To"] = "Видно"; +App::$strings["All Connections"] = "Все контакты"; +App::$strings["Public Sites"] = "Публичные сайты"; +App::$strings["The listed sites allow public registration into the Hubzilla. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = ""; +App::$strings["Site URL"] = "URL веб-сайта"; +App::$strings["Access Type"] = "Тип доступа"; +App::$strings["Registration Policy"] = "Правила регистрации"; +App::$strings["You must be logged in to see this page."] = "Вы должны авторизоваться, чтобы увидеть эту страницу."; +App::$strings["Insufficient permissions. Request redirected to profile page."] = ""; +App::$strings["Select a bookmark folder"] = ""; +App::$strings["Save Bookmark"] = "Сохранить закладки"; +App::$strings["URL of bookmark"] = ""; +App::$strings["Description"] = "Описание"; +App::$strings["Or enter new bookmark folder name"] = ""; +App::$strings["Room not found"] = ""; +App::$strings["Leave Room"] = ""; +App::$strings["Delete This Room"] = ""; +App::$strings["I am away right now"] = ""; +App::$strings["I am online"] = "Я в сети"; +App::$strings["Bookmark this room"] = ""; +App::$strings["New Chatroom"] = "Новый чат"; +App::$strings["Chatroom Name"] = "Название чата"; +App::$strings["%1\$s's Chatrooms"] = "Чаты пользователя %1\$s"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = ""; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = ""; +App::$strings["Passwords do not match."] = "Пароли не совпадают."; +App::$strings["Registration successful. Please check your email for validation instructions."] = ""; +App::$strings["Your registration is pending approval by the site owner."] = ""; +App::$strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана."; +App::$strings["Registration on this site/hub is by approval only."] = ""; +App::$strings["Register at another affiliated site/hub"] = ""; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = ""; +App::$strings["Terms of Service"] = "Условия предоставления услуг"; +App::$strings["I accept the %s for this website"] = ""; +App::$strings["I am over 13 years of age and accept the %s for this website"] = ""; +App::$strings["Registration"] = "Регистрация"; +App::$strings["Membership on this site is by invitation only."] = ""; +App::$strings["Please enter your invitation code"] = "Пожалуйста, введите Ваш код приглашения"; +App::$strings["Your email address"] = "Ваш адрес электронной почты"; +App::$strings["Choose a password"] = "Выберите пароль"; +App::$strings["Please re-enter your password"] = "Пожалуйста, введите пароль еще раз"; +App::$strings["Away"] = "Нет на месте"; +App::$strings["Online"] = "Сейчас в сети"; +App::$strings["Please login."] = "Войдите пожалуйста."; +App::$strings["Hubzilla - Guests: Username: {your email address}, Password: +++"] = ""; +App::$strings["Remove This Channel"] = "Удалить этот канал"; +App::$strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = ""; +App::$strings["Please enter your password for verification:"] = "Пожалуйста, введите пароль для проверки:"; +App::$strings["Remove this channel and all its clones from the network"] = "Удалить этот канал и все его клоны из сети"; +App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = ""; +App::$strings["Remove Channel"] = "Удалить канал"; +App::$strings["No channel."] = "Не канал."; +App::$strings["Common connections"] = "Общие контакты"; +App::$strings["No connections in common."] = "Общих контактов нет."; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; +App::$strings["The error message was:"] = "Сообщение об ошибке было:"; +App::$strings["Authentication failed."] = "Ошибка проверки подлинности."; +App::$strings["Remote Authentication"] = "Удаленная аутентификация"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Введите адрес вашего канала (например: channel@example.com)"; +App::$strings["Authenticate"] = "Проверка подлинности"; +App::$strings["Continue"] = "Продолжить"; +App::$strings["Premium Channel Setup"] = "Установка премиум канала"; +App::$strings["Enable premium channel connection restrictions"] = ""; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = ""; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = ""; +App::$strings["Potential connections will then see the following text before proceeding:"] = ""; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = ""; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = ""; +App::$strings["Restricted or Premium Channel"] = "Ограниченный или Премиум канал"; +App::$strings["No such group"] = "Нет такой группы"; +App::$strings["Search Results For:"] = "Результаты поиска для:"; +App::$strings["Collection is empty"] = "Коллекция пуста"; +App::$strings["Collection: "] = "Коллекции: "; +App::$strings["Connection: "] = "Контакты: "; +App::$strings["Invalid connection."] = ""; +App::$strings["Could not access contact record."] = ""; +App::$strings["Could not locate selected profile."] = ""; +App::$strings["Connection updated."] = "Связи обновленны."; +App::$strings["Failed to update connection record."] = ""; +App::$strings["Blocked"] = "Заблокированные"; +App::$strings["Ignored"] = "Игнорируемые"; +App::$strings["Hidden"] = "Скрытые"; +App::$strings["Archived"] = "Зархивированные"; +App::$strings["All"] = "Все"; +App::$strings["Unconnected"] = "Неприсоединенные"; +App::$strings["Suggest new connections"] = "Предлагать новые контакты"; +App::$strings["New Connections"] = "Новые контакты"; +App::$strings["Show pending (new) connections"] = "Просмотр (новых) ждущих контактов"; +App::$strings["Show all connections"] = "Просмотр всех контактов"; +App::$strings["Unblocked"] = "Разрешенные"; +App::$strings["Only show unblocked connections"] = "Показать только разрешенные контакты"; +App::$strings["Only show blocked connections"] = "Показать только заблокированные контакты"; +App::$strings["Only show ignored connections"] = "Показать только проигнорированные контакты"; +App::$strings["Only show archived connections"] = "Показать только архивированные контакты"; +App::$strings["Only show hidden connections"] = "Показать только скрытые контакты"; +App::$strings["Only show one-way connections"] = ""; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit contact"] = "Редактировать контакт"; +App::$strings["Search your connections"] = "Поиск ваших связей"; +App::$strings["Finding: "] = "Поиск:"; +App::$strings["Edit post"] = "Редактировать сообщение"; +App::$strings["Could not access address book record."] = ""; +App::$strings["Refresh failed - channel is currently unavailable."] = ""; +App::$strings["Channel has been unblocked"] = "Канал разблокирован"; +App::$strings["Channel has been blocked"] = "Канал заблокирован"; +App::$strings["Unable to set address book parameters."] = ""; +App::$strings["Channel has been unignored"] = "Канал не проигнорирован"; +App::$strings["Channel has been ignored"] = "Канал проигнорирован"; +App::$strings["Channel has been unarchived"] = "Канал разархивирован"; +App::$strings["Channel has been archived"] = "Канал заархивирован"; +App::$strings["Channel has been unhidden"] = "Канал открыт"; +App::$strings["Channel has been hidden"] = "Канал скрыт"; +App::$strings["Channel has been approved"] = "Канал одобрен"; +App::$strings["Channel has been unapproved"] = "Канал не одобрен"; +App::$strings["Connection has been removed."] = "Соединение было удалено."; +App::$strings["View %s's profile"] = "Просмотр %s's профиля"; +App::$strings["Refresh Permissions"] = "Обновить разрешения"; +App::$strings["Fetch updated permissions"] = ""; +App::$strings["Recent Activity"] = ""; +App::$strings["View recent posts and comments"] = ""; +App::$strings["Unblock"] = "Разрешить"; +App::$strings["Block"] = "Заблокировать"; +App::$strings["Block or Unblock this connection"] = "Запретить или разрешить этот канал"; +App::$strings["Unignore"] = "Не игнорировать"; +App::$strings["Ignore"] = "Игнорировать"; +App::$strings["Ignore or Unignore this connection"] = "Игнорировать или не игнорировать этот канал"; +App::$strings["Unarchive"] = "Разархивировать"; +App::$strings["Archive"] = "Заархивировать"; +App::$strings["Archive or Unarchive this connection"] = " Заархивировать или разархивировать этот канал"; +App::$strings["Unhide"] = "Показать"; +App::$strings["Hide"] = "Скрыть"; +App::$strings["Hide or Unhide this connection"] = "Скрыть или показывать этот канал"; +App::$strings["Delete this connection"] = "Удалить этот контакт"; +App::$strings["Approve this connection"] = "Утвердить этот контакт"; +App::$strings["Accept connection to allow communication"] = ""; +App::$strings["Automatic Permissions Settings"] = "Настройки автоматических разрешений"; +App::$strings["Connections: settings for %s"] = ""; +App::$strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = ""; +App::$strings["Slide to adjust your degree of friendship"] = ""; +App::$strings["inherited"] = "унаследованный"; +App::$strings["Connection has no individual permissions!"] = ""; +App::$strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = ""; +App::$strings["Profile Visibility"] = "Видимость профиля"; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = ""; +App::$strings["Contact Information / Notes"] = "Информация / Примечания о канале"; +App::$strings["Edit contact notes"] = "Редактировать примечания канала"; +App::$strings["Their Settings"] = "Их настройки"; +App::$strings["My Settings"] = "Мои настройки"; +App::$strings["Clear/Disable Automatic Permissions"] = ""; +App::$strings["Forum Members"] = "Участники форума"; +App::$strings["Soapbox"] = "Soapbox"; +App::$strings["Full Sharing (typical social network permissions)"] = ""; +App::$strings["Cautious Sharing "] = ""; +App::$strings["Follow Only"] = "Только следовать"; +App::$strings["Individual Permissions"] = "Индивидуальные разрешения"; +App::$strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = ""; +App::$strings["Advanced Permissions"] = "Дополнительные разрешения"; +App::$strings["Simple Permissions (select one and submit)"] = ""; +App::$strings["Visit %s's profile - %s"] = "Посетить %s's ​​профиль - %s"; +App::$strings["Block/Unblock contact"] = "Запретить/разрешить контакт"; +App::$strings["Ignore contact"] = "Игнорировать контакт"; +App::$strings["Repair URL settings"] = "Ремонт настройки URL"; +App::$strings["View conversations"] = "Просмотр разговоров"; +App::$strings["Delete contact"] = "Удалить контакт"; +App::$strings["Last update:"] = "Последнее обновление:"; +App::$strings["Update public posts"] = "Обновить публичные сообщения"; +App::$strings["Update now"] = "Обновить сейчас"; +App::$strings["Currently blocked"] = "В настоящее время заблокирован"; +App::$strings["Currently ignored"] = "В настоящее время игнорируются"; +App::$strings["Currently archived"] = "В настоящее время зархивированны"; +App::$strings["Currently pending"] = "В настоящее время в ожидании"; +App::$strings["Hide this contact from others"] = "Скрыть этот канал от других"; +App::$strings["Replies/likes to your public posts may still be visible"] = ""; +App::$strings["No potential page delegates located."] = ""; +App::$strings["Delegate Page Management"] = ""; +App::$strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = ""; +App::$strings["Existing Page Managers"] = ""; +App::$strings["Existing Page Delegates"] = ""; +App::$strings["Potential Delegates"] = ""; +App::$strings["Remove"] = "Удалить"; +App::$strings["Add"] = "Добавить"; +App::$strings["No entries."] = "Нет записей."; +App::$strings["Public access denied."] = "Общественный доступ запрещен."; +App::$strings["Gender: "] = "Пол:"; +App::$strings["Finding:"] = "Поиск:"; +App::$strings["next page"] = "следующая страница"; +App::$strings["previous page"] = "предыдущая страница"; +App::$strings["No entries (some entries may be hidden)."] = ""; +App::$strings["Status: "] = "Статус:"; +App::$strings["Sexual Preference: "] = "Сексуальная ориентация:"; +App::$strings["Homepage: "] = "Домашняя страница:"; +App::$strings["Hometown: "] = "Город проживания:"; +App::$strings["About: "] = "О себе:"; +App::$strings["Keywords: "] = "Ключевые слова:"; +App::$strings["This site is not a directory server"] = "Этот сайт не является сервером каталога"; +App::$strings["Hubzilla - "The Network""] = ""; +App::$strings["Welcome to %s"] = "Добро пожаловать в %s"; +App::$strings["Hubzilla Server - Setup"] = "Hubzilla Сервер - Установка"; +App::$strings["Could not connect to database."] = "Не удалось подключиться к серверу баз данных."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = ""; +App::$strings["Could not create table."] = "Не удалось создать таблицу."; +App::$strings["Your site database has been installed."] = "Ваша база данных установлена."; +App::$strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = ""; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Пожалуйста, обратитесь к файлу \"install/INSTALL.txt\"."; +App::$strings["System check"] = "Проверка системы"; +App::$strings["Next"] = "Следующая"; +App::$strings["Check again"] = "Проверить снова"; +App::$strings["Database connection"] = "Подключение к базе данных"; +App::$strings["In order to install Hubzilla we need to know how to connect to your database."] = ""; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = ""; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = ""; +App::$strings["Database Server Name"] = "Имя сервера базы данных"; +App::$strings["Default is localhost"] = "По умолчанию localhost"; +App::$strings["Database Port"] = "Порт базы данных"; +App::$strings["Communication port number - use 0 for default"] = "Порт коммуникации - используйте 0 по умолчанию"; +App::$strings["Database Login Name"] = "Имя для подключения к базе данных"; +App::$strings["Database Login Password"] = "Пароль для подключения к базе данных"; +App::$strings["Database Name"] = "Имя базы данных"; +App::$strings["Site administrator email address"] = "Адрес электронной почты администратора сайта"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = ""; +App::$strings["Website URL"] = "URL веб-сайта"; +App::$strings["Please use SSL (https) URL if available."] = "Пожалуйста, используйте SSL (https) URL если возможно."; +App::$strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта"; +App::$strings["Site settings"] = "Настройки сайта"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = ""; +App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = ""; +App::$strings["PHP executable path"] = "PHP executable путь"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; +App::$strings["Command line PHP"] = "Command line PHP"; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = ""; +App::$strings["This is required for message delivery to work."] = "Это требуется для доставки сообщений."; +App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = ""; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Если работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"."; +App::$strings["Generate encryption keys"] = "Генерация ключей шифрования"; +App::$strings["libCurl PHP module"] = "libCurl PHP модуль"; +App::$strings["GD graphics PHP module"] = "GD graphics PHP модуль"; +App::$strings["OpenSSL PHP module"] = "OpenSSL PHP модуль"; +App::$strings["mysqli PHP module"] = "mysqli PHP модуль"; +App::$strings["mb_string PHP module"] = "mb_string PHP модуль"; +App::$strings["mcrypt PHP module"] = "mcrypt PHP модуль"; +App::$strings["Apache mod_rewrite module"] = "Apache mod_rewrite модуль"; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: Apache веб-сервер модуль mod-rewrite требуется, но не установлен."; +App::$strings["proc_open"] = "proc_open"; +App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Ошибка: proc_open требуется, но не установлен или отключен в php.ini"; +App::$strings["Error: libCURL PHP module required but not installed."] = "Ошибка: Модуль libCURL PHP требуется, но не установлен."; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Ошибка: GD graphics PHP модуль с поддержкой JPEG требуется, но не установлен."; +App::$strings["Error: openssl PHP module required but not installed."] = "Ошибка: openssl PHP модуль требуется, но не установлен."; +App::$strings["Error: mysqli PHP module required but not installed."] = "Ошибка: mysqli PHP модуль требуется, но не установлен."; +App::$strings["Error: mb_string PHP module required but not installed."] = "Ошибка: mb_string PHP модуль требуется, но не установлен."; +App::$strings["Error: mcrypt PHP module required but not installed."] = "Ошибка: mcrypt PHP модуль требуется, но не установлен."; +App::$strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "Веб-установщик должен быть в состоянии создать файл с именем \".htconfig.php\" в верхней папке вашего веб-сервера, но он не в состоянии сделать это."; +App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = ""; +App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = ""; +App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Вы можете пропустить эту процедуру и выполнить установку вручную. Обратитесь к файлу \"install/INSTALL.txt\" для получения инструкций."; +App::$strings[".htconfig.php is writable"] = ".htconfig.php доступен для записи"; +App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; +App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory view/tpl/smarty3/ under the Red top level folder."] = ""; +App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; +App::$strings["Note: as a security measure, you should give the web server write access to view/tpl/smarty3/ only--not the template files (.tpl) that it contains."] = ""; +App::$strings["view/tpl/smarty3 is writable"] = "view/tpl/smarty3 доступен для записи"; +App::$strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = ""; +App::$strings["store is writable"] = ""; +App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = ""; +App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = ""; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = ""; +App::$strings["If your certificate is not recognised, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = ""; +App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = ""; +App::$strings["Providers are available that issue free certificates which are browser-valid."] = ""; +App::$strings["SSL certificate validation"] = "проверка сертификата SSL"; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; +App::$strings["Url rewrite is working"] = "Url rewrite работает"; +App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; +App::$strings["Errors encountered creating database tables."] = ""; +App::$strings["

What next

"] = "

Что дальше

"; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; +App::$strings["Item not found"] = "Элемент не найден"; +App::$strings["Edit Block"] = "Редактировать блок"; +App::$strings["Delete block?"] = "Удалить блок?"; +App::$strings["Insert YouTube video"] = "Вставить YouTube видео"; +App::$strings["Insert Vorbis [.ogg] video"] = "Вставить Vorbis [.ogg] видео"; +App::$strings["Insert Vorbis [.ogg] audio"] = "Вставить Vorbis [.ogg] музыку"; +App::$strings["Delete Block"] = "Удалить блок"; +App::$strings["Layout updated."] = "Шаблон обновлен."; +App::$strings["Edit System Page Description"] = ""; +App::$strings["Layout not found."] = "Шаблон не найден"; +App::$strings["Module Name:"] = "Имя модуля:"; +App::$strings["Layout Help"] = "レイアウトのヘルプ"; +App::$strings["Edit Layout"] = "Редактировать шаблон"; +App::$strings["Delete layout?"] = "Удалить шаблон?"; +App::$strings["Delete Layout"] = "Удалить шаблон"; +App::$strings["Item is not editable"] = "Элемент нельзя редактировать"; +App::$strings["Delete item?"] = "Удалить элемент?"; +App::$strings["Edit Webpage"] = "Редактировать веб-страницу"; +App::$strings["Delete webpage?"] = "Удалить веб-страницу?"; +App::$strings["Delete Webpage"] = "Удалить веб-страницу"; +App::$strings["Version %s"] = "Версия %s"; +App::$strings["Installed plugins/addons/apps:"] = ""; +App::$strings["No installed plugins/addons/apps"] = ""; +App::$strings["Red"] = "Red"; +App::$strings["This is a hub of the Hubzilla - a global cooperative network of decentralised privacy enhanced websites."] = ""; +App::$strings["Running at web location"] = ""; +App::$strings["Please visit GetZot.com to learn more about the Hubzilla."] = "Пожалуйста посетите GetZot.com чтобы узнать больше о Hubzilla."; +App::$strings["Bug reports and issues: please visit"] = ""; +App::$strings["Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot com"] = ""; +App::$strings["Site Administrators"] = "Администратор сайта"; +App::$strings["Page owner information could not be retrieved."] = ""; +App::$strings["Album not found."] = "Альбом не найден."; +App::$strings["Delete Album"] = "Удалить альбом"; +App::$strings["Delete Photo"] = "Удалить фотографию"; +App::$strings["No photos selected"] = "Никакие фотографии не выбраны"; +App::$strings["Access to this item is restricted."] = "Доступ к этому элементу ограничен."; +App::$strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Вы использовали %1$.2f мегабайт из %2$.2f для хранения фото."; +App::$strings["You have used %1$.2f Mbytes of photo storage."] = "Вы использовали %1$.2f мегабайт для хранения фото."; +App::$strings["Upload Photos"] = "Загрузить фотографии"; +App::$strings["New album name: "] = "Название нового альбома:"; +App::$strings["or existing album name: "] = "или существующий альбом:"; +App::$strings["Do not show a status post for this upload"] = "Не показывать пост о состоянии этой загрузки"; +App::$strings["Contact Photos"] = "Фотографии контакта"; +App::$strings["Edit Album"] = "Редактировать Фотоальбом"; +App::$strings["Show Newest First"] = "Показать новые первыми"; +App::$strings["Show Oldest First"] = "Показать старые первыми"; +App::$strings["View Photo"] = "Посмотреть фотографию"; +App::$strings["Permission denied. Access to this item may be restricted."] = ""; +App::$strings["Photo not available"] = "Фотография не доступна"; +App::$strings["Use as profile photo"] = "Использовать в качестве фотографии профиля"; +App::$strings["View Full Size"] = "Посмотреть в полный размер"; +App::$strings["Edit photo"] = "Редактировать фотографию"; +App::$strings["Rotate CW (right)"] = "Повернуть CW (направо)"; +App::$strings["Rotate CCW (left)"] = "Повернуть CCW (налево)"; +App::$strings["New album name"] = "Новое название альбома:"; +App::$strings["Caption"] = "Подпись"; +App::$strings["Add a Tag"] = "Добавить тег"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Например: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +App::$strings["In This Photo:"] = ""; +App::$strings["View Album"] = "Посмотреть фотоальбом"; +App::$strings["Recent Photos"] = "Последние фотографии"; +App::$strings["Failed to create source. No channel selected."] = ""; +App::$strings["Source created."] = "Источник создан"; +App::$strings["Source updated."] = "Источник обновлен."; +App::$strings["*"] = "*"; +App::$strings["Manage remote sources of content for your channel."] = ""; +App::$strings["New Source"] = "Новый источник"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = ""; +App::$strings["Only import content with these words (one per line)"] = ""; +App::$strings["Leave blank to import all public content"] = ""; +App::$strings["Channel Name"] = "Имя канала"; +App::$strings["Source not found."] = "Источник не найден."; +App::$strings["Edit Source"] = "Редактировать источник"; +App::$strings["Delete Source"] = "Удалить источник"; +App::$strings["Source removed"] = "Источник удален"; +App::$strings["Unable to remove source."] = ""; +App::$strings["- select -"] = "- выбрать -"; +App::$strings["Event title and start time are required."] = "Название события и время начала требуется."; +App::$strings["l, F j"] = "l, F j"; +App::$strings["Edit event"] = "Редактировать мероприятие"; +App::$strings["Create New Event"] = "Создать новое мероприятие"; +App::$strings["Previous"] = "Предыдущая"; +App::$strings["hour:minute"] = "часы:минуты"; +App::$strings["Event details"] = "Детали мероприятия"; +App::$strings["Format is %s %s. Starting date and Title are required."] = "Формат: %s %s. Дата начала и название необходимы."; +App::$strings["Event Starts:"] = "Начало мероприятия:"; +App::$strings["Required"] = "Необходимо"; +App::$strings["Finish date/time is not known or not relevant"] = "Дата окончания или время окончания не известно / не релевантно."; +App::$strings["Event Finishes:"] = "\t\nКонец мероприятий:"; +App::$strings["Adjust for viewer timezone"] = "Отрегулируйте для просмотра часовых поясов"; +App::$strings["Description:"] = "Описание:"; +App::$strings["Title:"] = "Заголовок:"; +App::$strings["Share this event"] = "Поделиться этим мероприятием"; +App::$strings["Permission Denied."] = "Доступ запрещен."; +App::$strings["File not found."] = "Файл не найден."; +App::$strings["Edit file permissions"] = "Редактировать разрешения файла"; +App::$strings["Set/edit permissions"] = ""; +App::$strings["Include all files and sub folders"] = ""; +App::$strings["Return to file list"] = ""; +App::$strings["Copy/paste this code to attach file to a post"] = ""; +App::$strings["Copy/paste this URL to link file from a web page"] = ""; +App::$strings["Channel added."] = "Контакт добавлен."; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s следит %2\$s's %3\$s"; +App::$strings["Contact not found."] = "Контакт не найден."; +App::$strings["Friend suggestion sent."] = "Предложение дружить отправлено."; +App::$strings["Suggest Friends"] = "Пригласить друзей"; +App::$strings["Suggest a friend for %s"] = ""; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; +App::$strings["Collection created."] = "Коллекция создана."; +App::$strings["Could not create collection."] = "Не удалось создать коллекцию."; +App::$strings["Collection updated."] = ""; +App::$strings["Create a collection of channels."] = "Создать коллекцию контактов"; +App::$strings["Collection Name: "] = "Название коллекции:"; +App::$strings["Members are visible to other channels"] = "Пользователи могут видеть другие каналы"; +App::$strings["Collection removed."] = "Коллекция удалена."; +App::$strings["Unable to remove collection."] = "Невозможно удалить коллекцию."; +App::$strings["Collection Editor"] = "Редактор коллекций"; +App::$strings["Members"] = "Участники"; +App::$strings["All Connected Channels"] = "Все подключенные контакы"; +App::$strings["Click on a channel to add or remove."] = "Нажмите на канал, чтобы добавить или удалить."; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = ""; +App::$strings["Help:"] = "ヘルプ:"; +App::$strings["Not Found"] = "Не найдено"; +App::$strings["Tag removed"] = "Тег удален"; +App::$strings["Remove Item Tag"] = "Удалить Тег"; +App::$strings["Select a tag to remove: "] = "Выбрать тег для удаления: "; +App::$strings["Theme settings updated."] = "Настройки темы обновленны."; +App::$strings["Site"] = "Сайт"; +App::$strings["Accounts"] = "Пользователи"; +App::$strings["Channels"] = "Каналы"; +App::$strings["Plugins"] = "Плагины"; +App::$strings["Themes"] = "Темы"; +App::$strings["Server"] = "Серверы"; +App::$strings["DB updates"] = "Обновление базы данных"; +App::$strings["Logs"] = "Журналы"; +App::$strings["Plugin Features"] = "Функции плагинов"; +App::$strings["User registrations waiting for confirmation"] = "Регистрации пользователей, которые ждут подтверждения"; +App::$strings["Message queues"] = "Очередь недоставленных сообщений"; +App::$strings["Administration"] = "Администрация"; +App::$strings["Summary"] = "Резюме"; +App::$strings["Registered users"] = "Всего пользователeй"; +App::$strings["Pending registrations"] = "Ждут утверждения"; +App::$strings["Version"] = "Версия системы"; +App::$strings["Active plugins"] = "Активные плагины"; +App::$strings["Site settings updated."] = "Настройки сайта обновлены."; +App::$strings["No special theme for accessibility"] = ""; +App::$strings["Yes - with approval"] = ""; +App::$strings["My site is not a public server"] = ""; +App::$strings["My site has paid access only"] = ""; +App::$strings["My site has free access only"] = ""; +App::$strings["My site offers free accounts with optional paid upgrades"] = ""; +App::$strings["File upload"] = "Загрузка файла"; +App::$strings["Policies"] = "Правила"; +App::$strings["Site name"] = "Название сайта"; +App::$strings["Banner/Logo"] = "Баннер / логотип"; +App::$strings["Administrator Information"] = "Информация об администраторе"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = ""; +App::$strings["System language"] = "Язык системы"; +App::$strings["System theme"] = "Тема системы"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; +App::$strings["Mobile system theme"] = "Мобильная тема системы"; +App::$strings["Theme for mobile devices"] = "Тема для мобильных устройств"; +App::$strings["Accessibility system theme"] = ""; +App::$strings["Accessibility theme"] = ""; +App::$strings["Channel to use for this website's static pages"] = ""; +App::$strings["Site Channel"] = "Канал сайта"; +App::$strings["Maximum image size"] = "Максимальный размер"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; +App::$strings["Does this site allow new member registration?"] = ""; +App::$strings["Which best describes the types of account offered by this hub?"] = ""; +App::$strings["Register text"] = "Текст регистрации"; +App::$strings["Will be displayed prominently on the registration page."] = ""; +App::$strings["Accounts abandoned after x days"] = ""; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; +App::$strings["Allowed friend domains"] = "Разрешенные домены друзей"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; +App::$strings["Allowed email domains"] = "Разрешенные домены электронной почты"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; +App::$strings["Block public"] = "Блокировать публичный доступ"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; +App::$strings["Force publish"] = "Заставить публиковать"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = ""; +App::$strings["Disable discovery tab"] = "Отключить вкладку \"обнаруженные\""; +App::$strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = ""; +App::$strings["No login on Homepage"] = ""; +App::$strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = ""; +App::$strings["Proxy user"] = "Proxy пользователь"; +App::$strings["Proxy URL"] = "Proxy URL"; +App::$strings["Network timeout"] = "Время ожидания сети"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; +App::$strings["Delivery interval"] = "Интервал доставки"; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; +App::$strings["Poll interval"] = "Интервал опроса"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; +App::$strings["Maximum Load Average"] = ""; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; +App::$strings["No server found"] = "Сервер не найден"; +App::$strings["ID"] = "ID"; +App::$strings["for channel"] = "для канала"; +App::$strings["on server"] = "на сервере"; +App::$strings["Status"] = "Статус"; +App::$strings["Update has been marked successful"] = ""; +App::$strings["Executing %s failed. Check system logs."] = ""; +App::$strings["Update %s was successfully applied."] = ""; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = ""; +App::$strings["Update function %s could not be found."] = ""; +App::$strings["No failed updates."] = "Ошибок обновлений нет."; +App::$strings["Failed Updates"] = "Обновления с ошибками"; +App::$strings["Mark success (if update was manually applied)"] = ""; +App::$strings["Attempt to execute this update step automatically"] = ""; +App::$strings["%s user blocked/unblocked"] = array( + 0 => "", + 1 => "", + 2 => "", +); +App::$strings["%s user deleted"] = array( + 0 => "%s канал удален", + 1 => "%s канала удалены", + 2 => "%s каналов удалено", +); +App::$strings["Account not found"] = "Аккаунт не найден"; +App::$strings["User '%s' deleted"] = "Пользователь '%s' удален"; +App::$strings["User '%s' unblocked"] = "Пользователь '%s' разрешен"; +App::$strings["User '%s' blocked"] = "Пользователь '%s' заблокирован"; +App::$strings["Users"] = "Пользователи"; +App::$strings["select all"] = "выбрать все"; +App::$strings["User registrations waiting for confirm"] = "Регистрации пользователей ждут подтверждения"; +App::$strings["Request date"] = "Дата запроса"; +App::$strings["No registrations."] = "Новых регистраций пока нет."; +App::$strings["Approve"] = "Утвердить"; +App::$strings["Deny"] = "Запретить"; +App::$strings["Register date"] = "Дата регистрации"; +App::$strings["Last login"] = "Последний вход"; +App::$strings["Expires"] = ""; +App::$strings["Service Class"] = "Класс службы"; +App::$strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +App::$strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "", + 1 => "", + 2 => "", +); +App::$strings["%s channel deleted"] = array( + 0 => "%s канал удален", + 1 => "%s канала удалены", + 2 => "%s каналы удалены", +); +App::$strings["Channel not found"] = "Канал не найден"; +App::$strings["Channel '%s' deleted"] = "Канал '%s' удален"; +App::$strings["Channel '%s' uncensored"] = ""; +App::$strings["Channel '%s' censored"] = ""; +App::$strings["Censor"] = ""; +App::$strings["Uncensor"] = ""; +App::$strings["UID"] = "UID"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +App::$strings["Plugin %s disabled."] = "Плагин %s отключен."; +App::$strings["Plugin %s enabled."] = "Плагин %s включен."; +App::$strings["Disable"] = "Запретить"; +App::$strings["Enable"] = "Разрешить"; +App::$strings["Toggle"] = "Переключить"; +App::$strings["Author: "] = "Автор: "; +App::$strings["Maintainer: "] = "Обслуживающий: "; +App::$strings["No themes found."] = "Темы не найдены."; +App::$strings["Screenshot"] = "Скриншот"; +App::$strings["[Experimental]"] = "[экспериментальный]"; +App::$strings["[Unsupported]"] = "[неподдерживаемый]"; +App::$strings["Log settings updated."] = "Настройки журнала обновленны."; +App::$strings["Clear"] = "Очистить"; +App::$strings["Debugging"] = "Включить/Выключить"; +App::$strings["Log file"] = "Файл журнала"; +App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = "Должна быть доступна для записи веб-сервером. Относительно верхнего уровня веб-сайта."; +App::$strings["Log level"] = "Уровень журнала"; +App::$strings["Thing updated"] = ""; +App::$strings["Object store: failed"] = ""; +App::$strings["Thing added"] = ""; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = ""; +App::$strings["Show Thing"] = ""; +App::$strings["item not found."] = "Элемент не найден."; +App::$strings["Edit Thing"] = ""; +App::$strings["Select a profile"] = "Выберите профиль"; +App::$strings["Post an activity"] = ""; +App::$strings["Only sends to viewers of the applicable profile"] = ""; +App::$strings["Name of thing e.g. something"] = ""; +App::$strings["URL of thing (optional)"] = ""; +App::$strings["URL for photo of thing (optional)"] = ""; +App::$strings["Add Thing to your Profile"] = ""; +App::$strings["Nothing to import."] = "Ничего импортировать."; +App::$strings["Unable to download data from old server"] = "Невозможно загрузить данные из старого сервера"; +App::$strings["Imported file is empty."] = "Импортированный файл пуст."; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = ""; +App::$strings["Channel clone failed. Import failed."] = ""; +App::$strings["Cloned channel not found. Import failed."] = ""; +App::$strings["Import completed."] = "Импорт завершен."; +App::$strings["You must be logged in to use this feature."] = "Вы должны войти в систему, чтобы использовать эту функцию."; +App::$strings["Import Channel"] = "Импорт канала"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = ""; +App::$strings["File to Upload"] = "Файл для загрузки"; +App::$strings["Or provide the old server/hub details"] = ""; +App::$strings["Your old identity address (xyz@example.com)"] = "Ваш старый адрес идентичности (xyz@example.com)"; +App::$strings["Your old login email address"] = "Ваш старый адрес электронной почты"; +App::$strings["Your old login password"] = "Ваш старый пароль"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = ""; +App::$strings["Make this hub my primary location"] = ""; +App::$strings["Total invitation limit exceeded."] = ""; +App::$strings["%s : Not a valid email address."] = "%s : Не действительный адрес электронной почты."; +App::$strings["Please join us on Red"] = "Пожалуйста, присоединяйтесь к нам в Red"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = ""; +App::$strings["%s : Message delivery failed."] = "%s : Доставка сообщения не удалась."; +App::$strings["%d message sent."] = array( + 0 => "%d сообщение отправленно.", + 1 => "%d сообщения отправленно.", + 2 => "%d сообщений отправленно.", +); +App::$strings["You have no more invitations available"] = "У вас больше нет приглашений"; +App::$strings["Send invitations"] = "Послать приглашения"; +App::$strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному на строку:"; +App::$strings["Your message:"] = "Сообщение:"; +App::$strings["You are cordially invited to join me and some other close friends on the Hubzilla - a revolutionary new decentralised communication and information tool."] = ""; +App::$strings["You will need to supply this invitation code: \$invite_code"] = ""; +App::$strings["Please visit my channel at"] = "Пожалуйста, посетите мой канал на"; +App::$strings["Once you have registered (on ANY Hubzilla site - they are all inter-connected), please connect with my Hubzilla channel address:"] = ""; +App::$strings["Click the [Register] link on the following page to join."] = ""; +App::$strings["For more information about the Hubzilla Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Чтобы узнать больше о проекте Hubzilla, и чтобы узнать почему он имеет потенциал для изменения привычного нам Интернета, пожалуйста, посетите http://getzot.com"; +App::$strings["Unable to locate original post."] = "Не удалось найти оригинал."; +App::$strings["Empty post discarded."] = "Отказаться от пустой почты."; +App::$strings["Executable content type not permitted to this channel."] = ""; +App::$strings["System error. Post not saved."] = "Системная ошибка. Сообщение не сохранено."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = ""; +App::$strings["You have reached your limit of %1$.0f webpages."] = ""; +App::$strings["[Embedded content - reload page to view]"] = ""; +App::$strings["Help with this feature"] = ""; +App::$strings["Layout Name"] = "Название шаблона"; +App::$strings["thing"] = ""; +App::$strings["Remote privacy information not available."] = ""; +App::$strings["Visible to:"] = "Кому видно:"; +App::$strings["No connections."] = "Никаких связей."; +App::$strings["Visit %s's profile [%s]"] = "Посетить %s's ​​профиль [%s]"; +App::$strings["View Connnections"] = "Просмотр контактов"; +App::$strings["No valid account found."] = "Действительный аккаунт не найден."; +App::$strings["Password reset request issued. Check your email."] = ""; +App::$strings["Site Member (%s)"] = "Участник сайта (%s)"; +App::$strings["Password reset requested at %s"] = "Требуется сброс пароля на %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = ""; +App::$strings["Password Reset"] = "Сбросить пароль"; +App::$strings["Your password has been reset as requested."] = "Ваш пароль в соответствии с просьбой сброшен."; +App::$strings["Your new password is"] = "Ваш новый пароль"; +App::$strings["Save or copy your new password - and then"] = ""; +App::$strings["click here to login"] = "нажмите здесь чтобы выйти"; +App::$strings["Your password may be changed from the Settings page after successful login."] = ""; +App::$strings["Your password has changed at %s"] = "Пароль изменен на %s"; +App::$strings["Forgot your Password?"] = "Забыли пароль или логин?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = ""; +App::$strings["Email Address"] = "Адрес электронной почты"; +App::$strings["Reset"] = "Сброс"; +App::$strings["Hub not found."] = "Hub не найден."; +App::$strings["Total votes"] = ""; +App::$strings["Average Rating"] = ""; +App::$strings["Unable to lookup recipient."] = ""; +App::$strings["Unable to communicate with requested channel."] = ""; +App::$strings["Cannot verify requested channel."] = ""; +App::$strings["Selected channel has private message restrictions. Send failed."] = ""; +App::$strings["Messages"] = "Переписка"; +App::$strings["Message deleted."] = "Сообщение удалено."; +App::$strings["Message recalled."] = ""; +App::$strings["Send Private Message"] = "Отправить личное сообщение"; +App::$strings["To:"] = "Кому:"; +App::$strings["Subject:"] = "Тема:"; +App::$strings["Message not found."] = "Сообщение не найдено."; +App::$strings["Delete message"] = "Удалить сообщение"; +App::$strings["Recall message"] = ""; +App::$strings["Message has been recalled."] = ""; +App::$strings["Private Conversation"] = "Личный разговор"; +App::$strings["Delete conversation"] = "Удалить разговор"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; +App::$strings["Send Reply"] = "Отправить снова"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = ""; +App::$strings["Create a new channel"] = "Создать новый канал"; +App::$strings["Channel Manager"] = "Настройки канала"; +App::$strings["Current Channel"] = "Текущий канал"; +App::$strings["Attach to one of your channels by selecting it."] = ""; +App::$strings["Default Channel"] = "Канал по умолчанию"; +App::$strings["Make Default"] = "Сделать стандартным"; +App::$strings["Wall Photos"] = "Стена фотографий"; +App::$strings["Profile Match"] = "Профиль Совпадение"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = ""; +App::$strings["is interested in:"] = "заинтересован в:"; +App::$strings["No matches"] = "Нет соответствий"; +App::$strings["Menu updated."] = "Меню обновлено."; +App::$strings["Unable to update menu."] = "Невозможно обновление меню."; +App::$strings["Menu created."] = "Меню создано."; +App::$strings["Unable to create menu."] = "Невозможно создать меню."; +App::$strings["Manage Menus"] = "Управление меню"; +App::$strings["Drop"] = "Удалить"; +App::$strings["Create a new menu"] = "Создать новое меню"; +App::$strings["Delete this menu"] = "Удалить это меню"; +App::$strings["Edit menu contents"] = "Редактировать содержание меню"; +App::$strings["Edit this menu"] = "Редактировать это меню"; +App::$strings["New Menu"] = "Новое меню"; +App::$strings["Menu name"] = "Название меню"; +App::$strings["Must be unique, only seen by you"] = ""; +App::$strings["Menu title"] = "Название меню"; +App::$strings["Menu title as seen by others"] = ""; +App::$strings["Allow bookmarks"] = "Разрешить закладки"; +App::$strings["Menu may be used to store saved bookmarks"] = "Меню может использоваться, чтобы сохранить закладки"; +App::$strings["Menu deleted."] = "Меню удалено."; +App::$strings["Menu could not be deleted."] = "Меню не может быть удален."; +App::$strings["Edit Menu"] = "Редактировать меню"; +App::$strings["Add or remove entries to this menu"] = ""; +App::$strings["Conversation removed."] = "Разговор удален."; +App::$strings["No messages."] = "Нет сообщений."; +App::$strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +App::$strings["Add a Channel"] = "Добавить контакт"; +App::$strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = ""; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = ""; +App::$strings["Choose a short nickname"] = "Выберите короткий псевдоним"; +App::$strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = ""; +App::$strings["Or import an existing channel from another location"] = ""; +App::$strings["Invalid request identifier."] = ""; +App::$strings["Discard"] = "Отменить"; +App::$strings["No more system notifications."] = "Новых оповещений системы пока нет."; +App::$strings["System Notifications"] = "Системные оповещения "; +App::$strings["Unable to find your hub."] = ""; +App::$strings["Post successful."] = "Публикация прошла успешно."; +App::$strings["invalid target signature"] = ""; +App::$strings["OpenID protocol error. No ID returned."] = ""; +App::$strings["App installed."] = "Приложение установлено ."; +App::$strings["Malformed app."] = ""; +App::$strings["Embed code"] = "Код для вставки"; +App::$strings["Edit App"] = "Редактировать приложение"; +App::$strings["Create App"] = "Создать приложение"; +App::$strings["Name of app"] = "Название приложения"; +App::$strings["Location (URL) of app"] = ""; +App::$strings["Photo icon URL"] = ""; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - необязательно"; +App::$strings["Version ID"] = "Версия ID"; +App::$strings["Price of app"] = ""; +App::$strings["Location (URL) to purchase app"] = ""; +App::$strings["Schema Default"] = ""; +App::$strings["Sans-Serif"] = ""; +App::$strings["Monospace"] = ""; +App::$strings["Theme settings"] = "Настройки темы"; +App::$strings["Set scheme"] = "Установить схему"; +App::$strings["Set font-size for posts and comments"] = "Установить размер шрифта для сообщений и комментариев"; +App::$strings["Set font face"] = ""; +App::$strings["Set iconset"] = ""; +App::$strings["Set big shadow size, default 15px 15px 15px"] = ""; +App::$strings["Set small shadow size, default 5px 5px 5px"] = ""; +App::$strings["Set shadow colour, default #000"] = ""; +App::$strings["Set radius size, default 5px"] = ""; +App::$strings["Set line-height for posts and comments"] = ""; +App::$strings["Set background image"] = ""; +App::$strings["Set background attachment"] = ""; +App::$strings["Set background colour"] = ""; +App::$strings["Set section background image"] = ""; +App::$strings["Set section background colour"] = ""; +App::$strings["Set colour of items - use hex"] = ""; +App::$strings["Set colour of links - use hex"] = ""; +App::$strings["Set max-width for items. Default 400px"] = ""; +App::$strings["Set min-width for items. Default 240px"] = ""; +App::$strings["Set the generic content wrapper width. Default 48%"] = ""; +App::$strings["Set colour of fonts - use hex"] = ""; +App::$strings["Set background-size element"] = ""; +App::$strings["Item opacity"] = ""; +App::$strings["Display post previews only"] = ""; +App::$strings["Display side bar on channel page"] = ""; +App::$strings["Colour of the navigation bar"] = ""; +App::$strings["Item float"] = ""; +App::$strings["Left offset of the section element"] = ""; +App::$strings["Right offset of the section element"] = ""; +App::$strings["Section width"] = ""; +App::$strings["Left offset of the aside"] = ""; +App::$strings["Right offset of the aside element"] = ""; +App::$strings["None"] = ""; +App::$strings["Header image"] = "Графика заголовока"; +App::$strings["Header image only on profile pages"] = ""; +App::$strings["Narrow navbar"] = "Узкая панель навигации"; +App::$strings["Navigation bar background colour"] = "Панель навигации, цвет фона"; +App::$strings["Navigation bar gradient top colour"] = "Панель навигации, цвет градиента вверху"; +App::$strings["Navigation bar gradient bottom colour"] = "Панель навигации, цвет градиента внизу"; +App::$strings["Navigation active button gradient top colour"] = "Панель навигации, цвет градиента вверху активной кнопки"; +App::$strings["Navigation active button gradient bottom colour"] = "Панель навигации, цвет градиента внизу активной кнопки"; +App::$strings["Navigation bar border colour "] = "Панель навигации, цвет границы"; +App::$strings["Navigation bar icon colour "] = "Панель навигации, цвет значков"; +App::$strings["Navigation bar active icon colour "] = "Панель навигации, цвет активного значка"; +App::$strings["link colour"] = "Цвет ссылок"; +App::$strings["Set font-colour for banner"] = "Цвет текста в шапке"; +App::$strings["Set the background colour"] = "Цвет фона на странице канала"; +App::$strings["Set the background image"] = "Фоновое изображение"; +App::$strings["Set the background colour of items"] = "Цвет фона для постов и других элементов"; +App::$strings["Set the background colour of comments"] = "Цвет фона для комментариев"; +App::$strings["Set the border colour of comments"] = "Цвет границы для области комментариев"; +App::$strings["Set the indent for comments"] = ""; +App::$strings["Set the basic colour for item icons"] = "Основной цвет в иконках редактирования"; +App::$strings["Set the hover colour for item icons"] = "Цвет в иконках редактирования при наведении мыши"; +App::$strings["Set font-size for the entire application"] = "Установить размер шрифта для системы в целом"; +App::$strings["Set font-colour for posts and comments"] = "Цвет шрифта для постов и комментариев"; +App::$strings["Set radius of corners"] = "Радиус скруглений"; +App::$strings["Set shadow depth of photos"] = ""; +App::$strings["Set maximum width of conversation regions"] = ""; +App::$strings["Center conversation regions"] = ""; +App::$strings["Set minimum opacity of nav bar - to hide it"] = "Панель навигации, прозрачность"; +App::$strings["Set size of conversation author photo"] = ""; +App::$strings["Set size of followup author photos"] = ""; +App::$strings["Sloppy photo albums"] = ""; +App::$strings["Are you a clean desk or a messy desk person?"] = ""; +App::$strings["Type"] = "Тип"; +App::$strings["Size"] = "Размер"; +App::$strings["Last modified"] = "Последнее изменение"; +App::$strings["Are you sure you want to delete this item?"] = "Вы уверены, что хотите удалить этот элемент?"; +App::$strings["Total"] = "Всего"; +App::$strings["Update %s failed. See error logs."] = ""; +App::$strings["Update Error at %s"] = "Ошибка обновления на %s"; +App::$strings["Create an account to access services and applications within the Hubzilla"] = ""; +App::$strings["Password"] = "Пароль"; +App::$strings["Remember me"] = "Запомнить"; +App::$strings["Forgot your password?"] = "Забыли пароль или логин?"; +App::$strings["permission denied"] = "доступ запрещен"; +App::$strings["Got Zot?"] = "Got Zot?"; +App::$strings["toggle mobile"] = "мобильное подключение"; From d8a396bf24588a98d9e2ce8976da0482884a6c2f Mon Sep 17 00:00:00 2001 From: harukin Date: Thu, 23 May 2019 18:08:19 +0900 Subject: [PATCH 03/18] new style translation --- util/hmessages.po | 21985 ++++++++++++++++---------------------- view/ja-bk/hmessages.po | 0 view/ja-bk/hstrings.php | 3349 ++++++ view/ja/hmessages.po | 12091 +++++++++++++++++++++ view/ja/hstrings.php | 5865 +++++----- 5 files changed, 27491 insertions(+), 15799 deletions(-) create mode 100644 view/ja-bk/hmessages.po create mode 100644 view/ja-bk/hstrings.php create mode 100644 view/ja/hmessages.po diff --git a/util/hmessages.po b/util/hmessages.po index 91cc1f191..e0cb80848 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 3.9.6\n" +"Project-Id-Version: 4.0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-19 10:11+0100\n" +"POT-Creation-Date: 2019-05-23 17:11+0900\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,3816 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: ../../boot.php:1609 +msgid "Create an account to access services and applications" +msgstr "" + +#: ../../boot.php:1610 ../../include/nav.php:160 +#: ../../Zotlabs/Module/Register.php:289 +msgid "Register" +msgstr "" + +#: ../../boot.php:1629 ../../include/nav.php:107 ../../include/nav.php:136 +#: ../../include/nav.php:155 +msgid "Logout" +msgstr "" + +#: ../../boot.php:1630 ../../include/nav.php:122 ../../include/nav.php:126 +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Login" +msgstr "" + +#: ../../boot.php:1631 ../../include/channel.php:2475 +#: ../../Zotlabs/Module/Rmagic.php:93 +msgid "Remote Authentication" +msgstr "" + +#: ../../boot.php:1633 +msgid "Login/Email" +msgstr "" + +#: ../../boot.php:1634 +msgid "Password" +msgstr "" + +#: ../../boot.php:1635 +msgid "Remember me" +msgstr "" + +#: ../../boot.php:1635 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:99 +#: ../../view/theme/redbasic/php/config.php:116 +#: ../../Zotlabs/Lib/Libzotdir.php:162 ../../Zotlabs/Lib/Libzotdir.php:163 +#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Module/Admin/Site.php:255 +#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Connedit.php:406 +#: ../../Zotlabs/Module/Connedit.php:796 ../../Zotlabs/Module/Defperms.php:197 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Filestorage.php:198 +#: ../../Zotlabs/Module/Filestorage.php:206 ../../Zotlabs/Module/Import.php:635 +#: ../../Zotlabs/Module/Import.php:639 ../../Zotlabs/Module/Import.php:640 +#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 +#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 +#: ../../Zotlabs/Module/Photos.php:712 ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings/Channel.php:309 +#: ../../Zotlabs/Module/Settings/Display.php:89 +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Wiki.php:228 +#: ../../Zotlabs/Storage/Browser.php:411 +msgid "No" +msgstr "" + +#: ../../boot.php:1635 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:99 +#: ../../view/theme/redbasic/php/config.php:116 +#: ../../Zotlabs/Lib/Libzotdir.php:162 ../../Zotlabs/Lib/Libzotdir.php:163 +#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Module/Admin/Site.php:257 +#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Connedit.php:406 +#: ../../Zotlabs/Module/Defperms.php:197 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Module/Filestorage.php:198 +#: ../../Zotlabs/Module/Filestorage.php:206 ../../Zotlabs/Module/Import.php:635 +#: ../../Zotlabs/Module/Import.php:639 ../../Zotlabs/Module/Import.php:640 +#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 +#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 +#: ../../Zotlabs/Module/Photos.php:712 ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings/Channel.php:309 +#: ../../Zotlabs/Module/Settings/Display.php:89 +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Wiki.php:228 +#: ../../Zotlabs/Storage/Browser.php:411 +msgid "Yes" +msgstr "" + +#: ../../boot.php:1638 +msgid "Forgot your password?" +msgstr "" + +#: ../../boot.php:1639 ../../Zotlabs/Module/Lostpass.php:91 +msgid "Password Reset" +msgstr "" + +#: ../../boot.php:2434 +#, php-format +msgid "[$Projectname] Website SSL error for %s" +msgstr "" + +#: ../../boot.php:2439 +msgid "Website SSL certificate is not valid. Please correct." +msgstr "" + +#: ../../boot.php:2555 +#, php-format +msgid "[$Projectname] Cron tasks not running on %s" +msgstr "" + +#: ../../boot.php:2560 +msgid "Cron/Scheduled tasks not running." +msgstr "" + +#: ../../boot.php:2561 ../../include/datetime.php:238 +msgid "never" +msgstr "" + +#: ../../include/account.php:36 +msgid "Not a valid email address" +msgstr "" + +#: ../../include/account.php:38 +msgid "Your email domain is not among those allowed on this site" +msgstr "" + +#: ../../include/account.php:44 +msgid "Your email address is already registered at this site." +msgstr "" + +#: ../../include/account.php:76 +msgid "An invitation is required." +msgstr "" + +#: ../../include/account.php:80 +msgid "Invitation could not be verified." +msgstr "" + +#: ../../include/account.php:156 +msgid "Please enter the required information." +msgstr "" + +#: ../../include/account.php:223 +msgid "Failed to store account information." +msgstr "" + +#: ../../include/account.php:311 +#, php-format +msgid "Registration confirmation for %s" +msgstr "" + +#: ../../include/account.php:380 +#, php-format +msgid "Registration request at %s" +msgstr "" + +#: ../../include/account.php:402 +msgid "your registration password" +msgstr "" + +#: ../../include/account.php:408 ../../include/account.php:471 +#, php-format +msgid "Registration details for %s" +msgstr "" + +#: ../../include/account.php:482 +msgid "Account approved." +msgstr "" + +#: ../../include/account.php:522 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: ../../include/account.php:803 ../../include/account.php:805 +msgid "Click here to upgrade." +msgstr "" + +#: ../../include/account.php:811 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/account.php:816 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../include/acl_selectors.php:33 +#: ../../Zotlabs/Lib/PermissionDescription.php:34 +msgid "Visible to your default audience" +msgstr "" + +#: ../../include/acl_selectors.php:88 ../../Zotlabs/Module/Acl.php:121 +#: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 +msgctxt "acl" +msgid "Profile" +msgstr "" + +#: ../../include/acl_selectors.php:106 +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Only me" +msgstr "" + +#: ../../include/acl_selectors.php:113 +msgid "Who can see this?" +msgstr "" + +#: ../../include/acl_selectors.php:114 +msgid "Custom selection" +msgstr "" + +#: ../../include/acl_selectors.php:115 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " +"the scope of \"Show\"." +msgstr "" + +#: ../../include/acl_selectors.php:116 +msgid "Show" +msgstr "" + +#: ../../include/acl_selectors.php:117 +msgid "Don't show" +msgstr "" + +#: ../../include/acl_selectors.php:118 ../../include/nav.php:186 +#: ../../include/text.php:1084 ../../include/text.php:1096 +#: ../../Zotlabs/Lib/Apps.php:352 ../../Zotlabs/Module/Connections.php:352 +#: ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Widget/Activity_filter.php:151 +#: ../../Zotlabs/Widget/Sitesearch.php:31 +msgid "Search" +msgstr "" + +#: ../../include/acl_selectors.php:123 ../../Zotlabs/Module/Chat.php:243 +#: ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Filestorage.php:190 ../../Zotlabs/Module/Photos.php:717 +#: ../../Zotlabs/Module/Photos.php:1086 ../../Zotlabs/Module/Thing.php:319 +#: ../../Zotlabs/Module/Thing.php:372 +msgid "Permissions" +msgstr "" + +#: ../../include/acl_selectors.php:125 ../../Zotlabs/Lib/ThreadItem.php:463 +#: ../../Zotlabs/Module/Photos.php:1316 +msgid "Close" +msgstr "" + +#: ../../include/acl_selectors.php:150 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These " +"permissions set who is allowed to view the post." +msgstr "" + +#: ../../include/activities.php:42 +msgid " and " +msgstr "" + +#: ../../include/activities.php:50 +msgid "public profile" +msgstr "" + +#: ../../include/activities.php:59 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: ../../include/activities.php:60 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "" + +#: ../../include/activities.php:63 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: ../../include/attach.php:150 ../../include/attach.php:199 +#: ../../include/attach.php:272 ../../include/attach.php:380 +#: ../../include/attach.php:394 ../../include/attach.php:401 +#: ../../include/attach.php:483 ../../include/attach.php:1043 +#: ../../include/attach.php:1117 ../../include/attach.php:1280 +#: ../../include/items.php:3801 ../../include/photos.php:27 +#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Appman.php:87 +#: ../../Zotlabs/Module/Articles.php:88 +#: ../../Zotlabs/Module/Article_edit.php:51 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:24 +#: ../../Zotlabs/Module/Block.php:74 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Bookmarks.php:70 +#: ../../Zotlabs/Module/Cards.php:86 ../../Zotlabs/Module/Channel.php:168 +#: ../../Zotlabs/Module/Channel.php:335 ../../Zotlabs/Module/Channel.php:374 +#: ../../Zotlabs/Module/Chat.php:115 ../../Zotlabs/Module/Chat.php:120 +#: ../../Zotlabs/Module/Cloud.php:40 ../../Zotlabs/Module/Common.php:38 +#: ../../Zotlabs/Module/Connections.php:32 +#: ../../Zotlabs/Module/Connedit.php:399 +#: ../../Zotlabs/Module/Cover_photo.php:338 +#: ../../Zotlabs/Module/Cover_photo.php:351 +#: ../../Zotlabs/Module/Defperms.php:181 ../../Zotlabs/Module/Display.php:451 +#: ../../Zotlabs/Module/Editblock.php:67 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:107 +#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Events.php:271 +#: ../../Zotlabs/Module/Filestorage.php:17 +#: ../../Zotlabs/Module/Filestorage.php:72 +#: ../../Zotlabs/Module/Filestorage.php:90 +#: ../../Zotlabs/Module/Filestorage.php:113 +#: ../../Zotlabs/Module/Filestorage.php:160 ../../Zotlabs/Module/Group.php:14 +#: ../../Zotlabs/Module/Group.php:30 ../../Zotlabs/Module/Invite.php:21 +#: ../../Zotlabs/Module/Invite.php:102 ../../Zotlabs/Module/Item.php:397 +#: ../../Zotlabs/Module/Item.php:416 ../../Zotlabs/Module/Item.php:426 +#: ../../Zotlabs/Module/Item.php:1302 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Like.php:187 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mail.php:146 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Menu.php:129 ../../Zotlabs/Module/Menu.php:140 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mitem.php:129 +#: ../../Zotlabs/Module/Moderate.php:13 ../../Zotlabs/Module/Mood.php:126 +#: ../../Zotlabs/Module/Network.php:19 ../../Zotlabs/Module/New_channel.php:105 +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Notifications.php:11 +#: ../../Zotlabs/Module/Card_edit.php:51 ../../Zotlabs/Module/Regmod.php:20 +#: ../../Zotlabs/Module/Page.php:34 ../../Zotlabs/Module/Page.php:133 +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Photos.php:69 +#: ../../Zotlabs/Module/Poke.php:157 ../../Zotlabs/Module/Profile.php:85 +#: ../../Zotlabs/Module/Profile.php:101 ../../Zotlabs/Module/Profiles.php:198 +#: ../../Zotlabs/Module/Profiles.php:635 +#: ../../Zotlabs/Module/Profile_photo.php:302 +#: ../../Zotlabs/Module/Profile_photo.php:315 ../../Zotlabs/Module/Rate.php:113 +#: ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Service_limits.php:11 +#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Setup.php:206 +#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Sources.php:80 +#: ../../Zotlabs/Module/Suggest.php:32 ../../Zotlabs/Module/Thing.php:280 +#: ../../Zotlabs/Module/Thing.php:300 ../../Zotlabs/Module/Thing.php:341 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Webpages.php:133 +#: ../../Zotlabs/Module/Wiki.php:59 ../../Zotlabs/Module/Wiki.php:285 +#: ../../Zotlabs/Module/Wiki.php:428 ../../Zotlabs/Web/WebServer.php:123 +msgid "Permission denied." +msgstr "" + +#: ../../include/attach.php:267 ../../include/attach.php:375 +msgid "Item was not found." +msgstr "" + +#: ../../include/attach.php:284 +msgid "Unknown error." +msgstr "" + +#: ../../include/attach.php:568 +msgid "No source file." +msgstr "" + +#: ../../include/attach.php:590 +msgid "Cannot locate file to replace" +msgstr "" + +#: ../../include/attach.php:609 +msgid "Cannot locate file to revise/update" +msgstr "" + +#: ../../include/attach.php:751 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "" + +#: ../../include/attach.php:772 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "" + +#: ../../include/attach.php:954 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "" + +#: ../../include/attach.php:983 +msgid "Stored file could not be verified. Upload failed." +msgstr "" + +#: ../../include/attach.php:1057 ../../include/attach.php:1073 +msgid "Path not available." +msgstr "" + +#: ../../include/attach.php:1122 ../../include/attach.php:1285 +msgid "Empty pathname" +msgstr "" + +#: ../../include/attach.php:1148 +msgid "duplicate filename or path" +msgstr "" + +#: ../../include/attach.php:1173 +msgid "Path not found." +msgstr "" + +#: ../../include/attach.php:1241 +msgid "mkdir failed." +msgstr "" + +#: ../../include/attach.php:1245 +msgid "database storage failed." +msgstr "" + +#: ../../include/attach.php:1291 +msgid "Empty path" +msgstr "" + +#: ../../include/auth.php:192 +msgid "Delegation session ended." +msgstr "" + +#: ../../include/auth.php:196 +msgid "Logged out." +msgstr "" + +#: ../../include/auth.php:291 +msgid "Email validation is incomplete. Please check your email." +msgstr "" + +#: ../../include/auth.php:307 +msgid "Failed authentication" +msgstr "" + +#: ../../include/auth.php:317 +msgid "Login failed." +msgstr "" + +#: ../../include/bbcode.php:220 ../../include/bbcode.php:1210 +#: ../../include/bbcode.php:1213 ../../include/bbcode.php:1218 +#: ../../include/bbcode.php:1221 ../../include/bbcode.php:1224 +#: ../../include/bbcode.php:1227 ../../include/bbcode.php:1232 +#: ../../include/bbcode.php:1235 ../../include/bbcode.php:1240 +#: ../../include/bbcode.php:1243 ../../include/bbcode.php:1246 +#: ../../include/bbcode.php:1249 +msgid "Image/photo" +msgstr "" + +#: ../../include/bbcode.php:259 ../../include/bbcode.php:1260 +msgid "Encrypted content" +msgstr "" + +#: ../../include/bbcode.php:275 +#, php-format +msgid "Install %1$s element %2$s" +msgstr "" + +#: ../../include/bbcode.php:279 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "" + +#: ../../include/bbcode.php:289 ../../Zotlabs/Module/Impel.php:43 +msgid "webpage" +msgstr "" + +#: ../../include/bbcode.php:292 ../../Zotlabs/Module/Impel.php:53 +msgid "layout" +msgstr "" + +#: ../../include/bbcode.php:295 ../../Zotlabs/Module/Impel.php:48 +msgid "block" +msgstr "" + +#: ../../include/bbcode.php:298 ../../Zotlabs/Module/Impel.php:60 +msgid "menu" +msgstr "" + +#: ../../include/bbcode.php:359 +msgid "card" +msgstr "" + +#: ../../include/bbcode.php:361 +msgid "article" +msgstr "" + +#: ../../include/bbcode.php:363 ../../include/markdown.php:200 +#: ../../Zotlabs/Module/Tagger.php:77 +msgid "post" +msgstr "" + +#: ../../include/bbcode.php:367 ../../include/markdown.php:198 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "" + +#: ../../include/bbcode.php:444 ../../include/bbcode.php:452 +msgid "Click to open/close" +msgstr "" + +#: ../../include/bbcode.php:452 +msgid "spoiler" +msgstr "" + +#: ../../include/bbcode.php:465 +msgid "View article" +msgstr "" + +#: ../../include/bbcode.php:465 +msgid "View summary" +msgstr "" + +#: ../../include/bbcode.php:755 ../../include/bbcode.php:925 +#: ../../Zotlabs/Lib/NativeWikiPage.php:603 +msgid "Different viewers will see this text differently" +msgstr "" + +#: ../../include/bbcode.php:1198 +msgid "$1 wrote:" +msgstr "" + +#: ../../include/bookmarks.php:34 +#, php-format +msgid "%1$s's bookmarks" +msgstr "" + +#: ../../include/channel.php:43 +msgid "Unable to obtain identity information from database" +msgstr "" + +#: ../../include/channel.php:76 +msgid "Empty name" +msgstr "" + +#: ../../include/channel.php:79 +msgid "Name too long" +msgstr "" + +#: ../../include/channel.php:196 +msgid "No account identifier" +msgstr "" + +#: ../../include/channel.php:208 +msgid "Nickname is required." +msgstr "" + +#: ../../include/channel.php:222 ../../include/channel.php:655 +#: ../../Zotlabs/Module/Changeaddr.php:46 +msgid "Reserved nickname. Please choose another." +msgstr "" + +#: ../../include/channel.php:227 ../../include/channel.php:660 +#: ../../Zotlabs/Module/Changeaddr.php:51 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "" + +#: ../../include/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "" + +#: ../../include/channel.php:429 +msgid "Default Profile" +msgstr "" + +#: ../../include/channel.php:493 ../../include/channel.php:494 +#: ../../include/channel.php:501 ../../include/selectors.php:134 +#: ../../Zotlabs/Module/Connedit.php:725 +#: ../../Zotlabs/Module/Settings/Channel.php:70 +#: ../../Zotlabs/Module/Settings/Channel.php:74 +#: ../../Zotlabs/Module/Settings/Channel.php:75 +#: ../../Zotlabs/Module/Settings/Channel.php:78 +#: ../../Zotlabs/Module/Settings/Channel.php:89 +#: ../../Zotlabs/Widget/Affinity.php:32 +msgid "Friends" +msgstr "" + +#: ../../include/channel.php:588 ../../include/channel.php:677 +msgid "Unable to retrieve modified identity" +msgstr "" + +#: ../../include/channel.php:1273 +msgid "Requested channel is not available." +msgstr "" + +#: ../../include/channel.php:1319 ../../Zotlabs/Module/Achievements.php:15 +#: ../../Zotlabs/Module/Articles.php:42 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Connect.php:17 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 +#: ../../Zotlabs/Module/Filestorage.php:53 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Menu.php:91 +#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Webpages.php:39 +msgid "Requested profile is not available." +msgstr "" + +#: ../../include/channel.php:1411 ../../Zotlabs/Module/Profiles.php:728 +msgid "Change profile photo" +msgstr "" + +#: ../../include/channel.php:1418 ../../include/nav.php:113 +#: ../../Zotlabs/Module/Profiles.php:830 +msgid "Edit Profiles" +msgstr "" + +#: ../../include/channel.php:1418 ../../include/channel.php:1422 +#: ../../include/menu.php:118 ../../Zotlabs/Lib/Apps.php:558 +#: ../../Zotlabs/Lib/ThreadItem.php:147 +#: ../../Zotlabs/Module/Admin/Profs.php:175 +#: ../../Zotlabs/Module/Article_edit.php:99 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Connections.php:298 +#: ../../Zotlabs/Module/Connections.php:336 +#: ../../Zotlabs/Module/Connections.php:356 +#: ../../Zotlabs/Module/Editblock.php:114 +#: ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Editwebpage.php:142 ../../Zotlabs/Module/Group.php:252 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Menu.php:175 +#: ../../Zotlabs/Module/Oauth.php:173 ../../Zotlabs/Module/Oauth2.php:194 +#: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Module/Thing.php:266 +#: ../../Zotlabs/Module/Webpages.php:255 ../../Zotlabs/Module/Wiki.php:211 +#: ../../Zotlabs/Module/Wiki.php:384 ../../Zotlabs/Storage/Browser.php:296 +#: ../../Zotlabs/Widget/Cdav.php:126 ../../Zotlabs/Widget/Cdav.php:162 +msgid "Edit" +msgstr "" + +#: ../../include/channel.php:1419 +msgid "Create New Profile" +msgstr "" + +#: ../../include/channel.php:1422 ../../include/nav.php:115 +msgid "Edit Profile" +msgstr "" + +#: ../../include/channel.php:1437 ../../Zotlabs/Module/Profiles.php:820 +msgid "Profile Image" +msgstr "" + +#: ../../include/channel.php:1440 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/channel.php:1441 ../../Zotlabs/Module/Profiles.php:725 +#: ../../Zotlabs/Module/Profiles.php:824 +msgid "Edit visibility" +msgstr "" + +#: ../../include/channel.php:1498 ../../include/connections.php:110 +#: ../../include/conversation.php:1058 ../../Zotlabs/Module/Directory.php:342 +#: ../../Zotlabs/Module/Suggest.php:71 ../../Zotlabs/Widget/Follow.php:32 +#: ../../Zotlabs/Widget/Suggestions.php:46 +msgid "Connect" +msgstr "" + +#: ../../include/channel.php:1513 ../../include/event.php:61 +#: ../../include/event.php:93 ../../Zotlabs/Module/Directory.php:328 +msgid "Location:" +msgstr "" + +#: ../../include/channel.php:1517 ../../include/channel.php:1645 +msgid "Gender:" +msgstr "" + +#: ../../include/channel.php:1518 ../../include/channel.php:1689 +msgid "Status:" +msgstr "" + +#: ../../include/channel.php:1519 ../../include/channel.php:1713 +msgid "Homepage:" +msgstr "" + +#: ../../include/channel.php:1520 +msgid "Online Now" +msgstr "" + +#: ../../include/channel.php:1573 +msgid "Change your profile photo" +msgstr "" + +#: ../../include/channel.php:1600 ../../include/selectors.php:60 +#: ../../include/selectors.php:77 +msgid "Female" +msgstr "" + +#: ../../include/channel.php:1602 ../../include/selectors.php:60 +#: ../../include/selectors.php:77 +msgid "Male" +msgstr "" + +#: ../../include/channel.php:1604 +msgid "Trans" +msgstr "" + +#: ../../include/channel.php:1606 ../../include/selectors.php:60 +msgid "Neuter" +msgstr "" + +#: ../../include/channel.php:1608 ../../include/selectors.php:60 +msgid "Non-specific" +msgstr "" + +#: ../../include/channel.php:1643 ../../Zotlabs/Module/Settings/Channel.php:499 +msgid "Full Name:" +msgstr "" + +#: ../../include/channel.php:1650 +msgid "Like this channel" +msgstr "" + +#: ../../include/channel.php:1661 ../../include/conversation.php:1702 +#: ../../include/taxonomy.php:659 ../../Zotlabs/Lib/ThreadItem.php:235 +#: ../../Zotlabs/Module/Photos.php:1177 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/channel.php:1674 +msgid "j F, Y" +msgstr "" + +#: ../../include/channel.php:1675 +msgid "j F" +msgstr "" + +#: ../../include/channel.php:1682 +msgid "Birthday:" +msgstr "" + +#: ../../include/channel.php:1686 ../../Zotlabs/Module/Directory.php:323 +msgid "Age:" +msgstr "" + +#: ../../include/channel.php:1695 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: ../../include/channel.php:1707 +msgid "Tags:" +msgstr "" + +#: ../../include/channel.php:1711 +msgid "Sexual Preference:" +msgstr "" + +#: ../../include/channel.php:1715 ../../Zotlabs/Module/Directory.php:339 +msgid "Hometown:" +msgstr "" + +#: ../../include/channel.php:1717 +msgid "Political Views:" +msgstr "" + +#: ../../include/channel.php:1719 +msgid "Religion:" +msgstr "" + +#: ../../include/channel.php:1721 ../../Zotlabs/Module/Directory.php:341 +msgid "About:" +msgstr "" + +#: ../../include/channel.php:1723 +msgid "Hobbies/Interests:" +msgstr "" + +#: ../../include/channel.php:1725 +msgid "Likes:" +msgstr "" + +#: ../../include/channel.php:1727 +msgid "Dislikes:" +msgstr "" + +#: ../../include/channel.php:1729 +msgid "Contact information and Social Networks:" +msgstr "" + +#: ../../include/channel.php:1731 +msgid "My other channels:" +msgstr "" + +#: ../../include/channel.php:1733 +msgid "Musical interests:" +msgstr "" + +#: ../../include/channel.php:1735 +msgid "Books, literature:" +msgstr "" + +#: ../../include/channel.php:1737 +msgid "Television:" +msgstr "" + +#: ../../include/channel.php:1739 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: ../../include/channel.php:1741 +msgid "Love/Romance:" +msgstr "" + +#: ../../include/channel.php:1743 +msgid "Work/employment:" +msgstr "" + +#: ../../include/channel.php:1745 +msgid "School/education:" +msgstr "" + +#: ../../include/channel.php:1766 ../../Zotlabs/Lib/Apps.php:361 +#: ../../Zotlabs/Module/Profperm.php:113 +msgid "Profile" +msgstr "" + +#: ../../include/channel.php:1768 +msgid "Like this thing" +msgstr "" + +#: ../../include/channel.php:1769 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Events.php:692 +msgid "Export" +msgstr "" + +#: ../../include/channel.php:2207 ../../Zotlabs/Module/Cover_photo.php:301 +msgid "cover photo" +msgstr "" + +#: ../../include/channel.php:2476 ../../Zotlabs/Module/Rmagic.php:94 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "" + +#: ../../include/channel.php:2477 ../../Zotlabs/Module/Rmagic.php:95 +msgid "Authenticate" +msgstr "" + +#: ../../include/channel.php:2632 ../../Zotlabs/Module/Admin/Accounts.php:91 +#, php-format +msgid "Account '%s' deleted" +msgstr "" + +#: ../../include/connections.php:133 +msgid "New window" +msgstr "" + +#: ../../include/connections.php:134 +msgid "Open the selected location in a different window or browser tab" +msgstr "" + +#: ../../include/connections.php:696 ../../include/event.php:1325 +#: ../../Zotlabs/Module/Cdav.php:1251 ../../Zotlabs/Module/Connedit.php:932 +#: ../../Zotlabs/Module/Profiles.php:792 +msgid "Mobile" +msgstr "" + +#: ../../include/connections.php:697 ../../include/event.php:1326 +#: ../../Zotlabs/Module/Cdav.php:1252 ../../Zotlabs/Module/Connedit.php:933 +#: ../../Zotlabs/Module/Profiles.php:793 +msgid "Home" +msgstr "" + +#: ../../include/connections.php:698 ../../include/event.php:1327 +msgid "Home, Voice" +msgstr "" + +#: ../../include/connections.php:699 ../../include/event.php:1328 +msgid "Home, Fax" +msgstr "" + +#: ../../include/connections.php:700 ../../include/event.php:1329 +#: ../../Zotlabs/Module/Cdav.php:1253 ../../Zotlabs/Module/Connedit.php:934 +#: ../../Zotlabs/Module/Profiles.php:794 +msgid "Work" +msgstr "" + +#: ../../include/connections.php:701 ../../include/event.php:1330 +msgid "Work, Voice" +msgstr "" + +#: ../../include/connections.php:702 ../../include/event.php:1331 +msgid "Work, Fax" +msgstr "" + +#: ../../include/connections.php:703 ../../include/connections.php:710 +#: ../../include/event.php:1332 ../../include/event.php:1339 +#: ../../include/selectors.php:60 ../../include/selectors.php:77 +#: ../../include/selectors.php:115 ../../include/selectors.php:151 +#: ../../Zotlabs/Access/PermissionRoles.php:306 +#: ../../Zotlabs/Module/Cdav.php:1254 ../../Zotlabs/Module/Connedit.php:935 +#: ../../Zotlabs/Module/Profiles.php:795 +msgid "Other" +msgstr "" + +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:16 ../../Zotlabs/Module/Admin/Site.php:293 +msgid "Advanced" +msgstr "" + +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: ../../include/contact_widgets.php:23 +#: ../../Zotlabs/Module/Connections.php:355 +#: ../../Zotlabs/Module/Directory.php:405 +#: ../../Zotlabs/Module/Directory.php:410 +msgid "Find" +msgstr "" + +#: ../../include/contact_widgets.php:24 ../../Zotlabs/Module/Directory.php:409 +#: ../../Zotlabs/Module/Suggest.php:79 +msgid "Channel Suggestions" +msgstr "" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "" + +#: ../../include/contact_widgets.php:53 ../../include/features.php:325 +#: ../../Zotlabs/Widget/Activity_filter.php:137 +#: ../../Zotlabs/Widget/Filer.php:28 +msgid "Saved Folders" +msgstr "" + +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:99 +#: ../../include/contact_widgets.php:142 ../../include/contact_widgets.php:187 +#: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 +msgid "Everything" +msgstr "" + +#: ../../include/contact_widgets.php:96 ../../include/contact_widgets.php:139 +#: ../../include/contact_widgets.php:184 ../../include/taxonomy.php:409 +#: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511 +#: ../../include/taxonomy.php:532 ../../Zotlabs/Widget/Appcategories.php:43 +msgid "Categories" +msgstr "" + +#: ../../include/contact_widgets.php:218 +msgid "Common Connections" +msgstr "" + +#: ../../include/contact_widgets.php:222 +#, php-format +msgid "View all %d common connections" +msgstr "" + +#: ../../include/conversation.php:116 ../../include/text.php:2104 +#: ../../Zotlabs/Lib/Activity.php:2002 ../../Zotlabs/Module/Like.php:392 +#: ../../Zotlabs/Module/Subthread.php:112 ../../Zotlabs/Module/Tagger.php:69 +msgid "photo" +msgstr "" + +#: ../../include/conversation.php:119 ../../include/event.php:1169 +#: ../../include/text.php:2107 ../../Zotlabs/Module/Events.php:260 +#: ../../Zotlabs/Module/Like.php:394 ../../Zotlabs/Module/Tagger.php:73 +msgid "event" +msgstr "" + +#: ../../include/conversation.php:122 ../../Zotlabs/Module/Like.php:123 +msgid "channel" +msgstr "" + +#: ../../include/conversation.php:144 ../../include/text.php:2110 +#: ../../Zotlabs/Lib/Activity.php:2002 ../../Zotlabs/Module/Like.php:392 +#: ../../Zotlabs/Module/Subthread.php:112 +msgid "status" +msgstr "" + +#: ../../include/conversation.php:146 ../../include/text.php:2112 +#: ../../Zotlabs/Module/Tagger.php:79 +msgid "comment" +msgstr "" + +#: ../../include/conversation.php:160 ../../Zotlabs/Lib/Activity.php:2037 +#: ../../Zotlabs/Module/Like.php:447 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: ../../include/conversation.php:163 ../../Zotlabs/Lib/Activity.php:2039 +#: ../../Zotlabs/Module/Like.php:449 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + +#: ../../include/conversation.php:169 +#, php-format +msgid "likes %1$s's %2$s" +msgstr "" + +#: ../../include/conversation.php:172 +#, php-format +msgid "doesn't like %1$s's %2$s" +msgstr "" + +#: ../../include/conversation.php:212 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "" + +#: ../../include/conversation.php:247 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:251 ../../include/text.php:1176 +#: ../../include/text.php:1180 +msgid "poked" +msgstr "" + +#: ../../include/conversation.php:268 ../../Zotlabs/Module/Mood.php:76 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "" + +#: ../../include/conversation.php:483 ../../Zotlabs/Lib/ThreadItem.php:468 +msgid "This is an unsaved preview" +msgstr "" + +#: ../../include/conversation.php:619 ../../Zotlabs/Module/Photos.php:1154 +msgctxt "title" +msgid "Likes" +msgstr "" + +#: ../../include/conversation.php:619 ../../Zotlabs/Module/Photos.php:1154 +msgctxt "title" +msgid "Dislikes" +msgstr "" + +#: ../../include/conversation.php:620 ../../Zotlabs/Module/Photos.php:1155 +msgctxt "title" +msgid "Agree" +msgstr "" + +#: ../../include/conversation.php:620 ../../Zotlabs/Module/Photos.php:1155 +msgctxt "title" +msgid "Disagree" +msgstr "" + +#: ../../include/conversation.php:620 ../../Zotlabs/Module/Photos.php:1155 +msgctxt "title" +msgid "Abstain" +msgstr "" + +#: ../../include/conversation.php:621 ../../Zotlabs/Module/Photos.php:1156 +msgctxt "title" +msgid "Attending" +msgstr "" + +#: ../../include/conversation.php:621 ../../Zotlabs/Module/Photos.php:1156 +msgctxt "title" +msgid "Not attending" +msgstr "" + +#: ../../include/conversation.php:621 ../../Zotlabs/Module/Photos.php:1156 +msgctxt "title" +msgid "Might attend" +msgstr "" + +#: ../../include/conversation.php:690 ../../Zotlabs/Lib/ThreadItem.php:177 +msgid "Select" +msgstr "" + +#: ../../include/conversation.php:691 ../../include/conversation.php:736 +#: ../../Zotlabs/Lib/Apps.php:559 ../../Zotlabs/Lib/ThreadItem.php:167 +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Profs.php:176 +#: ../../Zotlabs/Module/Article_edit.php:129 +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Cdav.php:966 +#: ../../Zotlabs/Module/Cdav.php:1259 ../../Zotlabs/Module/Connections.php:306 +#: ../../Zotlabs/Module/Connedit.php:668 ../../Zotlabs/Module/Connedit.php:940 +#: ../../Zotlabs/Module/Editblock.php:139 +#: ../../Zotlabs/Module/Editlayout.php:138 +#: ../../Zotlabs/Module/Editwebpage.php:167 ../../Zotlabs/Module/Oauth.php:174 +#: ../../Zotlabs/Module/Oauth2.php:195 ../../Zotlabs/Module/Card_edit.php:129 +#: ../../Zotlabs/Module/Photos.php:1220 ../../Zotlabs/Module/Profiles.php:800 +#: ../../Zotlabs/Module/Thing.php:267 ../../Zotlabs/Module/Webpages.php:257 +#: ../../Zotlabs/Storage/Browser.php:297 +msgid "Delete" +msgstr "" + +#: ../../include/conversation.php:695 ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "Toggle Star Status" +msgstr "" + +#: ../../include/conversation.php:700 ../../Zotlabs/Lib/ThreadItem.php:102 +msgid "Private Message" +msgstr "" + +#: ../../include/conversation.php:707 ../../Zotlabs/Lib/ThreadItem.php:277 +msgid "Message signature validated" +msgstr "" + +#: ../../include/conversation.php:708 ../../Zotlabs/Lib/ThreadItem.php:278 +msgid "Message signature incorrect" +msgstr "" + +#: ../../include/conversation.php:735 +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Connections.php:320 +msgid "Approve" +msgstr "" + +#: ../../include/conversation.php:739 +#, php-format +msgid "View %s's profile @ %s" +msgstr "" + +#: ../../include/conversation.php:759 +msgid "Categories:" +msgstr "" + +#: ../../include/conversation.php:760 +msgid "Filed under:" +msgstr "" + +#: ../../include/conversation.php:766 ../../Zotlabs/Lib/ThreadItem.php:402 +#, php-format +msgid "from %s" +msgstr "" + +#: ../../include/conversation.php:769 ../../Zotlabs/Lib/ThreadItem.php:405 +#, php-format +msgid "last edited: %s" +msgstr "" + +#: ../../include/conversation.php:770 ../../Zotlabs/Lib/ThreadItem.php:406 +#, php-format +msgid "Expires: %s" +msgstr "" + +#: ../../include/conversation.php:785 +msgid "View in context" +msgstr "" + +#: ../../include/conversation.php:787 ../../Zotlabs/Lib/ThreadItem.php:469 +#: ../../Zotlabs/Module/Photos.php:1118 +msgid "Please wait" +msgstr "" + +#: ../../include/conversation.php:886 +msgid "remove" +msgstr "" + +#: ../../include/conversation.php:890 +msgid "Loading..." +msgstr "" + +#: ../../include/conversation.php:891 ../../Zotlabs/Lib/ThreadItem.php:290 +msgid "Conversation Tools" +msgstr "" + +#: ../../include/conversation.php:892 +msgid "Delete Selected Items" +msgstr "" + +#: ../../include/conversation.php:935 +msgid "View Source" +msgstr "" + +#: ../../include/conversation.php:945 +msgid "Follow Thread" +msgstr "" + +#: ../../include/conversation.php:954 +msgid "Unfollow Thread" +msgstr "" + +#: ../../include/conversation.php:1038 ../../include/nav.php:110 +#: ../../Zotlabs/Lib/Apps.php:343 ../../Zotlabs/Module/Connedit.php:608 +msgid "View Profile" +msgstr "" + +#: ../../include/conversation.php:1048 ../../Zotlabs/Module/Connedit.php:629 +msgid "Recent Activity" +msgstr "" + +#: ../../include/conversation.php:1068 +msgid "Edit Connection" +msgstr "" + +#: ../../include/conversation.php:1078 +msgid "Message" +msgstr "" + +#: ../../include/conversation.php:1088 ../../Zotlabs/Module/Pubsites.php:35 +#: ../../Zotlabs/Module/Ratings.php:97 +msgid "Ratings" +msgstr "" + +#: ../../include/conversation.php:1098 ../../Zotlabs/Lib/Apps.php:350 +#: ../../Zotlabs/Module/Poke.php:199 +msgid "Poke" +msgstr "" + +#: ../../include/conversation.php:1166 ../../Zotlabs/Lib/Activity.php:1053 +#: ../../Zotlabs/Lib/Apps.php:1115 ../../Zotlabs/Lib/Apps.php:1199 +#: ../../Zotlabs/Module/Cdav.php:826 ../../Zotlabs/Module/Cdav.php:827 +#: ../../Zotlabs/Module/Cdav.php:834 ../../Zotlabs/Module/Embedphotos.php:154 +#: ../../Zotlabs/Module/Photos.php:832 ../../Zotlabs/Module/Photos.php:1296 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Album.php:84 +#: ../../Zotlabs/Widget/Portfolio.php:95 +msgid "Unknown" +msgstr "" + +#: ../../include/conversation.php:1212 +#, php-format +msgid "%s likes this." +msgstr "" + +#: ../../include/conversation.php:1212 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: ../../include/conversation.php:1216 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1218 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1224 +msgid "and" +msgstr "" + +#: ../../include/conversation.php:1227 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1228 +#, php-format +msgid "%s like this." +msgstr "" + +#: ../../include/conversation.php:1228 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: ../../include/conversation.php:1285 +msgid "Set your location" +msgstr "" + +#: ../../include/conversation.php:1286 +msgid "Clear browser location" +msgstr "" + +#: ../../include/conversation.php:1298 +#: ../../Zotlabs/Module/Article_edit.php:101 ../../Zotlabs/Module/Chat.php:222 +#: ../../Zotlabs/Module/Editblock.php:116 +#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 +#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 +msgid "Insert web link" +msgstr "" + +#: ../../include/conversation.php:1302 +msgid "Embed (existing) photo from your photo albums" +msgstr "" + +#: ../../include/conversation.php:1337 ../../Zotlabs/Module/Chat.php:220 +#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Mail.php:362 +msgid "Please enter a link URL:" +msgstr "" + +#: ../../include/conversation.php:1338 +msgid "Tag term:" +msgstr "" + +#: ../../include/conversation.php:1339 +msgid "Where are you right now?" +msgstr "" + +#: ../../include/conversation.php:1342 ../../Zotlabs/Module/Cover_photo.php:427 +#: ../../Zotlabs/Module/Profile_photo.php:467 ../../Zotlabs/Module/Wiki.php:403 +msgid "Choose images to embed" +msgstr "" + +#: ../../include/conversation.php:1343 ../../Zotlabs/Module/Cover_photo.php:428 +#: ../../Zotlabs/Module/Profile_photo.php:468 ../../Zotlabs/Module/Wiki.php:404 +msgid "Choose an album" +msgstr "" + +#: ../../include/conversation.php:1344 +msgid "Choose a different album..." +msgstr "" + +#: ../../include/conversation.php:1345 ../../Zotlabs/Module/Cover_photo.php:430 +#: ../../Zotlabs/Module/Profile_photo.php:470 ../../Zotlabs/Module/Wiki.php:406 +msgid "Error getting album list" +msgstr "" + +#: ../../include/conversation.php:1346 ../../Zotlabs/Module/Cover_photo.php:431 +#: ../../Zotlabs/Module/Profile_photo.php:471 ../../Zotlabs/Module/Wiki.php:407 +msgid "Error getting photo link" +msgstr "" + +#: ../../include/conversation.php:1347 ../../Zotlabs/Module/Cover_photo.php:432 +#: ../../Zotlabs/Module/Profile_photo.php:472 ../../Zotlabs/Module/Wiki.php:408 +msgid "Error getting album" +msgstr "" + +#: ../../include/conversation.php:1348 +msgid "Comments enabled" +msgstr "" + +#: ../../include/conversation.php:1349 +msgid "Comments disabled" +msgstr "" + +#: ../../include/conversation.php:1359 ../../Zotlabs/Lib/ThreadItem.php:805 +#: ../../Zotlabs/Module/Events.php:480 ../../Zotlabs/Module/Photos.php:1139 +#: ../../Zotlabs/Module/Webpages.php:262 +msgid "Preview" +msgstr "" + +#: ../../include/conversation.php:1392 ../../Zotlabs/Module/Blocks.php:161 +#: ../../Zotlabs/Module/Layouts.php:194 ../../Zotlabs/Module/Photos.php:1117 +#: ../../Zotlabs/Module/Webpages.php:256 ../../Zotlabs/Module/Wiki.php:301 +#: ../../Zotlabs/Widget/Cdav.php:124 +msgid "Share" +msgstr "" + +#: ../../include/conversation.php:1401 +msgid "Page link name" +msgstr "" + +#: ../../include/conversation.php:1404 +msgid "Post as" +msgstr "" + +#: ../../include/conversation.php:1406 ../../Zotlabs/Lib/ThreadItem.php:796 +msgid "Bold" +msgstr "" + +#: ../../include/conversation.php:1407 ../../Zotlabs/Lib/ThreadItem.php:797 +msgid "Italic" +msgstr "" + +#: ../../include/conversation.php:1408 ../../Zotlabs/Lib/ThreadItem.php:798 +msgid "Underline" +msgstr "" + +#: ../../include/conversation.php:1409 ../../Zotlabs/Lib/ThreadItem.php:799 +msgid "Quote" +msgstr "" + +#: ../../include/conversation.php:1410 ../../Zotlabs/Lib/ThreadItem.php:800 +msgid "Code" +msgstr "" + +#: ../../include/conversation.php:1411 ../../Zotlabs/Lib/ThreadItem.php:802 +msgid "Attach/Upload file" +msgstr "" + +#: ../../include/conversation.php:1414 ../../Zotlabs/Module/Wiki.php:400 +msgid "Embed an image from your albums" +msgstr "" + +#: ../../include/conversation.php:1415 ../../include/conversation.php:1464 +#: ../../Zotlabs/Module/Admin/Addons.php:426 +#: ../../Zotlabs/Module/Article_edit.php:131 ../../Zotlabs/Module/Cdav.php:968 +#: ../../Zotlabs/Module/Cdav.php:1260 ../../Zotlabs/Module/Connedit.php:941 +#: ../../Zotlabs/Module/Cover_photo.php:425 +#: ../../Zotlabs/Module/Editblock.php:141 +#: ../../Zotlabs/Module/Editlayout.php:140 +#: ../../Zotlabs/Module/Editpost.php:109 +#: ../../Zotlabs/Module/Editwebpage.php:169 +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Oauth.php:112 +#: ../../Zotlabs/Module/Oauth.php:138 ../../Zotlabs/Module/Oauth2.php:117 +#: ../../Zotlabs/Module/Oauth2.php:145 ../../Zotlabs/Module/Card_edit.php:131 +#: ../../Zotlabs/Module/Profiles.php:801 +#: ../../Zotlabs/Module/Profile_photo.php:465 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:368 +#: ../../Zotlabs/Module/Wiki.php:401 +msgid "Cancel" +msgstr "" + +#: ../../include/conversation.php:1416 ../../include/conversation.php:1463 +#: ../../Zotlabs/Module/Cover_photo.php:426 +#: ../../Zotlabs/Module/Profile_photo.php:466 ../../Zotlabs/Module/Wiki.php:402 +msgid "OK" +msgstr "" + +#: ../../include/conversation.php:1418 +msgid "Toggle voting" +msgstr "" + +#: ../../include/conversation.php:1421 +msgid "Disable comments" +msgstr "" + +#: ../../include/conversation.php:1422 +msgid "Toggle comments" +msgstr "" + +#: ../../include/conversation.php:1427 +#: ../../Zotlabs/Module/Article_edit.php:117 +#: ../../Zotlabs/Module/Editblock.php:129 +#: ../../Zotlabs/Module/Card_edit.php:117 ../../Zotlabs/Module/Photos.php:713 +#: ../../Zotlabs/Module/Photos.php:1083 +msgid "Title (optional)" +msgstr "" + +#: ../../include/conversation.php:1430 +msgid "Categories (optional, comma-separated list)" +msgstr "" + +#: ../../include/conversation.php:1431 ../../Zotlabs/Module/Events.php:481 +msgid "Permission settings" +msgstr "" + +#: ../../include/conversation.php:1453 +msgid "Other networks and post services" +msgstr "" + +#: ../../include/conversation.php:1456 ../../Zotlabs/Module/Mail.php:292 +#: ../../Zotlabs/Module/Mail.php:434 +msgid "Set expiration date" +msgstr "" + +#: ../../include/conversation.php:1459 +msgid "Set publish date" +msgstr "" + +#: ../../include/conversation.php:1461 ../../Zotlabs/Lib/ThreadItem.php:809 +#: ../../Zotlabs/Module/Chat.php:221 ../../Zotlabs/Module/Mail.php:294 +#: ../../Zotlabs/Module/Mail.php:436 +msgid "Encrypt text" +msgstr "" + +#: ../../include/conversation.php:1705 ../../Zotlabs/Lib/ThreadItem.php:240 +#: ../../Zotlabs/Module/Photos.php:1182 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1708 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1711 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1714 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1717 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1720 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1723 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:58 ../../Zotlabs/Module/Profiles.php:736 +#: ../../Zotlabs/Widget/Newmember.php:51 +msgid "Miscellaneous" +msgstr "" + +#: ../../include/datetime.php:140 +msgid "Birthday" +msgstr "" + +#: ../../include/datetime.php:140 +msgid "Age: " +msgstr "" + +#: ../../include/datetime.php:140 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: ../../include/datetime.php:211 ../../Zotlabs/Module/Appman.php:143 +#: ../../Zotlabs/Module/Appman.php:144 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Profiles.php:745 +#: ../../Zotlabs/Module/Profiles.php:749 +msgid "Required" +msgstr "" + +#: ../../include/datetime.php:244 +msgid "less than a second ago" +msgstr "" + +#: ../../include/datetime.php:262 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "" + +#: ../../include/datetime.php:273 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:276 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:279 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:282 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:285 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:288 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:291 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:520 +#, php-format +msgid "%1$s's birthday" +msgstr "" + +#: ../../include/datetime.php:521 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "" + +#: ../../include/dir_fns.php:141 ../../Zotlabs/Lib/Libzotdir.php:160 +msgid "Directory Options" +msgstr "" + +#: ../../include/dir_fns.php:143 ../../Zotlabs/Lib/Libzotdir.php:162 +msgid "Safe Mode" +msgstr "" + +#: ../../include/dir_fns.php:144 ../../Zotlabs/Lib/Libzotdir.php:163 +msgid "Public Forums Only" +msgstr "" + +#: ../../include/dir_fns.php:145 ../../Zotlabs/Lib/Libzotdir.php:165 +msgid "This Website Only" +msgstr "" + +#: ../../include/event.php:31 ../../include/event.php:78 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: ../../include/event.php:39 ../../include/event.php:82 +msgid "Starts:" +msgstr "" + +#: ../../include/event.php:49 ../../include/event.php:86 +msgid "Finishes:" +msgstr "" + +#: ../../include/event.php:1023 +msgid "This event has been added to your calendar." +msgstr "" + +#: ../../include/event.php:1244 +msgid "Not specified" +msgstr "" + +#: ../../include/event.php:1245 +msgid "Needs Action" +msgstr "" + +#: ../../include/event.php:1246 +msgid "Completed" +msgstr "" + +#: ../../include/event.php:1247 +msgid "In Process" +msgstr "" + +#: ../../include/event.php:1248 +msgid "Cancelled" +msgstr "" + +#: ../../include/features.php:55 ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:36 +msgid "Off" +msgstr "" + +#: ../../include/features.php:55 ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:36 +msgid "On" +msgstr "" + +#: ../../include/features.php:82 ../../Zotlabs/Lib/Apps.php:366 +msgid "CalDAV" +msgstr "" + +#: ../../include/features.php:86 ../../include/features.php:273 +msgid "Start calendar week on Monday" +msgstr "" + +#: ../../include/features.php:87 ../../include/features.php:274 +msgid "Default is Sunday" +msgstr "" + +#: ../../include/features.php:96 ../../Zotlabs/Lib/Apps.php:342 +msgid "Channel Home" +msgstr "" + +#: ../../include/features.php:100 +msgid "Search by Date" +msgstr "" + +#: ../../include/features.php:101 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: ../../include/features.php:108 +msgid "Tag Cloud" +msgstr "" + +#: ../../include/features.php:109 +msgid "Provide a personal tag cloud on your channel page" +msgstr "" + +#: ../../include/features.php:116 ../../include/features.php:365 +msgid "Use blog/list mode" +msgstr "" + +#: ../../include/features.php:117 ../../include/features.php:366 +msgid "Comments will be displayed separately" +msgstr "" + +#: ../../include/features.php:125 ../../include/text.php:991 +#: ../../Zotlabs/Lib/Apps.php:332 ../../Zotlabs/Module/Connections.php:348 +msgid "Connections" +msgstr "" + +#: ../../include/features.php:129 +msgid "Connection Filtering" +msgstr "" + +#: ../../include/features.php:130 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "" + +#: ../../include/features.php:138 +msgid "Conversation" +msgstr "" + +#: ../../include/features.php:142 +msgid "Community Tagging" +msgstr "" + +#: ../../include/features.php:143 +msgid "Ability to tag existing posts" +msgstr "" + +#: ../../include/features.php:150 +msgid "Emoji Reactions" +msgstr "" + +#: ../../include/features.php:151 +msgid "Add emoji reaction ability to posts" +msgstr "" + +#: ../../include/features.php:158 +msgid "Dislike Posts" +msgstr "" + +#: ../../include/features.php:159 +msgid "Ability to dislike posts/comments" +msgstr "" + +#: ../../include/features.php:166 +msgid "Star Posts" +msgstr "" + +#: ../../include/features.php:167 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: ../../include/features.php:176 ../../Zotlabs/Lib/Apps.php:346 +msgid "Directory" +msgstr "" + +#: ../../include/features.php:180 +msgid "Advanced Directory Search" +msgstr "" + +#: ../../include/features.php:181 +msgid "Allows creation of complex directory search queries" +msgstr "" + +#: ../../include/features.php:190 +msgid "Editor" +msgstr "" + +#: ../../include/features.php:194 +msgid "Post Categories" +msgstr "" + +#: ../../include/features.php:195 +msgid "Add categories to your posts" +msgstr "" + +#: ../../include/features.php:203 +msgid "Large Photos" +msgstr "" + +#: ../../include/features.php:204 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "" + +#: ../../include/features.php:211 +msgid "Even More Encryption" +msgstr "" + +#: ../../include/features.php:212 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "" + +#: ../../include/features.php:219 +msgid "Enable Voting Tools" +msgstr "" + +#: ../../include/features.php:220 +msgid "Provide a class of post which others can vote on" +msgstr "" + +#: ../../include/features.php:227 +msgid "Disable Comments" +msgstr "" + +#: ../../include/features.php:228 +msgid "Provide the option to disable comments for a post" +msgstr "" + +#: ../../include/features.php:235 +msgid "Delayed Posting" +msgstr "" + +#: ../../include/features.php:236 +msgid "Allow posts to be published at a later date" +msgstr "" + +#: ../../include/features.php:243 +msgid "Content Expiration" +msgstr "" + +#: ../../include/features.php:244 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "" + +#: ../../include/features.php:251 +msgid "Suppress Duplicate Posts/Comments" +msgstr "" + +#: ../../include/features.php:252 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "" + +#: ../../include/features.php:259 +msgid "Auto-save drafts of posts and comments" +msgstr "" + +#: ../../include/features.php:260 +msgid "" +"Automatically saves post and comment drafts in local browser storage to help " +"prevent accidental loss of compositions" +msgstr "" + +#: ../../include/features.php:269 ../../Zotlabs/Lib/Apps.php:345 +msgid "Events" +msgstr "" + +#: ../../include/features.php:281 +msgid "Smart Birthdays" +msgstr "" + +#: ../../include/features.php:282 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "" + +#: ../../include/features.php:289 +msgid "Event Timezone Selection" +msgstr "" + +#: ../../include/features.php:290 +msgid "Allow event creation in timezones other than your own." +msgstr "" + +#: ../../include/features.php:299 +msgid "Manage" +msgstr "" + +#: ../../include/features.php:303 +msgid "Navigation Channel Select" +msgstr "" + +#: ../../include/features.php:304 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "" + +#: ../../include/features.php:313 ../../Zotlabs/Module/Connections.php:310 +msgid "Network" +msgstr "" + +#: ../../include/features.php:317 ../../Zotlabs/Widget/Savedsearch.php:83 +msgid "Saved Searches" +msgstr "" + +#: ../../include/features.php:318 +msgid "Save search terms for re-use" +msgstr "" + +#: ../../include/features.php:326 +msgid "Ability to file posts under folders" +msgstr "" + +#: ../../include/features.php:333 +msgid "Alternate Stream Order" +msgstr "" + +#: ../../include/features.php:334 +msgid "" +"Ability to order the stream by last post date, last comment date or " +"unthreaded activities" +msgstr "" + +#: ../../include/features.php:341 +msgid "Contact Filter" +msgstr "" + +#: ../../include/features.php:342 +msgid "Ability to display only posts of a selected contact" +msgstr "" + +#: ../../include/features.php:349 +msgid "Forum Filter" +msgstr "" + +#: ../../include/features.php:350 +msgid "Ability to display only posts of a specific forum" +msgstr "" + +#: ../../include/features.php:357 +msgid "Personal Posts Filter" +msgstr "" + +#: ../../include/features.php:358 +msgid "Ability to display only posts that you've interacted on" +msgstr "" + +#: ../../include/features.php:375 ../../include/nav.php:446 +#: ../../Zotlabs/Lib/Apps.php:344 ../../Zotlabs/Module/Fbrowser.php:29 +msgid "Photos" +msgstr "" + +#: ../../include/features.php:379 +msgid "Photo Location" +msgstr "" + +#: ../../include/features.php:380 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "" + +#: ../../include/features.php:389 ../../Zotlabs/Lib/Apps.php:362 +msgid "Profiles" +msgstr "" + +#: ../../include/features.php:393 +msgid "Advanced Profiles" +msgstr "" + +#: ../../include/features.php:394 +msgid "Additional profile sections and selections" +msgstr "" + +#: ../../include/features.php:401 +msgid "Profile Import/Export" +msgstr "" + +#: ../../include/features.php:402 +msgid "Save and load profile details across sites/channels" +msgstr "" + +#: ../../include/features.php:409 +msgid "Multiple Profiles" +msgstr "" + +#: ../../include/features.php:410 +msgid "Ability to create multiple profiles" +msgstr "" + +#: ../../include/feedutils.php:858 ../../include/text.php:1504 +msgid "unknown" +msgstr "" + +#: ../../include/follow.php:37 +msgid "Channel is blocked on this site." +msgstr "" + +#: ../../include/follow.php:42 +msgid "Channel location missing." +msgstr "" + +#: ../../include/follow.php:84 +msgid "Response from remote channel was incomplete." +msgstr "" + +#: ../../include/follow.php:96 +msgid "Premium channel - please visit:" +msgstr "" + +#: ../../include/follow.php:110 +msgid "Channel was deleted and no longer exists." +msgstr "" + +#: ../../include/follow.php:166 +msgid "Remote channel or protocol unavailable." +msgstr "" + +#: ../../include/follow.php:189 +msgid "Channel discovery failed." +msgstr "" + +#: ../../include/follow.php:201 +msgid "Protocol disabled." +msgstr "" + +#: ../../include/follow.php:212 +msgid "Cannot connect to yourself." +msgstr "" + +#: ../../include/group.php:22 ../../Zotlabs/Lib/Group.php:28 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "" + +#: ../../include/group.php:264 ../../Zotlabs/Lib/Group.php:270 +msgid "Add new connections to this privacy group" +msgstr "" + +#: ../../include/group.php:298 ../../Zotlabs/Lib/Group.php:302 +msgid "edit" +msgstr "" + +#: ../../include/group.php:320 ../../include/nav.php:99 +#: ../../Zotlabs/Lib/Apps.php:363 ../../Zotlabs/Lib/Group.php:324 +#: ../../Zotlabs/Module/Group.php:141 ../../Zotlabs/Module/Group.php:153 +#: ../../Zotlabs/Widget/Activity_filter.php:41 +msgid "Privacy Groups" +msgstr "" + +#: ../../include/group.php:321 ../../Zotlabs/Lib/Group.php:325 +msgid "Edit group" +msgstr "" + +#: ../../include/group.php:322 ../../Zotlabs/Lib/Group.php:326 +msgid "Add privacy group" +msgstr "" + +#: ../../include/group.php:323 ../../Zotlabs/Lib/Group.php:327 +msgid "Channels not in any privacy group" +msgstr "" + +#: ../../include/group.php:325 ../../Zotlabs/Lib/Group.php:329 +#: ../../Zotlabs/Widget/Savedsearch.php:84 +msgid "add" +msgstr "" + +#: ../../include/help.php:80 +msgid "Help:" +msgstr "" + +#: ../../include/help.php:117 ../../include/help.php:125 +#: ../../include/nav.php:172 ../../include/nav.php:322 +#: ../../Zotlabs/Lib/Apps.php:347 ../../Zotlabs/Module/Layouts.php:186 +msgid "Help" +msgstr "" + +#: ../../include/help.php:129 +msgid "Not Found" +msgstr "" + +#: ../../include/help.php:132 ../../Zotlabs/Lib/NativeWikiPage.php:521 +#: ../../Zotlabs/Module/Block.php:77 ../../Zotlabs/Module/Display.php:140 +#: ../../Zotlabs/Module/Display.php:157 ../../Zotlabs/Module/Display.php:174 +#: ../../Zotlabs/Module/Display.php:180 ../../Zotlabs/Module/Page.php:136 +#: ../../Zotlabs/Web/Router.php:185 +msgid "Page not found." +msgstr "" + +#: ../../include/import.php:26 +msgid "Unable to import a removed channel." +msgstr "" + +#: ../../include/import.php:52 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "" + +#: ../../include/import.php:73 +msgid "Unable to create a unique channel address. Import failed." +msgstr "" + +#: ../../include/import.php:117 +msgid "Cloned channel not found. Import failed." +msgstr "" + +#: ../../include/items.php:416 ../../Zotlabs/Module/Cloud.php:126 +#: ../../Zotlabs/Module/Group.php:98 ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Like.php:301 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:82 ../../Zotlabs/Module/Profperm.php:28 +#: ../../Zotlabs/Module/Share.php:71 ../../Zotlabs/Module/Subthread.php:86 +#: ../../Zotlabs/Web/WebServer.php:122 +msgid "Permission denied" +msgstr "" + +#: ../../include/items.php:965 ../../include/items.php:1025 +msgid "(Unknown)" +msgstr "" + +#: ../../include/items.php:1213 +msgid "Visible to anybody on the internet." +msgstr "" + +#: ../../include/items.php:1215 +msgid "Visible to you only." +msgstr "" + +#: ../../include/items.php:1217 +msgid "Visible to anybody in this network." +msgstr "" + +#: ../../include/items.php:1219 +msgid "Visible to anybody authenticated." +msgstr "" + +#: ../../include/items.php:1221 +#, php-format +msgid "Visible to anybody on %s." +msgstr "" + +#: ../../include/items.php:1223 +msgid "Visible to all connections." +msgstr "" + +#: ../../include/items.php:1225 +msgid "Visible to approved connections." +msgstr "" + +#: ../../include/items.php:1227 +msgid "Visible to specific connections." +msgstr "" + +#: ../../include/items.php:3713 ../../Zotlabs/Module/Admin/Addons.php:259 +#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Admin.php:62 +#: ../../Zotlabs/Module/Display.php:45 ../../Zotlabs/Module/Display.php:455 +#: ../../Zotlabs/Module/Filestorage.php:26 ../../Zotlabs/Module/Thing.php:94 +#: ../../Zotlabs/Module/Viewsrc.php:25 +msgid "Item not found." +msgstr "" + +#: ../../include/items.php:4295 ../../Zotlabs/Module/Group.php:61 +#: ../../Zotlabs/Module/Group.php:213 +msgid "Privacy group not found." +msgstr "" + +#: ../../include/items.php:4311 +msgid "Privacy group is empty." +msgstr "" + +#: ../../include/items.php:4318 +#, php-format +msgid "Privacy group: %s" +msgstr "" + +#: ../../include/items.php:4328 ../../Zotlabs/Module/Connedit.php:867 +#, php-format +msgid "Connection: %s" +msgstr "" + +#: ../../include/items.php:4330 +msgid "Connection not found." +msgstr "" + +#: ../../include/items.php:4672 ../../Zotlabs/Module/Cover_photo.php:294 +msgid "female" +msgstr "" + +#: ../../include/items.php:4673 ../../Zotlabs/Module/Cover_photo.php:295 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "" + +#: ../../include/items.php:4674 ../../Zotlabs/Module/Cover_photo.php:296 +msgid "male" +msgstr "" + +#: ../../include/items.php:4675 ../../Zotlabs/Module/Cover_photo.php:297 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "" + +#: ../../include/items.php:4677 ../../Zotlabs/Module/Cover_photo.php:299 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "" + +#: ../../include/items.php:4679 +msgid "profile photo" +msgstr "" + +#: ../../include/items.php:4871 +#, php-format +msgid "[Edited %s]" +msgstr "" + +#: ../../include/items.php:4871 +msgctxt "edit_activity" +msgid "Post" +msgstr "" + +#: ../../include/items.php:4871 +msgctxt "edit_activity" +msgid "Comment" +msgstr "" + +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "" + +#: ../../include/js_strings.php:6 ../../Zotlabs/Lib/ThreadItem.php:794 +#: ../../Zotlabs/Module/Photos.php:1137 ../../Zotlabs/Module/Photos.php:1256 +msgid "Comment" +msgstr "" + +#: ../../include/js_strings.php:7 ../../Zotlabs/Lib/ThreadItem.php:501 +#, php-format +msgid "%s show all" +msgstr "" + +#: ../../include/js_strings.php:8 +#, php-format +msgid "%s show less" +msgstr "" + +#: ../../include/js_strings.php:9 +#, php-format +msgid "%s expand" +msgstr "" + +#: ../../include/js_strings.php:10 +#, php-format +msgid "%s collapse" +msgstr "" + +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "" + +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "" + +#: ../../include/js_strings.php:13 +msgid "everybody" +msgstr "" + +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "" + +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "" + +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "" + +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "" + +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "" + +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "" + +#: ../../include/js_strings.php:20 ../../Zotlabs/Module/Connedit.php:887 +#: ../../Zotlabs/Module/Rate.php:155 +msgid "Rating" +msgstr "" + +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "" + +#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:94 +#: ../../Zotlabs/Lib/ThreadItem.php:795 +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Account_edit.php:73 +#: ../../Zotlabs/Module/Admin/Addons.php:441 +#: ../../Zotlabs/Module/Admin/Channels.php:147 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Profs.php:178 +#: ../../Zotlabs/Module/Admin/Security.php:112 +#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../Zotlabs/Module/Affinity.php:87 ../../Zotlabs/Module/Appman.php:155 +#: ../../Zotlabs/Module/Cal.php:344 ../../Zotlabs/Module/Chat.php:211 +#: ../../Zotlabs/Module/Chat.php:250 ../../Zotlabs/Module/Connect.php:124 +#: ../../Zotlabs/Module/Connedit.php:904 ../../Zotlabs/Module/Defperms.php:265 +#: ../../Zotlabs/Module/Editpost.php:85 +#: ../../Zotlabs/Module/Email_validation.php:40 +#: ../../Zotlabs/Module/Events.php:495 ../../Zotlabs/Module/Filestorage.php:203 +#: ../../Zotlabs/Module/Group.php:150 ../../Zotlabs/Module/Group.php:166 +#: ../../Zotlabs/Module/Import.php:646 +#: ../../Zotlabs/Module/Import_items.php:129 +#: ../../Zotlabs/Module/Invite.php:168 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:431 ../../Zotlabs/Module/Mitem.php:259 +#: ../../Zotlabs/Module/Mood.php:158 ../../Zotlabs/Module/Oauth.php:111 +#: ../../Zotlabs/Module/Oauth2.php:116 ../../Zotlabs/Module/Pconfig.php:116 +#: ../../Zotlabs/Module/Pdledit.php:107 ../../Zotlabs/Module/Permcats.php:128 +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1138 +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Module/Poke.php:217 +#: ../../Zotlabs/Module/Profiles.php:723 ../../Zotlabs/Module/Rate.php:166 +#: ../../Zotlabs/Module/Settings/Account.php:103 +#: ../../Zotlabs/Module/Settings/Calendar.php:41 +#: ../../Zotlabs/Module/Settings/Channel.php:493 +#: ../../Zotlabs/Module/Settings/Channel_home.php:89 +#: ../../Zotlabs/Module/Settings/Connections.php:41 +#: ../../Zotlabs/Module/Settings/Conversation.php:48 +#: ../../Zotlabs/Module/Settings/Directory.php:41 +#: ../../Zotlabs/Module/Settings/Display.php:189 +#: ../../Zotlabs/Module/Settings/Editor.php:41 +#: ../../Zotlabs/Module/Settings/Events.php:41 +#: ../../Zotlabs/Module/Settings/Features.php:46 +#: ../../Zotlabs/Module/Settings/Manage.php:41 +#: ../../Zotlabs/Module/Settings/Network.php:61 +#: ../../Zotlabs/Module/Settings/Photos.php:41 +#: ../../Zotlabs/Module/Settings/Profiles.php:50 +#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +#: ../../Zotlabs/Module/Sources.php:125 ../../Zotlabs/Module/Sources.php:162 +#: ../../Zotlabs/Module/Thing.php:326 ../../Zotlabs/Module/Thing.php:379 +#: ../../Zotlabs/Module/Tokens.php:188 ../../Zotlabs/Module/Wiki.php:215 +#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Widget/Eventstools.php:16 +#: ../../Zotlabs/Widget/Wiki_pages.php:42 +#: ../../Zotlabs/Widget/Wiki_pages.php:99 +msgid "Submit" +msgstr "" + +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "" + +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "" + +#: ../../include/js_strings.php:25 ../../Zotlabs/Module/Cdav.php:940 +#: ../../Zotlabs/Module/Events.php:477 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:509 ../../Zotlabs/Module/Profiles.php:734 +#: ../../Zotlabs/Module/Pubsites.php:52 +msgid "Location" +msgstr "" + +#: ../../include/js_strings.php:26 +msgid "lovely" +msgstr "" + +#: ../../include/js_strings.php:27 +msgid "wonderful" +msgstr "" + +#: ../../include/js_strings.php:28 +msgid "fantastic" +msgstr "" + +#: ../../include/js_strings.php:29 +msgid "great" +msgstr "" + +#: ../../include/js_strings.php:30 +msgid "" +"Your chosen nickname was either already taken or not valid. Please use our " +"suggestion (" +msgstr "" + +#: ../../include/js_strings.php:31 +msgid ") or enter a new one." +msgstr "" + +#: ../../include/js_strings.php:32 +msgid "Thank you, this nickname is valid." +msgstr "" + +#: ../../include/js_strings.php:33 +msgid "A channel name is required." +msgstr "" + +#: ../../include/js_strings.php:34 +msgid "This is a " +msgstr "" + +#: ../../include/js_strings.php:35 +msgid " channel name" +msgstr "" + +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d minutes" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:42 +#, php-format +msgid "about %d hours" +msgid_plural "about %d hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:43 +#, php-format +msgid "%d days" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:44 +#, php-format +msgid "%d months" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:45 +#, php-format +msgid "%d years" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:50 +msgid "timeago.prefixAgo" +msgstr "" + +#: ../../include/js_strings.php:51 +msgid "timeago.prefixFromNow" +msgstr "" + +#: ../../include/js_strings.php:52 +msgid "timeago.suffixAgo" +msgstr "" + +#: ../../include/js_strings.php:53 +msgid "timeago.suffixFromNow" +msgstr "" + +#: ../../include/js_strings.php:56 +msgid "less than a minute" +msgstr "" + +#: ../../include/js_strings.php:57 +msgid "about a minute" +msgstr "" + +#: ../../include/js_strings.php:59 +msgid "about an hour" +msgstr "" + +#: ../../include/js_strings.php:61 +msgid "a day" +msgstr "" + +#: ../../include/js_strings.php:63 +msgid "about a month" +msgstr "" + +#: ../../include/js_strings.php:65 +msgid "about a year" +msgstr "" + +#: ../../include/js_strings.php:67 +msgid " " +msgstr "" + +#: ../../include/js_strings.php:68 +msgid "timeago.numbers" +msgstr "" + +#: ../../include/js_strings.php:70 ../../include/text.php:1428 +msgid "January" +msgstr "" + +#: ../../include/js_strings.php:71 ../../include/text.php:1428 +msgid "February" +msgstr "" + +#: ../../include/js_strings.php:72 ../../include/text.php:1428 +msgid "March" +msgstr "" + +#: ../../include/js_strings.php:73 ../../include/text.php:1428 +msgid "April" +msgstr "" + +#: ../../include/js_strings.php:74 +msgctxt "long" +msgid "May" +msgstr "" + +#: ../../include/js_strings.php:75 ../../include/text.php:1428 +msgid "June" +msgstr "" + +#: ../../include/js_strings.php:76 ../../include/text.php:1428 +msgid "July" +msgstr "" + +#: ../../include/js_strings.php:77 ../../include/text.php:1428 +msgid "August" +msgstr "" + +#: ../../include/js_strings.php:78 ../../include/text.php:1428 +msgid "September" +msgstr "" + +#: ../../include/js_strings.php:79 ../../include/text.php:1428 +msgid "October" +msgstr "" + +#: ../../include/js_strings.php:80 ../../include/text.php:1428 +msgid "November" +msgstr "" + +#: ../../include/js_strings.php:81 ../../include/text.php:1428 +msgid "December" +msgstr "" + +#: ../../include/js_strings.php:82 +msgid "Jan" +msgstr "" + +#: ../../include/js_strings.php:83 +msgid "Feb" +msgstr "" + +#: ../../include/js_strings.php:84 +msgid "Mar" +msgstr "" + +#: ../../include/js_strings.php:85 +msgid "Apr" +msgstr "" + +#: ../../include/js_strings.php:86 +msgctxt "short" +msgid "May" +msgstr "" + +#: ../../include/js_strings.php:87 +msgid "Jun" +msgstr "" + +#: ../../include/js_strings.php:88 +msgid "Jul" +msgstr "" + +#: ../../include/js_strings.php:89 +msgid "Aug" +msgstr "" + +#: ../../include/js_strings.php:90 +msgid "Sep" +msgstr "" + +#: ../../include/js_strings.php:91 +msgid "Oct" +msgstr "" + +#: ../../include/js_strings.php:92 +msgid "Nov" +msgstr "" + +#: ../../include/js_strings.php:93 +msgid "Dec" +msgstr "" + +#: ../../include/js_strings.php:94 ../../include/text.php:1424 +msgid "Sunday" +msgstr "" + +#: ../../include/js_strings.php:95 ../../include/text.php:1424 +msgid "Monday" +msgstr "" + +#: ../../include/js_strings.php:96 ../../include/text.php:1424 +msgid "Tuesday" +msgstr "" + +#: ../../include/js_strings.php:97 ../../include/text.php:1424 +msgid "Wednesday" +msgstr "" + +#: ../../include/js_strings.php:98 ../../include/text.php:1424 +msgid "Thursday" +msgstr "" + +#: ../../include/js_strings.php:99 ../../include/text.php:1424 +msgid "Friday" +msgstr "" + +#: ../../include/js_strings.php:100 ../../include/text.php:1424 +msgid "Saturday" +msgstr "" + +#: ../../include/js_strings.php:101 +msgid "Sun" +msgstr "" + +#: ../../include/js_strings.php:102 +msgid "Mon" +msgstr "" + +#: ../../include/js_strings.php:103 +msgid "Tue" +msgstr "" + +#: ../../include/js_strings.php:104 +msgid "Wed" +msgstr "" + +#: ../../include/js_strings.php:105 +msgid "Thu" +msgstr "" + +#: ../../include/js_strings.php:106 +msgid "Fri" +msgstr "" + +#: ../../include/js_strings.php:107 +msgid "Sat" +msgstr "" + +#: ../../include/js_strings.php:108 +msgctxt "calendar" +msgid "today" +msgstr "" + +#: ../../include/js_strings.php:109 +msgctxt "calendar" +msgid "month" +msgstr "" + +#: ../../include/js_strings.php:110 +msgctxt "calendar" +msgid "week" +msgstr "" + +#: ../../include/js_strings.php:111 +msgctxt "calendar" +msgid "day" +msgstr "" + +#: ../../include/js_strings.php:112 +msgctxt "calendar" +msgid "All day" +msgstr "" + +#: ../../include/language.php:423 ../../include/text.php:1948 +msgid "default" +msgstr "" + +#: ../../include/language.php:436 +msgid "Select an alternate language" +msgstr "" + +#: ../../include/message.php:13 ../../include/text.php:1778 +msgid "Download binary/encrypted content" +msgstr "" + +#: ../../include/message.php:41 +msgid "Unable to determine sender." +msgstr "" + +#: ../../include/message.php:80 +msgid "No recipient provided." +msgstr "" + +#: ../../include/message.php:85 +msgid "[no subject]" +msgstr "" + +#: ../../include/message.php:215 +msgid "Stored post could not be verified." +msgstr "" + +#: ../../include/nav.php:90 +msgid "Remote authentication" +msgstr "" + +#: ../../include/nav.php:90 +msgid "Click to authenticate to your home hub" +msgstr "" + +#: ../../include/nav.php:96 ../../Zotlabs/Lib/Apps.php:336 +#: ../../Zotlabs/Module/Manage.php:170 +msgid "Channel Manager" +msgstr "" + +#: ../../include/nav.php:96 +msgid "Manage your channels" +msgstr "" + +#: ../../include/nav.php:99 +msgid "Manage your privacy groups" +msgstr "" + +#: ../../include/nav.php:101 ../../Zotlabs/Lib/Apps.php:338 +#: ../../Zotlabs/Module/Admin/Addons.php:344 +#: ../../Zotlabs/Module/Admin/Themes.php:125 +#: ../../Zotlabs/Widget/Newmember.php:53 +#: ../../Zotlabs/Widget/Settings_menu.php:61 +msgid "Settings" +msgstr "" + +#: ../../include/nav.php:101 +msgid "Account/Channel Settings" +msgstr "" + +#: ../../include/nav.php:107 ../../include/nav.php:136 +msgid "End this session" +msgstr "" + +#: ../../include/nav.php:110 +msgid "Your profile page" +msgstr "" + +#: ../../include/nav.php:113 +msgid "Manage/Edit profiles" +msgstr "" + +#: ../../include/nav.php:115 ../../Zotlabs/Widget/Newmember.php:35 +msgid "Edit your profile" +msgstr "" + +#: ../../include/nav.php:122 ../../include/nav.php:126 +msgid "Sign in" +msgstr "" + +#: ../../include/nav.php:153 +msgid "Take me home" +msgstr "" + +#: ../../include/nav.php:155 +msgid "Log me out of this site" +msgstr "" + +#: ../../include/nav.php:160 +msgid "Create an account" +msgstr "" + +#: ../../include/nav.php:172 +msgid "Help and documentation" +msgstr "" + +#: ../../include/nav.php:186 +msgid "Search site @name, !forum, #tag, ?docs, content" +msgstr "" + +#: ../../include/nav.php:192 ../../Zotlabs/Widget/Admin.php:55 +msgid "Admin" +msgstr "" + +#: ../../include/nav.php:192 +msgid "Site Setup and Configuration" +msgstr "" + +#: ../../include/nav.php:326 ../../Zotlabs/Module/Connedit.php:869 +#: ../../Zotlabs/Module/Defperms.php:256 +#: ../../Zotlabs/Module/New_channel.php:157 +#: ../../Zotlabs/Module/New_channel.php:164 +#: ../../Zotlabs/Widget/Notifications.php:162 +msgid "Loading" +msgstr "" + +#: ../../include/nav.php:332 +msgid "@name, !forum, #tag, ?doc, content" +msgstr "" + +#: ../../include/nav.php:333 +msgid "Please wait..." +msgstr "" + +#: ../../include/nav.php:339 +msgid "Add Apps" +msgstr "" + +#: ../../include/nav.php:340 +msgid "Arrange Apps" +msgstr "" + +#: ../../include/nav.php:341 +msgid "Toggle System Apps" +msgstr "" + +#: ../../include/nav.php:423 ../../Zotlabs/Module/Admin/Channels.php:154 +msgid "Channel" +msgstr "" + +#: ../../include/nav.php:426 +msgid "Status Messages and Posts" +msgstr "" + +#: ../../include/nav.php:436 ../../Zotlabs/Module/Help.php:80 +msgid "About" +msgstr "" + +#: ../../include/nav.php:439 +msgid "Profile Details" +msgstr "" + +#: ../../include/nav.php:449 ../../include/photos.php:669 +msgid "Photo Albums" +msgstr "" + +#: ../../include/nav.php:454 ../../Zotlabs/Lib/Apps.php:339 +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Storage/Browser.php:278 +msgid "Files" +msgstr "" + +#: ../../include/nav.php:457 +msgid "Files and Storage" +msgstr "" + +#: ../../include/nav.php:465 ../../include/nav.php:468 +#: ../../Zotlabs/Storage/Browser.php:140 +msgid "Calendar" +msgstr "" + +#: ../../include/nav.php:479 ../../include/nav.php:482 +#: ../../Zotlabs/Lib/Apps.php:329 ../../Zotlabs/Widget/Chatroom_list.php:16 +msgid "Chatrooms" +msgstr "" + +#: ../../include/nav.php:492 ../../Zotlabs/Lib/Apps.php:328 +msgid "Bookmarks" +msgstr "" + +#: ../../include/nav.php:495 +msgid "Saved Bookmarks" +msgstr "" + +#: ../../include/nav.php:503 ../../Zotlabs/Lib/Apps.php:325 +#: ../../Zotlabs/Module/Cards.php:207 +msgid "Cards" +msgstr "" + +#: ../../include/nav.php:506 +msgid "View Cards" +msgstr "" + +#: ../../include/nav.php:514 ../../Zotlabs/Lib/Apps.php:324 +#: ../../Zotlabs/Module/Articles.php:222 +msgid "Articles" +msgstr "" + +#: ../../include/nav.php:517 +msgid "View Articles" +msgstr "" + +#: ../../include/nav.php:526 ../../Zotlabs/Lib/Apps.php:340 +#: ../../Zotlabs/Module/Webpages.php:252 +msgid "Webpages" +msgstr "" + +#: ../../include/nav.php:529 +msgid "View Webpages" +msgstr "" + +#: ../../include/nav.php:538 ../../Zotlabs/Module/Wiki.php:206 +#: ../../Zotlabs/Widget/Wiki_list.php:15 +msgid "Wikis" +msgstr "" + +#: ../../include/nav.php:541 ../../Zotlabs/Lib/Apps.php:341 +msgid "Wiki" +msgstr "" + +#: ../../include/network.php:1725 ../../include/network.php:1726 +msgid "Friendica" +msgstr "" + +#: ../../include/network.php:1727 +msgid "OStatus" +msgstr "" + +#: ../../include/network.php:1728 +msgid "GNU-Social" +msgstr "" + +#: ../../include/network.php:1729 +msgid "RSS/Atom" +msgstr "" + +#: ../../include/network.php:1730 ../../Zotlabs/Lib/Activity.php:1848 +#: ../../Zotlabs/Lib/Activity.php:2046 +msgid "ActivityPub" +msgstr "" + +#: ../../include/network.php:1731 ../../Zotlabs/Module/Admin/Accounts.php:171 +#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../Zotlabs/Module/Cdav.php:1246 ../../Zotlabs/Module/Connedit.php:927 +#: ../../Zotlabs/Module/Profiles.php:787 +msgid "Email" +msgstr "" + +#: ../../include/network.php:1732 +msgid "Diaspora" +msgstr "" + +#: ../../include/network.php:1733 +msgid "Facebook" +msgstr "" + +#: ../../include/network.php:1734 +msgid "Zot" +msgstr "" + +#: ../../include/network.php:1735 +msgid "LinkedIn" +msgstr "" + +#: ../../include/network.php:1736 +msgid "XMPP/IM" +msgstr "" + +#: ../../include/network.php:1737 +msgid "MySpace" +msgstr "" + +#: ../../include/oembed.php:226 +msgid "View PDF" +msgstr "" + +#: ../../include/oembed.php:356 +msgid " by " +msgstr "" + +#: ../../include/oembed.php:357 +msgid " on " +msgstr "" + +#: ../../include/oembed.php:386 +msgid "Embedded content" +msgstr "" + +#: ../../include/oembed.php:395 +msgid "Embedding disabled" +msgstr "" + +#: ../../include/photo/photo_driver.php:367 +#: ../../Zotlabs/Module/Profile_photo.php:120 +#: ../../Zotlabs/Module/Profile_photo.php:248 +msgid "Profile Photos" +msgstr "" + +#: ../../include/photos.php:151 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "" + +#: ../../include/photos.php:162 +msgid "Image file is empty." +msgstr "" + +#: ../../include/photos.php:196 ../../Zotlabs/Module/Cover_photo.php:230 +#: ../../Zotlabs/Module/Profile_photo.php:225 +msgid "Unable to process image" +msgstr "" + +#: ../../include/photos.php:327 +msgid "Photo storage failed." +msgstr "" + +#: ../../include/photos.php:376 +msgid "a new photo" +msgstr "" + +#: ../../include/photos.php:380 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "" + +#: ../../include/photos.php:670 ../../Zotlabs/Module/Photos.php:1389 +#: ../../Zotlabs/Module/Photos.php:1402 ../../Zotlabs/Module/Photos.php:1403 +msgid "Recent Photos" +msgstr "" + +#: ../../include/photos.php:674 +msgid "Upload New Photos" +msgstr "" + +#: ../../include/security.php:607 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + +#: ../../include/selectors.php:18 +msgid "Profile to assign new connections" +msgstr "" + +#: ../../include/selectors.php:41 +msgid "Frequently" +msgstr "" + +#: ../../include/selectors.php:42 +msgid "Hourly" +msgstr "" + +#: ../../include/selectors.php:43 +msgid "Twice daily" +msgstr "" + +#: ../../include/selectors.php:44 +msgid "Daily" +msgstr "" + +#: ../../include/selectors.php:45 +msgid "Weekly" +msgstr "" + +#: ../../include/selectors.php:46 +msgid "Monthly" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Currently Male" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Currently Female" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Mostly Male" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Mostly Female" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Transgender" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Intersex" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Transsexual" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Hermaphrodite" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Undecided" +msgstr "" + +#: ../../include/selectors.php:96 ../../include/selectors.php:115 +msgid "Males" +msgstr "" + +#: ../../include/selectors.php:96 ../../include/selectors.php:115 +msgid "Females" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Gay" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Lesbian" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "No Preference" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Bisexual" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Autosexual" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Abstinent" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Virgin" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Deviant" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Fetish" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Oodles" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Nonsexual" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Single" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Lonely" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Available" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Unavailable" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Has crush" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Infatuated" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Dating" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Unfaithful" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Sex Addict" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Friends/Benefits" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Casual" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Engaged" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Married" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Imaginarily married" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Partners" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Cohabiting" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Common law" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Happy" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Not looking" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Swinger" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Betrayed" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Separated" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Unstable" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Divorced" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Imaginarily divorced" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Widowed" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Uncertain" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "It's complicated" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Don't care" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Ask me" +msgstr "" + +#: ../../include/taxonomy.php:320 +msgid "Trending" +msgstr "" + +#: ../../include/taxonomy.php:320 ../../include/taxonomy.php:449 +#: ../../include/taxonomy.php:470 ../../Zotlabs/Widget/Tagcloud.php:22 +msgid "Tags" +msgstr "" + +#: ../../include/taxonomy.php:550 +msgid "Keywords" +msgstr "" + +#: ../../include/taxonomy.php:571 +msgid "have" +msgstr "" + +#: ../../include/taxonomy.php:571 +msgid "has" +msgstr "" + +#: ../../include/taxonomy.php:572 +msgid "want" +msgstr "" + +#: ../../include/taxonomy.php:572 +msgid "wants" +msgstr "" + +#: ../../include/taxonomy.php:573 ../../Zotlabs/Lib/ThreadItem.php:306 +msgid "like" +msgstr "" + +#: ../../include/taxonomy.php:573 +msgid "likes" +msgstr "" + +#: ../../include/taxonomy.php:574 ../../Zotlabs/Lib/ThreadItem.php:307 +msgid "dislike" +msgstr "" + +#: ../../include/taxonomy.php:574 +msgid "dislikes" +msgstr "" + +#: ../../include/text.php:501 +msgid "prev" +msgstr "" + +#: ../../include/text.php:503 +msgid "first" +msgstr "" + +#: ../../include/text.php:532 +msgid "last" +msgstr "" + +#: ../../include/text.php:535 +msgid "next" +msgstr "" + +#: ../../include/text.php:553 +msgid "older" +msgstr "" + +#: ../../include/text.php:555 +msgid "newer" +msgstr "" + +#: ../../include/text.php:979 +msgid "No connections" +msgstr "" + +#: ../../include/text.php:1011 +#, php-format +msgid "View all %s connections" +msgstr "" + +#: ../../include/text.php:1073 +#, php-format +msgid "Network: %s" +msgstr "" + +#: ../../include/text.php:1085 ../../include/text.php:1097 +#: ../../Zotlabs/Module/Admin/Profs.php:94 +#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Module/Rbmark.php:32 ../../Zotlabs/Module/Rbmark.php:104 +#: ../../Zotlabs/Widget/Notes.php:23 +msgid "Save" +msgstr "" + +#: ../../include/text.php:1176 ../../include/text.php:1180 +msgid "poke" +msgstr "" + +#: ../../include/text.php:1181 +msgid "ping" +msgstr "" + +#: ../../include/text.php:1181 +msgid "pinged" +msgstr "" + +#: ../../include/text.php:1182 +msgid "prod" +msgstr "" + +#: ../../include/text.php:1182 +msgid "prodded" +msgstr "" + +#: ../../include/text.php:1183 +msgid "slap" +msgstr "" + +#: ../../include/text.php:1183 +msgid "slapped" +msgstr "" + +#: ../../include/text.php:1184 +msgid "finger" +msgstr "" + +#: ../../include/text.php:1184 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:1185 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:1185 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:1208 +msgid "happy" +msgstr "" + +#: ../../include/text.php:1209 +msgid "sad" +msgstr "" + +#: ../../include/text.php:1210 +msgid "mellow" +msgstr "" + +#: ../../include/text.php:1211 +msgid "tired" +msgstr "" + +#: ../../include/text.php:1212 +msgid "perky" +msgstr "" + +#: ../../include/text.php:1213 +msgid "angry" +msgstr "" + +#: ../../include/text.php:1214 +msgid "stupefied" +msgstr "" + +#: ../../include/text.php:1215 +msgid "puzzled" +msgstr "" + +#: ../../include/text.php:1216 +msgid "interested" +msgstr "" + +#: ../../include/text.php:1217 +msgid "bitter" +msgstr "" + +#: ../../include/text.php:1218 +msgid "cheerful" +msgstr "" + +#: ../../include/text.php:1219 +msgid "alive" +msgstr "" + +#: ../../include/text.php:1220 +msgid "annoyed" +msgstr "" + +#: ../../include/text.php:1221 +msgid "anxious" +msgstr "" + +#: ../../include/text.php:1222 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:1223 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:1224 +msgid "frustrated" +msgstr "" + +#: ../../include/text.php:1225 +msgid "depressed" +msgstr "" + +#: ../../include/text.php:1226 +msgid "motivated" +msgstr "" + +#: ../../include/text.php:1227 +msgid "relaxed" +msgstr "" + +#: ../../include/text.php:1228 +msgid "surprised" +msgstr "" + +#: ../../include/text.php:1428 +msgid "May" +msgstr "" + +#: ../../include/text.php:1502 +msgid "Unknown Attachment" +msgstr "" + +#: ../../include/text.php:1504 ../../Zotlabs/Module/Sharedwithme.php:106 +#: ../../Zotlabs/Storage/Browser.php:293 +msgid "Size" +msgstr "" + +#: ../../include/text.php:1540 +msgid "remove category" +msgstr "" + +#: ../../include/text.php:1614 +msgid "remove from file" +msgstr "" + +#: ../../include/text.php:1926 ../../Zotlabs/Module/Cal.php:314 +#: ../../Zotlabs/Module/Events.php:663 +msgid "Link to Source" +msgstr "" + +#: ../../include/text.php:1956 +msgid "Page layout" +msgstr "" + +#: ../../include/text.php:1956 +msgid "You can create your own with the layouts tool" +msgstr "" + +#: ../../include/text.php:1966 ../../Zotlabs/Module/Wiki.php:217 +#: ../../Zotlabs/Module/Wiki.php:371 ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 +msgid "BBcode" +msgstr "" + +#: ../../include/text.php:1967 +msgid "HTML" +msgstr "" + +#: ../../include/text.php:1968 ../../Zotlabs/Module/Wiki.php:217 +#: ../../Zotlabs/Module/Wiki.php:371 ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 +msgid "Markdown" +msgstr "" + +#: ../../include/text.php:1969 ../../Zotlabs/Module/Wiki.php:217 +#: ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 +msgid "Text" +msgstr "" + +#: ../../include/text.php:1970 +msgid "Comanche Layout" +msgstr "" + +#: ../../include/text.php:1975 +msgid "PHP" +msgstr "" + +#: ../../include/text.php:1984 +msgid "Page content type" +msgstr "" + +#: ../../include/text.php:2117 +msgid "activity" +msgstr "" + +#: ../../include/text.php:2218 +msgid "a-z, 0-9, -, and _ only" +msgstr "" + +#: ../../include/text.php:2544 +msgid "Design Tools" +msgstr "" + +#: ../../include/text.php:2547 ../../Zotlabs/Module/Blocks.php:154 +msgid "Blocks" +msgstr "" + +#: ../../include/text.php:2548 ../../Zotlabs/Module/Menu.php:170 +msgid "Menus" +msgstr "" + +#: ../../include/text.php:2549 ../../Zotlabs/Module/Layouts.php:184 +msgid "Layouts" +msgstr "" + +#: ../../include/text.php:2550 +msgid "Pages" +msgstr "" + +#: ../../include/text.php:2562 ../../Zotlabs/Module/Cal.php:343 +msgid "Import" +msgstr "" + +#: ../../include/text.php:2563 +msgid "Import website..." +msgstr "" + +#: ../../include/text.php:2564 +msgid "Select folder to import" +msgstr "" + +#: ../../include/text.php:2565 +msgid "Import from a zipped folder:" +msgstr "" + +#: ../../include/text.php:2566 +msgid "Import from cloud files:" +msgstr "" + +#: ../../include/text.php:2567 +msgid "/cloud/channel/path/to/folder" +msgstr "" + +#: ../../include/text.php:2568 +msgid "Enter path to website files" +msgstr "" + +#: ../../include/text.php:2569 +msgid "Select folder" +msgstr "" + +#: ../../include/text.php:2570 +msgid "Export website..." +msgstr "" + +#: ../../include/text.php:2571 +msgid "Export to a zip file" +msgstr "" + +#: ../../include/text.php:2572 +msgid "website.zip" +msgstr "" + +#: ../../include/text.php:2573 +msgid "Enter a name for the zip file." +msgstr "" + +#: ../../include/text.php:2574 +msgid "Export to cloud files" +msgstr "" + +#: ../../include/text.php:2575 +msgid "/path/to/export/folder" +msgstr "" + +#: ../../include/text.php:2576 +msgid "Enter a path to a cloud files destination." +msgstr "" + +#: ../../include/text.php:2577 +msgid "Specify folder" +msgstr "" + +#: ../../include/text.php:2939 ../../Zotlabs/Storage/Browser.php:131 +msgid "Collection" +msgstr "" + +#: ../../include/text.php:3208 ../../view/theme/redbasic/php/config.php:15 +#: ../../Zotlabs/Module/Admin/Site.php:187 +msgid "Default" +msgstr "" + +#: ../../include/zid.php:363 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + +#: ../../include/zot.php:775 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:802 ../../Zotlabs/Lib/Libzot.php:652 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:2595 ../../Zotlabs/Lib/Libsync.php:733 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + +#: ../../include/zot.php:4292 +msgid "invalid target signature" +msgstr "" + +#: ../../util/nconfig.php:34 +msgid "Source channel not found." +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:16 +#: ../../view/theme/redbasic/php/config.php:19 +msgid "Focus (Hubzilla default)" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:98 +msgid "Theme settings" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Narrow navbar" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:100 +msgid "Navigation bar background color" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:101 +msgid "Navigation bar icon color " +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Navigation bar active icon color " +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Link color" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Set font-color for banner" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Set the background color" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Set the background image" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Set the background color of items" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Set the background color of comments" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Set font-size for the entire application" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Examples: 1rem, 100%, 16px" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Set font-color for posts and comments" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Set radius of corners" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Example: 4px" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Set shadow depth of photos" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:113 +msgid "Set maximum width of content region in pixel" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:113 +msgid "Leave empty for default width" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set size of conversation author photo" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:115 +msgid "Set size of followup author photos" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:116 +msgid "Show advanced settings" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:283 +msgid "Social Networking" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:284 +msgid "Social - Federation" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:285 +msgid "Social - Mostly Public" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:286 +msgid "Social - Restricted" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:287 +msgid "Social - Private" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:290 +msgid "Community Forum" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:291 +msgid "Forum - Mostly Public" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:292 +msgid "Forum - Restricted" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:293 +msgid "Forum - Private" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:296 +msgid "Feed Republish" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:297 +msgid "Feed - Mostly Public" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:298 +msgid "Feed - Restricted" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:301 +msgid "Special Purpose" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:302 +msgid "Special - Celebrity/Soapbox" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:303 +msgid "Special - Group Repository" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:307 +msgid "Custom/Expert Mode" +msgstr "" + #: ../../Zotlabs/Access/Permissions.php:56 msgid "Can view my channel stream and posts" msgstr "" @@ -89,2368 +3899,877 @@ msgstr "" msgid "Can administer my channel" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:283 -msgid "Social Networking" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:284 -msgid "Social - Federation" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:285 -msgid "Social - Mostly Public" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:286 -msgid "Social - Restricted" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:287 -msgid "Social - Private" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:290 -msgid "Community Forum" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:291 -msgid "Forum - Mostly Public" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:292 -msgid "Forum - Restricted" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:293 -msgid "Forum - Private" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:296 -msgid "Feed Republish" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:297 -msgid "Feed - Mostly Public" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:298 -msgid "Feed - Restricted" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:301 -msgid "Special Purpose" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:302 -msgid "Special - Celebrity/Soapbox" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:303 -msgid "Special - Group Repository" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:306 -#: ../../Zotlabs/Module/Cdav.php:1227 ../../Zotlabs/Module/Connedit.php:935 -#: ../../Zotlabs/Module/Profiles.php:795 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 ../../include/selectors.php:115 -#: ../../include/selectors.php:151 ../../include/event.php:1327 -#: ../../include/event.php:1334 ../../include/connections.php:703 -#: ../../include/connections.php:710 -msgid "Other" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:307 -msgid "Custom/Expert Mode" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Articles.php:42 -#: ../../Zotlabs/Module/Editlayout.php:31 ../../Zotlabs/Module/Connect.php:17 -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Menu.php:91 ../../Zotlabs/Module/Layouts.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Cards.php:42 -#: ../../Zotlabs/Module/Webpages.php:39 ../../Zotlabs/Module/Filestorage.php:51 -#: ../../addon/gallery/Mod_Gallery.php:49 ../../include/channel.php:1253 -msgid "Requested profile is not available." -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Invite.php:21 ../../Zotlabs/Module/Invite.php:102 -#: ../../Zotlabs/Module/Articles.php:88 ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:168 -#: ../../Zotlabs/Module/Channel.php:335 ../../Zotlabs/Module/Channel.php:374 -#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Events.php:271 -#: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Regmod.php:20 -#: ../../Zotlabs/Module/Article_edit.php:51 -#: ../../Zotlabs/Module/New_channel.php:105 -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 -#: ../../Zotlabs/Module/Moderate.php:13 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:280 -#: ../../Zotlabs/Module/Thing.php:300 ../../Zotlabs/Module/Thing.php:341 -#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 -#: ../../Zotlabs/Module/Mood.php:126 ../../Zotlabs/Module/Connections.php:32 -#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:70 -#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:59 -#: ../../Zotlabs/Module/Wiki.php:285 ../../Zotlabs/Module/Wiki.php:428 -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Poke.php:157 -#: ../../Zotlabs/Module/Profile_photo.php:302 -#: ../../Zotlabs/Module/Profile_photo.php:315 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:376 -#: ../../Zotlabs/Module/Item.php:395 ../../Zotlabs/Module/Item.php:405 -#: ../../Zotlabs/Module/Item.php:1281 ../../Zotlabs/Module/Page.php:34 -#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:399 -#: ../../Zotlabs/Module/Chat.php:115 ../../Zotlabs/Module/Chat.php:120 -#: ../../Zotlabs/Module/Menu.php:129 ../../Zotlabs/Module/Menu.php:140 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Cloud.php:40 -#: ../../Zotlabs/Module/Defperms.php:181 ../../Zotlabs/Module/Group.php:14 -#: ../../Zotlabs/Module/Group.php:30 ../../Zotlabs/Module/Profiles.php:198 -#: ../../Zotlabs/Module/Profiles.php:635 -#: ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:107 -#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Cards.php:86 ../../Zotlabs/Module/Webpages.php:133 -#: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:80 -#: ../../Zotlabs/Module/Like.php:187 ../../Zotlabs/Module/Suggest.php:32 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 -#: ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Cover_photo.php:313 -#: ../../Zotlabs/Module/Cover_photo.php:326 -#: ../../Zotlabs/Module/Display.php:446 ../../Zotlabs/Module/Network.php:19 -#: ../../Zotlabs/Module/Filestorage.php:15 -#: ../../Zotlabs/Module/Filestorage.php:70 -#: ../../Zotlabs/Module/Filestorage.php:96 -#: ../../Zotlabs/Module/Filestorage.php:140 ../../Zotlabs/Module/Common.php:38 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Service_limits.php:11 ../../Zotlabs/Module/Rate.php:113 -#: ../../Zotlabs/Module/Card_edit.php:51 -#: ../../Zotlabs/Module/Notifications.php:11 ../../Zotlabs/Lib/Chatroom.php:133 -#: ../../Zotlabs/Web/WebServer.php:123 ../../addon/keepout/keepout.php:36 -#: ../../addon/flashcards/Mod_Flashcards.php:167 -#: ../../addon/openid/Mod_Id.php:53 ../../addon/pumpio/pumpio.php:44 -#: ../../include/attach.php:150 ../../include/attach.php:199 -#: ../../include/attach.php:272 ../../include/attach.php:381 -#: ../../include/attach.php:395 ../../include/attach.php:402 -#: ../../include/attach.php:484 ../../include/attach.php:1044 -#: ../../include/attach.php:1118 ../../include/attach.php:1283 -#: ../../include/items.php:3781 ../../include/photos.php:27 -msgid "Permission denied." -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:113 -msgid "Block Name" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2534 -msgid "Blocks" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:177 -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:266 -msgid "Created" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:178 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:267 -msgid "Edited" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:116 -#: ../../Zotlabs/Module/Cdav.php:1230 ../../Zotlabs/Module/New_channel.php:189 -#: ../../Zotlabs/Module/Connedit.php:938 ../../Zotlabs/Module/Menu.php:181 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Cards.php:113 ../../Zotlabs/Module/Webpages.php:254 -#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:390 -#: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 -msgid "Create" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Article_edit.php:99 -#: ../../Zotlabs/Module/Admin/Profs.php:175 ../../Zotlabs/Module/Thing.php:266 -#: ../../Zotlabs/Module/Oauth2.php:194 ../../Zotlabs/Module/Editblock.php:114 -#: ../../Zotlabs/Module/Connections.php:284 -#: ../../Zotlabs/Module/Connections.php:322 -#: ../../Zotlabs/Module/Connections.php:342 ../../Zotlabs/Module/Wiki.php:211 -#: ../../Zotlabs/Module/Wiki.php:384 ../../Zotlabs/Module/Menu.php:175 -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Group.php:252 -#: ../../Zotlabs/Module/Editwebpage.php:142 -#: ../../Zotlabs/Module/Webpages.php:255 ../../Zotlabs/Module/Card_edit.php:99 -#: ../../Zotlabs/Module/Oauth.php:173 ../../Zotlabs/Lib/Apps.php:556 -#: ../../Zotlabs/Lib/ThreadItem.php:147 ../../Zotlabs/Storage/Browser.php:290 -#: ../../Zotlabs/Widget/Cdav.php:126 ../../Zotlabs/Widget/Cdav.php:162 -#: ../../include/channel.php:1352 ../../include/channel.php:1356 -#: ../../include/menu.php:118 -msgid "Edit" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1117 -#: ../../Zotlabs/Module/Wiki.php:301 ../../Zotlabs/Module/Layouts.php:194 -#: ../../Zotlabs/Module/Webpages.php:256 ../../Zotlabs/Widget/Cdav.php:124 -#: ../../addon/hsse/hsse.php:186 ../../include/conversation.php:1392 -msgid "Share" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 -#: ../../Zotlabs/Module/Cdav.php:942 ../../Zotlabs/Module/Cdav.php:1232 -#: ../../Zotlabs/Module/Article_edit.php:129 -#: ../../Zotlabs/Module/Admin/Accounts.php:175 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Admin/Profs.php:176 ../../Zotlabs/Module/Thing.php:267 -#: ../../Zotlabs/Module/Oauth2.php:195 ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Connections.php:292 -#: ../../Zotlabs/Module/Photos.php:1220 ../../Zotlabs/Module/Connedit.php:668 -#: ../../Zotlabs/Module/Connedit.php:940 ../../Zotlabs/Module/Profiles.php:800 -#: ../../Zotlabs/Module/Editwebpage.php:167 -#: ../../Zotlabs/Module/Webpages.php:257 ../../Zotlabs/Module/Card_edit.php:129 -#: ../../Zotlabs/Module/Oauth.php:174 ../../Zotlabs/Lib/Apps.php:557 -#: ../../Zotlabs/Lib/ThreadItem.php:167 ../../Zotlabs/Storage/Browser.php:291 -#: ../../include/conversation.php:691 ../../include/conversation.php:736 -msgid "Delete" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:695 -#: ../../Zotlabs/Module/Wiki.php:213 ../../Zotlabs/Module/Wiki.php:409 -#: ../../Zotlabs/Module/Layouts.php:198 ../../Zotlabs/Module/Webpages.php:261 -#: ../../Zotlabs/Module/Pubsites.php:60 -msgid "View" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:37 -msgid "Total invitation limit exceeded." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:61 +#: ../../Zotlabs/Lib/Activity.php:1500 #, php-format -msgid "%s : Not a valid email address." +msgid "Likes %1$s's %2$s" msgstr "" -#: ../../Zotlabs/Module/Invite.php:75 -msgid "Please join us on $Projectname" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:85 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:90 -#: ../../addon/notifyadmin/notifyadmin.php:40 +#: ../../Zotlabs/Lib/Activity.php:1503 #, php-format -msgid "%s : Message delivery failed." +msgid "Doesn't like %1$s's %2$s" msgstr "" -#: ../../Zotlabs/Module/Invite.php:94 +#: ../../Zotlabs/Lib/Activity.php:1506 #, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Invite.php:110 -msgid "Invite App" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:110 ../../Zotlabs/Module/Articles.php:51 -#: ../../Zotlabs/Module/Cdav.php:839 ../../Zotlabs/Module/Cdav.php:848 -#: ../../Zotlabs/Module/Permcats.php:62 ../../Zotlabs/Module/Lang.php:17 -#: ../../Zotlabs/Module/Uexport.php:61 ../../Zotlabs/Module/Pubstream.php:20 -#: ../../Zotlabs/Module/Connect.php:104 ../../Zotlabs/Module/Tokens.php:99 -#: ../../Zotlabs/Module/Oauth2.php:106 ../../Zotlabs/Module/Randprof.php:29 -#: ../../Zotlabs/Module/Mood.php:134 ../../Zotlabs/Module/Bookmarks.php:78 -#: ../../Zotlabs/Module/Wiki.php:52 ../../Zotlabs/Module/Pdledit.php:42 -#: ../../Zotlabs/Module/Poke.php:165 ../../Zotlabs/Module/Chat.php:102 -#: ../../Zotlabs/Module/Notes.php:56 ../../Zotlabs/Module/Affinity.php:52 -#: ../../Zotlabs/Module/Defperms.php:189 ../../Zotlabs/Module/Group.php:106 -#: ../../Zotlabs/Module/Cards.php:51 ../../Zotlabs/Module/Webpages.php:48 -#: ../../Zotlabs/Module/Sources.php:88 ../../Zotlabs/Module/Suggest.php:40 -#: ../../Zotlabs/Module/Probe.php:18 ../../Zotlabs/Module/Oauth.php:100 -#: ../../addon/skeleton/Mod_Skeleton.php:32 -#: ../../addon/gnusoc/Mod_Gnusoc.php:22 ../../addon/planets/Mod_Planets.php:20 -#: ../../addon/wppost/Mod_Wppost.php:41 ../../addon/nsfw/Mod_Nsfw.php:33 -#: ../../addon/ijpost/Mod_Ijpost.php:35 ../../addon/dwpost/Mod_Dwpost.php:36 -#: ../../addon/gallery/Mod_Gallery.php:58 ../../addon/ljpost/Mod_Ljpost.php:36 -#: ../../addon/startpage/Mod_Startpage.php:50 -#: ../../addon/diaspora/Mod_Diaspora.php:55 -#: ../../addon/photocache/Mod_Photocache.php:42 -#: ../../addon/rainbowtag/Mod_Rainbowtag.php:21 -#: ../../addon/nsabait/Mod_Nsabait.php:20 -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:34 ../../addon/rtof/Mod_Rtof.php:36 -#: ../../addon/jappixmini/Mod_Jappixmini.php:96 -#: ../../addon/superblock/Mod_Superblock.php:20 -#: ../../addon/nofed/Mod_Nofed.php:33 ../../addon/redred/Mod_Redred.php:50 -#: ../../addon/hsse/Mod_Hsse.php:21 ../../addon/pubcrawl/Mod_Pubcrawl.php:40 -#: ../../addon/libertree/Mod_Libertree.php:35 -#: ../../addon/flattrwidget/Mod_Flattrwidget.php:53 -#: ../../addon/statusnet/Mod_Statusnet.php:146 -#: ../../addon/twitter/Mod_Twitter.php:78 -#: ../../addon/smileybutton/Mod_Smileybutton.php:35 -#: ../../addon/sendzid/Mod_Sendzid.php:20 -#: ../../addon/pageheader/Mod_Pageheader.php:34 -#: ../../addon/authchoose/Mod_Authchoose.php:28 -#: ../../addon/xmpp/Mod_Xmpp.php:35 ../../addon/pumpio/Mod_Pumpio.php:53 -msgid "Not Installed" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:111 -msgid "Send email invitations to join this network" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:124 -msgid "You have no more invitations available" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:155 -msgid "Send invitations" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:156 -msgid "Enter email addresses, one per line:" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:157 ../../Zotlabs/Module/Mail.php:285 -msgid "Your message:" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:158 -msgid "Please join my community on $Projectname." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:160 -msgid "You will need to supply this invitation code:" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:161 -msgid "1. Register at any $Projectname location (they are all inter-connected)" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:163 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:164 -msgid "or visit" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:166 -msgid "3. Click [Connect]" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:168 ../../Zotlabs/Module/Permcats.php:128 -#: ../../Zotlabs/Module/Locs.php:121 ../../Zotlabs/Module/Mitem.php:259 -#: ../../Zotlabs/Module/Events.php:495 ../../Zotlabs/Module/Appman.php:155 -#: ../../Zotlabs/Module/Import_items.php:129 ../../Zotlabs/Module/Setup.php:308 -#: ../../Zotlabs/Module/Setup.php:349 ../../Zotlabs/Module/Connect.php:124 -#: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Accounts.php:168 -#: ../../Zotlabs/Module/Admin/Logs.php:84 -#: ../../Zotlabs/Module/Admin/Channels.php:147 -#: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Site.php:289 -#: ../../Zotlabs/Module/Admin/Addons.php:441 -#: ../../Zotlabs/Module/Admin/Profs.php:178 -#: ../../Zotlabs/Module/Admin/Account_edit.php:73 -#: ../../Zotlabs/Module/Admin/Security.php:112 -#: ../../Zotlabs/Module/Settings/Channel.php:493 -#: ../../Zotlabs/Module/Settings/Features.php:46 -#: ../../Zotlabs/Module/Settings/Events.php:41 -#: ../../Zotlabs/Module/Settings/Calendar.php:41 -#: ../../Zotlabs/Module/Settings/Conversation.php:48 -#: ../../Zotlabs/Module/Settings/Connections.php:41 -#: ../../Zotlabs/Module/Settings/Photos.php:41 -#: ../../Zotlabs/Module/Settings/Account.php:103 -#: ../../Zotlabs/Module/Settings/Profiles.php:50 -#: ../../Zotlabs/Module/Settings/Manage.php:41 -#: ../../Zotlabs/Module/Settings/Channel_home.php:89 -#: ../../Zotlabs/Module/Settings/Directory.php:41 -#: ../../Zotlabs/Module/Settings/Editor.php:41 -#: ../../Zotlabs/Module/Settings/Display.php:189 -#: ../../Zotlabs/Module/Settings/Network.php:61 -#: ../../Zotlabs/Module/Tokens.php:188 ../../Zotlabs/Module/Thing.php:326 -#: ../../Zotlabs/Module/Thing.php:379 ../../Zotlabs/Module/Import.php:574 -#: ../../Zotlabs/Module/Oauth2.php:116 ../../Zotlabs/Module/Cal.php:344 -#: ../../Zotlabs/Module/Mood.php:158 ../../Zotlabs/Module/Photos.php:1097 -#: ../../Zotlabs/Module/Photos.php:1138 ../../Zotlabs/Module/Photos.php:1257 -#: ../../Zotlabs/Module/Wiki.php:215 ../../Zotlabs/Module/Pdledit.php:107 -#: ../../Zotlabs/Module/Poke.php:217 ../../Zotlabs/Module/Connedit.php:904 -#: ../../Zotlabs/Module/Chat.php:211 ../../Zotlabs/Module/Chat.php:250 -#: ../../Zotlabs/Module/Email_validation.php:40 -#: ../../Zotlabs/Module/Pconfig.php:116 ../../Zotlabs/Module/Affinity.php:87 -#: ../../Zotlabs/Module/Defperms.php:265 ../../Zotlabs/Module/Group.php:150 -#: ../../Zotlabs/Module/Group.php:166 ../../Zotlabs/Module/Profiles.php:723 -#: ../../Zotlabs/Module/Editpost.php:85 ../../Zotlabs/Module/Sources.php:125 -#: ../../Zotlabs/Module/Sources.php:162 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Module/Mail.php:431 ../../Zotlabs/Module/Filestorage.php:183 -#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Oauth.php:111 -#: ../../Zotlabs/Lib/ThreadItem.php:795 ../../Zotlabs/Widget/Eventstools.php:16 -#: ../../Zotlabs/Widget/Wiki_pages.php:42 -#: ../../Zotlabs/Widget/Wiki_pages.php:99 -#: ../../view/theme/redbasic_c/php/config.php:95 -#: ../../view/theme/redbasic/php/config.php:94 -#: ../../addon/skeleton/Mod_Skeleton.php:51 -#: ../../addon/openclipatar/openclipatar.php:53 -#: ../../addon/wppost/Mod_Wppost.php:97 ../../addon/nsfw/Mod_Nsfw.php:61 -#: ../../addon/ijpost/Mod_Ijpost.php:72 ../../addon/dwpost/Mod_Dwpost.php:71 -#: ../../addon/likebanner/likebanner.php:57 -#: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:45 -#: ../../addon/ljpost/Mod_Ljpost.php:73 -#: ../../addon/startpage/Mod_Startpage.php:73 -#: ../../addon/diaspora/Mod_Diaspora.php:99 -#: ../../addon/photocache/Mod_Photocache.php:67 -#: ../../addon/hzfiles/hzfiles.php:84 ../../addon/mailtest/mailtest.php:100 -#: ../../addon/openstreetmap/openstreetmap.php:169 -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:56 ../../addon/rtof/Mod_Rtof.php:72 -#: ../../addon/jappixmini/Mod_Jappixmini.php:261 -#: ../../addon/channelreputation/channelreputation.php:140 -#: ../../addon/nofed/Mod_Nofed.php:53 ../../addon/redred/Mod_Redred.php:90 -#: ../../addon/logrot/logrot.php:35 ../../addon/frphotos/frphotos.php:97 -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:63 -#: ../../addon/chords/Mod_Chords.php:60 -#: ../../addon/libertree/Mod_Libertree.php:70 -#: ../../addon/flattrwidget/Mod_Flattrwidget.php:92 -#: ../../addon/statusnet/Mod_Statusnet.php:193 -#: ../../addon/statusnet/Mod_Statusnet.php:251 -#: ../../addon/statusnet/Mod_Statusnet.php:306 -#: ../../addon/statusnet/statusnet.php:602 -#: ../../addon/twitter/Mod_Twitter.php:184 -#: ../../addon/smileybutton/Mod_Smileybutton.php:55 -#: ../../addon/cart/Settings/Cart.php:114 ../../addon/cart/cart.php:1264 -#: ../../addon/cart/submodules/manualcat.php:248 -#: ../../addon/cart/submodules/hzservices.php:640 -#: ../../addon/cart/submodules/subscriptions.php:410 -#: ../../addon/piwik/piwik.php:95 ../../addon/pageheader/Mod_Pageheader.php:54 -#: ../../addon/xmpp/Mod_Xmpp.php:70 ../../addon/pumpio/Mod_Pumpio.php:115 -#: ../../addon/redfiles/redfiles.php:124 ../../addon/hubwall/hubwall.php:95 -#: ../../include/js_strings.php:22 -msgid "Submit" -msgstr "" - -#: ../../Zotlabs/Module/Articles.php:51 -msgid "Articles App" -msgstr "" - -#: ../../Zotlabs/Module/Articles.php:52 -msgid "Create interactive articles" -msgstr "" - -#: ../../Zotlabs/Module/Articles.php:115 -msgid "Add Article" -msgstr "" - -#: ../../Zotlabs/Module/Articles.php:222 ../../Zotlabs/Lib/Apps.php:324 -#: ../../include/nav.php:512 -msgid "Articles" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Article_edit.php:17 -#: ../../Zotlabs/Module/Article_edit.php:33 -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editwebpage.php:80 ../../Zotlabs/Module/Editpost.php:24 -#: ../../Zotlabs/Module/Card_edit.php:17 ../../Zotlabs/Module/Card_edit.php:33 -msgid "Item not found" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:128 ../../Zotlabs/Module/Layouts.php:129 -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Name" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:129 ../../Zotlabs/Module/Layouts.php:132 -msgid "Layout Description (Optional)" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:137 -msgid "Edit Layout" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:140 ../../Zotlabs/Module/Cdav.php:944 -#: ../../Zotlabs/Module/Cdav.php:1233 ../../Zotlabs/Module/Article_edit.php:131 -#: ../../Zotlabs/Module/Admin/Addons.php:426 -#: ../../Zotlabs/Module/Oauth2.php:117 ../../Zotlabs/Module/Oauth2.php:145 -#: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Wiki.php:368 -#: ../../Zotlabs/Module/Wiki.php:401 ../../Zotlabs/Module/Profile_photo.php:465 -#: ../../Zotlabs/Module/Connedit.php:941 ../../Zotlabs/Module/Fbrowser.php:66 -#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:801 -#: ../../Zotlabs/Module/Editwebpage.php:169 -#: ../../Zotlabs/Module/Editpost.php:109 ../../Zotlabs/Module/Filer.php:55 -#: ../../Zotlabs/Module/Cover_photo.php:399 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Card_edit.php:131 -#: ../../Zotlabs/Module/Oauth.php:112 ../../Zotlabs/Module/Oauth.php:138 -#: ../../addon/hsse/hsse.php:209 ../../addon/hsse/hsse.php:258 -#: ../../include/conversation.php:1415 ../../include/conversation.php:1464 -msgid "Cancel" -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:86 -#: ../../Zotlabs/Module/Import_items.php:120 ../../Zotlabs/Module/Share.php:71 -#: ../../Zotlabs/Module/Cloud.php:126 ../../Zotlabs/Module/Group.php:98 -#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:79 -#: ../../Zotlabs/Module/Like.php:301 ../../Zotlabs/Web/WebServer.php:122 -#: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:73 -#: ../../addon/frphotos/frphotos.php:82 ../../addon/redfiles/redfiles.php:109 -#: ../../include/items.php:416 -msgid "Permission denied" -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:111 -msgid "Profile Visibility Editor" -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:113 ../../Zotlabs/Lib/Apps.php:359 -#: ../../include/channel.php:1700 -msgid "Profile" -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Click on a contact to add or remove." -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:124 -msgid "Visible To" -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:140 -#: ../../Zotlabs/Module/Connections.php:203 -msgid "All Connections" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:810 -msgid "INVALID EVENT DISMISSED!" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:811 -msgid "Summary: " -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:811 ../../Zotlabs/Module/Cdav.php:812 -#: ../../Zotlabs/Module/Cdav.php:819 ../../Zotlabs/Module/Embedphotos.php:154 -#: ../../Zotlabs/Module/Photos.php:832 ../../Zotlabs/Module/Photos.php:1296 -#: ../../Zotlabs/Lib/Activity.php:1011 ../../Zotlabs/Lib/Apps.php:1113 -#: ../../Zotlabs/Lib/Apps.php:1197 ../../Zotlabs/Storage/Browser.php:164 -#: ../../Zotlabs/Widget/Portfolio.php:95 ../../Zotlabs/Widget/Album.php:84 -#: ../../addon/pubcrawl/as.php:959 ../../include/conversation.php:1166 -msgid "Unknown" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:812 -msgid "Date: " -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:813 ../../Zotlabs/Module/Cdav.php:820 -msgid "Reason: " -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:818 -msgid "INVALID CARD DISMISSED!" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:819 -msgid "Name: " -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:839 -msgid "CalDAV App" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:840 -msgid "CalDAV capable calendar" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:848 -msgid "CardDAV App" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:849 -msgid "CalDAV capable addressbook" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:913 ../../Zotlabs/Module/Events.php:462 -msgid "Event title" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:914 ../../Zotlabs/Module/Events.php:468 -msgid "Start date and time" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:914 ../../Zotlabs/Module/Cdav.php:915 -msgid "Example: YYYY-MM-DD HH:mm" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:915 -msgid "End date and time" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:916 ../../Zotlabs/Module/Events.php:475 -#: ../../Zotlabs/Module/Appman.php:145 ../../Zotlabs/Module/Rbmark.php:101 -#: ../../addon/rendezvous/rendezvous.php:173 -#: ../../addon/cart/submodules/manualcat.php:260 -#: ../../addon/cart/submodules/hzservices.php:652 -msgid "Description" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:917 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Events.php:477 ../../Zotlabs/Module/Profiles.php:509 -#: ../../Zotlabs/Module/Profiles.php:734 ../../Zotlabs/Module/Pubsites.php:52 -#: ../../include/js_strings.php:25 -msgid "Location" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:924 ../../Zotlabs/Module/Events.php:690 -#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Cal.php:338 -#: ../../Zotlabs/Module/Cal.php:345 ../../Zotlabs/Module/Photos.php:986 -msgid "Previous" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:925 ../../Zotlabs/Module/Events.php:691 -#: ../../Zotlabs/Module/Events.php:700 ../../Zotlabs/Module/Setup.php:263 -#: ../../Zotlabs/Module/Cal.php:339 ../../Zotlabs/Module/Cal.php:346 -#: ../../Zotlabs/Module/Photos.php:995 -msgid "Next" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:926 ../../Zotlabs/Module/Events.php:701 -#: ../../Zotlabs/Module/Cal.php:347 -msgid "Today" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:927 ../../Zotlabs/Module/Events.php:696 -msgid "Month" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:928 ../../Zotlabs/Module/Events.php:697 -msgid "Week" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:929 ../../Zotlabs/Module/Events.php:698 -msgid "Day" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:930 -msgid "List month" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:931 -msgid "List week" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:932 -msgid "List day" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:939 -msgid "More" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:940 -msgid "Less" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:941 -msgid "Select calendar" +msgid "Will attend %1$s's %2$s" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:943 -msgid "Delete all" +#: ../../Zotlabs/Lib/Activity.php:1509 +#, php-format +msgid "Will not attend %1$s's %2$s" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:945 -msgid "Sorry! Editing of recurrent events is not yet implemented." +#: ../../Zotlabs/Lib/Activity.php:1512 +#, php-format +msgid "May attend %1$s's %2$s" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1215 ../../Zotlabs/Module/Sharedwithme.php:104 -#: ../../Zotlabs/Module/Admin/Channels.php:159 -#: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 -#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Connedit.php:923 -#: ../../Zotlabs/Module/Chat.php:259 ../../Zotlabs/Module/Group.php:154 -#: ../../Zotlabs/Module/Oauth.php:113 ../../Zotlabs/Module/Oauth.php:139 -#: ../../Zotlabs/Lib/NativeWikiPage.php:561 -#: ../../Zotlabs/Storage/Browser.php:285 -#: ../../Zotlabs/Widget/Wiki_page_history.php:22 -#: ../../addon/rendezvous/rendezvous.php:172 -msgid "Name" +#: ../../Zotlabs/Lib/Activity.php:1515 ../../Zotlabs/Module/Share.php:103 +#, php-format +msgid "🔁 Repeated %1$s's %2$s" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1216 ../../Zotlabs/Module/Connedit.php:924 -msgid "Organisation" +#: ../../Zotlabs/Lib/Apps.php:322 +msgid "Apps" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1217 ../../Zotlabs/Module/Connedit.php:925 -msgid "Title" +#: ../../Zotlabs/Lib/Apps.php:323 +msgid "Affinity Tool" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1218 ../../Zotlabs/Module/Connedit.php:926 -#: ../../Zotlabs/Module/Profiles.php:786 -msgid "Phone" +#: ../../Zotlabs/Lib/Apps.php:326 +msgid "Site Admin" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1219 -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../Zotlabs/Module/Admin/Accounts.php:183 -#: ../../Zotlabs/Module/Connedit.php:927 ../../Zotlabs/Module/Profiles.php:787 -#: ../../addon/openid/MysqlProvider.php:56 -#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/Mod_Rtof.php:57 -#: ../../addon/redred/Mod_Redred.php:71 ../../include/network.php:1721 -msgid "Email" +#: ../../Zotlabs/Lib/Apps.php:327 +msgid "Report Bug" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1220 ../../Zotlabs/Module/Connedit.php:928 -#: ../../Zotlabs/Module/Profiles.php:788 -msgid "Instant messenger" +#: ../../Zotlabs/Lib/Apps.php:330 +msgid "Content Filter" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1221 ../../Zotlabs/Module/Connedit.php:929 -#: ../../Zotlabs/Module/Profiles.php:789 -msgid "Website" +#: ../../Zotlabs/Lib/Apps.php:331 +msgid "Content Import" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1222 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Connedit.php:930 ../../Zotlabs/Module/Profiles.php:502 -#: ../../Zotlabs/Module/Profiles.php:790 -msgid "Address" +#: ../../Zotlabs/Lib/Apps.php:333 +msgid "Remote Diagnostics" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1223 ../../Zotlabs/Module/Connedit.php:931 -#: ../../Zotlabs/Module/Profiles.php:791 -msgid "Note" +#: ../../Zotlabs/Lib/Apps.php:334 +msgid "Suggest Channels" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1224 ../../Zotlabs/Module/Connedit.php:932 -#: ../../Zotlabs/Module/Profiles.php:792 ../../include/event.php:1320 -#: ../../include/connections.php:696 -msgid "Mobile" +#: ../../Zotlabs/Lib/Apps.php:337 +msgid "Stream" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1225 ../../Zotlabs/Module/Connedit.php:933 -#: ../../Zotlabs/Module/Profiles.php:793 ../../include/event.php:1321 -#: ../../include/connections.php:697 -msgid "Home" +#: ../../Zotlabs/Lib/Apps.php:348 +msgid "Mail" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1226 ../../Zotlabs/Module/Connedit.php:934 -#: ../../Zotlabs/Module/Profiles.php:794 ../../include/event.php:1324 -#: ../../include/connections.php:700 -msgid "Work" +#: ../../Zotlabs/Lib/Apps.php:349 ../../Zotlabs/Module/Mood.php:154 +msgid "Mood" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1228 ../../Zotlabs/Module/Connedit.php:936 -#: ../../Zotlabs/Module/Profiles.php:796 -#: ../../addon/jappixmini/Mod_Jappixmini.php:216 -msgid "Add Contact" +#: ../../Zotlabs/Lib/Apps.php:351 +msgid "Chat" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1229 ../../Zotlabs/Module/Connedit.php:937 -#: ../../Zotlabs/Module/Profiles.php:797 -msgid "Add Field" +#: ../../Zotlabs/Lib/Apps.php:353 +msgid "Probe" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1231 ../../Zotlabs/Module/Admin/Addons.php:456 -#: ../../Zotlabs/Module/Oauth2.php:58 ../../Zotlabs/Module/Oauth2.php:144 -#: ../../Zotlabs/Module/Connedit.php:939 ../../Zotlabs/Module/Profiles.php:799 -#: ../../Zotlabs/Module/Oauth.php:53 ../../Zotlabs/Module/Oauth.php:137 -#: ../../Zotlabs/Lib/Apps.php:535 -msgid "Update" +#: ../../Zotlabs/Lib/Apps.php:354 +msgid "Suggest" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1234 ../../Zotlabs/Module/Connedit.php:942 -msgid "P.O. Box" +#: ../../Zotlabs/Lib/Apps.php:355 +msgid "Random Channel" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1235 ../../Zotlabs/Module/Connedit.php:943 -msgid "Additional" +#: ../../Zotlabs/Lib/Apps.php:356 +msgid "Invite" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1236 ../../Zotlabs/Module/Connedit.php:944 -msgid "Street" +#: ../../Zotlabs/Lib/Apps.php:357 ../../Zotlabs/Widget/Admin.php:26 +msgid "Features" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1237 ../../Zotlabs/Module/Connedit.php:945 -msgid "Locality" +#: ../../Zotlabs/Lib/Apps.php:358 +msgid "Language" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1238 ../../Zotlabs/Module/Connedit.php:946 -msgid "Region" +#: ../../Zotlabs/Lib/Apps.php:359 +msgid "Post" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1239 ../../Zotlabs/Module/Connedit.php:947 -msgid "ZIP Code" +#: ../../Zotlabs/Lib/Apps.php:360 +msgid "Profile Photo" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1240 ../../Zotlabs/Module/Connedit.php:948 -#: ../../Zotlabs/Module/Profiles.php:757 -msgid "Country" +#: ../../Zotlabs/Lib/Apps.php:364 +msgid "Notifications" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1287 -msgid "Default Calendar" +#: ../../Zotlabs/Lib/Apps.php:365 +msgid "Order Apps" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1297 -msgid "Default Addressbook" +#: ../../Zotlabs/Lib/Apps.php:367 +msgid "CardDAV" msgstr "" -#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 -msgid "This site is not a directory server" +#: ../../Zotlabs/Lib/Apps.php:368 ../../Zotlabs/Module/Sources.php:107 +msgid "Channel Sources" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:28 -msgid "Permission category name is required." +#: ../../Zotlabs/Lib/Apps.php:369 +msgid "Guest Access" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:47 -msgid "Permission category saved." +#: ../../Zotlabs/Lib/Apps.php:370 ../../Zotlabs/Widget/Notes.php:21 +msgid "Notes" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:62 -msgid "Permission Categories App" +#: ../../Zotlabs/Lib/Apps.php:371 +msgid "OAuth Apps Manager" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:63 -msgid "Create custom connection permission limits" +#: ../../Zotlabs/Lib/Apps.php:372 +msgid "OAuth2 Apps Manager" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:79 -msgid "" -"Use this form to create permission rules for various classes of people or " -"connections." +#: ../../Zotlabs/Lib/Apps.php:373 +msgid "PDL Editor" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:112 ../../Zotlabs/Lib/Apps.php:372 +#: ../../Zotlabs/Lib/Apps.php:374 ../../Zotlabs/Module/Permcats.php:112 msgid "Permission Categories" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:120 -msgid "Permission category name" +#: ../../Zotlabs/Lib/Apps.php:375 +msgid "Premium Channel" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:121 ../../Zotlabs/Module/Tokens.php:181 -#: ../../Zotlabs/Module/Connedit.php:908 ../../Zotlabs/Module/Defperms.php:266 -msgid "My Settings" -msgstr "" - -#: ../../Zotlabs/Module/Permcats.php:123 ../../Zotlabs/Module/Tokens.php:183 -#: ../../Zotlabs/Module/Connedit.php:903 ../../Zotlabs/Module/Defperms.php:264 -msgid "inherited" -msgstr "" - -#: ../../Zotlabs/Module/Permcats.php:126 ../../Zotlabs/Module/Tokens.php:186 -#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Defperms.php:269 -msgid "Individual Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Permcats.php:127 ../../Zotlabs/Module/Tokens.php:187 -#: ../../Zotlabs/Module/Connedit.php:911 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can not change those settings here." -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:41 ../../Zotlabs/Module/Ochannel.php:32 -#: ../../Zotlabs/Module/Chat.php:31 ../../addon/chess/Mod_Chess.php:343 -msgid "You must be logged in to see this page." -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:98 ../../Zotlabs/Module/Hcard.php:37 -#: ../../Zotlabs/Module/Profile.php:45 -msgid "Posts and comments" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:105 ../../Zotlabs/Module/Hcard.php:44 -#: ../../Zotlabs/Module/Profile.php:52 -msgid "Only posts" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:165 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:182 ../../Zotlabs/Module/Network.php:173 -msgid "Search Results For:" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:217 ../../Zotlabs/Module/Hq.php:134 -#: ../../Zotlabs/Module/Pubstream.php:94 ../../Zotlabs/Module/Display.php:80 -#: ../../Zotlabs/Module/Network.php:203 -msgid "Reset form" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:476 ../../Zotlabs/Module/Display.php:373 -msgid "" -"You must enable javascript for your browser to be able to view this content." -msgstr "" - -#: ../../Zotlabs/Module/Lang.php:17 -msgid "Language App" -msgstr "" - -#: ../../Zotlabs/Module/Lang.php:18 -msgid "Change UI language" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:61 -msgid "Channel Export App" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "Export your channel" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:72 ../../Zotlabs/Module/Uexport.php:73 -msgid "Export Channel" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:74 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:75 -msgid "Export Content" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:76 -msgid "" -"Export your channel information and recent content to a JSON backup that can " -"be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for " -"this download to begin." -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:78 -msgid "Export your posts from a given year." -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:80 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:81 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:82 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:83 -#, php-format -msgid "" -"These content files may be imported or restored by visiting " -"%2$s on any site containing your channel. For best results please import " -"or restore these in date order (oldest first)." -msgstr "" - -#: ../../Zotlabs/Module/Hq.php:140 -msgid "Welcome to Hubzilla!" -msgstr "" - -#: ../../Zotlabs/Module/Hq.php:140 -msgid "You have got no unseen posts..." -msgstr "" - -#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:558 -#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:67 -#: ../../Zotlabs/Module/Directory.php:72 ../../Zotlabs/Module/Display.php:29 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." -msgstr "" - -#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:338 -#: ../../Zotlabs/Lib/Apps.php:350 ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../Zotlabs/Widget/Activity_filter.php:151 ../../include/text.php:1084 -#: ../../include/text.php:1096 ../../include/acl_selectors.php:118 -#: ../../include/nav.php:183 -msgid "Search" -msgstr "" - -#: ../../Zotlabs/Module/Search.php:230 -#, php-format -msgid "Items tagged with: %s" -msgstr "" - -#: ../../Zotlabs/Module/Search.php:232 -#, php-format -msgid "Search results for: %s" -msgstr "" - -#: ../../Zotlabs/Module/Pubstream.php:20 -msgid "Public Stream App" -msgstr "" - -#: ../../Zotlabs/Module/Pubstream.php:21 -msgid "The unmoderated public stream of this hub" -msgstr "" - -#: ../../Zotlabs/Module/Pubstream.php:109 ../../Zotlabs/Lib/Apps.php:374 +#: ../../Zotlabs/Lib/Apps.php:376 ../../Zotlabs/Module/Pubstream.php:109 #: ../../Zotlabs/Widget/Notifications.php:142 msgid "Public Stream" msgstr "" -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." +#: ../../Zotlabs/Lib/Apps.php:377 +msgid "My Chatrooms" msgstr "" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." +#: ../../Zotlabs/Lib/Apps.php:378 +msgid "Channel Export" msgstr "" -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary " -"location." +#: ../../Zotlabs/Lib/Apps.php:537 ../../Zotlabs/Module/Admin/Addons.php:456 +#: ../../Zotlabs/Module/Cdav.php:1258 ../../Zotlabs/Module/Connedit.php:939 +#: ../../Zotlabs/Module/Oauth.php:53 ../../Zotlabs/Module/Oauth.php:137 +#: ../../Zotlabs/Module/Oauth2.php:58 ../../Zotlabs/Module/Oauth2.php:144 +#: ../../Zotlabs/Module/Profiles.php:799 +msgid "Update" msgstr "" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" +#: ../../Zotlabs/Lib/Apps.php:537 ../../Zotlabs/Module/Admin/Addons.php:425 +msgid "Install" msgstr "" -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." +#: ../../Zotlabs/Lib/Apps.php:555 +msgid "Purchase" msgstr "" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" +#: ../../Zotlabs/Lib/Apps.php:560 +msgid "Undelete" msgstr "" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" +#: ../../Zotlabs/Lib/Apps.php:569 +msgid "Add to app-tray" msgstr "" -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:176 -msgid "Drop" +#: ../../Zotlabs/Lib/Apps.php:570 +msgid "Remove from app-tray" msgstr "" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" +#: ../../Zotlabs/Lib/Apps.php:571 +msgid "Pin to navbar" msgstr "" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." +#: ../../Zotlabs/Lib/Apps.php:572 +msgid "Unpin from navbar" msgstr "" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing " -"your channel." +#: ../../Zotlabs/Lib/Chatroom.php:23 +msgid "Missing room name" msgstr "" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." +#: ../../Zotlabs/Lib/Chatroom.php:32 +msgid "Duplicate room name" msgstr "" -#: ../../Zotlabs/Module/Apporder.php:47 -msgid "Change Order of Pinned Navbar Apps" +#: ../../Zotlabs/Lib/Chatroom.php:82 ../../Zotlabs/Lib/Chatroom.php:90 +msgid "Invalid room specifier." msgstr "" -#: ../../Zotlabs/Module/Apporder.php:47 -msgid "Change Order of App Tray Apps" +#: ../../Zotlabs/Lib/Chatroom.php:122 +msgid "Room not found." msgstr "" -#: ../../Zotlabs/Module/Apporder.php:48 -msgid "" -"Use arrows to move the corresponding app left (top) or right (bottom) in the " -"navbar" +#: ../../Zotlabs/Lib/Chatroom.php:143 +msgid "Room is full" msgstr "" -#: ../../Zotlabs/Module/Apporder.php:48 -msgid "Use arrows to move the corresponding app up or down in the app tray" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:31 ../../Zotlabs/Module/Menu.php:208 -msgid "Menu not found." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:63 -msgid "Unable to create element." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:87 -msgid "Unable to update menu element." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:103 -msgid "Unable to add menu element." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:134 ../../Zotlabs/Module/Menu.php:231 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:167 ../../Zotlabs/Module/Mitem.php:246 -msgid "Menu Item Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:168 ../../Zotlabs/Module/Mitem.php:247 -#: ../../Zotlabs/Module/Settings/Channel.php:526 -msgid "(click to open/close)" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:174 ../../Zotlabs/Module/Mitem.php:191 -msgid "Link Name" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:175 ../../Zotlabs/Module/Mitem.php:255 -msgid "Link or Submenu Target" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:175 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:256 -msgid "Use magic-auth if available" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Events.php:473 -#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Admin/Site.php:255 -#: ../../Zotlabs/Module/Settings/Channel.php:309 -#: ../../Zotlabs/Module/Settings/Display.php:89 -#: ../../Zotlabs/Module/Import.php:563 ../../Zotlabs/Module/Import.php:567 -#: ../../Zotlabs/Module/Import.php:568 ../../Zotlabs/Module/Api.php:99 -#: ../../Zotlabs/Module/Photos.php:712 ../../Zotlabs/Module/Wiki.php:227 -#: ../../Zotlabs/Module/Wiki.php:228 ../../Zotlabs/Module/Connedit.php:406 -#: ../../Zotlabs/Module/Connedit.php:796 ../../Zotlabs/Module/Menu.php:162 -#: ../../Zotlabs/Module/Menu.php:221 ../../Zotlabs/Module/Defperms.php:197 -#: ../../Zotlabs/Module/Profiles.php:681 ../../Zotlabs/Module/Sources.php:124 -#: ../../Zotlabs/Module/Sources.php:159 -#: ../../Zotlabs/Module/Filestorage.php:178 -#: ../../Zotlabs/Module/Filestorage.php:186 ../../Zotlabs/Lib/Libzotdir.php:162 -#: ../../Zotlabs/Lib/Libzotdir.php:163 ../../Zotlabs/Lib/Libzotdir.php:165 -#: ../../Zotlabs/Storage/Browser.php:405 ../../boot.php:1634 -#: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic_c/php/config.php:115 -#: ../../view/theme/redbasic/php/config.php:99 -#: ../../view/theme/redbasic/php/config.php:116 -#: ../../addon/wppost/Mod_Wppost.php:82 ../../addon/wppost/Mod_Wppost.php:86 -#: ../../addon/ijpost/Mod_Ijpost.php:61 ../../addon/dwpost/Mod_Dwpost.php:60 -#: ../../addon/ljpost/Mod_Ljpost.php:62 ../../addon/rtof/Mod_Rtof.php:49 -#: ../../addon/jappixmini/Mod_Jappixmini.php:161 -#: ../../addon/jappixmini/Mod_Jappixmini.php:191 -#: ../../addon/jappixmini/Mod_Jappixmini.php:199 -#: ../../addon/jappixmini/Mod_Jappixmini.php:203 -#: ../../addon/jappixmini/Mod_Jappixmini.php:207 -#: ../../addon/channelreputation/channelreputation.php:108 -#: ../../addon/nofed/Mod_Nofed.php:42 ../../addon/redred/Mod_Redred.php:63 -#: ../../addon/libertree/Mod_Libertree.php:59 -#: ../../addon/statusnet/Mod_Statusnet.php:260 -#: ../../addon/statusnet/Mod_Statusnet.php:282 -#: ../../addon/statusnet/Mod_Statusnet.php:291 -#: ../../addon/twitter/Mod_Twitter.php:162 -#: ../../addon/twitter/Mod_Twitter.php:171 -#: ../../addon/smileybutton/Mod_Smileybutton.php:44 -#: ../../addon/cart/Settings/Cart.php:59 ../../addon/cart/Settings/Cart.php:71 -#: ../../addon/cart/cart.php:1258 -#: ../../addon/cart/submodules/paypalbutton.php:87 -#: ../../addon/cart/submodules/paypalbutton.php:95 -#: ../../addon/cart/submodules/manualcat.php:63 -#: ../../addon/cart/submodules/manualcat.php:254 -#: ../../addon/cart/submodules/manualcat.php:258 -#: ../../addon/cart/submodules/hzservices.php:64 -#: ../../addon/cart/submodules/hzservices.php:646 -#: ../../addon/cart/submodules/hzservices.php:650 -#: ../../addon/cart/submodules/subscriptions.php:153 -#: ../../addon/cart/submodules/subscriptions.php:425 -#: ../../addon/pumpio/Mod_Pumpio.php:94 ../../addon/pumpio/Mod_Pumpio.php:98 -#: ../../addon/pumpio/Mod_Pumpio.php:102 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -msgid "No" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Events.php:473 -#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Admin/Site.php:257 -#: ../../Zotlabs/Module/Settings/Channel.php:309 -#: ../../Zotlabs/Module/Settings/Display.php:89 -#: ../../Zotlabs/Module/Import.php:563 ../../Zotlabs/Module/Import.php:567 -#: ../../Zotlabs/Module/Import.php:568 ../../Zotlabs/Module/Api.php:98 -#: ../../Zotlabs/Module/Photos.php:712 ../../Zotlabs/Module/Wiki.php:227 -#: ../../Zotlabs/Module/Wiki.php:228 ../../Zotlabs/Module/Connedit.php:406 -#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 -#: ../../Zotlabs/Module/Defperms.php:197 ../../Zotlabs/Module/Profiles.php:681 -#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 -#: ../../Zotlabs/Module/Filestorage.php:178 -#: ../../Zotlabs/Module/Filestorage.php:186 ../../Zotlabs/Lib/Libzotdir.php:162 -#: ../../Zotlabs/Lib/Libzotdir.php:163 ../../Zotlabs/Lib/Libzotdir.php:165 -#: ../../Zotlabs/Storage/Browser.php:405 ../../boot.php:1634 -#: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic_c/php/config.php:115 -#: ../../view/theme/redbasic/php/config.php:99 -#: ../../view/theme/redbasic/php/config.php:116 -#: ../../addon/wppost/Mod_Wppost.php:82 ../../addon/wppost/Mod_Wppost.php:86 -#: ../../addon/ijpost/Mod_Ijpost.php:61 ../../addon/dwpost/Mod_Dwpost.php:60 -#: ../../addon/ljpost/Mod_Ljpost.php:62 ../../addon/rtof/Mod_Rtof.php:49 -#: ../../addon/jappixmini/Mod_Jappixmini.php:161 -#: ../../addon/jappixmini/Mod_Jappixmini.php:191 -#: ../../addon/jappixmini/Mod_Jappixmini.php:199 -#: ../../addon/jappixmini/Mod_Jappixmini.php:203 -#: ../../addon/jappixmini/Mod_Jappixmini.php:207 -#: ../../addon/channelreputation/channelreputation.php:108 -#: ../../addon/nofed/Mod_Nofed.php:42 ../../addon/redred/Mod_Redred.php:63 -#: ../../addon/libertree/Mod_Libertree.php:59 -#: ../../addon/statusnet/Mod_Statusnet.php:260 -#: ../../addon/statusnet/Mod_Statusnet.php:282 -#: ../../addon/statusnet/Mod_Statusnet.php:291 -#: ../../addon/twitter/Mod_Twitter.php:162 -#: ../../addon/twitter/Mod_Twitter.php:171 -#: ../../addon/smileybutton/Mod_Smileybutton.php:44 -#: ../../addon/cart/Settings/Cart.php:59 ../../addon/cart/Settings/Cart.php:71 -#: ../../addon/cart/cart.php:1258 -#: ../../addon/cart/submodules/paypalbutton.php:87 -#: ../../addon/cart/submodules/paypalbutton.php:95 -#: ../../addon/cart/submodules/manualcat.php:63 -#: ../../addon/cart/submodules/manualcat.php:254 -#: ../../addon/cart/submodules/manualcat.php:258 -#: ../../addon/cart/submodules/hzservices.php:64 -#: ../../addon/cart/submodules/hzservices.php:646 -#: ../../addon/cart/submodules/hzservices.php:650 -#: ../../addon/cart/submodules/subscriptions.php:153 -#: ../../addon/cart/submodules/subscriptions.php:425 -#: ../../addon/pumpio/Mod_Pumpio.php:94 ../../addon/pumpio/Mod_Pumpio.php:98 -#: ../../addon/pumpio/Mod_Pumpio.php:102 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -msgid "Yes" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:257 -msgid "Open link in new window" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 -msgid "Order in list" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 -msgid "Higher numbers will sink to bottom of listing" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Submit and finish" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Submit and continue" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Menu:" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:192 -msgid "Link Target" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:195 -msgid "Edit menu" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:198 -msgid "Edit element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:199 -msgid "Drop element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:200 -msgid "New element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:201 -msgid "Edit this menu container" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Add menu element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:203 -msgid "Delete this menu item" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:204 -msgid "Edit this menu item" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:222 -msgid "Menu item not found." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:235 -msgid "Menu item deleted." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:237 -msgid "Menu item could not be deleted." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:244 -msgid "Edit Menu Element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:254 -msgid "Link text" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:110 -msgid "Event can not end before it has started." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 -#: ../../Zotlabs/Module/Events.php:143 -msgid "Unable to generate preview." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:119 -msgid "Event title and start time are required." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:141 ../../Zotlabs/Module/Events.php:265 -msgid "Event not found." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:73 -#: ../../Zotlabs/Module/Like.php:394 ../../include/conversation.php:119 -#: ../../include/text.php:2094 ../../include/event.php:1165 -msgid "event" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Edit event title" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:467 -#: ../../Zotlabs/Module/Appman.php:143 ../../Zotlabs/Module/Appman.php:144 -#: ../../Zotlabs/Module/Profiles.php:745 ../../Zotlabs/Module/Profiles.php:749 -#: ../../include/datetime.php:211 -msgid "Required" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:464 -msgid "Categories (comma-separated list)" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:465 -msgid "Edit Category" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:465 -msgid "Category" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:468 -msgid "Edit start date and time" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Events.php:472 -msgid "Finish date and time are not known or not relevant" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:471 -msgid "Edit finish date and time" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:471 -msgid "Finish date and time" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Module/Events.php:474 -msgid "Adjust for viewer timezone" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:473 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Edit Description" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:477 -msgid "Edit Location" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:480 ../../Zotlabs/Module/Photos.php:1139 -#: ../../Zotlabs/Module/Webpages.php:262 ../../Zotlabs/Lib/ThreadItem.php:805 -#: ../../addon/hsse/hsse.php:153 ../../include/conversation.php:1359 -msgid "Preview" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:481 ../../addon/hsse/hsse.php:225 -#: ../../include/conversation.php:1431 -msgid "Permission settings" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:491 -msgid "Timezone:" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:496 -msgid "Advanced Options" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:607 ../../Zotlabs/Module/Cal.php:264 -msgid "l, F j" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:635 -msgid "Edit event" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:637 -msgid "Delete event" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:663 ../../Zotlabs/Module/Cal.php:314 -#: ../../include/text.php:1913 -msgid "Link to Source" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:670 -msgid "calendar" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:689 ../../Zotlabs/Module/Cal.php:337 -msgid "Edit Event" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:689 ../../Zotlabs/Module/Cal.php:337 -msgid "Create Event" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:692 ../../Zotlabs/Module/Cal.php:340 -#: ../../include/channel.php:1703 -msgid "Export" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:732 -msgid "Event removed" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:735 -msgid "Failed to remove event" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 -msgid "App installed." -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:49 -msgid "Malformed app." -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:132 -msgid "Embed code" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:138 -msgid "Edit App" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:138 -msgid "Create App" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:143 -msgid "Name of app" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:144 -msgid "Location (URL) of app" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:146 -msgid "Photo icon URL" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:146 -msgid "80 x 80 pixels - optional" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:147 -msgid "Categories (optional, comma separated list)" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:148 -msgid "Version ID" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:149 -msgid "Price of app" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:150 -msgid "Location (URL) to purchase app" -msgstr "" - -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "" - -#: ../../Zotlabs/Module/Magic.php:76 -msgid "Hub not found." -msgstr "" - -#: ../../Zotlabs/Module/Subthread.php:112 ../../Zotlabs/Module/Tagger.php:69 -#: ../../Zotlabs/Module/Like.php:392 ../../Zotlabs/Lib/Activity.php:1959 -#: ../../addon/redphotos/redphotohelper.php:71 -#: ../../addon/diaspora/Receiver.php:1551 ../../addon/pubcrawl/as.php:1504 -#: ../../include/conversation.php:116 ../../include/text.php:2091 -msgid "photo" -msgstr "" - -#: ../../Zotlabs/Module/Subthread.php:112 ../../Zotlabs/Module/Like.php:392 -#: ../../Zotlabs/Lib/Activity.php:1959 ../../addon/diaspora/Receiver.php:1551 -#: ../../addon/pubcrawl/as.php:1504 ../../include/conversation.php:144 -#: ../../include/text.php:2097 -msgid "status" -msgstr "" - -#: ../../Zotlabs/Module/Subthread.php:143 +#: ../../Zotlabs/Lib/DB_Upgrade.php:83 #, php-format -msgid "%1$s is following %2$s's %3$s" +msgid "Update Error at %s" msgstr "" -#: ../../Zotlabs/Module/Subthread.php:145 +#: ../../Zotlabs/Lib/DB_Upgrade.php:89 #, php-format -msgid "%1$s stopped following %2$s's %3$s" +msgid "Update %s failed. See error logs." msgstr "" -#: ../../Zotlabs/Module/Article_edit.php:44 ../../Zotlabs/Module/Cal.php:63 -#: ../../Zotlabs/Module/Chanview.php:96 ../../Zotlabs/Module/Page.php:75 -#: ../../Zotlabs/Module/Wall_upload.php:31 ../../Zotlabs/Module/Block.php:41 -#: ../../Zotlabs/Module/Card_edit.php:44 -msgid "Channel not found." +#: ../../Zotlabs/Lib/Enotify.php:60 +msgid "$Projectname Notification" msgstr "" -#: ../../Zotlabs/Module/Article_edit.php:101 -#: ../../Zotlabs/Module/Editblock.php:116 ../../Zotlabs/Module/Chat.php:222 -#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 -#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 -#: ../../addon/hsse/hsse.php:95 ../../include/conversation.php:1298 -msgid "Insert web link" +#: ../../Zotlabs/Lib/Enotify.php:61 +msgid "$projectname" msgstr "" -#: ../../Zotlabs/Module/Article_edit.php:117 -#: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:713 -#: ../../Zotlabs/Module/Photos.php:1083 ../../Zotlabs/Module/Card_edit.php:117 -#: ../../addon/hsse/hsse.php:221 ../../include/conversation.php:1427 -msgid "Title (optional)" +#: ../../Zotlabs/Lib/Enotify.php:63 +msgid "Thank You," msgstr "" -#: ../../Zotlabs/Module/Article_edit.php:128 -msgid "Edit Article" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:66 -msgid "Nothing to import." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:81 -#: ../../Zotlabs/Module/Import.php:97 -msgid "Unable to download data from old server" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:77 ../../Zotlabs/Module/Import.php:104 -msgid "Imported file is empty." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:93 +#: ../../Zotlabs/Lib/Enotify.php:65 #, php-format -msgid "Warning: Database versions differ by %1$d updates." +msgid "%s Administrator" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:108 -msgid "Import completed" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:125 -msgid "Import Items" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:126 -msgid "Use this form to import existing posts and content from an export file." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:127 -#: ../../Zotlabs/Module/Import.php:557 -msgid "File to Upload" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:147 ../../Zotlabs/Module/Manage.php:138 +#: ../../Zotlabs/Lib/Enotify.php:66 #, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." +msgid "This email was sent by %1$s at %2$s." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:157 -#: ../../Zotlabs/Module/New_channel.php:164 -#: ../../Zotlabs/Module/Connedit.php:869 ../../Zotlabs/Module/Defperms.php:256 -#: ../../Zotlabs/Widget/Notifications.php:162 ../../include/nav.php:323 -msgid "Loading" +#: ../../Zotlabs/Lib/Enotify.php:66 ../../Zotlabs/Module/Home.php:72 +#: ../../Zotlabs/Module/Home.php:80 +msgid "$Projectname" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:159 -msgid "Your real name is recommended." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:160 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\"" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:165 -msgid "" -"This will be used to create a unique network address (like an email address)." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:167 -msgid "Allowed characters are a-z 0-9, - and _" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:175 -msgid "Channel name" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:177 -#: ../../Zotlabs/Module/Register.php:260 -msgid "Choose a short nickname" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:178 -#: ../../Zotlabs/Module/Settings/Channel.php:535 -#: ../../Zotlabs/Module/Register.php:261 -msgid "Channel role and privacy" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:178 -msgid "" -"Select a channel permission role compatible with your usage needs and " -"privacy requirements." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:178 -#: ../../Zotlabs/Module/Register.php:261 -msgid "Read more about channel permission roles" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:181 -msgid "Create a Channel" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:182 -msgid "" -"A channel is a unique network identity. It can represent a person (social " -"network profile), a forum (group), a business or celebrity page, a newsfeed, " -"and many other things." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:183 -msgid "" -"or import an existing channel from another location." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:188 -msgid "Validate" -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "WARNING: " -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:62 -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Changeaddr.php:79 -msgid "Please enter your password for verification:" -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:594 -msgid "Remove Channel" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Files: shared with me" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:105 -msgid "NEW" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:106 -#: ../../Zotlabs/Storage/Browser.php:287 ../../include/text.php:1496 -msgid "Size" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:107 -#: ../../Zotlabs/Storage/Browser.php:288 -msgid "Last Modified" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:108 -msgid "Remove all files" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:109 -msgid "Remove this file" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:170 -msgid "$Projectname Server - Setup" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:174 -msgid "Could not connect to database." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:178 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:185 -msgid "Could not create table." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:191 -msgid "Your site database has been installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:197 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:198 ../../Zotlabs/Module/Setup.php:262 -#: ../../Zotlabs/Module/Setup.php:761 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:259 -msgid "System check" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:264 -msgid "Check again" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:286 -msgid "Database connection" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:287 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:288 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:289 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:293 -msgid "Database Server Name" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:293 -msgid "Default is 127.0.0.1" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Database Port" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Communication port number - use 0 for default" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Database Login Name" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:296 -msgid "Database Login Password" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Name" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Type" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 -msgid "Site administrator email address" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 -msgid "Website URL" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 -msgid "Please use SSL (https) URL if available." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:345 -msgid "Please select a default timezone for your website" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:330 -msgid "Site settings" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:384 -msgid "PHP version 5.5 or greater is required." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:385 -msgid "PHP version" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:401 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:402 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:406 -msgid "PHP executable path" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:406 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:411 -msgid "Command line PHP" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:421 -msgid "" -"Unable to check command line PHP, as shell_exec() is disabled. This is " -"required." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:424 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:425 -msgid "This is required for message delivery to work." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:428 -msgid "PHP register_argc_argv" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:448 -msgid "" -"This is not sufficient to upload larger images or files. You should be able " -"to upload at least 4 MB at once." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:450 +#: ../../Zotlabs/Lib/Enotify.php:67 #, php-format msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:456 -msgid "You can adjust these settings in the server php.ini file." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:458 -msgid "PHP upload limits" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:481 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:482 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:485 -msgid "Generate encryption keys" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:502 -msgid "libCurl PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:503 -msgid "GD graphics PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:504 -msgid "OpenSSL PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:505 -msgid "PDO database PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:506 -msgid "mb_string PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:507 -msgid "xml PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:508 -msgid "zip PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 -msgid "Apache mod_rewrite module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:512 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 -msgid "exec" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:518 -msgid "" -"Error: exec is required but is either not installed or has been disabled in " -"php.ini" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:524 ../../Zotlabs/Module/Setup.php:527 -msgid "shell_exec" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:524 -msgid "" -"Error: shell_exec is required but is either not installed or has been " -"disabled in php.ini" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:532 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:536 -msgid "" -"Error: GD PHP module with JPEG support or ImageMagick graphics library " -"required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:540 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:546 -msgid "" -"Error: PDO database PHP module missing a driver for either mysql or pgsql." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:551 -msgid "Error: PDO database PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:555 -msgid "Error: mb_string PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:559 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:563 -msgid "Error: zip PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:582 ../../Zotlabs/Module/Setup.php:591 -msgid ".htconfig.php is writable" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:587 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:588 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:589 -msgid "Please see install/INSTALL.txt for additional information." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:605 -msgid "" -"This software uses the Smarty3 template engine to render its web views. " -"Smarty3 compiles templates to PHP to speed up rendering." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:606 +#: ../../Zotlabs/Lib/Enotify.php:68 #, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." +msgid "To stop receiving these messages, please adjust your %s." msgstr "" -#: ../../Zotlabs/Module/Setup.php:607 ../../Zotlabs/Module/Setup.php:628 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." +#: ../../Zotlabs/Lib/Enotify.php:68 +#: ../../Zotlabs/Module/Settings/Channel.php:545 +msgid "Notification Settings" msgstr "" -#: ../../Zotlabs/Module/Setup.php:608 +#: ../../Zotlabs/Lib/Enotify.php:123 #, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." +msgid "%s " msgstr "" -#: ../../Zotlabs/Module/Setup.php:611 +#: ../../Zotlabs/Lib/Enotify.php:127 #, php-format -msgid "%s is writable" +msgid "[$Projectname:Notify] New mail received at %s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:627 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the top level " -"web folder" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:631 -msgid "store is writable" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:663 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:664 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:665 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:666 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:667 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:668 -msgid "" -"Providers are available that issue free certificates which are browser-valid." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:670 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:672 -msgid "SSL certificate validation" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:678 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:681 -msgid "Url rewrite is working" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:695 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:719 ../../addon/rendezvous/rendezvous.php:401 -msgid "Errors encountered creating database tables." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:759 -msgid "

What next?

" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:760 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:73 ../../Zotlabs/Module/Connect.php:135 -msgid "Continue" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:104 -msgid "Premium Channel App" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:105 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:116 -msgid "Premium Channel Setup" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:118 -msgid "Enable premium channel connection restrictions" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:119 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:121 ../../Zotlabs/Module/Connect.php:141 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:122 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:123 ../../Zotlabs/Module/Connect.php:144 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:132 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:140 -msgid "Restricted or Premium Channel" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:35 -msgid "Queue Statistics" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:36 -msgid "Total Entries" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:37 -msgid "Priority" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:38 -msgid "Destination URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:39 -msgid "Mark hub permanently offline" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:40 -msgid "Empty queue for this hub" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:41 -msgid "Last known contact" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:36 ../../include/features.php:55 -msgid "Off" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:36 ../../include/features.php:55 -msgid "On" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Lib/Enotify.php:129 #, php-format -msgid "Lock feature %s" +msgid "%1$s sent you a new private message at %2$s." msgstr "" -#: ../../Zotlabs/Module/Admin/Features.php:64 -msgid "Manage Additional Features" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -msgid "Update has been marked successful" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:31 +#: ../../Zotlabs/Lib/Enotify.php:130 #, php-format -msgid "Executing %s failed. Check system logs." +msgid "%1$s sent you %2$s." msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:34 +#: ../../Zotlabs/Lib/Enotify.php:130 +msgid "a private message" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:131 #, php-format -msgid "Update %s was successfully applied." +msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:38 +#: ../../Zotlabs/Lib/Enotify.php:144 +msgid "commented on" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:155 +msgid "liked" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:158 +msgid "disliked" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:201 #, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." +msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:41 +#: ../../Zotlabs/Lib/Enotify.php:209 #, php-format -msgid "Update function %s could not be found." +msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 -msgid "Failed Updates" +#: ../../Zotlabs/Lib/Enotify.php:218 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:61 -msgid "Mark success (if update was manually applied)" +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:62 -msgid "Attempt to execute this update step automatically" +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:67 -msgid "No failed updates." +#: ../../Zotlabs/Lib/Enotify.php:233 +#, php-format +msgid "%1$s commented on an item/conversation you have been following." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:317 +#: ../../Zotlabs/Lib/Enotify.php:333 ../../Zotlabs/Lib/Enotify.php:358 +#: ../../Zotlabs/Lib/Enotify.php:375 ../../Zotlabs/Lib/Enotify.php:388 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 +#, php-format +msgid "Please visit %s to approve or reject this comment." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:299 +#, php-format +msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:313 +#, php-format +msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:314 +#, php-format +msgid "%1$s liked an item/conversation you created." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:325 +#, php-format +msgid "[$Projectname:Notify] %s posted to your profile wall" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:327 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:329 +#, php-format +msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:352 +#, php-format +msgid "[$Projectname:Notify] %s tagged you" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:353 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:354 +#, php-format +msgid "%1$s [zrl=%2$s]tagged you[/zrl]." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:365 +#, php-format +msgid "[$Projectname:Notify] %1$s poked you" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:366 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:367 +#, php-format +msgid "%1$s [zrl=%2$s]poked you[/zrl]." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:382 +#, php-format +msgid "[$Projectname:Notify] %s tagged your post" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:383 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:384 +#, php-format +msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:395 +msgid "[$Projectname:Notify] Introduction received" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:396 +#, php-format +msgid "You've received an new connection request from '%1$s' at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:397 +#, php-format +msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:400 ../../Zotlabs/Lib/Enotify.php:418 +#, php-format +msgid "You may visit their profile at %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:402 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:409 +msgid "[$Projectname:Notify] Friend suggestion received" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:410 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:411 +#, php-format +msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:416 +msgid "Name:" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:417 +msgid "Photo:" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:420 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:640 +msgid "[$Projectname:Notify]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:808 +msgid "created a new post" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:809 +#, php-format +msgid "commented on %s's post" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:816 +#, php-format +msgid "edited a post dated %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:820 +#, php-format +msgid "edited a comment dated %s" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWiki.php:143 +msgid "Wiki updated successfully" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWiki.php:197 +msgid "Wiki files deleted successfully" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:42 +#: ../../Zotlabs/Lib/NativeWikiPage.php:94 +msgid "(No Title)" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:109 +msgid "Wiki page create failed." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:122 +msgid "Wiki not found." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:133 +msgid "Destination name already exists" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:166 +#: ../../Zotlabs/Lib/NativeWikiPage.php:362 +msgid "Page not found" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:197 +msgid "Error reading page content" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:353 +#: ../../Zotlabs/Lib/NativeWikiPage.php:402 +#: ../../Zotlabs/Lib/NativeWikiPage.php:469 +#: ../../Zotlabs/Lib/NativeWikiPage.php:510 +msgid "Error reading wiki" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:390 +msgid "Page update failed." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:424 +msgid "Nothing deleted" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:490 +msgid "Compare: object not found." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:496 +msgid "Page updated" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:499 +msgid "Untitled" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:505 +msgid "Wiki resource_id required for git commit" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:561 +#: ../../Zotlabs/Module/Admin/Channels.php:159 +#: ../../Zotlabs/Module/Cdav.php:1242 ../../Zotlabs/Module/Chat.php:259 +#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Group.php:154 +#: ../../Zotlabs/Module/Oauth.php:113 ../../Zotlabs/Module/Oauth.php:139 +#: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 +#: ../../Zotlabs/Module/Sharedwithme.php:104 ../../Zotlabs/Module/Wiki.php:218 +#: ../../Zotlabs/Storage/Browser.php:291 +#: ../../Zotlabs/Widget/Wiki_page_history.php:22 +msgid "Name" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:562 +#: ../../Zotlabs/Widget/Wiki_page_history.php:23 +msgctxt "wiki_history" +msgid "Message" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:563 +#: ../../Zotlabs/Widget/Wiki_page_history.php:24 +msgid "Date" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:564 ../../Zotlabs/Module/Wiki.php:367 +#: ../../Zotlabs/Widget/Wiki_page_history.php:25 +msgid "Revert" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:565 +#: ../../Zotlabs/Widget/Wiki_page_history.php:26 +msgid "Compare" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:82 +msgctxt "permcat" +msgid "default" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:133 +msgctxt "permcat" +msgid "follower" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:137 +msgctxt "permcat" +msgid "contributor" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:141 +msgctxt "permcat" +msgid "publisher" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Public" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +msgid "Anybody in the $Projectname network" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +#, php-format +msgid "Any account on %s" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Any of my connections" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Only connections I specifically allow" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:114 +msgid "Any connections including those who haven't yet been approved" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:150 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:151 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "This is your default setting for who can view your connections" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for the audience of your webpages" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:10 +msgid "0. Beginner/Basic" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:11 +msgid "1. Novice - not skilled but willing to learn" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:12 +msgid "2. Intermediate - somewhat comfortable" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:13 +msgid "3. Advanced - very comfortable" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:14 +msgid "4. Expert - I can write computer code" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:15 +msgid "5. Wizard - I probably know more than you do" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:129 +msgid "Privacy conflict. Discretion advised." +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:171 ../../Zotlabs/Storage/Browser.php:286 +msgid "Admin Delete" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Module/Filer.php:54 +msgid "Save to Folder" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:202 +msgid "I will attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:202 +msgid "I will not attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:202 +msgid "I might attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:212 +msgid "I agree" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:212 +msgid "I disagree" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:212 +msgid "I abstain" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:231 ../../Zotlabs/Lib/ThreadItem.php:243 +#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Photos.php:1185 +msgid "View all" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:286 +msgid "Add Tag" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:306 ../../Zotlabs/Module/Photos.php:1115 +msgid "I like this (toggle)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:307 ../../Zotlabs/Module/Photos.php:1116 +msgid "I don't like this (toggle)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:317 +msgid "Share This" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:317 +msgid "share" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:327 +msgid "Delivery Report" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:347 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Lib/ThreadItem.php:381 ../../Zotlabs/Lib/ThreadItem.php:382 +#, php-format +msgid "View %s's profile - %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:385 +msgid "to" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:386 +msgid "via" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:387 +msgid "Wall-to-Wall" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:388 +msgid "via Wall-To-Wall:" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:414 +msgid "Attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:415 +msgid "Attendance Options" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:416 +msgid "Vote" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:417 +msgid "Voting Options" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:439 +msgid "Save Bookmarks" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:440 +msgid "Add to Calendar" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:450 +#: ../../Zotlabs/Module/Notifications.php:60 +msgid "Mark all seen" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:457 ../../Zotlabs/Module/Photos.php:1310 +msgctxt "noun" +msgid "Likes" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:458 ../../Zotlabs/Module/Photos.php:1311 +msgctxt "noun" +msgid "Dislikes" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:792 ../../Zotlabs/Module/Photos.php:1135 +#: ../../Zotlabs/Module/Photos.php:1254 +msgid "This is you" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:801 +msgid "Image" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:803 +msgid "Insert Link" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:804 +msgid "Video" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:814 +msgid "Your full name (required)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:815 +msgid "Your email address (required)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:816 +msgid "Your website URL (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Achievements.php:38 +msgid "Some blurb about what to do when you're new here" +msgstr "" + +#: ../../Zotlabs/Module/Acl.php:360 +msgid "network" msgstr "" #: ../../Zotlabs/Module/Admin/Accounts.php:37 @@ -2471,11 +4790,6 @@ msgstr[1] "" msgid "Account not found" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2562 -#, php-format -msgid "Account '%s' deleted" -msgstr "" - #: ../../Zotlabs/Module/Admin/Accounts.php:99 #, php-format msgid "Account '%s' blocked" @@ -2487,15 +4801,14 @@ msgid "Account '%s' unblocked" msgstr "" #: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Channels.php:145 -#: ../../Zotlabs/Module/Admin/Themes.php:122 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Site.php:287 #: ../../Zotlabs/Module/Admin/Addons.php:341 #: ../../Zotlabs/Module/Admin/Addons.php:439 +#: ../../Zotlabs/Module/Admin/Channels.php:145 +#: ../../Zotlabs/Module/Admin/Logs.php:82 #: ../../Zotlabs/Module/Admin/Security.php:92 -#: ../../Zotlabs/Module/Admin.php:138 +#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +#: ../../Zotlabs/Module/Admin/Themes.php:156 ../../Zotlabs/Module/Admin.php:138 msgid "Administration" msgstr "" @@ -2522,11 +4835,6 @@ msgstr "" msgid "No registrations." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:173 -#: ../../Zotlabs/Module/Connections.php:306 ../../include/conversation.php:735 -msgid "Approve" -msgstr "" - #: ../../Zotlabs/Module/Admin/Accounts.php:174 #: ../../Zotlabs/Module/Authorize.php:33 msgid "Deny" @@ -2578,35 +4886,148 @@ msgid "" "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:28 -msgid "Log settings updated." +#: ../../Zotlabs/Module/Admin/Account_edit.php:29 +#, php-format +msgid "Password changed for account %d." msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 -#: ../../Zotlabs/Widget/Admin.php:58 -msgid "Logs" +#: ../../Zotlabs/Module/Admin/Account_edit.php:46 +msgid "Account settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:85 -msgid "Clear" +#: ../../Zotlabs/Module/Admin/Account_edit.php:61 +msgid "Account not found." msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:91 -msgid "Debugging" +#: ../../Zotlabs/Module/Admin/Account_edit.php:68 +msgid "Account Edit" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "Log file" +#: ../../Zotlabs/Module/Admin/Account_edit.php:69 +msgid "New Password" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." +#: ../../Zotlabs/Module/Admin/Account_edit.php:70 +msgid "New Password again" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:93 -msgid "Log level" +#: ../../Zotlabs/Module/Admin/Account_edit.php:71 +msgid "Account language (for emails)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 +msgid "Service class" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:289 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:294 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:310 +#: ../../Zotlabs/Module/Admin/Themes.php:95 +msgid "Disable" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:313 +#: ../../Zotlabs/Module/Admin/Themes.php:97 +msgid "Enable" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:342 +#: ../../Zotlabs/Module/Admin/Addons.php:440 ../../Zotlabs/Widget/Admin.php:27 +msgid "Addons" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:343 +#: ../../Zotlabs/Module/Admin/Themes.php:124 +msgid "Toggle" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:351 +#: ../../Zotlabs/Module/Admin/Themes.php:134 +msgid "Author: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:352 +#: ../../Zotlabs/Module/Admin/Themes.php:135 +msgid "Maintainer: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:353 +msgid "Minimum project version: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:354 +msgid "Maximum project version: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:355 +msgid "Minimum PHP version: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:356 +msgid "Compatible Server Roles: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:357 +msgid "Requires: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:358 +#: ../../Zotlabs/Module/Admin/Addons.php:445 +msgid "Disabled - version incompatibility" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:414 +msgid "Enter the public git repository URL of the addon repo." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:415 +msgid "Addon repo git URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:416 +msgid "Custom repo name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:416 +msgid "(optional)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:417 +msgid "Download Addon Repo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:424 +msgid "Install new repo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:448 +msgid "Manage Repos" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:449 +msgid "Installed Addon Repositories" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:450 +msgid "Install a New Addon Repository" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:457 +msgid "Switch branch" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:458 +#: ../../Zotlabs/Module/Cover_photo.php:421 +#: ../../Zotlabs/Module/Photos.php:1035 ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" msgstr "" #: ../../Zotlabs/Module/Admin/Channels.php:31 @@ -2680,14 +5101,17 @@ msgstr "" msgid "Disallow Code" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:154 ../../include/nav.php:421 -msgid "Channel" -msgstr "" - #: ../../Zotlabs/Module/Admin/Channels.php:158 msgid "UID" msgstr "" +#: ../../Zotlabs/Module/Admin/Channels.php:160 +#: ../../Zotlabs/Module/Cdav.php:1249 ../../Zotlabs/Module/Connedit.php:930 +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Profiles.php:790 +msgid "Address" +msgstr "" + #: ../../Zotlabs/Module/Admin/Channels.php:162 msgid "" "Selected channels will be deleted!\\n\\nEverything that was posted in these " @@ -2700,81 +5124,317 @@ msgid "" "channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:26 -msgid "Theme settings updated." +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:61 -msgid "No themes found." +#: ../../Zotlabs/Module/Admin/Dbsync.php:31 +#, php-format +msgid "Executing %s failed. Check system logs." msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:72 -#: ../../Zotlabs/Module/Admin/Addons.php:259 ../../Zotlabs/Module/Thing.php:94 -#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:45 -#: ../../Zotlabs/Module/Display.php:450 ../../Zotlabs/Module/Filestorage.php:24 -#: ../../Zotlabs/Module/Admin.php:62 ../../include/items.php:3693 -msgid "Item not found." +#: ../../Zotlabs/Module/Admin/Dbsync.php:34 +#, php-format +msgid "Update %s was successfully applied." msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:95 -#: ../../Zotlabs/Module/Admin/Addons.php:310 -msgid "Disable" +#: ../../Zotlabs/Module/Admin/Dbsync.php:38 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:97 -#: ../../Zotlabs/Module/Admin/Addons.php:313 -msgid "Enable" +#: ../../Zotlabs/Module/Admin/Dbsync.php:41 +#, php-format +msgid "Update function %s could not be found." msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:116 -msgid "Screenshot" +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:123 -#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 -msgid "Themes" +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:124 -#: ../../Zotlabs/Module/Admin/Addons.php:343 -msgid "Toggle" +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:125 -#: ../../Zotlabs/Module/Admin/Addons.php:344 ../../Zotlabs/Lib/Apps.php:336 -#: ../../Zotlabs/Widget/Newmember.php:53 -#: ../../Zotlabs/Widget/Settings_menu.php:61 ../../include/nav.php:97 -msgid "Settings" +#: ../../Zotlabs/Module/Admin/Dbsync.php:67 +msgid "No failed updates." msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:134 -#: ../../Zotlabs/Module/Admin/Addons.php:351 -msgid "Author: " +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:135 -#: ../../Zotlabs/Module/Admin/Addons.php:352 -msgid "Maintainer: " +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:162 -msgid "[Experimental]" +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:163 -msgid "[Unsupported]" +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 +#: ../../Zotlabs/Widget/Admin.php:58 +msgid "Logs" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "New Profile Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "Field nickname" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "System name of field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:91 +#: ../../Zotlabs/Module/Admin/Profs.php:111 +msgid "Input type" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Field Name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Label on profile pages" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Help text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Additional info (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:103 +msgid "Field definition not found" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:109 +msgid "Edit Profile Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:168 ../../Zotlabs/Widget/Admin.php:30 +msgid "Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:169 +msgid "Basic Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "Advanced Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "(In addition to basic fields)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:172 +msgid "All available fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:173 +msgid "Custom Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:177 +msgid "Create Custom Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:35 +msgid "Queue Statistics" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Total Entries" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Priority" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Destination URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Mark hub permanently offline" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Empty queue for this hub" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Last known contact" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:83 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:86 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:87 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" +"
https://vimeo.com/
https://soundcloud.com/
" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:88 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:93 ../../Zotlabs/Widget/Admin.php:25 +msgid "Security" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block public" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Provide a cloud root directory" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"The cloud root directory lists all channel names which provide public files" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Show total disk space available to cloud uploads" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Set \"Transport Security\" HTTP header" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Allowed email domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:101 +msgid "Not allowed email domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:101 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:102 +msgid "Allow communications only from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:102 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:103 +msgid "Block communications from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:104 +msgid "Allow communications only from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:104 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:105 +msgid "Block communications from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:106 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:107 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:107 +msgid "One site per line. By default embedded content is filtered." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:108 +msgid "Block embedded HTML from these domains" msgstr "" #: ../../Zotlabs/Module/Admin/Site.php:161 msgid "Site settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:187 -#: ../../view/theme/redbasic_c/php/config.php:15 -#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3210 -msgid "Default" -msgstr "" - #: ../../Zotlabs/Module/Admin/Site.php:198 #: ../../Zotlabs/Module/Settings/Display.php:119 #, php-format @@ -2839,12 +5499,7 @@ msgstr "" msgid "Policies" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:293 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "" - #: ../../Zotlabs/Module/Admin/Site.php:297 -#: ../../addon/statusnet/statusnet.php:593 msgid "Site name" msgstr "" @@ -3214,1354 +5869,149 @@ msgstr "" msgid "Region or country" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:289 -#, php-format -msgid "Plugin %s disabled." +#: ../../Zotlabs/Module/Admin/Themes.php:26 +msgid "Theme settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:294 -#, php-format -msgid "Plugin %s enabled." +#: ../../Zotlabs/Module/Admin/Themes.php:61 +msgid "No themes found." msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:342 -#: ../../Zotlabs/Module/Admin/Addons.php:440 ../../Zotlabs/Widget/Admin.php:27 -msgid "Addons" +#: ../../Zotlabs/Module/Admin/Themes.php:116 +msgid "Screenshot" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:353 -msgid "Minimum project version: " +#: ../../Zotlabs/Module/Admin/Themes.php:123 +#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 +msgid "Themes" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:354 -msgid "Maximum project version: " +#: ../../Zotlabs/Module/Admin/Themes.php:162 +msgid "[Experimental]" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:355 -msgid "Minimum PHP version: " +#: ../../Zotlabs/Module/Admin/Themes.php:163 +msgid "[Unsupported]" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:356 -msgid "Compatible Server Roles: " +#: ../../Zotlabs/Module/Admin.php:97 +msgid "Blocked accounts" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:357 -msgid "Requires: " +#: ../../Zotlabs/Module/Admin.php:98 +msgid "Expired accounts" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:358 -#: ../../Zotlabs/Module/Admin/Addons.php:445 -msgid "Disabled - version incompatibility" +#: ../../Zotlabs/Module/Admin.php:99 +msgid "Expiring accounts" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:414 -msgid "Enter the public git repository URL of the addon repo." +#: ../../Zotlabs/Module/Admin.php:120 +msgid "Message queues" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:415 -msgid "Addon repo git URL" +#: ../../Zotlabs/Module/Admin.php:134 +msgid "Your software should be updated" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:416 -msgid "Custom repo name" +#: ../../Zotlabs/Module/Admin.php:139 +msgid "Summary" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:416 -msgid "(optional)" +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Registered accounts" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:417 -msgid "Download Addon Repo" +#: ../../Zotlabs/Module/Admin.php:143 +msgid "Pending registrations" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:424 -msgid "Install new repo" +#: ../../Zotlabs/Module/Admin.php:144 +msgid "Registered channels" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:425 ../../Zotlabs/Lib/Apps.php:535 -msgid "Install" +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Active addons" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:448 -msgid "Manage Repos" +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Version" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:449 -msgid "Installed Addon Repositories" +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Repository version (master)" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:450 -msgid "Install a New Addon Repository" +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Repository version (dev)" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:457 -msgid "Switch branch" +#: ../../Zotlabs/Module/Affinity.php:35 +msgid "Affinity Tool settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:458 -#: ../../Zotlabs/Module/Photos.php:1035 ../../Zotlabs/Module/Tagrm.php:137 -#: ../../addon/superblock/Mod_Superblock.php:91 -msgid "Remove" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:89 -msgid "New Profile Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "Field nickname" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "System name of field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:91 -#: ../../Zotlabs/Module/Admin/Profs.php:111 -msgid "Input type" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Field Name" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Label on profile pages" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Help text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Additional info (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:94 -#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Widget/Notes.php:23 -#: ../../addon/queueworker/Mod_Queueworker.php:102 ../../include/text.php:1085 -#: ../../include/text.php:1097 -msgid "Save" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:103 -msgid "Field definition not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:109 -msgid "Edit Profile Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:168 ../../Zotlabs/Widget/Admin.php:30 -msgid "Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:169 -msgid "Basic Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "Advanced Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "(In addition to basic fields)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:172 -msgid "All available fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:173 -msgid "Custom Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:177 -msgid "Create Custom Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:29 -#, php-format -msgid "Password changed for account %d." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:46 -msgid "Account settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:61 -msgid "Account not found." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:68 -msgid "Account Edit" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:69 -msgid "New Password" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:70 -msgid "New Password again" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:71 -msgid "Account language (for emails)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:72 -msgid "Service class" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:83 +#: ../../Zotlabs/Module/Affinity.php:47 msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." +"This app presents a slider control in your connection editor and also on " +"your network page. The slider represents your degree of friendship " +"(affinity) with each connection. It allows you to zoom in or out and display " +"conversations from only your closest friends or everybody in your stream." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:86 +#: ../../Zotlabs/Module/Affinity.php:52 +msgid "Affinity Tool App" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:52 ../../Zotlabs/Module/Articles.php:51 +#: ../../Zotlabs/Module/Bookmarks.php:78 ../../Zotlabs/Module/Cards.php:51 +#: ../../Zotlabs/Module/Cdav.php:854 ../../Zotlabs/Module/Cdav.php:863 +#: ../../Zotlabs/Module/Chat.php:102 ../../Zotlabs/Module/Connect.php:104 +#: ../../Zotlabs/Module/Defperms.php:189 ../../Zotlabs/Module/Group.php:106 +#: ../../Zotlabs/Module/Invite.php:110 ../../Zotlabs/Module/Lang.php:17 +#: ../../Zotlabs/Module/Mood.php:134 ../../Zotlabs/Module/Notes.php:56 +#: ../../Zotlabs/Module/Oauth.php:100 ../../Zotlabs/Module/Oauth2.php:106 +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Permcats.php:62 +#: ../../Zotlabs/Module/Poke.php:165 ../../Zotlabs/Module/Probe.php:18 +#: ../../Zotlabs/Module/Pubstream.php:20 ../../Zotlabs/Module/Randprof.php:29 +#: ../../Zotlabs/Module/Sources.php:88 ../../Zotlabs/Module/Suggest.php:40 +#: ../../Zotlabs/Module/Tokens.php:99 ../../Zotlabs/Module/Uexport.php:61 +#: ../../Zotlabs/Module/Webpages.php:48 ../../Zotlabs/Module/Wiki.php:52 +msgid "Not Installed" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:57 msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" +"The numbers below represent the minimum and maximum slider default positions " +"for your network/stream page as a percentage." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:87 +#: ../../Zotlabs/Module/Affinity.php:64 +msgid "Default maximum affinity level" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:64 +msgid "0-99 default 99" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:70 +msgid "Default minimum affinity level" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:70 +msgid "0-99 - default 0" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:76 +msgid "Persistent affinity levels" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:76 msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" -"
https://vimeo.com/
https://soundcloud.com/
" +"If disabled the max and min levels will be reset to default after page reload" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:88 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:93 ../../Zotlabs/Widget/Admin.php:25 -msgid "Security" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:95 -msgid "Block public" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:95 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "Provide a cloud root directory" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "" -"The cloud root directory lists all channel names which provide public files" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:97 -msgid "Show total disk space available to cloud uploads" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:98 -msgid "Set \"Transport Security\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "Allowed email domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:101 -msgid "Not allowed email domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:101 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:102 -msgid "Allow communications only from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:102 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:103 -msgid "Block communications from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:104 -msgid "Allow communications only from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:104 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:105 -msgid "Block communications from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:106 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:107 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:107 -msgid "One site per line. By default embedded content is filtered." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:108 -msgid "Block embedded HTML from these domains" -msgstr "" - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "" - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "" - -#: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -#: ../../Zotlabs/Module/Acl.php:121 ../../include/acl_selectors.php:88 -msgctxt "acl" -msgid "Profile" -msgstr "" - -#: ../../Zotlabs/Module/Moderate.php:65 -msgid "Comment approved" -msgstr "" - -#: ../../Zotlabs/Module/Moderate.php:69 -msgid "Comment deleted" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:70 -#: ../../Zotlabs/Module/Settings/Channel.php:74 -#: ../../Zotlabs/Module/Settings/Channel.php:75 -#: ../../Zotlabs/Module/Settings/Channel.php:78 -#: ../../Zotlabs/Module/Settings/Channel.php:89 -#: ../../Zotlabs/Module/Connedit.php:725 ../../Zotlabs/Widget/Affinity.php:32 -#: ../../include/selectors.php:134 ../../include/channel.php:493 -#: ../../include/channel.php:494 ../../include/channel.php:501 -msgid "Friends" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:266 -#: ../../Zotlabs/Module/Defperms.php:111 -#: ../../addon/rendezvous/rendezvous.php:82 -#: ../../addon/openstreetmap/openstreetmap.php:185 -#: ../../addon/msgfooter/msgfooter.php:54 ../../addon/logrot/logrot.php:54 -#: ../../addon/twitter/twitter.php:605 ../../addon/piwik/piwik.php:116 -#: ../../addon/xmpp/xmpp.php:54 -msgid "Settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:327 -msgid "Nobody except yourself" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:328 -msgid "Only those you specifically allow" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:329 -msgid "Approved connections" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:330 -msgid "Any connections" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:331 -msgid "Anybody on this website" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:332 -msgid "Anybody in this network" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:333 -msgid "Anybody authenticated" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:334 -msgid "Anybody on the internet" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:409 -msgid "Publish your default profile in the network directory" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:414 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:418 -msgid "or" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:427 -msgid "Your channel address is" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:430 -msgid "Your files/photos are accessible via WebDAV at" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:470 -msgid "Automatic membership approval" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:470 -#: ../../Zotlabs/Module/Defperms.php:255 -msgid "" -"If enabled, connection requests will be approved without your interaction" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:491 -msgid "Channel Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:498 -msgid "Basic Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:499 ../../include/channel.php:1577 -msgid "Full Name:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:500 -#: ../../Zotlabs/Module/Settings/Account.php:104 -msgid "Email Address:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:501 -msgid "Your Timezone:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:502 -msgid "Default Post Location:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:502 -msgid "Geographical location to display on your posts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:503 -msgid "Use Browser Location:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:505 -msgid "Adult Content" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:505 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:507 -msgid "Security and Privacy Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:509 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:511 -msgid "Hide my online presence" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:511 -msgid "Prevents displaying in your profile that you are online" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:513 -msgid "Simple Privacy Settings:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:514 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:515 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:516 -msgid "Private - default private, never open or public" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:517 -msgid "Blocked - default blocked to/from everybody" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:519 -msgid "Allow others to tag your posts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:519 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:521 -msgid "Channel Permission Limits" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:523 -msgid "Expire other channel content after this many days" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:523 -msgid "0 or blank to use the website limit." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:523 -#, php-format -msgid "This website expires after %d days." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:523 -msgid "This website does not expire imported content." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:523 -msgid "The website limit takes precedence if lower than your limit." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:524 -msgid "Maximum Friend Requests/Day:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:524 -msgid "May reduce spam activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "Default Privacy Group" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:527 -msgid "Use my default audience setting for the type of object published" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:536 -msgid "Default permissions category" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:542 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:542 -msgid "Useful to reduce spamming" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:545 -#: ../../Zotlabs/Lib/Enotify.php:68 -msgid "Notification Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "By default post a status message when:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:547 -msgid "accepting a friend request" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:548 -msgid "joining a forum/community" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:549 -msgid "making an interesting profile change" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:550 -msgid "Send a notification email when:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:551 -msgid "You receive a connection request" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:552 -msgid "Your connections are confirmed" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:553 -msgid "Someone writes on your profile wall" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:554 -msgid "Someone writes a followup comment" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:555 -msgid "You receive a private message" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:556 -msgid "You receive a friend suggestion" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:557 -msgid "You are tagged in a post" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:558 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:560 -msgid "Someone likes your post/comment" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:563 -msgid "Show visual notifications including:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:565 -msgid "Unseen stream activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:566 -msgid "Unseen channel activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:567 -msgid "Unseen private messages" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:567 -#: ../../Zotlabs/Module/Settings/Channel.php:572 -#: ../../Zotlabs/Module/Settings/Channel.php:573 -#: ../../Zotlabs/Module/Settings/Channel.php:574 -#: ../../addon/jappixmini/Mod_Jappixmini.php:191 -msgid "Recommended" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:568 -msgid "Upcoming events" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:569 -msgid "Events today" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:570 -msgid "Upcoming birthdays" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:570 -msgid "Not available in all themes" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:571 -msgid "System (personal) notifications" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:572 -msgid "System info messages" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:573 -msgid "System critical alerts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:574 -msgid "New connections" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:575 -msgid "System Registrations" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:576 -msgid "Unseen shared files" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:577 -msgid "Unseen public stream activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:578 -msgid "Unseen likes and dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:579 -msgid "Unseen forum posts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:580 -msgid "Email notification hub (hostname)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:580 -#, php-format -msgid "" -"If your channel is mirrored to multiple hubs, set this to your preferred " -"location. This will prevent duplicate email notifications. Example: %s" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:581 -msgid "Show new wall posts, private messages and connections under Notices" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:583 -msgid "Notify me of events this many days in advance" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:583 -msgid "Must be greater than 0" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:588 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:589 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:591 -msgid "Miscellaneous Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:592 -msgid "Default photo upload folder" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:592 -#: ../../Zotlabs/Module/Settings/Channel.php:593 -msgid "%Y - current year, %m - current month" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:593 -msgid "Default file upload folder" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:595 -msgid "Remove this channel." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Features.php:43 -msgid "Additional Features" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Events.php:39 -msgid "Events Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Calendar.php:39 -msgid "CalDAV Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Conversation.php:22 -msgid "Settings saved." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Conversation.php:24 -msgid "Settings saved. Reload page please." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Conversation.php:46 -msgid "Conversation Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Connections.php:39 -msgid "Connections Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Photos.php:39 -msgid "Photos Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:19 -msgid "Not valid email." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:22 -msgid "Protected email address. Cannot change to that email." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:31 -msgid "System failure storing new email. Please try again." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:48 -msgid "Password verification failed." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:55 -msgid "Passwords do not match. Password unchanged." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:59 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:73 -msgid "Password changed." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:75 -msgid "Password update failed. Please try again." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:99 -msgid "Account Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:100 -msgid "Current Password" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:101 -msgid "Enter New Password" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:102 -msgid "Confirm New Password" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:102 -msgid "Leave password fields blank unless changing" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:105 -#: ../../Zotlabs/Module/Removeaccount.php:61 -msgid "Remove Account" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:106 -msgid "Remove this account including all its channels" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Profiles.php:47 -msgid "Profiles Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Manage.php:39 -msgid "Channel Manager Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Featured.php:24 -msgid "No feature settings configured" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Featured.php:33 -msgid "Addon Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Featured.php:34 -msgid "Please save/submit changes to any panel before opening another." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel_home.php:44 -#: ../../Zotlabs/Module/Settings/Network.php:41 -msgid "Max height of content (in pixels)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel_home.php:46 -#: ../../Zotlabs/Module/Settings/Network.php:43 -msgid "Click to expand content exceeding this height" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel_home.php:59 -msgid "Personal menu to display in your channel pages" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel_home.php:86 -msgid "Channel Home Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Directory.php:39 -msgid "Directory Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Editor.php:39 -msgid "Editor Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:128 -#, php-format -msgid "%s - (Experimental)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:184 -msgid "Display Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:185 -msgid "Theme Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:186 -msgid "Custom Theme Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:187 -msgid "Content Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:193 -msgid "Display Theme:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:194 -msgid "Select scheme" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:196 -msgid "Preload images before rendering the page" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:196 -msgid "" -"The subjective page load time will be longer but the page will be ready when " -"displayed" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:197 -msgid "Enable user zoom on mobile devices" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:198 -msgid "Update browser every xx seconds" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:198 -msgid "Minimum of 10 seconds, no maximum" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:199 -msgid "Maximum number of conversations to load at any time:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:199 -msgid "Maximum of 100 items" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:200 -msgid "Show emoticons (smilies) as images" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Provide channel menu in navigation bar" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Default: channel menu located in app menu" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:202 -msgid "Manual conversation updates" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:202 -msgid "Default is on, turning this off may increase screen jumping" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:203 -msgid "Link post titles to source" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:205 -#: ../../Zotlabs/Widget/Newmember.php:75 -msgid "New Member Links" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:205 -msgid "Display new member quick links menu" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:58 -msgid "Stream Settings" -msgstr "" - -#: ../../Zotlabs/Module/Embedphotos.php:148 ../../Zotlabs/Module/Photos.php:826 -#: ../../Zotlabs/Module/Photos.php:1374 ../../Zotlabs/Widget/Portfolio.php:87 -#: ../../Zotlabs/Widget/Album.php:78 -msgid "View Photo" -msgstr "" - -#: ../../Zotlabs/Module/Embedphotos.php:164 ../../Zotlabs/Module/Photos.php:857 -#: ../../Zotlabs/Widget/Portfolio.php:108 ../../Zotlabs/Widget/Album.php:95 -msgid "Edit Album" -msgstr "" - -#: ../../Zotlabs/Module/Embedphotos.php:166 ../../Zotlabs/Module/Photos.php:727 -#: ../../Zotlabs/Module/Profile_photo.php:459 -#: ../../Zotlabs/Module/Cover_photo.php:395 -#: ../../Zotlabs/Storage/Browser.php:392 ../../Zotlabs/Widget/Cdav.php:133 -#: ../../Zotlabs/Widget/Cdav.php:169 ../../Zotlabs/Widget/Portfolio.php:110 -#: ../../Zotlabs/Widget/Album.php:97 -msgid "Upload" -msgstr "" - -#: ../../Zotlabs/Module/Tokens.php:39 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "" - -#: ../../Zotlabs/Module/Tokens.php:45 -msgid "Name and Password are required." -msgstr "" - -#: ../../Zotlabs/Module/Tokens.php:85 -msgid "Token saved." -msgstr "" - -#: ../../Zotlabs/Module/Tokens.php:99 -msgid "Guest Access App" -msgstr "" - -#: ../../Zotlabs/Module/Tokens.php:100 -msgid "Create access tokens so that non-members can access private content" -msgstr "" - -#: ../../Zotlabs/Module/Tokens.php:133 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access private content." -msgstr "" - -#: ../../Zotlabs/Module/Tokens.php:135 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "" - -#: ../../Zotlabs/Module/Tokens.php:170 -msgid "Guest Access Tokens" -msgstr "" - -#: ../../Zotlabs/Module/Tokens.php:177 -msgid "Login Name" -msgstr "" - -#: ../../Zotlabs/Module/Tokens.php:178 -msgid "Login Password" -msgstr "" - -#: ../../Zotlabs/Module/Tokens.php:179 -msgid "Expires (yyyy-mm-dd)" -msgstr "" - -#: ../../Zotlabs/Module/Tokens.php:180 ../../Zotlabs/Module/Connedit.php:907 -msgid "Their Settings" -msgstr "" - -#: ../../Zotlabs/Module/Achievements.php:38 -msgid "Some blurb about what to do when you're new here" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:120 -msgid "Thing updated" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:172 -msgid "Object store: failed" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:176 -msgid "Thing added" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:202 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:265 -msgid "Show Thing" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:272 -msgid "item not found." -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:305 -msgid "Edit Thing" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:364 -msgid "Select a profile" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 -msgid "Post an activity" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 -msgid "Only sends to viewers of the applicable profile" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 -msgid "Name of thing e.g. something" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:370 -msgid "URL of thing (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:371 -msgid "URL for photo of thing (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:372 -#: ../../Zotlabs/Module/Photos.php:717 ../../Zotlabs/Module/Photos.php:1086 -#: ../../Zotlabs/Module/Connedit.php:690 ../../Zotlabs/Module/Chat.php:243 -#: ../../Zotlabs/Module/Filestorage.php:170 ../../include/acl_selectors.php:123 -msgid "Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:362 -msgid "Add Thing to your Profile" -msgstr "" - -#: ../../Zotlabs/Module/Notify.php:61 ../../Zotlabs/Module/Notifications.php:55 -msgid "No more system notifications." -msgstr "" - -#: ../../Zotlabs/Module/Notify.php:65 ../../Zotlabs/Module/Notifications.php:59 -msgid "System Notifications" -msgstr "" - -#: ../../Zotlabs/Module/Follow.php:36 -msgid "Connection added." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:155 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:182 -msgid "No channel. Import failed." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:522 -#: ../../addon/diaspora/import_diaspora.php:141 -msgid "Import completed." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:550 -msgid "You must be logged in to use this feature." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:555 -msgid "Import Channel" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Use this form to import an existing channel from a different server/hub. You " -"may retrieve the channel identity from the old server/hub via the network or " -"provide an export file." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:558 -msgid "Or provide the old server/hub details" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:560 -msgid "Your old identity address (xyz@example.com)" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:561 -msgid "Your old login email address" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:562 -msgid "Your old login password" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:563 -msgid "Import a few months of posts if possible (limited by available memory" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:565 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be " -"able to post from either location, but only one can be marked as the primary " -"location for files, photos, and media." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:567 -msgid "Make this hub my primary location" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:568 -msgid "Move this channel (disable all previous locations)" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:569 -msgid "Use this channel nickname instead of the one provided" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:569 -msgid "" -"Leave blank to keep your existing channel nickname. You will be randomly " -"assigned a similar nickname if either name is already allocated on this site." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:571 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "" - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "Authentication failed." -msgstr "" - -#: ../../Zotlabs/Module/Rmagic.php:93 ../../boot.php:1630 -#: ../../include/channel.php:2405 -msgid "Remote Authentication" -msgstr "" - -#: ../../Zotlabs/Module/Rmagic.php:94 ../../include/channel.php:2406 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "" - -#: ../../Zotlabs/Module/Rmagic.php:95 ../../include/channel.php:2407 -msgid "Authenticate" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:54 -msgid "Name and Secret are required" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:106 -msgid "OAuth2 Apps Manager App" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:107 -msgid "OAuth2 authenticatication tokens for mobile and remote apps" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:115 -msgid "Add OAuth2 application" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 -#: ../../Zotlabs/Module/Oauth.php:113 -msgid "Name of application" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 -#: ../../Zotlabs/Module/Oauth.php:115 ../../Zotlabs/Module/Oauth.php:141 -#: ../../addon/statusnet/statusnet.php:595 ../../addon/twitter/twitter.php:615 -msgid "Consumer Secret" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 -#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:115 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:120 ../../Zotlabs/Module/Oauth2.php:148 -#: ../../Zotlabs/Module/Oauth.php:116 ../../Zotlabs/Module/Oauth.php:142 -msgid "Redirect" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:120 ../../Zotlabs/Module/Oauth2.php:148 -#: ../../Zotlabs/Module/Oauth.php:116 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:121 ../../Zotlabs/Module/Oauth2.php:149 -msgid "Grant Types" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:121 ../../Zotlabs/Module/Oauth2.php:122 -msgid "leave blank unless your application sepcifically requires this" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:122 ../../Zotlabs/Module/Oauth2.php:150 -msgid "Authorization scope" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:134 -msgid "OAuth2 Application not found." -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:143 ../../Zotlabs/Module/Oauth2.php:193 -#: ../../Zotlabs/Module/Oauth.php:110 ../../Zotlabs/Module/Oauth.php:136 -#: ../../Zotlabs/Module/Oauth.php:172 -msgid "Add application" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:149 ../../Zotlabs/Module/Oauth2.php:150 -msgid "leave blank unless your application specifically requires this" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:192 -msgid "Connected OAuth2 Apps" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:196 ../../Zotlabs/Module/Oauth.php:175 -msgid "Client key starts with" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:197 ../../Zotlabs/Module/Oauth.php:176 -msgid "No name" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:198 ../../Zotlabs/Module/Oauth.php:177 -msgid "Remove authorization" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:70 -msgid "Permissions denied." -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:343 ../../include/text.php:2558 -msgid "Import" +#: ../../Zotlabs/Module/Affinity.php:84 +msgid "Affinity Tool Settings" msgstr "" #: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 @@ -4582,24 +6032,79 @@ msgid "" "and/or create new posts for you?" msgstr "" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." +#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 +msgid "App installed." msgstr "" -#: ../../Zotlabs/Module/Randprof.php:29 -msgid "Random Channel App" +#: ../../Zotlabs/Module/Appman.php:49 +msgid "Malformed app." msgstr "" -#: ../../Zotlabs/Module/Randprof.php:30 -msgid "Visit a random channel in the $Projectname network" +#: ../../Zotlabs/Module/Appman.php:132 +msgid "Embed code" msgstr "" -#: ../../Zotlabs/Module/Editblock.php:138 -msgid "Edit Block" +#: ../../Zotlabs/Module/Appman.php:138 +msgid "Edit App" msgstr "" -#: ../../Zotlabs/Module/Profile.php:93 -msgid "vcard" +#: ../../Zotlabs/Module/Appman.php:138 +msgid "Create App" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:143 +msgid "Name of app" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:144 +msgid "Location (URL) of app" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:145 ../../Zotlabs/Module/Cdav.php:939 +#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:146 +msgid "Photo icon URL" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:146 +msgid "80 x 80 pixels - optional" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:147 +msgid "Categories (optional, comma separated list)" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:148 +msgid "Version ID" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:149 +msgid "Price of app" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:150 +msgid "Location (URL) to purchase app" +msgstr "" + +#: ../../Zotlabs/Module/Apporder.php:47 +msgid "Change Order of Pinned Navbar Apps" +msgstr "" + +#: ../../Zotlabs/Module/Apporder.php:47 +msgid "Change Order of App Tray Apps" +msgstr "" + +#: ../../Zotlabs/Module/Apporder.php:48 +msgid "" +"Use arrows to move the corresponding app left (top) or right (bottom) in the " +"navbar" +msgstr "" + +#: ../../Zotlabs/Module/Apporder.php:48 +msgid "Use arrows to move the corresponding app up or down in the app tray" msgstr "" #: ../../Zotlabs/Module/Apps.php:50 ../../Zotlabs/Widget/Appstore.php:14 @@ -4618,185 +6123,97 @@ msgstr "" msgid "Create Custom App" msgstr "" -#: ../../Zotlabs/Module/Mood.php:76 ../../include/conversation.php:268 +#: ../../Zotlabs/Module/Articles.php:51 +msgid "Articles App" +msgstr "" + +#: ../../Zotlabs/Module/Articles.php:52 +msgid "Create interactive articles" +msgstr "" + +#: ../../Zotlabs/Module/Articles.php:115 +msgid "Add Article" +msgstr "" + +#: ../../Zotlabs/Module/Articles.php:116 ../../Zotlabs/Module/Blocks.php:159 +#: ../../Zotlabs/Module/Cards.php:113 ../../Zotlabs/Module/Cdav.php:1257 +#: ../../Zotlabs/Module/Connedit.php:938 ../../Zotlabs/Module/Layouts.php:185 +#: ../../Zotlabs/Module/Menu.php:181 ../../Zotlabs/Module/New_channel.php:189 +#: ../../Zotlabs/Module/Profiles.php:798 ../../Zotlabs/Module/Webpages.php:254 +#: ../../Zotlabs/Storage/Browser.php:282 ../../Zotlabs/Storage/Browser.php:396 +#: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 +msgid "Create" +msgstr "" + +#: ../../Zotlabs/Module/Article_edit.php:17 +#: ../../Zotlabs/Module/Article_edit.php:33 +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 ../../Zotlabs/Module/Editpost.php:24 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Card_edit.php:17 ../../Zotlabs/Module/Card_edit.php:33 +msgid "Item not found" +msgstr "" + +#: ../../Zotlabs/Module/Article_edit.php:44 ../../Zotlabs/Module/Block.php:41 +#: ../../Zotlabs/Module/Cal.php:63 ../../Zotlabs/Module/Chanview.php:96 +#: ../../Zotlabs/Module/Card_edit.php:44 ../../Zotlabs/Module/Page.php:75 +#: ../../Zotlabs/Module/Wall_upload.php:31 +msgid "Channel not found." +msgstr "" + +#: ../../Zotlabs/Module/Article_edit.php:128 +msgid "Edit Article" +msgstr "" + +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:17 +msgid "Unknown App" +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:29 +msgid "Authorize" +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:30 #, php-format -msgctxt "mood" -msgid "%1$s is %2$s" +msgid "Do you authorize the app %s to access your channel data?" msgstr "" -#: ../../Zotlabs/Module/Mood.php:134 -msgid "Mood App" +#: ../../Zotlabs/Module/Authorize.php:32 +msgid "Allow" msgstr "" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Module/Mood.php:155 -msgid "Set your current mood and tell your friends" +#: ../../Zotlabs/Module/Block.php:29 ../../Zotlabs/Module/Page.php:39 +msgid "Invalid item." msgstr "" -#: ../../Zotlabs/Module/Mood.php:154 ../../Zotlabs/Lib/Apps.php:347 -msgid "Mood" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:113 +msgid "Block Name" msgstr "" -#: ../../Zotlabs/Module/Connections.php:58 -#: ../../Zotlabs/Module/Connections.php:115 -#: ../../Zotlabs/Module/Connections.php:259 -msgid "Active" +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" msgstr "" -#: ../../Zotlabs/Module/Connections.php:63 -#: ../../Zotlabs/Module/Connections.php:167 -#: ../../Zotlabs/Module/Connections.php:264 -msgid "Blocked" +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Menu.php:177 ../../Zotlabs/Module/Webpages.php:266 +msgid "Created" msgstr "" -#: ../../Zotlabs/Module/Connections.php:68 -#: ../../Zotlabs/Module/Connections.php:174 -#: ../../Zotlabs/Module/Connections.php:263 -msgid "Ignored" +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:192 +#: ../../Zotlabs/Module/Menu.php:178 ../../Zotlabs/Module/Webpages.php:267 +msgid "Edited" msgstr "" -#: ../../Zotlabs/Module/Connections.php:73 -#: ../../Zotlabs/Module/Connections.php:188 -#: ../../Zotlabs/Module/Connections.php:262 -msgid "Hidden" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:78 -#: ../../Zotlabs/Module/Connections.php:181 -msgid "Archived/Unreachable" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:83 -#: ../../Zotlabs/Module/Connections.php:92 ../../Zotlabs/Module/Menu.php:179 -#: ../../Zotlabs/Module/Notifications.php:50 -msgid "New" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:97 -#: ../../Zotlabs/Module/Connections.php:111 -#: ../../Zotlabs/Module/Connedit.php:727 ../../Zotlabs/Widget/Affinity.php:34 -msgid "All" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:143 -msgid "Active Connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:146 -msgid "Show active connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:150 -#: ../../Zotlabs/Widget/Notifications.php:84 -msgid "New Connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:153 -msgid "Show pending (new) connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:170 -msgid "Only show blocked connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:177 -msgid "Only show ignored connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:184 -msgid "Only show archived/unreachable connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:191 -msgid "Only show hidden connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:206 -msgid "Show all connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:260 -msgid "Pending approval" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:261 -msgid "Archived" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Not connected at this location" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:282 -#, php-format -msgid "%1$s [%2$s]" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:283 -msgid "Edit connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:285 -msgid "Delete connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:294 -msgid "Channel address" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:296 ../../include/features.php:313 -msgid "Network" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:299 -msgid "Call" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:301 -msgid "Status" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:303 -msgid "Connected" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:305 -msgid "Approve connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Ignore connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:308 -#: ../../Zotlabs/Module/Connedit.php:644 -msgid "Ignore" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:309 -msgid "Recent activity" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:334 ../../Zotlabs/Lib/Apps.php:330 -#: ../../include/text.php:991 ../../include/features.php:125 -msgid "Connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:339 -msgid "Search your connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:340 -msgid "Connections search" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:341 -#: ../../Zotlabs/Module/Directory.php:405 -#: ../../Zotlabs/Module/Directory.php:410 ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "" - -#: ../../Zotlabs/Module/Viewsrc.php:43 -msgid "item" +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:695 +#: ../../Zotlabs/Module/Layouts.php:198 ../../Zotlabs/Module/Pubsites.php:60 +#: ../../Zotlabs/Module/Webpages.php:261 ../../Zotlabs/Module/Wiki.php:213 +#: ../../Zotlabs/Module/Wiki.php:409 +msgid "View" msgstr "" #: ../../Zotlabs/Module/Bookmarks.php:62 @@ -4819,711 +6236,359 @@ msgstr "" msgid "My Connections Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:35 +#: ../../Zotlabs/Module/Cal.php:70 +msgid "Permissions denied." +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:264 ../../Zotlabs/Module/Events.php:607 +msgid "l, F j" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:689 +msgid "Edit Event" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:689 +msgid "Create Event" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Cal.php:345 +#: ../../Zotlabs/Module/Cdav.php:948 ../../Zotlabs/Module/Events.php:690 +#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Photos.php:986 +msgid "Previous" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:339 ../../Zotlabs/Module/Cal.php:346 +#: ../../Zotlabs/Module/Cdav.php:949 ../../Zotlabs/Module/Events.php:691 +#: ../../Zotlabs/Module/Events.php:700 ../../Zotlabs/Module/Photos.php:995 +#: ../../Zotlabs/Module/Setup.php:260 +msgid "Next" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:347 ../../Zotlabs/Module/Cdav.php:950 +#: ../../Zotlabs/Module/Events.php:701 +msgid "Today" +msgstr "" + +#: ../../Zotlabs/Module/Cards.php:51 +msgid "Cards App" +msgstr "" + +#: ../../Zotlabs/Module/Cards.php:52 +msgid "Create personal planning cards" +msgstr "" + +#: ../../Zotlabs/Module/Cards.php:112 +msgid "Add Card" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:825 +msgid "INVALID EVENT DISMISSED!" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:826 +msgid "Summary: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:827 +msgid "Date: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:828 ../../Zotlabs/Module/Cdav.php:835 +msgid "Reason: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:833 +msgid "INVALID CARD DISMISSED!" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:834 +msgid "Name: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:854 +msgid "CalDAV App" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:855 +msgid "CalDAV capable calendar" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:863 +msgid "CardDAV App" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:864 +msgid "CalDAV capable addressbook" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:936 ../../Zotlabs/Module/Events.php:462 +msgid "Event title" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:937 ../../Zotlabs/Module/Events.php:468 +msgid "Start date and time" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:938 +msgid "End date and time" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:951 ../../Zotlabs/Module/Events.php:696 +msgid "Month" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:952 ../../Zotlabs/Module/Events.php:697 +msgid "Week" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:953 ../../Zotlabs/Module/Events.php:698 +msgid "Day" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:954 +msgid "List month" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:955 +msgid "List week" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:956 +msgid "List day" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:963 +msgid "More" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:964 +msgid "Less" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:965 +msgid "Select calendar" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:967 +msgid "Delete all" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:969 +msgid "Sorry! Editing of recurrent events is not yet implemented." +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1243 ../../Zotlabs/Module/Connedit.php:924 +msgid "Organisation" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1244 ../../Zotlabs/Module/Connedit.php:925 +msgid "Title" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1245 ../../Zotlabs/Module/Connedit.php:926 +#: ../../Zotlabs/Module/Profiles.php:786 +msgid "Phone" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1247 ../../Zotlabs/Module/Connedit.php:928 +#: ../../Zotlabs/Module/Profiles.php:788 +msgid "Instant messenger" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1248 ../../Zotlabs/Module/Connedit.php:929 +#: ../../Zotlabs/Module/Profiles.php:789 +msgid "Website" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1250 ../../Zotlabs/Module/Connedit.php:931 +#: ../../Zotlabs/Module/Profiles.php:791 +msgid "Note" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1255 ../../Zotlabs/Module/Connedit.php:936 +#: ../../Zotlabs/Module/Profiles.php:796 +msgid "Add Contact" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1256 ../../Zotlabs/Module/Connedit.php:937 +#: ../../Zotlabs/Module/Profiles.php:797 +msgid "Add Field" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1261 ../../Zotlabs/Module/Connedit.php:942 +msgid "P.O. Box" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1262 ../../Zotlabs/Module/Connedit.php:943 +msgid "Additional" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1263 ../../Zotlabs/Module/Connedit.php:944 +msgid "Street" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1264 ../../Zotlabs/Module/Connedit.php:945 +msgid "Locality" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1265 ../../Zotlabs/Module/Connedit.php:946 +msgid "Region" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1266 ../../Zotlabs/Module/Connedit.php:947 +msgid "ZIP Code" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1267 ../../Zotlabs/Module/Connedit.php:948 +#: ../../Zotlabs/Module/Profiles.php:757 +msgid "Country" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1314 +msgid "Default Calendar" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1324 +msgid "Default Addressbook" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:35 msgid "" -"Account removals are not allowed within 48 hours of changing the account " +"Channel name changes are not allowed within 48 hours of changing the account " "password." msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" +#: ../../Zotlabs/Module/Changeaddr.php:77 +msgid "Change channel nickname/address" msgstr "" +#: ../../Zotlabs/Module/Changeaddr.php:78 #: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "WARNING: " +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "Any/all connections on other networks will be lost!" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:79 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "Please enter your password for verification:" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:80 +msgid "New channel address" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:81 +msgid "Rename Channel" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:41 ../../Zotlabs/Module/Chat.php:31 +#: ../../Zotlabs/Module/Ochannel.php:32 +msgid "You must be logged in to see this page." +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:98 ../../Zotlabs/Module/Hcard.php:37 +#: ../../Zotlabs/Module/Profile.php:45 +msgid "Posts and comments" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:105 ../../Zotlabs/Module/Hcard.php:44 +#: ../../Zotlabs/Module/Profile.php:52 +msgid "Only posts" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:165 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:182 ../../Zotlabs/Module/Network.php:173 +msgid "Search Results For:" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:217 ../../Zotlabs/Module/Display.php:80 +#: ../../Zotlabs/Module/Hq.php:134 ../../Zotlabs/Module/Network.php:203 +#: ../../Zotlabs/Module/Pubstream.php:94 +msgid "Reset form" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:476 ../../Zotlabs/Module/Display.php:378 msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:78 -msgid "Page owner information could not be retrieved." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:113 -msgid "Album not found." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:103 -msgid "Delete Album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1098 -msgid "Delete Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:569 -msgid "No photos selected" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:618 -msgid "Access to this item is restricted." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:661 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:664 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:706 -msgid "Upload Photos" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:710 -msgid "Enter an album name" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:711 -msgid "or select an existing album (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:712 -msgid "Create a status post for this upload" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:714 -msgid "Description (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:800 -msgid "Show Newest First" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:802 -msgid "Show Oldest First" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:859 ../../Zotlabs/Module/Photos.php:1405 -msgid "Add Photos" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:907 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:909 -msgid "Photo not available" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:967 -msgid "Use as profile photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:968 -msgid "Use as cover photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:975 -msgid "Private Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:990 -msgid "View Full Size" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1072 -msgid "Edit photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1074 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1075 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1078 -msgid "Move photo to album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1079 -msgid "Enter a new album name" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1080 -msgid "or select an existing one (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1085 -msgid "Add a Tag" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1093 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1096 -msgid "Flag as adult in album view" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1115 ../../Zotlabs/Lib/ThreadItem.php:306 -msgid "I like this (toggle)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1116 ../../Zotlabs/Lib/ThreadItem.php:307 -msgid "I don't like this (toggle)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1118 ../../Zotlabs/Lib/ThreadItem.php:469 -#: ../../include/conversation.php:787 -msgid "Please wait" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Module/Photos.php:1254 -#: ../../Zotlabs/Lib/ThreadItem.php:792 -msgid "This is you" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1137 ../../Zotlabs/Module/Photos.php:1256 -#: ../../Zotlabs/Lib/ThreadItem.php:794 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1154 ../../include/conversation.php:619 -msgctxt "title" -msgid "Likes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1154 ../../include/conversation.php:619 -msgctxt "title" -msgid "Dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1155 ../../include/conversation.php:620 -msgctxt "title" -msgid "Agree" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1155 ../../include/conversation.php:620 -msgctxt "title" -msgid "Disagree" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1155 ../../include/conversation.php:620 -msgctxt "title" -msgid "Abstain" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1156 ../../include/conversation.php:621 -msgctxt "title" -msgid "Attending" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1156 ../../include/conversation.php:621 -msgctxt "title" -msgid "Not attending" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1156 ../../include/conversation.php:621 -msgctxt "title" -msgid "Might attend" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Photos.php:1185 -#: ../../Zotlabs/Lib/ThreadItem.php:231 ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "View all" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1177 ../../Zotlabs/Lib/ThreadItem.php:235 -#: ../../include/conversation.php:1702 ../../include/channel.php:1595 -#: ../../include/taxonomy.php:661 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Photos.php:1182 ../../Zotlabs/Lib/ThreadItem.php:240 -#: ../../include/conversation.php:1705 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Photos.php:1288 -msgid "Photo Tools" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1297 -msgid "In This Photo:" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1302 -msgid "Map" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1310 ../../Zotlabs/Lib/ThreadItem.php:457 -msgctxt "noun" -msgid "Likes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1311 ../../Zotlabs/Lib/ThreadItem.php:458 -msgctxt "noun" -msgid "Dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1316 ../../Zotlabs/Lib/ThreadItem.php:463 -#: ../../include/acl_selectors.php:125 -msgid "Close" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1389 ../../Zotlabs/Module/Photos.php:1402 -#: ../../Zotlabs/Module/Photos.php:1403 ../../include/photos.php:670 -msgid "Recent Photos" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:35 -#: ../../addon/flashcards/Mod_Flashcards.php:34 ../../addon/cart/cart.php:1298 -msgid "Profile Unavailable." -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:52 -msgid "Wiki App" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:53 -msgid "Provide a wiki for your channel" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:77 ../../addon/cart/myshop.php:37 -#: ../../addon/cart/cart.php:1444 -#: ../../addon/cart/submodules/paypalbutton.php:456 -#: ../../addon/cart/manual_payments.php:93 -msgid "Invalid channel" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:133 -msgid "Error retrieving wiki" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:140 -msgid "Error creating zip file export folder" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:191 -msgid "Error downloading wiki: " -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Widget/Wiki_list.php:15 -#: ../../include/nav.php:536 -msgid "Wikis" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:212 -msgid "Download" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:214 ../../Zotlabs/Module/Chat.php:264 -#: ../../Zotlabs/Module/Profiles.php:831 ../../Zotlabs/Module/Manage.php:145 -msgid "Create New" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:216 -msgid "Wiki name" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:217 -msgid "Content type" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Wiki.php:371 -#: ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../addon/mdpost/mdpost.php:41 -#: ../../include/text.php:1955 -msgid "Markdown" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Wiki.php:371 -#: ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../include/text.php:1953 -msgid "BBcode" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../include/text.php:1956 -msgid "Text" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:219 ../../Zotlabs/Storage/Browser.php:286 -msgid "Type" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:220 -msgid "Any type" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:227 -msgid "Lock content type" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:228 -msgid "Create a status post for this wiki" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:229 -msgid "Edit Wiki Name" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:274 -msgid "Wiki not found" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:300 -msgid "Rename page" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:321 -msgid "Error retrieving page content" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:329 ../../Zotlabs/Module/Wiki.php:331 -msgid "New page" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:366 -msgid "Revision Comparison" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:367 ../../Zotlabs/Lib/NativeWikiPage.php:564 -#: ../../Zotlabs/Widget/Wiki_page_history.php:25 -msgid "Revert" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:374 -msgid "Short description of your changes (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:384 -msgid "Source" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:394 -msgid "New page name" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:399 -msgid "Embed image from photo albums" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:400 ../../addon/hsse/hsse.php:208 -#: ../../include/conversation.php:1414 -msgid "Embed an image from your albums" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:402 ../../Zotlabs/Module/Profile_photo.php:466 -#: ../../Zotlabs/Module/Cover_photo.php:400 ../../addon/hsse/hsse.php:210 -#: ../../addon/hsse/hsse.php:257 ../../include/conversation.php:1416 -#: ../../include/conversation.php:1463 -msgid "OK" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:403 ../../Zotlabs/Module/Profile_photo.php:467 -#: ../../Zotlabs/Module/Cover_photo.php:401 ../../addon/hsse/hsse.php:139 -#: ../../include/conversation.php:1342 -msgid "Choose images to embed" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:404 ../../Zotlabs/Module/Profile_photo.php:468 -#: ../../Zotlabs/Module/Cover_photo.php:402 ../../addon/hsse/hsse.php:140 -#: ../../include/conversation.php:1343 -msgid "Choose an album" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:405 ../../Zotlabs/Module/Profile_photo.php:469 -#: ../../Zotlabs/Module/Cover_photo.php:403 -msgid "Choose a different album" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:406 ../../Zotlabs/Module/Profile_photo.php:470 -#: ../../Zotlabs/Module/Cover_photo.php:404 ../../addon/hsse/hsse.php:142 -#: ../../include/conversation.php:1345 -msgid "Error getting album list" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:407 ../../Zotlabs/Module/Profile_photo.php:471 -#: ../../Zotlabs/Module/Cover_photo.php:405 ../../addon/hsse/hsse.php:143 -#: ../../include/conversation.php:1346 -msgid "Error getting photo link" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:408 ../../Zotlabs/Module/Profile_photo.php:472 -#: ../../Zotlabs/Module/Cover_photo.php:406 ../../addon/hsse/hsse.php:144 -#: ../../include/conversation.php:1347 -msgid "Error getting album" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:410 -msgid "History" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:488 -msgid "Error creating wiki. Invalid name." -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:495 -msgid "A wiki with this name already exists." -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:508 -msgid "Wiki created, but error creating Home page." -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:515 -msgid "Error creating wiki" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:539 -msgid "Error updating wiki. Invalid name." -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:559 -msgid "Error updating wiki" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:574 -msgid "Wiki delete permission denied." -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:584 -msgid "Error deleting wiki" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:617 -msgid "New page created" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:739 -msgid "Cannot delete Home" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:803 -msgid "Current Revision" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:803 -msgid "Selected Revision" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:853 -msgid "You must be authenticated." -msgstr "" - -#: ../../Zotlabs/Module/Share.php:103 ../../Zotlabs/Lib/Activity.php:1473 -#, php-format -msgid "🔁 Repeated %1$s's %2$s" -msgstr "" - -#: ../../Zotlabs/Module/Share.php:119 -msgid "Post repeated" +"You must enable javascript for your browser to be able to view this content." msgstr "" #: ../../Zotlabs/Module/Chanview.php:139 msgid "toggle full screen mode" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:26 -msgid "Layout updated." +#: ../../Zotlabs/Module/Chat.php:102 +msgid "Chatrooms App" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:42 -msgid "PDL Editor App" +#: ../../Zotlabs/Module/Chat.php:103 +msgid "Access Controlled Chatrooms" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:43 -msgid "Provides the ability to edit system page layouts" +#: ../../Zotlabs/Module/Chat.php:196 +msgid "Room not found" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:56 ../../Zotlabs/Module/Pdledit.php:99 -msgid "Edit System Page Description" +#: ../../Zotlabs/Module/Chat.php:212 +msgid "Leave Room" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:77 -msgid "(modified)" +#: ../../Zotlabs/Module/Chat.php:213 +msgid "Delete Room" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:77 ../../Zotlabs/Module/Lostpass.php:133 -msgid "Reset" +#: ../../Zotlabs/Module/Chat.php:214 +msgid "I am away right now" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:94 -msgid "Layout not found." +#: ../../Zotlabs/Module/Chat.php:215 +msgid "I am online" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:100 -msgid "Module Name:" +#: ../../Zotlabs/Module/Chat.php:217 +msgid "Bookmark this room" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:101 -msgid "Layout Help" +#: ../../Zotlabs/Module/Chat.php:240 +msgid "New Chatroom" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:102 -msgid "Edit another layout" +#: ../../Zotlabs/Module/Chat.php:241 +msgid "Chatroom name" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:103 -msgid "System layout" +#: ../../Zotlabs/Module/Chat.php:242 +msgid "Expiration of chats (minutes)" msgstr "" -#: ../../Zotlabs/Module/Poke.php:165 -msgid "Poke App" +#: ../../Zotlabs/Module/Chat.php:258 +#, php-format +msgid "%1$s's Chatrooms" msgstr "" -#: ../../Zotlabs/Module/Poke.php:166 -msgid "Poke somebody in your addressbook" +#: ../../Zotlabs/Module/Chat.php:263 +msgid "No chatrooms available" msgstr "" -#: ../../Zotlabs/Module/Poke.php:199 ../../Zotlabs/Lib/Apps.php:348 -#: ../../include/conversation.php:1098 -msgid "Poke" +#: ../../Zotlabs/Module/Chat.php:264 ../../Zotlabs/Module/Manage.php:145 +#: ../../Zotlabs/Module/Profiles.php:831 ../../Zotlabs/Module/Wiki.php:214 +msgid "Create New" msgstr "" -#: ../../Zotlabs/Module/Poke.php:200 -msgid "Poke somebody" +#: ../../Zotlabs/Module/Chat.php:267 +msgid "Expiration" msgstr "" -#: ../../Zotlabs/Module/Poke.php:203 -msgid "Poke/Prod" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:204 -msgid "Poke, prod or do other things to somebody" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:211 -msgid "Recipient" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:212 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:215 ../../Zotlabs/Module/Poke.php:216 -msgid "Make this post private" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:66 -#: ../../Zotlabs/Module/Cover_photo.php:57 -msgid "Image uploaded but image cropping failed." -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:120 -#: ../../Zotlabs/Module/Profile_photo.php:248 -#: ../../include/photo/photo_driver.php:367 -msgid "Profile Photos" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:142 -#: ../../Zotlabs/Module/Cover_photo.php:191 -msgid "Image resize failed." -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:218 -#: ../../addon/openclipatar/openclipatar.php:298 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:225 -#: ../../Zotlabs/Module/Cover_photo.php:205 ../../include/photos.php:196 -msgid "Unable to process image" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:260 -#: ../../Zotlabs/Module/Cover_photo.php:229 -msgid "Image upload failed." -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:279 -#: ../../Zotlabs/Module/Cover_photo.php:246 -msgid "Unable to process image." -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:343 -#: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Cover_photo.php:339 -#: ../../Zotlabs/Module/Cover_photo.php:354 -msgid "Photo not available." -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:454 -msgid "" -"Your default profile photo is visible to anybody on the internet. Profile " -"photos for alternate profiles will inherit the permissions of the profile" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:454 -msgid "" -"Your profile photo is visible to anybody on the internet and may be " -"distributed to other websites." -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:456 -#: ../../Zotlabs/Module/Cover_photo.php:392 -msgid "Upload File:" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:457 -#: ../../Zotlabs/Module/Cover_photo.php:393 -msgid "Select a profile:" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:458 -msgid "Use Photo for Profile" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:458 -msgid "Change Profile Photo" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:459 -msgid "Use" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:463 -#: ../../Zotlabs/Module/Profile_photo.php:464 -#: ../../Zotlabs/Module/Cover_photo.php:397 -#: ../../Zotlabs/Module/Cover_photo.php:398 -msgid "Use a photo from your albums" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:474 -#: ../../Zotlabs/Module/Cover_photo.php:409 -msgid "Select existing photo" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:493 -#: ../../Zotlabs/Module/Cover_photo.php:426 -msgid "Crop Image" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:494 -#: ../../Zotlabs/Module/Cover_photo.php:427 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:496 -#: ../../Zotlabs/Module/Cover_photo.php:429 -msgid "Done Editing" +#: ../../Zotlabs/Module/Chat.php:268 +msgid "min" msgstr "" #: ../../Zotlabs/Module/Chatsvc.php:131 @@ -5534,96 +6599,230 @@ msgstr "" msgid "Online" msgstr "" -#: ../../Zotlabs/Module/Item.php:341 -msgid "Unable to locate original post." +#: ../../Zotlabs/Module/Cloud.php:123 +msgid "Not found" msgstr "" -#: ../../Zotlabs/Module/Item.php:628 -msgid "Empty post discarded." +#: ../../Zotlabs/Module/Cloud.php:129 +msgid "Please refresh page" msgstr "" -#: ../../Zotlabs/Module/Item.php:1037 -msgid "Duplicate post suppressed." +#: ../../Zotlabs/Module/Cloud.php:132 +msgid "Unknown error" msgstr "" -#: ../../Zotlabs/Module/Item.php:1182 -msgid "System error. Post not saved." +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." msgstr "" -#: ../../Zotlabs/Module/Item.php:1218 -msgid "Your comment is awaiting approval." +#: ../../Zotlabs/Module/Common.php:45 +msgid "No connections in common." msgstr "" -#: ../../Zotlabs/Module/Item.php:1335 -msgid "Unable to obtain post information from database." +#: ../../Zotlabs/Module/Common.php:65 +msgid "View Common Connections" msgstr "" -#: ../../Zotlabs/Module/Item.php:1342 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." +#: ../../Zotlabs/Module/Connect.php:73 ../../Zotlabs/Module/Connect.php:135 +msgid "Continue" msgstr "" -#: ../../Zotlabs/Module/Item.php:1349 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." +#: ../../Zotlabs/Module/Connect.php:104 +msgid "Premium Channel App" msgstr "" -#: ../../Zotlabs/Module/Ping.php:338 -msgid "sent you a private message" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:394 -msgid "added your channel" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:419 -msgid "requires approval" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:429 -msgid "g A l F d" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:447 -msgid "[today]" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:457 -msgid "posted an event" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:491 -msgid "shared a file with you" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:673 -msgid "Private forum" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:673 -msgid "Public forum" -msgstr "" - -#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 -msgid "Invalid item." -msgstr "" - -#: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 -#: ../../Zotlabs/Module/Display.php:140 ../../Zotlabs/Module/Display.php:157 -#: ../../Zotlabs/Module/Display.php:174 -#: ../../Zotlabs/Lib/NativeWikiPage.php:521 ../../Zotlabs/Web/Router.php:185 -#: ../../addon/chess/Mod_Chess.php:447 ../../include/help.php:132 -msgid "Page not found." -msgstr "" - -#: ../../Zotlabs/Module/Page.php:173 +#: ../../Zotlabs/Module/Connect.php:105 msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " -"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:116 +msgid "Premium Channel Setup" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:118 +msgid "Enable premium channel connection restrictions" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:119 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:121 ../../Zotlabs/Module/Connect.php:141 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:122 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:123 ../../Zotlabs/Module/Connect.php:144 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:132 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:140 +msgid "Restricted or Premium Channel" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:58 +#: ../../Zotlabs/Module/Connections.php:115 +#: ../../Zotlabs/Module/Connections.php:273 +msgid "Active" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:63 +#: ../../Zotlabs/Module/Connections.php:181 +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Blocked" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:68 +#: ../../Zotlabs/Module/Connections.php:188 +#: ../../Zotlabs/Module/Connections.php:277 +msgid "Ignored" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:73 +#: ../../Zotlabs/Module/Connections.php:202 +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Hidden" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:78 +#: ../../Zotlabs/Module/Connections.php:195 +msgid "Archived/Unreachable" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:83 +#: ../../Zotlabs/Module/Connections.php:92 ../../Zotlabs/Module/Menu.php:179 +#: ../../Zotlabs/Module/Notifications.php:50 +msgid "New" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:97 +#: ../../Zotlabs/Module/Connections.php:111 +#: ../../Zotlabs/Module/Connedit.php:727 ../../Zotlabs/Widget/Affinity.php:34 +msgid "All" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:157 +msgid "Active Connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:160 +msgid "Show active connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:164 +#: ../../Zotlabs/Widget/Notifications.php:84 +msgid "New Connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:167 +msgid "Show pending (new) connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:184 +msgid "Only show blocked connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:191 +msgid "Only show ignored connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:198 +msgid "Only show archived/unreachable connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:205 +msgid "Only show hidden connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:217 +#: ../../Zotlabs/Module/Profperm.php:140 +msgid "All Connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:220 +msgid "Show all connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Pending approval" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:275 +msgid "Archived" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:279 +msgid "Not connected at this location" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:296 +#, php-format +msgid "%1$s [%2$s]" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:297 +msgid "Edit connection" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:299 +msgid "Delete connection" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Channel address" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:313 +msgid "Call" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:315 +msgid "Status" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:317 +msgid "Connected" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:319 +msgid "Approve connection" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:321 +msgid "Ignore connection" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:322 +#: ../../Zotlabs/Module/Connedit.php:644 +msgid "Ignore" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:323 +msgid "Recent activity" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:353 +msgid "Search your connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:354 +msgid "Connections search" msgstr "" #: ../../Zotlabs/Module/Connedit.php:81 ../../Zotlabs/Module/Defperms.php:67 @@ -5664,12 +6863,6 @@ msgstr "" msgid "Connection has been removed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:608 ../../Zotlabs/Lib/Apps.php:341 -#: ../../addon/openclipatar/openclipatar.php:57 -#: ../../include/conversation.php:1038 ../../include/nav.php:106 -msgid "View Profile" -msgstr "" - #: ../../Zotlabs/Module/Connedit.php:611 #, php-format msgid "View %s's profile" @@ -5691,10 +6884,6 @@ msgstr "" msgid "Fetch updated photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:629 ../../include/conversation.php:1048 -msgid "Recent Activity" -msgstr "" - #: ../../Zotlabs/Module/Connedit.php:632 msgid "View recent posts and comments" msgstr "" @@ -5838,11 +7027,6 @@ msgstr "" msgid "Connection Default Permissions" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:867 ../../include/items.php:4308 -#, php-format -msgid "Connection: %s" -msgstr "" - #: ../../Zotlabs/Module/Connedit.php:868 ../../Zotlabs/Module/Defperms.php:255 msgid "Apply these permissions automatically" msgstr "" @@ -5881,11 +7065,6 @@ msgstr "" msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:887 ../../Zotlabs/Module/Rate.php:155 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "" - #: ../../Zotlabs/Module/Connedit.php:888 msgid "Slide to adjust your rating" msgstr "" @@ -5914,6 +7093,11 @@ msgstr "" msgid "Connection Pending Approval" msgstr "" +#: ../../Zotlabs/Module/Connedit.php:903 ../../Zotlabs/Module/Defperms.php:264 +#: ../../Zotlabs/Module/Permcats.php:123 ../../Zotlabs/Module/Tokens.php:183 +msgid "inherited" +msgstr "" + #: ../../Zotlabs/Module/Connedit.php:905 #, php-format msgid "" @@ -5921,6 +7105,28 @@ msgid "" "profile securely." msgstr "" +#: ../../Zotlabs/Module/Connedit.php:907 ../../Zotlabs/Module/Tokens.php:180 +msgid "Their Settings" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:908 ../../Zotlabs/Module/Defperms.php:266 +#: ../../Zotlabs/Module/Permcats.php:121 ../../Zotlabs/Module/Tokens.php:181 +msgid "My Settings" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Defperms.php:269 +#: ../../Zotlabs/Module/Permcats.php:126 ../../Zotlabs/Module/Tokens.php:186 +msgid "Individual Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:911 ../../Zotlabs/Module/Permcats.php:127 +#: ../../Zotlabs/Module/Tokens.php:187 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can not change those settings here." +msgstr "" + #: ../../Zotlabs/Module/Connedit.php:912 msgid "" "Some permissions may be inherited from your channel's login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:111 ../../Zotlabs/Module/Like.php:137 +#: ../../Zotlabs/Module/Like.php:175 +msgid "Invalid request." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:152 +msgid "thing" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:198 +msgid "Channel unavailable." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:246 +msgid "Previous action reversed." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:451 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:453 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:455 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:457 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:459 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:461 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:572 +msgid "Action completed." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:573 +msgid "Thank you." +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary " +"location." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:176 +msgid "Drop" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing " +"your channel." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 +#, php-format +msgid "Site Member (%s)" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:68 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your password has been reset as requested." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Your new password is" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "Save or copy your new password - and then" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "click here to login" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:96 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:117 +#, php-format +msgid "Your password has changed at %s" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Forgot your Password?" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:131 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:132 +msgid "Email Address" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:133 ../../Zotlabs/Module/Pdledit.php:77 +msgid "Reset" +msgstr "" + +#: ../../Zotlabs/Module/Magic.php:76 +msgid "Hub not found." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:73 +msgid "Unable to lookup recipient." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:80 +msgid "Unable to communicate with requested channel." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:87 +msgid "Cannot verify requested channel." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:105 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:160 +msgid "Messages" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:173 +msgid "message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:214 +msgid "Message recalled." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:227 +msgid "Conversation removed." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:270 +msgid "Requested channel is not in this network" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:278 +msgid "Send Private Message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 +msgid "To:" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 +msgid "Subject:" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 +msgid "Attach file" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:289 +msgid "Send" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:393 +msgid "Delete message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:394 +msgid "Delivery report" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:395 +msgid "Recall message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:397 +msgid "Message has been recalled." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:414 +msgid "Delete Conversation" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:416 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:420 +msgid "Send Reply" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:425 +#, php-format +msgid "Your message for %s (%s):" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:138 ../../Zotlabs/Module/New_channel.php:147 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:145 +msgid "Create a new channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:171 +msgid "Current Channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:173 +msgid "Switch to one of your channels by selecting it." +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:174 +msgid "Default Channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Make Default" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:178 +#, php-format +msgid "%d new messages" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:179 +#, php-format +msgid "%d new introductions" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:181 +msgid "Delegated Channel" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:67 +msgid "Unable to update menu." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:78 +msgid "Unable to create menu." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:160 ../../Zotlabs/Module/Menu.php:173 +msgid "Menu Name" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:160 +msgid "Unique name (not visible on webpage) - required" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:161 ../../Zotlabs/Module/Menu.php:174 +msgid "Menu Title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:161 +msgid "Visible on webpage - leave empty for no title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:162 +msgid "Allow Bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 +msgid "Menu may be used to store saved bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:224 +msgid "Submit and proceed" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:180 +msgid "Bookmarks allowed" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:182 +msgid "Delete this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:183 ../../Zotlabs/Module/Menu.php:218 +msgid "Edit menu contents" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:184 +msgid "Edit this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:200 +msgid "Menu could not be deleted." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:208 ../../Zotlabs/Module/Mitem.php:31 +msgid "Menu not found." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:213 +msgid "Edit Menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:217 +msgid "Add or remove entries to this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:219 +msgid "Menu name" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:219 +msgid "Must be unique, only seen by you" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:220 +msgid "Menu title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:220 +msgid "Menu title as seen by others" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:221 +msgid "Allow bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:231 ../../Zotlabs/Module/Mitem.php:134 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:63 +msgid "Unable to create element." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:87 +msgid "Unable to update menu element." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:103 +msgid "Unable to add menu element." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:167 ../../Zotlabs/Module/Mitem.php:246 +msgid "Menu Item Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:168 ../../Zotlabs/Module/Mitem.php:247 +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "(click to open/close)" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:174 ../../Zotlabs/Module/Mitem.php:191 +msgid "Link Name" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:175 ../../Zotlabs/Module/Mitem.php:255 +msgid "Link or Submenu Target" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:175 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:256 +msgid "Use magic-auth if available" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:257 +msgid "Open link in new window" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 +msgid "Order in list" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 +msgid "Higher numbers will sink to bottom of listing" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Submit and finish" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Submit and continue" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Menu:" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:192 +msgid "Link Target" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:195 +msgid "Edit menu" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:198 +msgid "Edit element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:199 +msgid "Drop element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:200 +msgid "New element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:201 +msgid "Edit this menu container" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Add menu element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:203 +msgid "Delete this menu item" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:204 +msgid "Edit this menu item" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:222 +msgid "Menu item not found." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:235 +msgid "Menu item deleted." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:237 +msgid "Menu item could not be deleted." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:244 +msgid "Edit Menu Element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:254 +msgid "Link text" +msgstr "" + +#: ../../Zotlabs/Module/Moderate.php:65 +msgid "Comment approved" +msgstr "" + +#: ../../Zotlabs/Module/Moderate.php:69 +msgid "Comment deleted" +msgstr "" + +#: ../../Zotlabs/Module/Mood.php:134 +msgid "Mood App" +msgstr "" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Module/Mood.php:155 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:109 +msgid "No such group" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:158 +msgid "No such channel" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:242 +msgid "Privacy group is empty" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:252 +msgid "Privacy group: " +msgstr "" + +#: ../../Zotlabs/Module/Network.php:325 +msgid "Invalid channel." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:159 +msgid "Your real name is recommended." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:160 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\"" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:165 +msgid "" +"This will be used to create a unique network address (like an email address)." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:167 +msgid "Allowed characters are a-z 0-9, - and _" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:175 +msgid "Channel name" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:177 +#: ../../Zotlabs/Module/Register.php:260 +msgid "Choose a short nickname" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:178 +#: ../../Zotlabs/Module/Register.php:261 +#: ../../Zotlabs/Module/Settings/Channel.php:535 +msgid "Channel role and privacy" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:178 +msgid "" +"Select a channel permission role compatible with your usage needs and " +"privacy requirements." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:178 +#: ../../Zotlabs/Module/Register.php:261 +msgid "Read more about channel permission roles" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:181 +msgid "Create a Channel" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:182 +msgid "" +"A channel is a unique network identity. It can represent a person (social " +"network profile), a forum (group), a business or celebrity page, a newsfeed, " +"and many other things." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:183 +msgid "" +"or import an existing channel from another location." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:188 +msgid "Validate" +msgstr "" + +#: ../../Zotlabs/Module/Notes.php:56 +msgid "Notes App" +msgstr "" + +#: ../../Zotlabs/Module/Notes.php:57 +msgid "A simple notes app with a widget (note: notes are not encrypted)" +msgstr "" + +#: ../../Zotlabs/Module/Notifications.php:55 ../../Zotlabs/Module/Notify.php:61 +msgid "No more system notifications." +msgstr "" + +#: ../../Zotlabs/Module/Notifications.php:59 ../../Zotlabs/Module/Notify.php:65 +msgid "System Notifications" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:45 +msgid "Name is required" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:49 +msgid "Key and Secret are required" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:100 +msgid "OAuth Apps Manager App" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:101 +msgid "OAuth authentication tokens for mobile and remote apps" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:110 ../../Zotlabs/Module/Oauth.php:136 +#: ../../Zotlabs/Module/Oauth.php:172 ../../Zotlabs/Module/Oauth2.php:143 +#: ../../Zotlabs/Module/Oauth2.php:193 +msgid "Add application" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:113 ../../Zotlabs/Module/Oauth2.php:118 +#: ../../Zotlabs/Module/Oauth2.php:146 +msgid "Name of application" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:140 +msgid "Consumer Key" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:115 +#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:115 ../../Zotlabs/Module/Oauth.php:141 +#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 +msgid "Consumer Secret" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:116 ../../Zotlabs/Module/Oauth.php:142 +#: ../../Zotlabs/Module/Oauth2.php:120 ../../Zotlabs/Module/Oauth2.php:148 +msgid "Redirect" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:116 ../../Zotlabs/Module/Oauth2.php:120 +#: ../../Zotlabs/Module/Oauth2.php:148 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Oauth.php:143 +msgid "Icon url" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Sources.php:123 +#: ../../Zotlabs/Module/Sources.php:158 +msgid "Optional" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:128 +msgid "Application not found." +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:171 +msgid "Connected OAuth Apps" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:175 ../../Zotlabs/Module/Oauth2.php:196 +msgid "Client key starts with" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:176 ../../Zotlabs/Module/Oauth2.php:197 +msgid "No name" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:177 ../../Zotlabs/Module/Oauth2.php:198 +msgid "Remove authorization" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:54 +msgid "Name and Secret are required" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:106 +msgid "OAuth2 Apps Manager App" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:107 +msgid "OAuth2 authenticatication tokens for mobile and remote apps" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:115 +msgid "Add OAuth2 application" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:121 ../../Zotlabs/Module/Oauth2.php:149 +msgid "Grant Types" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:121 ../../Zotlabs/Module/Oauth2.php:122 +msgid "leave blank unless your application sepcifically requires this" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:122 ../../Zotlabs/Module/Oauth2.php:150 +msgid "Authorization scope" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:134 +msgid "OAuth2 Application not found." +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:149 ../../Zotlabs/Module/Oauth2.php:150 +msgid "leave blank unless your application specifically requires this" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:192 +msgid "Connected OAuth2 Apps" +msgstr "" + +#: ../../Zotlabs/Module/Card_edit.php:128 +msgid "Edit Card" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:59 +msgid "Invalid message" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:93 +msgid "no results" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "channel sync processed" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:111 +msgid "queued" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:115 +msgid "posted" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:119 +msgid "accepted for delivery" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "updated" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "update ignored" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:129 +msgid "permission denied" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:133 +msgid "recipient not found" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:136 +msgid "mail recalled" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:139 +msgid "duplicate mail received" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:142 +msgid "mail delivered" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:162 +#, php-format +msgid "Delivery report for %1$s" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:166 ../../Zotlabs/Widget/Wiki_pages.php:41 +#: ../../Zotlabs/Widget/Wiki_pages.php:98 +msgid "Options" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:167 +msgid "Redeliver" +msgstr "" + +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "" + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "" + +#: ../../Zotlabs/Module/Page.php:173 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " +"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "" + +#: ../../Zotlabs/Module/Pconfig.php:32 ../../Zotlabs/Module/Pconfig.php:68 +msgid "This setting requires special processing and editing has been blocked." +msgstr "" + +#: ../../Zotlabs/Module/Pconfig.php:57 +msgid "Configuration Editor" +msgstr "" + +#: ../../Zotlabs/Module/Pconfig.php:58 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please " +"leave this page unless you are comfortable with and knowledgeable about how " +"to correctly use this feature." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:26 +msgid "Layout updated." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:42 +msgid "PDL Editor App" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:43 +msgid "Provides the ability to edit system page layouts" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:56 ../../Zotlabs/Module/Pdledit.php:99 +msgid "Edit System Page Description" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:77 +msgid "(modified)" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:94 +msgid "Layout not found." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:100 +msgid "Module Name:" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:101 +msgid "Layout Help" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:102 +msgid "Edit another layout" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:103 +msgid "System layout" +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:28 +msgid "Permission category name is required." +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:47 +msgid "Permission category saved." +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:62 +msgid "Permission Categories App" +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:63 +msgid "Create custom connection permission limits" +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:79 +msgid "" +"Use this form to create permission rules for various classes of people or " +"connections." +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:120 +msgid "Permission category name" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:78 +msgid "Page owner information could not be retrieved." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:113 +msgid "Album not found." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:103 +msgid "Delete Album" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1098 +msgid "Delete Photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:569 +msgid "No photos selected" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:618 +msgid "Access to this item is restricted." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:661 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:664 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:706 +msgid "Upload Photos" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:710 +msgid "Enter an album name" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:711 +msgid "or select an existing album (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:712 +msgid "Create a status post for this upload" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:714 +msgid "Description (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:800 +msgid "Show Newest First" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:802 +msgid "Show Oldest First" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:859 ../../Zotlabs/Module/Photos.php:1405 +msgid "Add Photos" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:907 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:909 +msgid "Photo not available" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:967 +msgid "Use as profile photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:968 +msgid "Use as cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:975 +msgid "Private Photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:990 +msgid "View Full Size" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1072 +msgid "Edit photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1074 +msgid "Rotate CW (right)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1075 +msgid "Rotate CCW (left)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1078 +msgid "Move photo to album" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1079 +msgid "Enter a new album name" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1080 +msgid "or select an existing one (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1085 +msgid "Add a Tag" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1093 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1096 +msgid "Flag as adult in album view" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1288 +msgid "Photo Tools" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1297 +msgid "In This Photo:" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1302 +msgid "Map" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:338 +msgid "sent you a private message" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:394 +msgid "added your channel" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:419 +msgid "requires approval" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:429 +msgid "g A l F d" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:447 +msgid "[today]" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:457 +msgid "posted an event" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:491 +msgid "shared a file with you" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:673 +msgid "Private forum" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:673 +msgid "Public forum" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:165 +msgid "Poke App" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:166 +msgid "Poke somebody in your addressbook" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:200 +msgid "Poke somebody" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:203 +msgid "Poke/Prod" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:204 +msgid "Poke, prod or do other things to somebody" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:211 +msgid "Recipient" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:212 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:215 ../../Zotlabs/Module/Poke.php:216 +msgid "Make this post private" +msgstr "" + +#: ../../Zotlabs/Module/Probe.php:18 +msgid "Remote Diagnostics App" +msgstr "" + +#: ../../Zotlabs/Module/Probe.php:19 +msgid "Perform diagnostics on remote channels" +msgstr "" + +#: ../../Zotlabs/Module/Profile.php:93 +msgid "vcard" +msgstr "" + #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 #: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 msgid "Profile not found." @@ -6434,7 +9268,6 @@ msgid "Political Views" msgstr "" #: ../../Zotlabs/Module/Profiles.php:486 -#: ../../addon/openid/MysqlProvider.php:74 msgid "Gender" msgstr "" @@ -6466,11 +9299,6 @@ msgstr "" msgid "View this profile" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:725 ../../Zotlabs/Module/Profiles.php:824 -#: ../../include/channel.php:1375 -msgid "Edit visibility" -msgstr "" - #: ../../Zotlabs/Module/Profiles.php:726 msgid "Profile Tools" msgstr "" @@ -6479,10 +9307,6 @@ msgstr "" msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:728 ../../include/channel.php:1345 -msgid "Change profile photo" -msgstr "" - #: ../../Zotlabs/Module/Profiles.php:729 msgid "Create a new profile using these settings" msgstr "" @@ -6507,11 +9331,6 @@ msgstr "" msgid "Relationship" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:736 ../../Zotlabs/Widget/Newmember.php:51 -#: ../../include/datetime.php:58 -msgid "Miscellaneous" -msgstr "" - #: ../../Zotlabs/Module/Profiles.php:738 msgid "Import profile from file" msgstr "" @@ -6581,7 +9400,6 @@ msgid "Tell us about yourself" msgstr "" #: ../../Zotlabs/Module/Profiles.php:767 -#: ../../addon/openid/MysqlProvider.php:68 msgid "Homepage URL" msgstr "" @@ -6645,810 +9463,50 @@ msgstr "" msgid "Communications" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:820 ../../include/channel.php:1371 -msgid "Profile Image" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:830 ../../include/channel.php:1352 -#: ../../include/nav.php:109 -msgid "Edit Profiles" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:21 -msgid "This page is available only to site members" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:27 -msgid "Welcome" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:29 -msgid "What would you like to do?" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:31 +#: ../../Zotlabs/Module/Profile_photo.php:218 msgid "" -"Please bookmark this page if you would like to return to it in the future" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -#: ../../Zotlabs/Module/Go.php:35 -msgid "Upload a profile photo" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:36 -msgid "Upload a cover photo" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:37 -msgid "Edit your default profile" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:41 -msgid "View friend suggestions" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:39 -msgid "View the channel directory" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:40 -msgid "View/edit your channel settings" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:41 -msgid "View the site or project documentation" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:42 -msgid "Visit your channel homepage" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:43 +#: ../../Zotlabs/Module/Profile_photo.php:454 msgid "" -"View your connections and/or add somebody whose address you already know" +"Your default profile photo is visible to anybody on the internet. Profile " +"photos for alternate profiles will inherit the permissions of the profile" msgstr "" -#: ../../Zotlabs/Module/Go.php:44 +#: ../../Zotlabs/Module/Profile_photo.php:454 msgid "" -"View your personal stream (this may be empty until you add some connections)" +"Your profile photo is visible to anybody on the internet and may be " +"distributed to other websites." msgstr "" -#: ../../Zotlabs/Module/Go.php:52 -msgid "View the public stream. Warning: this content is not moderated" +#: ../../Zotlabs/Module/Profile_photo.php:458 +msgid "Use Photo for Profile" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:139 -msgid "Page link" +#: ../../Zotlabs/Module/Profile_photo.php:458 +msgid "Change Profile Photo" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:166 -msgid "Edit Webpage" +#: ../../Zotlabs/Module/Profile_photo.php:459 +msgid "Use" msgstr "" -#: ../../Zotlabs/Module/Manage.php:145 -msgid "Create a new channel" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." msgstr "" -#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:334 -#: ../../include/nav.php:92 -msgid "Channel Manager" +#: ../../Zotlabs/Module/Profperm.php:111 +msgid "Profile Visibility Editor" msgstr "" -#: ../../Zotlabs/Module/Manage.php:171 -msgid "Current Channel" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../Zotlabs/Module/Manage.php:173 -msgid "Switch to one of your channels by selecting it." -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:174 -msgid "Default Channel" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Make Default" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:178 -#, php-format -msgid "%d new messages" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:179 -#, php-format -msgid "%d new introductions" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:181 -msgid "Delegated Channel" -msgstr "" - -#: ../../Zotlabs/Module/Cards.php:51 -msgid "Cards App" -msgstr "" - -#: ../../Zotlabs/Module/Cards.php:52 -msgid "Create personal planning cards" -msgstr "" - -#: ../../Zotlabs/Module/Cards.php:112 -msgid "Add Card" -msgstr "" - -#: ../../Zotlabs/Module/Cards.php:207 ../../Zotlabs/Lib/Apps.php:325 -#: ../../include/nav.php:501 -msgid "Cards" -msgstr "" - -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:21 -msgid "About this site" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:22 -msgid "Site Name" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:26 -msgid "Administrator" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:28 ../../Zotlabs/Module/Register.php:236 -msgid "Terms of Service" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:29 -msgid "Software and Project information" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:30 -msgid "This site is powered by $Projectname" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:31 -msgid "" -"Federated and decentralised networking and identity services provided by Zot" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Additional federated transport protocols:" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:36 -#, php-format -msgid "Version %s" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:37 -msgid "Project homepage" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:38 -msgid "Developer homepage" -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 -#: ../../include/conversation.php:1088 -msgid "Ratings" -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:48 -msgid "Webpages App" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:49 -msgid "Provide managed web pages on your channel" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:69 -msgid "Import Webpage Elements" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:70 -msgid "Import selected" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:93 -msgid "Export Webpage Elements" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:94 -msgid "Export selected" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:252 ../../Zotlabs/Lib/Apps.php:338 -#: ../../include/nav.php:524 -msgid "Webpages" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:263 -msgid "Actions" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:264 -msgid "Page Link" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:265 -msgid "Page Title" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:295 -msgid "Invalid file type." -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:307 -msgid "Error opening zip file" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:318 -msgid "Invalid folder path." -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:345 -msgid "No webpage elements detected." -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:420 -msgid "Import complete." -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:35 -msgid "" -"Channel name changes are not allowed within 48 hours of changing the account " -"password." -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:222 -#: ../../include/channel.php:655 -msgid "Reserved nickname. Please choose another." -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:227 -#: ../../include/channel.php:660 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:77 -msgid "Change channel nickname/address" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "Any/all connections on other networks will be lost!" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:80 -msgid "New channel address" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:81 -msgid "Rename Channel" -msgstr "" - -#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 -msgid "Item is not editable" -msgstr "" - -#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:144 -msgid "Edit post" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:56 -msgid "Invalid message" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:90 -msgid "no results" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:104 -msgid "channel sync processed" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:108 -msgid "queued" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:112 -msgid "posted" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:116 -msgid "accepted for delivery" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "updated" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "update ignored" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "permission denied" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:130 -msgid "recipient not found" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:133 -msgid "mail recalled" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:136 -msgid "duplicate mail received" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:139 -msgid "mail delivered" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:159 -#, php-format -msgid "Delivery report for %1$s" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:162 ../../Zotlabs/Widget/Wiki_pages.php:41 -#: ../../Zotlabs/Widget/Wiki_pages.php:98 -msgid "Options" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:163 -msgid "Redeliver" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:41 -msgid "Failed to create source. No channel selected." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:57 -msgid "Source created." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:70 -msgid "Source updated." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:88 -msgid "Sources App" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:89 -msgid "Automatically import channel content from other channels or feeds" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:101 -msgid "*" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:107 ../../Zotlabs/Lib/Apps.php:366 -msgid "Channel Sources" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:108 -msgid "Manage remote sources of content for your channel." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:119 -msgid "New Source" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:120 ../../Zotlabs/Module/Sources.php:154 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 -msgid "Only import content with these words (one per line)" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 -msgid "Leave blank to import all public content" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:161 -msgid "Channel Name" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 -#: ../../Zotlabs/Module/Oauth.php:117 -msgid "Optional" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 -msgid "Resend posts with this channel as author" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 -msgid "Copyrights may apply" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:144 ../../Zotlabs/Module/Sources.php:174 -msgid "Source not found." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:151 -msgid "Edit Source" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:152 -msgid "Delete Source" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:182 -msgid "Source removed" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:184 -msgid "Unable to remove source." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:56 -msgid "Like/Dislike" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:61 -msgid "This action is restricted to members." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:62 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:111 ../../Zotlabs/Module/Like.php:137 -#: ../../Zotlabs/Module/Like.php:175 -msgid "Invalid request." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:123 ../../include/conversation.php:122 -msgid "channel" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:152 -msgid "thing" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:198 -msgid "Channel unavailable." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:246 -msgid "Previous action reversed." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:447 ../../Zotlabs/Lib/Activity.php:1994 -#: ../../addon/diaspora/Receiver.php:1491 ../../addon/pubcrawl/as.php:1540 -#: ../../include/conversation.php:160 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:449 ../../Zotlabs/Lib/Activity.php:1996 -#: ../../addon/pubcrawl/as.php:1542 ../../include/conversation.php:163 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:451 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:453 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:455 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:457 ../../addon/diaspora/Receiver.php:2137 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:459 ../../addon/diaspora/Receiver.php:2139 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:461 ../../addon/diaspora/Receiver.php:2141 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:572 -msgid "Action completed." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:573 -msgid "Thank you." -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:110 -msgid "No default suggestions were found." -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:259 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Directory.php:270 -msgid "Gender: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:272 -msgid "Status: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:274 -msgid "Homepage: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:323 ../../include/channel.php:1620 -msgid "Age:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:328 ../../include/channel.php:1447 -#: ../../include/event.php:58 ../../include/event.php:90 -msgid "Location:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Description:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:339 ../../include/channel.php:1649 -msgid "Hometown:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:341 ../../include/channel.php:1655 -msgid "About:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:342 ../../Zotlabs/Module/Suggest.php:71 -#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 -#: ../../include/conversation.php:1058 ../../include/channel.php:1432 -#: ../../include/connections.php:110 -msgid "Connect" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:343 -msgid "Public Forum:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:346 -msgid "Keywords: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:349 -msgid "Don't suggest" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:351 -msgid "Common connections (estimated):" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:400 -msgid "Global Directory" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:400 -msgid "Local Directory" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:406 -msgid "Finding:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:409 ../../Zotlabs/Module/Suggest.php:79 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:411 -msgid "next page" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:411 -msgid "previous page" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:412 -msgid "Sort options" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:413 -msgid "Alphabetic" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:414 -msgid "Reverse Alphabetic" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:415 -msgid "Newest to Oldest" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:416 -msgid "Oldest to Newest" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:433 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "" - -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "" - -#: ../../Zotlabs/Module/Suggest.php:40 -msgid "Suggest Channels App" -msgstr "" - -#: ../../Zotlabs/Module/Suggest.php:41 -msgid "" -"Suggestions for channels in the $Projectname network you might be interested " -"in" -msgstr "" - -#: ../../Zotlabs/Module/Suggest.php:54 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: ../../Zotlabs/Module/Suggest.php:73 ../../Zotlabs/Widget/Suggestions.php:46 -msgid "Ignore/Hide" -msgstr "" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "" - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:73 -msgid "Unable to lookup recipient." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:80 -msgid "Unable to communicate with requested channel." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:87 -msgid "Cannot verify requested channel." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:105 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:160 -msgid "Messages" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:173 -msgid "message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:214 -msgid "Message recalled." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:227 -msgid "Conversation removed." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:270 -msgid "Requested channel is not in this network" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:278 -msgid "Send Private Message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 -msgid "To:" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 -msgid "Subject:" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 -msgid "Attach file" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:289 -msgid "Send" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 -#: ../../addon/hsse/hsse.php:250 ../../include/conversation.php:1456 -msgid "Set expiration date" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:393 -msgid "Delete message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:394 -msgid "Delivery report" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:395 -msgid "Recall message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:397 -msgid "Message has been recalled." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:414 -msgid "Delete Conversation" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:416 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:420 -msgid "Send Reply" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:425 -#, php-format -msgid "Your message for %s (%s):" +#: ../../Zotlabs/Module/Profperm.php:124 +msgid "Visible To" msgstr "" #: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 @@ -7488,30 +9546,53 @@ msgstr "" msgid "Rate" msgstr "" -#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:269 -msgid "webpage" +#: ../../Zotlabs/Module/Pubstream.php:20 +msgid "Public Stream App" msgstr "" -#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:275 -msgid "block" +#: ../../Zotlabs/Module/Pubstream.php:21 +msgid "The unmoderated public stream of this hub" msgstr "" -#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:272 -msgid "layout" +#: ../../Zotlabs/Module/Randprof.php:29 +msgid "Random Channel App" msgstr "" -#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:278 -msgid "menu" +#: ../../Zotlabs/Module/Randprof.php:30 +msgid "Visit a random channel in the $Projectname network" msgstr "" -#: ../../Zotlabs/Module/Impel.php:185 +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "" + +#: ../../Zotlabs/Module/Rate.php:159 #, php-format -msgid "%s element installed" +msgid "Remote Channel [%s] (not yet known on this site)" msgstr "" -#: ../../Zotlabs/Module/Impel.php:188 -#, php-format -msgid "%s element installation failed" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "" + +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "" + +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "" + +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "" + +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "" + +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " msgstr "" #: ../../Zotlabs/Module/Rbmark.php:94 @@ -7530,26 +9611,6 @@ msgstr "" msgid "Or enter new bookmark folder name" msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Enter a folder name" -msgstr "" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "or select an existing folder (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:181 -msgid "Save to Folder" -msgstr "" - -#: ../../Zotlabs/Module/Probe.php:18 -msgid "Remote Diagnostics App" -msgstr "" - -#: ../../Zotlabs/Module/Probe.php:19 -msgid "Perform diagnostics on remote channels" -msgstr "" - #: ../../Zotlabs/Module/Register.php:49 msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgstr "" @@ -7602,6 +9663,10 @@ msgid "" "Please try again tomorrow." msgstr "" +#: ../../Zotlabs/Module/Register.php:236 ../../Zotlabs/Module/Siteinfo.php:28 +msgid "Terms of Service" +msgstr "" + #: ../../Zotlabs/Module/Register.php:242 #, php-format msgid "I accept the %s for this website" @@ -7657,91 +9722,1337 @@ msgstr "" msgid "yes" msgstr "" -#: ../../Zotlabs/Module/Register.php:289 ../../boot.php:1609 -#: ../../include/nav.php:156 -msgid "Register" -msgstr "" - #: ../../Zotlabs/Module/Register.php:290 msgid "" "This site requires email verification. After completing this form, please " "check your email for further instructions." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Cover_photo.php:218 -msgid "Cover Photos" +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:269 ../../include/items.php:4652 -msgid "female" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:270 ../../include/items.php:4653 +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This action is permanent and can not be undone!" +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings/Account.php:105 +msgid "Remove Account" +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:594 +msgid "Remove Channel" +msgstr "" + +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "Authentication failed." +msgstr "" + +#: ../../Zotlabs/Module/Search.php:230 #, php-format -msgid "%1$s updated her %2$s" +msgid "Items tagged with: %s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:271 ../../include/items.php:4654 -msgid "male" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:272 ../../include/items.php:4655 +#: ../../Zotlabs/Module/Search.php:232 #, php-format -msgid "%1$s updated his %2$s" +msgid "Search results for: %s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:274 ../../include/items.php:4657 +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:19 +msgid "Not valid email." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:22 +msgid "Protected email address. Cannot change to that email." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:31 +msgid "System failure storing new email. Please try again." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:48 +msgid "Password verification failed." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:55 +msgid "Passwords do not match. Password unchanged." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:59 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:73 +msgid "Password changed." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:75 +msgid "Password update failed. Please try again." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:99 +msgid "Account Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:100 +msgid "Current Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:101 +msgid "Enter New Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:102 +msgid "Confirm New Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:102 +msgid "Leave password fields blank unless changing" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:104 +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Email Address:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Remove this account including all its channels" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Calendar.php:39 +msgid "CalDAV Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:327 +msgid "Nobody except yourself" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:328 +msgid "Only those you specifically allow" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:329 +msgid "Approved connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:330 +msgid "Any connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:331 +msgid "Anybody on this website" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:332 +msgid "Anybody in this network" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:333 +msgid "Anybody authenticated" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:334 +msgid "Anybody on the internet" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:409 +msgid "Publish your default profile in the network directory" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:414 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:418 +msgid "or" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:427 +msgid "Your channel address is" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:430 +msgid "Your files/photos are accessible via WebDAV at" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:470 +msgid "Automatic membership approval" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:491 +msgid "Channel Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:498 +msgid "Basic Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:501 +msgid "Your Timezone:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:502 +msgid "Default Post Location:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:502 +msgid "Geographical location to display on your posts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Use Browser Location:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "Adult Content" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "Security and Privacy Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:509 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Hide my online presence" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Prevents displaying in your profile that you are online" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "Simple Privacy Settings:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:514 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:515 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:516 +msgid "Private - default private, never open or public" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:517 +msgid "Blocked - default blocked to/from everybody" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "Allow others to tag your posts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Channel Permission Limits" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "Expire other channel content after this many days" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "0 or blank to use the website limit." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:523 #, php-format -msgid "%1$s updated their %2$s" +msgid "This website expires after %d days." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:276 ../../include/channel.php:2137 -msgid "cover photo" +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "This website does not expire imported content." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:390 -msgid "Your cover photo may be visible to anybody on the internet" +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "The website limit takes precedence if lower than your limit." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:394 -msgid "Change Cover Photo" +#: ../../Zotlabs/Module/Settings/Channel.php:524 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../Zotlabs/Module/Help.php:23 -msgid "Documentation Search" +#: ../../Zotlabs/Module/Settings/Channel.php:524 +msgid "May reduce spam activity" msgstr "" -#: ../../Zotlabs/Module/Help.php:80 ../../include/nav.php:434 -msgid "About" +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Default Privacy Group" msgstr "" -#: ../../Zotlabs/Module/Help.php:82 -msgid "Administrators" +#: ../../Zotlabs/Module/Settings/Channel.php:527 +msgid "Use my default audience setting for the type of object published" msgstr "" -#: ../../Zotlabs/Module/Help.php:83 -msgid "Developers" +#: ../../Zotlabs/Module/Settings/Channel.php:536 +msgid "Default permissions category" msgstr "" -#: ../../Zotlabs/Module/Help.php:84 -msgid "Tutorials" +#: ../../Zotlabs/Module/Settings/Channel.php:542 +msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../Zotlabs/Module/Help.php:95 -msgid "$Projectname Documentation" +#: ../../Zotlabs/Module/Settings/Channel.php:542 +msgid "Useful to reduce spamming" msgstr "" -#: ../../Zotlabs/Module/Help.php:96 -msgid "Contents" +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "By default post a status message when:" msgstr "" -#: ../../Zotlabs/Module/Display.php:391 -msgid "Article" +#: ../../Zotlabs/Module/Settings/Channel.php:547 +msgid "accepting a friend request" msgstr "" -#: ../../Zotlabs/Module/Display.php:443 -msgid "Item has been removed." +#: ../../Zotlabs/Module/Settings/Channel.php:548 +msgid "joining a forum/community" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:549 +msgid "making an interesting profile change" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:550 +msgid "Send a notification email when:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:551 +msgid "You receive a connection request" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:552 +msgid "Your connections are confirmed" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:553 +msgid "Someone writes on your profile wall" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:554 +msgid "Someone writes a followup comment" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:555 +msgid "You receive a private message" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:556 +msgid "You receive a friend suggestion" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:557 +msgid "You are tagged in a post" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:558 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:560 +msgid "Someone likes your post/comment" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:563 +msgid "Show visual notifications including:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:565 +msgid "Unseen stream activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:566 +msgid "Unseen channel activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:567 +msgid "Unseen private messages" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:567 +#: ../../Zotlabs/Module/Settings/Channel.php:572 +#: ../../Zotlabs/Module/Settings/Channel.php:573 +#: ../../Zotlabs/Module/Settings/Channel.php:574 +msgid "Recommended" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:568 +msgid "Upcoming events" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:569 +msgid "Events today" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:570 +msgid "Upcoming birthdays" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:570 +msgid "Not available in all themes" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:571 +msgid "System (personal) notifications" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:572 +msgid "System info messages" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:573 +msgid "System critical alerts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:574 +msgid "New connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:575 +msgid "System Registrations" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:576 +msgid "Unseen shared files" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:577 +msgid "Unseen public stream activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:578 +msgid "Unseen likes and dislikes" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:579 +msgid "Unseen forum posts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:580 +msgid "Email notification hub (hostname)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:580 +#, php-format +msgid "" +"If your channel is mirrored to multiple hubs, set this to your preferred " +"location. This will prevent duplicate email notifications. Example: %s" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:581 +msgid "Show new wall posts, private messages and connections under Notices" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:583 +msgid "Notify me of events this many days in advance" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:583 +msgid "Must be greater than 0" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:588 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:589 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:591 +msgid "Miscellaneous Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:592 +msgid "Default photo upload folder" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:592 +#: ../../Zotlabs/Module/Settings/Channel.php:593 +msgid "%Y - current year, %m - current month" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:593 +msgid "Default file upload folder" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:595 +msgid "Remove this channel." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel_home.php:44 +#: ../../Zotlabs/Module/Settings/Network.php:41 +msgid "Max height of content (in pixels)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel_home.php:46 +#: ../../Zotlabs/Module/Settings/Network.php:43 +msgid "Click to expand content exceeding this height" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel_home.php:59 +msgid "Personal menu to display in your channel pages" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel_home.php:86 +msgid "Channel Home Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Connections.php:39 +msgid "Connections Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Conversation.php:22 +msgid "Settings saved." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Conversation.php:24 +msgid "Settings saved. Reload page please." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Conversation.php:46 +msgid "Conversation Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Directory.php:39 +msgid "Directory Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:128 +#, php-format +msgid "%s - (Experimental)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:184 +msgid "Display Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:185 +msgid "Theme Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:186 +msgid "Custom Theme Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:187 +msgid "Content Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:193 +msgid "Display Theme:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:194 +msgid "Select scheme" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "Preload images before rendering the page" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "" +"The subjective page load time will be longer but the page will be ready when " +"displayed" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:197 +msgid "Enable user zoom on mobile devices" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Update browser every xx seconds" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Minimum of 10 seconds, no maximum" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Maximum number of conversations to load at any time:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Maximum of 100 items" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:200 +msgid "Show emoticons (smilies) as images" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Provide channel menu in navigation bar" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Default: channel menu located in app menu" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Manual conversation updates" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Default is on, turning this off may increase screen jumping" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Link post titles to source" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +#: ../../Zotlabs/Widget/Newmember.php:75 +msgid "New Member Links" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Display new member quick links menu" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Editor.php:39 +msgid "Editor Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Events.php:39 +msgid "Events Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:24 +msgid "No feature settings configured" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:33 +msgid "Addon Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:34 +msgid "Please save/submit changes to any panel before opening another." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Features.php:43 +msgid "Additional Features" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Manage.php:39 +msgid "Channel Manager Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:58 +msgid "Stream Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Photos.php:39 +msgid "Photos Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Profiles.php:47 +msgid "Profiles Settings" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:167 +msgid "$Projectname Server - Setup" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:171 +msgid "Could not connect to database." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:175 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:182 +msgid "Could not create table." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:188 +msgid "Your site database has been installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:194 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:195 ../../Zotlabs/Module/Setup.php:259 +#: ../../Zotlabs/Module/Setup.php:766 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:256 +msgid "System check" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:261 +msgid "Check again" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:282 +msgid "Database connection" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:283 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:284 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:285 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:289 +msgid "Database Server Name" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:289 +msgid "Default is 127.0.0.1" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:290 +msgid "Database Port" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:290 +msgid "Communication port number - use 0 for default" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:291 +msgid "Database Login Name" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:292 +msgid "Database Login Password" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:293 +msgid "Database Name" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database Type" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:296 ../../Zotlabs/Module/Setup.php:336 +msgid "Site administrator email address" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:296 ../../Zotlabs/Module/Setup.php:336 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:297 ../../Zotlabs/Module/Setup.php:338 +msgid "Website URL" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:297 ../../Zotlabs/Module/Setup.php:338 +msgid "Please use SSL (https) URL if available." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:340 +msgid "Please select a default timezone for your website" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:325 +msgid "Site settings" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:379 +msgid "PHP version 7.1 or greater is required." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:380 +msgid "PHP version" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:396 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:397 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:401 +msgid "PHP executable path" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:401 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:406 +msgid "Command line PHP" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:416 +msgid "" +"Unable to check command line PHP, as shell_exec() is disabled. This is " +"required." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:420 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:421 +msgid "This is required for message delivery to work." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:424 +msgid "PHP register_argc_argv" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:444 +msgid "" +"This is not sufficient to upload larger images or files. You should be able " +"to upload at least 4 MB at once." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:446 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to " +"upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:452 +msgid "You can adjust these settings in the server php.ini file." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:454 +msgid "PHP upload limits" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:477 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:478 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:481 +msgid "Generate encryption keys" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:498 +msgid "libCurl PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:499 +msgid "GD graphics PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:500 +msgid "OpenSSL PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:501 +msgid "PDO database PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:502 +msgid "mb_string PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:503 +msgid "xml PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:504 +msgid "zip PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:508 ../../Zotlabs/Module/Setup.php:510 +msgid "Apache mod_rewrite module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:508 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:514 ../../Zotlabs/Module/Setup.php:517 +msgid "exec" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:514 +msgid "" +"Error: exec is required but is either not installed or has been disabled in " +"php.ini" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:520 ../../Zotlabs/Module/Setup.php:523 +msgid "shell_exec" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:520 +msgid "" +"Error: shell_exec is required but is either not installed or has been " +"disabled in php.ini" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:528 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:532 +msgid "" +"Error: GD PHP module with JPEG support or ImageMagick graphics library " +"required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:536 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:542 +msgid "" +"Error: PDO database PHP module missing a driver for either mysql or pgsql." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:547 +msgid "Error: PDO database PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:551 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:555 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:559 +msgid "Error: zip PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:578 ../../Zotlabs/Module/Setup.php:587 +msgid ".htconfig.php is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:583 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:584 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:585 +msgid "Please see install/INSTALL.txt for additional information." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:601 +msgid "" +"This software uses the Smarty3 template engine to render its web views. " +"Smarty3 compiles templates to PHP to speed up rendering." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:602 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:603 ../../Zotlabs/Module/Setup.php:624 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:604 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:607 +#, php-format +msgid "%s is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:623 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the top level " +"web folder" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:627 +msgid "store is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:659 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:660 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:661 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:662 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:663 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:664 +msgid "" +"Providers are available that issue free certificates which are browser-valid." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:665 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:667 +msgid "SSL certificate validation" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:673 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:676 +msgid "Url rewrite is working" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:689 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:718 +msgid "Errors encountered creating database tables." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:764 +msgid "

What next?

" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:765 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgstr "" + +#: ../../Zotlabs/Module/Share.php:119 +msgid "Post repeated" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Files: shared with me" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:105 +msgid "NEW" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:107 +#: ../../Zotlabs/Storage/Browser.php:294 +msgid "Last Modified" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:108 +msgid "Remove all files" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:109 +msgid "Remove this file" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:21 +msgid "About this site" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:22 +msgid "Site Name" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:26 +msgid "Administrator" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:29 +msgid "Software and Project information" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:30 +msgid "This site is powered by $Projectname" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:31 +msgid "" +"Federated and decentralised networking and identity services provided by Zot" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Additional federated transport protocols:" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:36 +#, php-format +msgid "Version %s" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:37 +msgid "Project homepage" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:38 +msgid "Developer homepage" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:41 +msgid "Failed to create source. No channel selected." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:57 +msgid "Source created." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:70 +msgid "Source updated." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:88 +msgid "Sources App" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:89 +msgid "Automatically import channel content from other channels or feeds" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:101 +msgid "*" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:108 +msgid "Manage remote sources of content for your channel." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:119 +msgid "New Source" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:120 ../../Zotlabs/Module/Sources.php:154 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 +msgid "Only import content with these words (one per line)" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 +msgid "Leave blank to import all public content" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:161 +msgid "Channel Name" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +msgid "Resend posts with this channel as author" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +msgid "Copyrights may apply" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:144 ../../Zotlabs/Module/Sources.php:174 +msgid "Source not found." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:151 +msgid "Edit Source" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:152 +msgid "Delete Source" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:182 +msgid "Source removed" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:184 +msgid "Unable to remove source." +msgstr "" + +#: ../../Zotlabs/Module/Subthread.php:143 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Subthread.php:145 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Suggest.php:40 +msgid "Suggest Channels App" +msgstr "" + +#: ../../Zotlabs/Module/Suggest.php:41 +msgid "" +"Suggestions for channels in the $Projectname network you might be interested " +"in" +msgstr "" + +#: ../../Zotlabs/Module/Suggest.php:54 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: ../../Zotlabs/Module/Suggest.php:73 ../../Zotlabs/Widget/Suggestions.php:48 +msgid "Ignore/Hide" +msgstr "" + +#: ../../Zotlabs/Module/Tagger.php:48 +msgid "Post not found." +msgstr "" + +#: ../../Zotlabs/Module/Tagger.php:119 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" #: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 @@ -7756,103 +11067,178 @@ msgstr "" msgid "Select a tag to remove: " msgstr "" -#: ../../Zotlabs/Module/Network.php:109 -msgid "No such group" +#: ../../Zotlabs/Module/Thing.php:120 +msgid "Thing updated" msgstr "" -#: ../../Zotlabs/Module/Network.php:158 -msgid "No such channel" +#: ../../Zotlabs/Module/Thing.php:172 +msgid "Object store: failed" msgstr "" -#: ../../Zotlabs/Module/Network.php:242 -msgid "Privacy group is empty" +#: ../../Zotlabs/Module/Thing.php:176 +msgid "Thing added" msgstr "" -#: ../../Zotlabs/Module/Network.php:252 -msgid "Privacy group: " -msgstr "" - -#: ../../Zotlabs/Module/Network.php:325 ../../addon/redred/Mod_Redred.php:29 -msgid "Invalid channel." -msgstr "" - -#: ../../Zotlabs/Module/Acl.php:360 -msgid "network" -msgstr "" - -#: ../../Zotlabs/Module/Home.php:72 ../../Zotlabs/Module/Home.php:80 -#: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 -msgid "$Projectname" -msgstr "" - -#: ../../Zotlabs/Module/Home.php:90 +#: ../../Zotlabs/Module/Thing.php:202 #, php-format -msgid "Welcome to %s" +msgid "OBJ: %1$s %2$s %3$s" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:79 -msgid "Permission Denied." +#: ../../Zotlabs/Module/Thing.php:265 +msgid "Show Thing" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:112 -msgid "File not found." +#: ../../Zotlabs/Module/Thing.php:272 +msgid "item not found." msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:165 -msgid "Edit file permissions" +#: ../../Zotlabs/Module/Thing.php:305 +msgid "Edit Thing" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:177 -msgid "Set/edit permissions" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:364 +msgid "Select a profile" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:178 -msgid "Include all files and sub folders" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 +msgid "Post an activity" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:179 -msgid "Return to file list" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 +msgid "Only sends to viewers of the applicable profile" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:181 -msgid "Copy/paste this code to attach file to a post" +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 +msgid "Name of thing e.g. something" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:182 -msgid "Copy/paste this URL to link file from a web page" +#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:370 +msgid "URL of thing (optional)" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:184 -msgid "Share this file" +#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:371 +msgid "URL for photo of thing (optional)" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:185 -msgid "Show URL to this file" +#: ../../Zotlabs/Module/Thing.php:362 +msgid "Add Thing to your Profile" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:186 -#: ../../Zotlabs/Storage/Browser.php:405 -msgid "Show in your contacts shared folder" +#: ../../Zotlabs/Module/Tokens.php:39 +#, php-format +msgid "This channel is limited to %d tokens" msgstr "" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." +#: ../../Zotlabs/Module/Tokens.php:45 +msgid "Name and Password are required." msgstr "" -#: ../../Zotlabs/Module/Common.php:45 -msgid "No connections in common." +#: ../../Zotlabs/Module/Tokens.php:85 +msgid "Token saved." msgstr "" -#: ../../Zotlabs/Module/Common.php:65 -msgid "View Common Connections" +#: ../../Zotlabs/Module/Tokens.php:99 +msgid "Guest Access App" msgstr "" -#: ../../Zotlabs/Module/Email_resend.php:30 -msgid "Email verification resent" +#: ../../Zotlabs/Module/Tokens.php:100 +msgid "Create access tokens so that non-members can access private content" msgstr "" -#: ../../Zotlabs/Module/Email_resend.php:33 -msgid "Unable to resend email verification message." +#: ../../Zotlabs/Module/Tokens.php:133 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:135 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:170 +msgid "Guest Access Tokens" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:177 +msgid "Login Name" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:178 +msgid "Login Password" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:179 +msgid "Expires (yyyy-mm-dd)" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:61 +msgid "Channel Export App" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "Export your channel" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:72 ../../Zotlabs/Module/Uexport.php:73 +msgid "Export Channel" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:74 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:75 +msgid "Export Content" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:76 +msgid "" +"Export your channel information and recent content to a JSON backup that can " +"be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for " +"this download to begin." +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:78 +msgid "Export your posts from a given year." +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:80 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:81 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:82 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:83 +#, php-format +msgid "" +"These content files may be imported or restored by visiting " +"%2$s on any site containing your channel. For best results please import " +"or restore these in date order (oldest first)." msgstr "" #: ../../Zotlabs/Module/Viewconnections.php:65 @@ -7868,1176 +11254,230 @@ msgstr "" msgid "View Connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:97 -msgid "Blocked accounts" +#: ../../Zotlabs/Module/Viewsrc.php:43 +msgid "item" msgstr "" -#: ../../Zotlabs/Module/Admin.php:98 -msgid "Expired accounts" +#: ../../Zotlabs/Module/Webpages.php:48 +msgid "Webpages App" msgstr "" -#: ../../Zotlabs/Module/Admin.php:99 -msgid "Expiring accounts" +#: ../../Zotlabs/Module/Webpages.php:49 +msgid "Provide managed web pages on your channel" msgstr "" -#: ../../Zotlabs/Module/Admin.php:120 -msgid "Message queues" +#: ../../Zotlabs/Module/Webpages.php:69 +msgid "Import Webpage Elements" msgstr "" -#: ../../Zotlabs/Module/Admin.php:134 -msgid "Your software should be updated" +#: ../../Zotlabs/Module/Webpages.php:70 +msgid "Import selected" msgstr "" -#: ../../Zotlabs/Module/Admin.php:139 -msgid "Summary" +#: ../../Zotlabs/Module/Webpages.php:93 +msgid "Export Webpage Elements" msgstr "" -#: ../../Zotlabs/Module/Admin.php:142 -msgid "Registered accounts" +#: ../../Zotlabs/Module/Webpages.php:94 +msgid "Export selected" msgstr "" -#: ../../Zotlabs/Module/Admin.php:143 -msgid "Pending registrations" +#: ../../Zotlabs/Module/Webpages.php:263 +msgid "Actions" msgstr "" -#: ../../Zotlabs/Module/Admin.php:144 -msgid "Registered channels" +#: ../../Zotlabs/Module/Webpages.php:264 +msgid "Page Link" msgstr "" -#: ../../Zotlabs/Module/Admin.php:145 -msgid "Active addons" +#: ../../Zotlabs/Module/Webpages.php:265 +msgid "Page Title" msgstr "" -#: ../../Zotlabs/Module/Admin.php:146 -msgid "Version" +#: ../../Zotlabs/Module/Webpages.php:295 +msgid "Invalid file type." msgstr "" -#: ../../Zotlabs/Module/Admin.php:147 -msgid "Repository version (master)" +#: ../../Zotlabs/Module/Webpages.php:307 +msgid "Error opening zip file" msgstr "" -#: ../../Zotlabs/Module/Admin.php:148 -msgid "Repository version (dev)" +#: ../../Zotlabs/Module/Webpages.php:318 +msgid "Invalid folder path." msgstr "" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." +#: ../../Zotlabs/Module/Webpages.php:345 +msgid "No webpage elements detected." msgstr "" -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" +#: ../../Zotlabs/Module/Webpages.php:420 +msgid "Import complete." msgstr "" -#: ../../Zotlabs/Module/Rate.php:159 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" +#: ../../Zotlabs/Module/Wiki.php:35 +msgid "Profile Unavailable." msgstr "" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Rating (this information is public)" +#: ../../Zotlabs/Module/Wiki.php:52 +msgid "Wiki App" msgstr "" -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" +#: ../../Zotlabs/Module/Wiki.php:53 +msgid "Provide a wiki for your channel" msgstr "" -#: ../../Zotlabs/Module/Card_edit.php:128 -msgid "Edit Card" +#: ../../Zotlabs/Module/Wiki.php:77 +msgid "Invalid channel" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." +#: ../../Zotlabs/Module/Wiki.php:133 +msgid "Error retrieving wiki" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." +#: ../../Zotlabs/Module/Wiki.php:140 +msgid "Error creating zip file export folder" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 -#, php-format -msgid "Site Member (%s)" +#: ../../Zotlabs/Module/Wiki.php:191 +msgid "Error downloading wiki: " msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 -#, php-format -msgid "Password reset requested at %s" +#: ../../Zotlabs/Module/Wiki.php:212 +msgid "Download" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:68 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +#: ../../Zotlabs/Module/Wiki.php:216 +msgid "Wiki name" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1638 -msgid "Password Reset" +#: ../../Zotlabs/Module/Wiki.php:217 +msgid "Content type" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your password has been reset as requested." +#: ../../Zotlabs/Module/Wiki.php:219 ../../Zotlabs/Storage/Browser.php:292 +msgid "Type" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Your new password is" +#: ../../Zotlabs/Module/Wiki.php:220 +msgid "Any type" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "Save or copy your new password - and then" +#: ../../Zotlabs/Module/Wiki.php:227 +msgid "Lock content type" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "click here to login" +#: ../../Zotlabs/Module/Wiki.php:228 +msgid "Create a status post for this wiki" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:96 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." +#: ../../Zotlabs/Module/Wiki.php:229 +msgid "Edit Wiki Name" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:117 -#, php-format -msgid "Your password has changed at %s" +#: ../../Zotlabs/Module/Wiki.php:274 +msgid "Wiki not found" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Forgot your Password?" +#: ../../Zotlabs/Module/Wiki.php:300 +msgid "Rename page" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:131 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +#: ../../Zotlabs/Module/Wiki.php:321 +msgid "Error retrieving page content" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:132 -msgid "Email Address" +#: ../../Zotlabs/Module/Wiki.php:329 ../../Zotlabs/Module/Wiki.php:331 +msgid "New page" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:45 -msgid "Name is required" +#: ../../Zotlabs/Module/Wiki.php:366 +msgid "Revision Comparison" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:49 -msgid "Key and Secret are required" +#: ../../Zotlabs/Module/Wiki.php:374 +msgid "Short description of your changes (optional)" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:100 -msgid "OAuth Apps Manager App" +#: ../../Zotlabs/Module/Wiki.php:384 +msgid "Source" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:101 -msgid "OAuth authentication tokens for mobile and remote apps" +#: ../../Zotlabs/Module/Wiki.php:394 +msgid "New page name" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:140 -#: ../../addon/statusnet/statusnet.php:596 ../../addon/twitter/twitter.php:614 -msgid "Consumer Key" +#: ../../Zotlabs/Module/Wiki.php:399 +msgid "Embed image from photo albums" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Oauth.php:143 -msgid "Icon url" +#: ../../Zotlabs/Module/Wiki.php:410 +msgid "History" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:128 -msgid "Application not found." +#: ../../Zotlabs/Module/Wiki.php:488 +msgid "Error creating wiki. Invalid name." msgstr "" -#: ../../Zotlabs/Module/Oauth.php:171 -msgid "Connected OAuth Apps" +#: ../../Zotlabs/Module/Wiki.php:495 +msgid "A wiki with this name already exists." msgstr "" -#: ../../Zotlabs/Module/Notifications.php:60 -#: ../../Zotlabs/Lib/ThreadItem.php:450 -msgid "Mark all seen" +#: ../../Zotlabs/Module/Wiki.php:508 +msgid "Wiki created, but error creating Home page." msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1458 -#, php-format -msgid "Likes %1$s's %2$s" +#: ../../Zotlabs/Module/Wiki.php:515 +msgid "Error creating wiki" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1461 -#, php-format -msgid "Doesn't like %1$s's %2$s" +#: ../../Zotlabs/Module/Wiki.php:539 +msgid "Error updating wiki. Invalid name." msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1464 -#, php-format -msgid "Will attend %1$s's %2$s" +#: ../../Zotlabs/Module/Wiki.php:559 +msgid "Error updating wiki" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1467 -#, php-format -msgid "Will not attend %1$s's %2$s" +#: ../../Zotlabs/Module/Wiki.php:574 +msgid "Wiki delete permission denied." msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1470 -#, php-format -msgid "May attend %1$s's %2$s" +#: ../../Zotlabs/Module/Wiki.php:584 +msgid "Error deleting wiki" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1806 ../../Zotlabs/Lib/Activity.php:2003 -#: ../../widget/Netselect/Netselect.php:42 ../../addon/pubcrawl/as.php:1214 -#: ../../addon/pubcrawl/as.php:1369 ../../addon/pubcrawl/as.php:1549 -#: ../../include/network.php:1720 -msgid "ActivityPub" +#: ../../Zotlabs/Module/Wiki.php:617 +msgid "New page created" msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:10 -msgid "0. Beginner/Basic" +#: ../../Zotlabs/Module/Wiki.php:739 +msgid "Cannot delete Home" msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:11 -msgid "1. Novice - not skilled but willing to learn" +#: ../../Zotlabs/Module/Wiki.php:803 +msgid "Current Revision" msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:12 -msgid "2. Intermediate - somewhat comfortable" +#: ../../Zotlabs/Module/Wiki.php:803 +msgid "Selected Revision" msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:13 -msgid "3. Advanced - very comfortable" +#: ../../Zotlabs/Module/Wiki.php:853 +msgid "You must be authenticated." msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:14 -msgid "4. Expert - I can write computer code" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:15 -msgid "5. Wizard - I probably know more than you do" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " msgstr "" -#: ../../Zotlabs/Lib/Libzot.php:652 ../../include/zot.php:802 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:322 -msgid "Apps" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:323 -msgid "Affinity Tool" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:326 -msgid "Site Admin" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:327 ../../addon/buglink/buglink.php:16 -msgid "Report Bug" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:328 ../../include/nav.php:490 -msgid "Bookmarks" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:329 ../../Zotlabs/Widget/Chatroom_list.php:16 -#: ../../include/nav.php:477 ../../include/nav.php:480 -msgid "Chatrooms" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:331 -msgid "Remote Diagnostics" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:332 ../../include/features.php:365 -msgid "Suggest Channels" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:333 ../../boot.php:1629 ../../include/nav.php:118 -#: ../../include/nav.php:122 -msgid "Login" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Stream" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:339 ../../include/nav.php:539 -msgid "Wiki" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:340 ../../include/features.php:96 -msgid "Channel Home" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:343 ../../include/features.php:269 -msgid "Events" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:344 ../../include/features.php:176 -msgid "Directory" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:346 -msgid "Mail" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:349 -msgid "Chat" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:351 -msgid "Probe" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:352 -msgid "Suggest" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:353 -msgid "Random Channel" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:354 -msgid "Invite" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:355 ../../Zotlabs/Widget/Admin.php:26 -msgid "Features" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:356 ../../addon/openid/MysqlProvider.php:69 -msgid "Language" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:357 -msgid "Post" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:358 ../../addon/openid/MysqlProvider.php:58 -#: ../../addon/openid/MysqlProvider.php:59 -#: ../../addon/openid/MysqlProvider.php:60 -msgid "Profile Photo" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:360 ../../include/features.php:397 -msgid "Profiles" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:362 -msgid "Notifications" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:363 -msgid "Order Apps" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:364 ../../include/features.php:82 -msgid "CalDAV" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:365 -msgid "CardDAV" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:367 -msgid "Guest Access" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:368 ../../Zotlabs/Widget/Notes.php:21 -msgid "Notes" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:369 -msgid "OAuth Apps Manager" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:370 -msgid "OAuth2 Apps Manager" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:371 -msgid "PDL Editor" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:373 -msgid "Premium Channel" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:375 -msgid "My Chatrooms" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:376 -msgid "Channel Export" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:553 -msgid "Purchase" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:558 -msgid "Undelete" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:567 -msgid "Add to app-tray" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:568 -msgid "Remove from app-tray" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:569 -msgid "Pin to navbar" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:570 -msgid "Unpin from navbar" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:82 -msgctxt "permcat" -msgid "default" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:133 -msgctxt "permcat" -msgid "follower" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:137 -msgctxt "permcat" -msgid "contributor" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:141 -msgctxt "permcat" -msgid "publisher" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:42 -#: ../../Zotlabs/Lib/NativeWikiPage.php:94 -msgid "(No Title)" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:109 -msgid "Wiki page create failed." -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:122 -msgid "Wiki not found." -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:133 -msgid "Destination name already exists" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:166 -#: ../../Zotlabs/Lib/NativeWikiPage.php:362 -msgid "Page not found" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:197 -msgid "Error reading page content" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:353 -#: ../../Zotlabs/Lib/NativeWikiPage.php:402 -#: ../../Zotlabs/Lib/NativeWikiPage.php:469 -#: ../../Zotlabs/Lib/NativeWikiPage.php:510 -msgid "Error reading wiki" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:390 -msgid "Page update failed." -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:424 -msgid "Nothing deleted" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:490 -msgid "Compare: object not found." -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:496 -msgid "Page updated" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:499 -msgid "Untitled" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:505 -msgid "Wiki resource_id required for git commit" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:562 -#: ../../Zotlabs/Widget/Wiki_page_history.php:23 -msgctxt "wiki_history" -msgid "Message" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:563 -#: ../../Zotlabs/Widget/Wiki_page_history.php:24 -msgid "Date" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:565 -#: ../../Zotlabs/Widget/Wiki_page_history.php:26 -msgid "Compare" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:603 ../../include/bbcode.php:735 -#: ../../include/bbcode.php:905 -msgid "Different viewers will see this text differently" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:34 -#: ../../include/acl_selectors.php:33 -msgid "Visible to your default audience" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -#: ../../include/acl_selectors.php:106 -msgid "Only me" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Public" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -msgid "Anybody in the $Projectname network" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -#, php-format -msgid "Any account on %s" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Any of my connections" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Only connections I specifically allow" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:114 -msgid "Any connections including those who haven't yet been approved" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:150 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:151 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "This is your default setting for who can view your connections" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for the audience of your webpages" -msgstr "" - -#: ../../Zotlabs/Lib/Libzotdir.php:160 ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "" - -#: ../../Zotlabs/Lib/Libzotdir.php:162 ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "" - -#: ../../Zotlabs/Lib/Libzotdir.php:163 ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "" - -#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "" - -#: ../../Zotlabs/Lib/Group.php:28 ../../include/group.php:22 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "" - -#: ../../Zotlabs/Lib/Group.php:270 ../../include/group.php:264 -msgid "Add new connections to this privacy group" -msgstr "" - -#: ../../Zotlabs/Lib/Group.php:302 ../../include/group.php:298 -msgid "edit" -msgstr "" - -#: ../../Zotlabs/Lib/Group.php:325 ../../include/group.php:321 -msgid "Edit group" -msgstr "" - -#: ../../Zotlabs/Lib/Group.php:326 ../../include/group.php:322 -msgid "Add privacy group" -msgstr "" - -#: ../../Zotlabs/Lib/Group.php:327 ../../include/group.php:323 -msgid "Channels not in any privacy group" -msgstr "" - -#: ../../Zotlabs/Lib/Group.php:329 ../../Zotlabs/Widget/Savedsearch.php:84 -#: ../../include/group.php:325 -msgid "add" -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:23 -msgid "Missing room name" -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:32 -msgid "Duplicate room name" -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:82 ../../Zotlabs/Lib/Chatroom.php:90 -msgid "Invalid room specifier." -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:122 -msgid "Room not found." -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:143 -msgid "Room is full" -msgstr "" - -#: ../../Zotlabs/Lib/Libsync.php:733 ../../include/zot.php:2591 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:60 -msgid "$Projectname Notification" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:313 -#: ../../addon/diaspora/util.php:326 ../../addon/diaspora/p.php:48 -msgid "$projectname" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:63 -msgid "Thank You," -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:65 ../../addon/hubwall/hubwall.php:33 -#, php-format -msgid "%s Administrator" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:66 -#, php-format -msgid "This email was sent by %1$s at %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:67 -#, php-format -msgid "" -"To stop receiving these messages, please adjust your Notification Settings " -"at %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:68 -#, php-format -msgid "To stop receiving these messages, please adjust your %s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:123 -#, php-format -msgid "%s " -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:127 -#, php-format -msgid "[$Projectname:Notify] New mail received at %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:129 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:130 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:130 -msgid "a private message" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:131 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:144 -msgid "commented on" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:155 -msgid "liked" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:158 -msgid "disliked" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:201 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:209 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:218 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:233 -#, php-format -msgid "%1$s commented on an item/conversation you have been following." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:317 -#: ../../Zotlabs/Lib/Enotify.php:333 ../../Zotlabs/Lib/Enotify.php:358 -#: ../../Zotlabs/Lib/Enotify.php:375 ../../Zotlabs/Lib/Enotify.php:388 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 -#, php-format -msgid "Please visit %s to approve or reject this comment." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:299 -#, php-format -msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:313 -#, php-format -msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:314 -#, php-format -msgid "%1$s liked an item/conversation you created." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:325 -#, php-format -msgid "[$Projectname:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:327 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:329 -#, php-format -msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:352 -#, php-format -msgid "[$Projectname:Notify] %s tagged you" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:353 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:354 -#, php-format -msgid "%1$s [zrl=%2$s]tagged you[/zrl]." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:365 -#, php-format -msgid "[$Projectname:Notify] %1$s poked you" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:366 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:367 -#, php-format -msgid "%1$s [zrl=%2$s]poked you[/zrl]." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:382 -#, php-format -msgid "[$Projectname:Notify] %s tagged your post" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:383 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:384 -#, php-format -msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:395 -msgid "[$Projectname:Notify] Introduction received" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:396 -#, php-format -msgid "You've received an new connection request from '%1$s' at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:397 -#, php-format -msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:400 ../../Zotlabs/Lib/Enotify.php:418 -#, php-format -msgid "You may visit their profile at %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:402 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:409 -msgid "[$Projectname:Notify] Friend suggestion received" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:410 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:411 -#, php-format -msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:416 -msgid "Name:" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:417 -msgid "Photo:" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:420 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:640 -msgid "[$Projectname:Notify]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:808 -msgid "created a new post" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:809 -#, php-format -msgid "commented on %s's post" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:816 -#, php-format -msgid "edited a post dated %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:820 -#, php-format -msgid "edited a comment dated %s" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWiki.php:143 -msgid "Wiki updated successfully" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWiki.php:197 -msgid "Wiki files deleted successfully" -msgstr "" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:83 -#, php-format -msgid "Update Error at %s" -msgstr "" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:89 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:102 ../../include/conversation.php:700 -msgid "Private Message" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:129 -msgid "Privacy conflict. Discretion advised." -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:171 ../../Zotlabs/Storage/Browser.php:280 -msgid "Admin Delete" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:177 ../../include/conversation.php:690 -msgid "Select" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:202 -msgid "I will attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:202 -msgid "I will not attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:202 -msgid "I might attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:212 -msgid "I agree" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:212 -msgid "I disagree" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:212 -msgid "I abstain" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:266 ../../include/conversation.php:695 -msgid "Toggle Star Status" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:277 ../../include/conversation.php:707 -msgid "Message signature validated" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:278 ../../include/conversation.php:708 -msgid "Message signature incorrect" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:286 -msgid "Add Tag" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:290 ../../include/conversation.php:891 -msgid "Conversation Tools" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:306 ../../include/taxonomy.php:575 -msgid "like" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:307 ../../include/taxonomy.php:576 -msgid "dislike" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:317 -msgid "Share This" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:317 -msgid "share" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "Delivery Report" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:347 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Lib/ThreadItem.php:381 ../../Zotlabs/Lib/ThreadItem.php:382 -#, php-format -msgid "View %s's profile - %s" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:385 -msgid "to" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:386 -msgid "via" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:387 -msgid "Wall-to-Wall" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:388 -msgid "via Wall-To-Wall:" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:402 ../../include/conversation.php:766 -#, php-format -msgid "from %s" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:405 ../../include/conversation.php:769 -#, php-format -msgid "last edited: %s" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:406 ../../include/conversation.php:770 -#, php-format -msgid "Expires: %s" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:414 -msgid "Attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:415 -msgid "Attendance Options" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:416 -msgid "Vote" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:417 -msgid "Voting Options" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:439 -#: ../../addon/bookmarker/bookmarker.php:38 -msgid "Save Bookmarks" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:440 -msgid "Add to Calendar" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:468 ../../include/conversation.php:483 -msgid "This is an unsaved preview" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:501 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:796 ../../addon/hsse/hsse.php:200 -#: ../../include/conversation.php:1406 -msgid "Bold" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:797 ../../addon/hsse/hsse.php:201 -#: ../../include/conversation.php:1407 -msgid "Italic" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:798 ../../addon/hsse/hsse.php:202 -#: ../../include/conversation.php:1408 -msgid "Underline" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:799 ../../addon/hsse/hsse.php:203 -#: ../../include/conversation.php:1409 -msgid "Quote" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:800 ../../addon/hsse/hsse.php:204 -#: ../../include/conversation.php:1410 -msgid "Code" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:801 -msgid "Image" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:802 ../../addon/hsse/hsse.php:205 -#: ../../include/conversation.php:1411 -msgid "Attach/Upload file" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:803 -msgid "Insert Link" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:804 -msgid "Video" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:814 -msgid "Your full name (required)" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:815 -msgid "Your email address (required)" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:816 -msgid "Your website URL (optional)" -msgstr "" - -#: ../../Zotlabs/Zot/Auth.php:152 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." -msgstr "" - -#: ../../Zotlabs/Zot/Auth.php:264 ../../addon/openid/Mod_Openid.php:76 -#: ../../addon/openid/Mod_Openid.php:178 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:289 +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:295 msgid "parent" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2941 -msgid "Collection" -msgstr "" - #: ../../Zotlabs/Storage/Browser.php:134 msgid "Principal" msgstr "" @@ -9046,11 +11486,6 @@ msgstr "" msgid "Addressbook" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:463 -#: ../../include/nav.php:466 -msgid "Calendar" -msgstr "" - #: ../../Zotlabs/Storage/Browser.php:143 msgid "Schedule Inbox" msgstr "" @@ -9059,51 +11494,178 @@ msgstr "" msgid "Schedule Outbox" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:273 +#: ../../Zotlabs/Storage/Browser.php:279 msgid "Total" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:275 +#: ../../Zotlabs/Storage/Browser.php:281 msgid "Shared" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:277 +#: ../../Zotlabs/Storage/Browser.php:283 msgid "Add Files" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:361 +#: ../../Zotlabs/Storage/Browser.php:367 #, php-format msgid "You are using %1$s of your available file storage." msgstr "" -#: ../../Zotlabs/Storage/Browser.php:366 +#: ../../Zotlabs/Storage/Browser.php:372 #, php-format msgid "You are using %1$s of %2$s available file storage. (%3$s%)" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:377 +#: ../../Zotlabs/Storage/Browser.php:383 msgid "WARNING:" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:389 +#: ../../Zotlabs/Storage/Browser.php:395 msgid "Create new folder" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:391 +#: ../../Zotlabs/Storage/Browser.php:397 msgid "Upload file" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:404 +#: ../../Zotlabs/Storage/Browser.php:410 msgid "Drop files here to immediately upload" msgstr "" -#: ../../Zotlabs/Widget/Forums.php:100 +#: ../../Zotlabs/Widget/Activity.php:50 +msgctxt "widget" +msgid "Activity" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:36 +#, php-format +msgid "Show posts related to the %s privacy group" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:45 +msgid "Show my privacy groups" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:66 +msgid "Show posts to this forum" +msgstr "" + #: ../../Zotlabs/Widget/Activity_filter.php:73 +#: ../../Zotlabs/Widget/Forums.php:100 #: ../../Zotlabs/Widget/Notifications.php:119 #: ../../Zotlabs/Widget/Notifications.php:120 msgid "Forums" msgstr "" +#: ../../Zotlabs/Widget/Activity_filter.php:77 +msgid "Show forums" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:91 +msgid "Starred Posts" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:95 +msgid "Show posts that I have starred" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:106 +msgid "Personal Posts" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:110 +msgid "Show posts that mention or involve me" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:131 +#, php-format +msgid "Show posts that I have filed to %s" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:141 +msgid "Show filed post categories" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:155 +msgid "Panel search" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:165 +msgid "Filter by name" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:180 +msgid "Remove active filter" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:196 +msgid "Stream Filters" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:90 +msgid "Commented Date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:94 +msgid "Order by last commented date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:97 +msgid "Posted Date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:101 +msgid "Order by last posted date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:104 +msgid "Date Unthreaded" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:108 +msgid "Order unthreaded by date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:123 +msgid "Stream Order" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 +msgid "Member registrations waiting for confirmation" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:29 +msgid "Inspect queue" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:31 +msgid "DB updates" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:56 +msgid "Addon Features" +msgstr "" + +#: ../../Zotlabs/Widget/Affinity.php:54 +msgid "Refresh" +msgstr "" + +#: ../../Zotlabs/Widget/Appstore.php:11 +msgid "App Collections" +msgstr "" + +#: ../../Zotlabs/Widget/Appstore.php:13 +msgid "Installed apps" +msgstr "" + +#: ../../Zotlabs/Widget/Archive.php:43 +msgid "Archives" +msgstr "" + +#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 +msgid "Bookmarked Chatrooms" +msgstr "" + #: ../../Zotlabs/Widget/Cdav.php:37 msgid "Select Channel" msgstr "" @@ -9180,19 +11742,36 @@ msgstr "" msgid "Select an addressbook to import to" msgstr "" -#: ../../Zotlabs/Widget/Appcategories.php:43 -#: ../../include/contact_widgets.php:96 ../../include/contact_widgets.php:139 -#: ../../include/contact_widgets.php:184 ../../include/taxonomy.php:409 -#: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511 -#: ../../include/taxonomy.php:532 -msgid "Categories" +#: ../../Zotlabs/Widget/Chatroom_list.php:20 +msgid "Overview" msgstr "" -#: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 -#: ../../widget/Netselect/Netselect.php:26 ../../include/contact_widgets.php:56 -#: ../../include/contact_widgets.php:99 ../../include/contact_widgets.php:142 -#: ../../include/contact_widgets.php:187 -msgid "Everything" +#: ../../Zotlabs/Widget/Chatroom_members.php:11 +msgid "Chat Members" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:17 +msgid "Received Messages" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:21 +msgid "Sent Messages" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:25 +msgid "Conversations" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:37 +msgid "No messages." +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:57 +msgid "Delete conversation" +msgstr "" + +#: ../../Zotlabs/Widget/Cover_photo.php:65 +msgid "Click to show more" msgstr "" #: ../../Zotlabs/Widget/Eventstools.php:13 @@ -9207,8 +11786,21 @@ msgstr "" msgid "Import Calendar" msgstr "" -#: ../../Zotlabs/Widget/Suggestedchats.php:32 -msgid "Suggested Chatrooms" +#: ../../Zotlabs/Widget/Follow.php:22 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:29 +msgid "Add New Connection" +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:30 +msgid "Enter channel address" +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:31 +msgid "Examples: bob@example.com, https://example.com/barbara" msgstr "" #: ../../Zotlabs/Widget/Hq_controls.php:14 @@ -9239,222 +11831,6 @@ msgstr "" msgid "New Message" msgstr "" -#: ../../Zotlabs/Widget/Chatroom_list.php:20 -msgid "Overview" -msgstr "" - -#: ../../Zotlabs/Widget/Rating.php:51 -msgid "Rating Tools" -msgstr "" - -#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 -msgid "Rate Me" -msgstr "" - -#: ../../Zotlabs/Widget/Rating.php:60 -msgid "View Ratings" -msgstr "" - -#: ../../Zotlabs/Widget/Activity.php:50 -msgctxt "widget" -msgid "Activity" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:36 -#, php-format -msgid "Show posts related to the %s privacy group" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:45 -msgid "Show my privacy groups" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:66 -msgid "Show posts to this forum" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:77 -msgid "Show forums" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:91 -msgid "Starred Posts" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:95 -msgid "Show posts that I have starred" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:106 -msgid "Personal Posts" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:110 -msgid "Show posts that mention or involve me" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:131 -#, php-format -msgid "Show posts that I have filed to %s" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:137 -#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 -#: ../../include/features.php:325 -msgid "Saved Folders" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:141 -msgid "Show filed post categories" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:155 -msgid "Panel search" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:165 -msgid "Filter by name" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:180 -msgid "Remove active filter" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:196 -msgid "Stream Filters" -msgstr "" - -#: ../../Zotlabs/Widget/Follow.php:22 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "" - -#: ../../Zotlabs/Widget/Follow.php:29 -msgid "Add New Connection" -msgstr "" - -#: ../../Zotlabs/Widget/Follow.php:30 -msgid "Enter channel address" -msgstr "" - -#: ../../Zotlabs/Widget/Follow.php:31 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "" - -#: ../../Zotlabs/Widget/Archive.php:43 -msgid "Archives" -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:17 -msgid "Received Messages" -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:21 -msgid "Sent Messages" -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:25 -msgid "Conversations" -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:37 -msgid "No messages." -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:57 -msgid "Delete conversation" -msgstr "" - -#: ../../Zotlabs/Widget/Chatroom_members.php:11 -msgid "Chat Members" -msgstr "" - -#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 -msgid "photo/image" -msgstr "" - -#: ../../Zotlabs/Widget/Savedsearch.php:75 -msgid "Remove term" -msgstr "" - -#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:317 -msgid "Saved Searches" -msgstr "" - -#: ../../Zotlabs/Widget/Wiki_pages.php:34 -#: ../../Zotlabs/Widget/Wiki_pages.php:91 -msgid "Add new page" -msgstr "" - -#: ../../Zotlabs/Widget/Wiki_pages.php:85 -msgid "Wiki Pages" -msgstr "" - -#: ../../Zotlabs/Widget/Wiki_pages.php:96 -msgid "Page name" -msgstr "" - -#: ../../Zotlabs/Widget/Affinity.php:54 -msgid "Refresh" -msgstr "" - -#: ../../Zotlabs/Widget/Tasklist.php:23 -msgid "Tasks" -msgstr "" - -#: ../../Zotlabs/Widget/Suggestions.php:51 -msgid "Suggestions" -msgstr "" - -#: ../../Zotlabs/Widget/Suggestions.php:52 -msgid "See more..." -msgstr "" - -#: ../../Zotlabs/Widget/Activity_order.php:90 -msgid "Commented Date" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_order.php:94 -msgid "Order by last commented date" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_order.php:97 -msgid "Posted Date" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_order.php:101 -msgid "Order by last posted date" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_order.php:104 -msgid "Date Unthreaded" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_order.php:108 -msgid "Order unthreaded by date" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_order.php:123 -msgid "Stream Order" -msgstr "" - -#: ../../Zotlabs/Widget/Cover_photo.php:65 -msgid "Click to show more" -msgstr "" - -#: ../../Zotlabs/Widget/Tagcloud.php:22 ../../include/taxonomy.php:320 -#: ../../include/taxonomy.php:449 ../../include/taxonomy.php:470 -msgid "Tags" -msgstr "" - -#: ../../Zotlabs/Widget/Appstore.php:11 -msgid "App Collections" -msgstr "" - -#: ../../Zotlabs/Widget/Appstore.php:13 -msgid "Installed apps" -msgstr "" - #: ../../Zotlabs/Widget/Newmember.php:31 msgid "Profile Creation" msgstr "" @@ -9467,10 +11843,6 @@ msgstr "" msgid "Upload cover photo" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:35 ../../include/nav.php:111 -msgid "Edit your profile" -msgstr "" - #: ../../Zotlabs/Widget/Newmember.php:38 msgid "Find and Connect with others" msgstr "" @@ -9515,46 +11887,6 @@ msgstr "" msgid "View public stream" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 -msgid "Member registrations waiting for confirmation" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:29 -msgid "Inspect queue" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:31 -msgid "DB updates" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:189 -msgid "Admin" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:56 -msgid "Addon Features" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:32 -msgid "Account settings" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:38 -msgid "Channel settings" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:46 -msgid "Display settings" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:53 -msgid "Manage locations" -msgstr "" - -#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 -msgid "Bookmarked Chatrooms" -msgstr "" - #: ../../Zotlabs/Widget/Notifications.php:16 msgid "New Network Activity" msgstr "" @@ -9682,5601 +12014,78 @@ msgstr "" msgid "Sorry, you have got no notifications at the moment" msgstr "" -#: ../../util/nconfig.php:34 -msgid "Source channel not found." +#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 +msgid "photo/image" msgstr "" -#: ../../widget/Netselect/Netselect.php:24 -msgid "Network/Protocol" +#: ../../Zotlabs/Widget/Rating.php:51 +msgid "Rating Tools" msgstr "" -#: ../../widget/Netselect/Netselect.php:28 ../../include/network.php:1724 -msgid "Zot" +#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 +msgid "Rate Me" msgstr "" -#: ../../widget/Netselect/Netselect.php:31 ../../include/network.php:1722 -msgid "Diaspora" +#: ../../Zotlabs/Widget/Rating.php:60 +msgid "View Ratings" msgstr "" -#: ../../widget/Netselect/Netselect.php:33 ../../include/network.php:1715 -#: ../../include/network.php:1716 -msgid "Friendica" +#: ../../Zotlabs/Widget/Savedsearch.php:75 +msgid "Remove term" msgstr "" -#: ../../widget/Netselect/Netselect.php:38 ../../include/network.php:1717 -msgid "OStatus" +#: ../../Zotlabs/Widget/Settings_menu.php:32 +msgid "Account settings" msgstr "" -#: ../../boot.php:1608 -msgid "Create an account to access services and applications" +#: ../../Zotlabs/Widget/Settings_menu.php:38 +msgid "Channel settings" msgstr "" -#: ../../boot.php:1628 ../../include/nav.php:103 ../../include/nav.php:132 -#: ../../include/nav.php:151 -msgid "Logout" +#: ../../Zotlabs/Widget/Settings_menu.php:46 +msgid "Display settings" msgstr "" -#: ../../boot.php:1632 -msgid "Login/Email" +#: ../../Zotlabs/Widget/Settings_menu.php:53 +msgid "Manage locations" msgstr "" -#: ../../boot.php:1633 -msgid "Password" +#: ../../Zotlabs/Widget/Suggestedchats.php:32 +msgid "Suggested Chatrooms" msgstr "" -#: ../../boot.php:1634 -msgid "Remember me" +#: ../../Zotlabs/Widget/Suggestions.php:53 +msgid "Suggestions" msgstr "" -#: ../../boot.php:1637 -msgid "Forgot your password?" +#: ../../Zotlabs/Widget/Suggestions.php:54 +msgid "See more..." msgstr "" -#: ../../boot.php:2433 +#: ../../Zotlabs/Widget/Tasklist.php:23 +msgid "Tasks" +msgstr "" + +#: ../../Zotlabs/Widget/Wiki_pages.php:34 +#: ../../Zotlabs/Widget/Wiki_pages.php:91 +msgid "Add new page" +msgstr "" + +#: ../../Zotlabs/Widget/Wiki_pages.php:85 +msgid "Wiki Pages" +msgstr "" + +#: ../../Zotlabs/Widget/Wiki_pages.php:96 +msgid "Page name" +msgstr "" + +#: ../../Zotlabs/Zot/Auth.php:152 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." +msgstr "" + +#: ../../Zotlabs/Zot/Auth.php:264 #, php-format -msgid "[$Projectname] Website SSL error for %s" -msgstr "" - -#: ../../boot.php:2438 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "" - -#: ../../boot.php:2554 -#, php-format -msgid "[$Projectname] Cron tasks not running on %s" -msgstr "" - -#: ../../boot.php:2559 -msgid "Cron/Scheduled tasks not running." -msgstr "" - -#: ../../boot.php:2560 ../../include/datetime.php:238 -msgid "never" -msgstr "" - -#: ../../store/[data]/smarty3/compiled/a0a1289f91f53b2c12e4e0b45ffe8291540ba895_0.file.cover_photo.tpl.php:127 -msgid "Cover Photo" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:16 -#: ../../view/theme/redbasic_c/php/config.php:19 -#: ../../view/theme/redbasic/php/config.php:16 -#: ../../view/theme/redbasic/php/config.php:19 -msgid "Focus (Hubzilla default)" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:99 -#: ../../view/theme/redbasic/php/config.php:98 -msgid "Theme settings" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Narrow navbar" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:101 -#: ../../view/theme/redbasic/php/config.php:100 -msgid "Navigation bar background color" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:101 -msgid "Navigation bar icon color " -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:103 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Navigation bar active icon color " -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Link color" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Set font-color for banner" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:106 -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Set the background color" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:107 -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Set the background image" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:108 -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Set the background color of items" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:109 -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Set the background color of comments" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:110 -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Set font-size for the entire application" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:110 -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Examples: 1rem, 100%, 16px" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Set font-color for posts and comments" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:112 -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Set radius of corners" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:112 -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Example: 4px" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:113 -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Set shadow depth of photos" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:114 -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Set maximum width of content region in pixel" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:114 -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Leave empty for default width" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:115 -msgid "Left align page content" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:116 -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set size of conversation author photo" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:117 -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set size of followup author photos" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Show advanced settings" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:57 -msgid "Errors encountered deleting database table " -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:95 ../../addon/twitter/twitter.php:612 -msgid "Submit Settings" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:96 -msgid "Drop tables when uninstalling?" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:96 -msgid "" -"If checked, the Rendezvous database tables will be deleted when the plugin " -"is uninstalled." -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:97 -msgid "Mapbox Access Token" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:97 -msgid "" -"If you enter a Mapbox access token, it will be used to retrieve map tiles " -"from Mapbox instead of the default OpenStreetMap tile server." -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:162 -msgid "Rendezvous" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:167 -msgid "" -"This identity has been deleted by another member due to inactivity. Please " -"press the \"New identity\" button or refresh the page to register a new " -"identity. You may use the same name." -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:168 -msgid "Welcome to Rendezvous!" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:169 -msgid "" -"Enter your name to join this rendezvous. To begin sharing your location with " -"the other members, tap the GPS control. When your location is discovered, a " -"red dot will appear and others will be able to see you on the map." -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:171 -msgid "Let's meet here" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:174 -msgid "New marker" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:175 -msgid "Edit marker" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:176 -msgid "New identity" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:177 -msgid "Delete marker" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:178 -msgid "Delete member" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:179 -msgid "Edit proximity alert" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:180 -msgid "" -"A proximity alert will be issued when this member is within a certain radius " -"of you.

Enter a radius in meters (0 to disable):" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:180 -#: ../../addon/rendezvous/rendezvous.php:185 -msgid "distance" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:181 -msgid "Proximity alert distance (meters)" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:182 -#: ../../addon/rendezvous/rendezvous.php:184 -msgid "" -"A proximity alert will be issued when you are within a certain radius of the " -"marker location.

Enter a radius in meters (0 to disable):" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:183 -msgid "Marker proximity alert" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:186 -msgid "Reminder note" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:187 -msgid "" -"Enter a note to be displayed when you are within the specified proximity..." -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:199 -msgid "Add new rendezvous" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:200 -msgid "" -"Create a new rendezvous and share the access link with those you wish to " -"invite to the group. Those who open the link become members of the " -"rendezvous. They can view other member locations, add markers to the map, or " -"share their own locations with the group." -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:232 -msgid "You have no rendezvous. Press the button above to create a rendezvous!" -msgstr "" - -#: ../../addon/skeleton/Mod_Skeleton.php:32 -msgid "Skeleton App" -msgstr "" - -#: ../../addon/skeleton/Mod_Skeleton.php:33 -msgid "A skeleton for addons, you can copy/paste" -msgstr "" - -#: ../../addon/skeleton/Mod_Skeleton.php:40 -msgid "Some setting" -msgstr "" - -#: ../../addon/skeleton/Mod_Skeleton.php:40 -msgid "A setting" -msgstr "" - -#: ../../addon/skeleton/Mod_Skeleton.php:48 -msgid "Skeleton Settings" -msgstr "" - -#: ../../addon/gnusoc/Mod_Gnusoc.php:16 -msgid "" -"The GNU-Social protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." -msgstr "" - -#: ../../addon/gnusoc/Mod_Gnusoc.php:22 -msgid "GNU-Social Protocol App" -msgstr "" - -#: ../../addon/gnusoc/Mod_Gnusoc.php:34 -msgid "GNU-Social Protocol" -msgstr "" - -#: ../../addon/gnusoc/gnusoc.php:451 -msgid "Follow" -msgstr "" - -#: ../../addon/gnusoc/gnusoc.php:454 -#, php-format -msgid "%1$s is now following %2$s" -msgstr "" - -#: ../../addon/planets/Mod_Planets.php:20 -#: ../../addon/planets/Mod_Planets.php:23 -msgid "Random Planet App" -msgstr "" - -#: ../../addon/planets/Mod_Planets.php:23 -#: ../../addon/rainbowtag/Mod_Rainbowtag.php:26 -#: ../../addon/nsabait/Mod_Nsabait.php:24 ../../addon/hsse/Mod_Hsse.php:26 -#: ../../addon/authchoose/Mod_Authchoose.php:33 -msgid "Installed" -msgstr "" - -#: ../../addon/planets/Mod_Planets.php:25 -msgid "" -"Set a random planet from the Star Wars Empire as your location when posting" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:50 -#: ../../addon/openclipatar/openclipatar.php:128 -msgid "System defaults:" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:54 -msgid "Preferred Clipart IDs" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:54 -msgid "List of preferred clipart ids. These will be shown first." -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:55 -msgid "Default Search Term" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:55 -msgid "The default search term. These will be shown second." -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:56 -msgid "Return After" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:56 -msgid "Page to load after image selection." -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1356 -#: ../../include/nav.php:111 -msgid "Edit Profile" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:59 -msgid "Profile List" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:61 -msgid "Order of Preferred" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:61 -msgid "Sort order of preferred clipart ids." -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:62 -#: ../../addon/openclipatar/openclipatar.php:68 -msgid "Newest first" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:65 -msgid "As entered" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:67 -msgid "Order of other" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:67 -msgid "Sort order of other clipart ids." -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:69 -msgid "Most downloaded first" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:70 -msgid "Most liked first" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:72 -msgid "Preferred IDs Message" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:72 -msgid "Message to display above preferred results." -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:78 -msgid "Uploaded by: " -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:78 -msgid "Drawn by: " -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:182 -#: ../../addon/openclipatar/openclipatar.php:194 -msgid "Use this image" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:192 -msgid "Or select from a free OpenClipart.org image:" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:195 -msgid "Search Term" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:232 -msgid "Unknown error. Please try again later." -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:308 -msgid "Profile photo updated successfully." -msgstr "" - -#: ../../addon/adultphotoflag/adultphotoflag.php:24 -msgid "Flag Adult Photos" -msgstr "" - -#: ../../addon/adultphotoflag/adultphotoflag.php:25 -msgid "" -"Provide photo edit option to hide inappropriate photos from default album " -"view" -msgstr "" - -#: ../../addon/totp/Settings/Totp.php:90 -msgid "" -"You haven't set a TOTP secret yet.\n" -"Please click the button below to generate one and register this site\n" -"with your preferred authenticator app." -msgstr "" - -#: ../../addon/totp/Settings/Totp.php:93 -msgid "Your TOTP secret is" -msgstr "" - -#: ../../addon/totp/Settings/Totp.php:94 -msgid "" -"Be sure to save it somewhere in case you lose or replace your mobile " -"device.\n" -"Use your mobile device to scan the QR code below to register this site\n" -"with your preferred authenticator app." -msgstr "" - -#: ../../addon/totp/Settings/Totp.php:99 -msgid "Test" -msgstr "" - -#: ../../addon/totp/Settings/Totp.php:100 -msgid "Generate New Secret" -msgstr "" - -#: ../../addon/totp/Settings/Totp.php:101 -msgid "Go" -msgstr "" - -#: ../../addon/totp/Settings/Totp.php:102 -msgid "Enter your password" -msgstr "" - -#: ../../addon/totp/Settings/Totp.php:103 -msgid "enter TOTP code from your device" -msgstr "" - -#: ../../addon/totp/Settings/Totp.php:104 -msgid "Pass!" -msgstr "" - -#: ../../addon/totp/Settings/Totp.php:105 -msgid "Fail" -msgstr "" - -#: ../../addon/totp/Settings/Totp.php:106 -msgid "Incorrect password, try again." -msgstr "" - -#: ../../addon/totp/Settings/Totp.php:107 -msgid "Record your new TOTP secret and rescan the QR code above." -msgstr "" - -#: ../../addon/totp/Settings/Totp.php:115 -msgid "TOTP Settings" -msgstr "" - -#: ../../addon/totp/Mod_Totp.php:23 -msgid "TOTP Two-Step Verification" -msgstr "" - -#: ../../addon/totp/Mod_Totp.php:24 -msgid "Enter the 2-step verification generated by your authenticator app:" -msgstr "" - -#: ../../addon/totp/Mod_Totp.php:25 -msgid "Success!" -msgstr "" - -#: ../../addon/totp/Mod_Totp.php:26 -msgid "Invalid code, please try again." -msgstr "" - -#: ../../addon/totp/Mod_Totp.php:27 -msgid "Too many invalid codes..." -msgstr "" - -#: ../../addon/totp/Mod_Totp.php:28 -msgid "Verify" -msgstr "" - -#: ../../addon/wppost/Mod_Wppost.php:28 -msgid "Wordpress Settings saved." -msgstr "" - -#: ../../addon/wppost/Mod_Wppost.php:41 -msgid "Wordpress Post App" -msgstr "" - -#: ../../addon/wppost/Mod_Wppost.php:42 -msgid "Post to WordPress or anything else which uses the wordpress XMLRPC API" -msgstr "" - -#: ../../addon/wppost/Mod_Wppost.php:65 -msgid "WordPress username" -msgstr "" - -#: ../../addon/wppost/Mod_Wppost.php:69 -msgid "WordPress password" -msgstr "" - -#: ../../addon/wppost/Mod_Wppost.php:73 -msgid "WordPress API URL" -msgstr "" - -#: ../../addon/wppost/Mod_Wppost.php:74 -msgid "Typically https://your-blog.tld/xmlrpc.php" -msgstr "" - -#: ../../addon/wppost/Mod_Wppost.php:77 -msgid "WordPress blogid" -msgstr "" - -#: ../../addon/wppost/Mod_Wppost.php:78 -msgid "For multi-user sites such as wordpress.com, otherwise leave blank" -msgstr "" - -#: ../../addon/wppost/Mod_Wppost.php:82 -msgid "Post to WordPress by default" -msgstr "" - -#: ../../addon/wppost/Mod_Wppost.php:86 -msgid "Forward comments (requires hubzilla_wp plugin)" -msgstr "" - -#: ../../addon/wppost/Mod_Wppost.php:94 -msgid "Wordpress Post" -msgstr "" - -#: ../../addon/wppost/wppost.php:46 -msgid "Post to WordPress" -msgstr "" - -#: ../../addon/nsfw/nsfw.php:152 -msgid "Possible adult content" -msgstr "" - -#: ../../addon/nsfw/nsfw.php:167 -#, php-format -msgid "%s - view" -msgstr "" - -#: ../../addon/nsfw/Mod_Nsfw.php:22 -msgid "NSFW Settings saved." -msgstr "" - -#: ../../addon/nsfw/Mod_Nsfw.php:33 -msgid "NSFW App" -msgstr "" - -#: ../../addon/nsfw/Mod_Nsfw.php:34 -msgid "Collapse content that contains predefined words" -msgstr "" - -#: ../../addon/nsfw/Mod_Nsfw.php:44 -msgid "" -"This app looks in posts for the words/text you specify below, and collapses " -"any content containing those keywords so it is not displayed at " -"inappropriate times, such as sexual innuendo that may be improper in a work " -"setting. It is polite and recommended to tag any content containing nudity " -"with #NSFW. This filter can also match any other word/text you specify, and " -"can thereby be used as a general purpose content filter." -msgstr "" - -#: ../../addon/nsfw/Mod_Nsfw.php:49 -msgid "Comma separated list of keywords to hide" -msgstr "" - -#: ../../addon/nsfw/Mod_Nsfw.php:49 -msgid "Word, /regular-expression/, lang=xx, lang!=xx" -msgstr "" - -#: ../../addon/nsfw/Mod_Nsfw.php:58 -msgid "NSFW" -msgstr "" - -#: ../../addon/queueworker/Mod_Queueworker.php:73 -msgid "Max queueworker threads" -msgstr "" - -#: ../../addon/queueworker/Mod_Queueworker.php:87 -msgid "Assume workers dead after ___ seconds" -msgstr "" - -#: ../../addon/queueworker/Mod_Queueworker.php:99 -msgid "Queueworker Settings" -msgstr "" - -#: ../../addon/ijpost/Mod_Ijpost.php:23 -msgid "Insane Journal Crosspost Connector Settings saved." -msgstr "" - -#: ../../addon/ijpost/Mod_Ijpost.php:35 -msgid "Insane Journal Crosspost Connector App" -msgstr "" - -#: ../../addon/ijpost/Mod_Ijpost.php:36 -msgid "Relay public postings to Insane Journal" -msgstr "" - -#: ../../addon/ijpost/Mod_Ijpost.php:53 -msgid "InsaneJournal username" -msgstr "" - -#: ../../addon/ijpost/Mod_Ijpost.php:57 -msgid "InsaneJournal password" -msgstr "" - -#: ../../addon/ijpost/Mod_Ijpost.php:61 -msgid "Post to InsaneJournal by default" -msgstr "" - -#: ../../addon/ijpost/Mod_Ijpost.php:69 -msgid "Insane Journal Crosspost Connector" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:45 -msgid "Post to Insane Journal" -msgstr "" - -#: ../../addon/dwpost/dwpost.php:48 -msgid "Post to Dreamwidth" -msgstr "" - -#: ../../addon/dwpost/Mod_Dwpost.php:24 -msgid "Dreamwidth Crosspost Connector Settings saved." -msgstr "" - -#: ../../addon/dwpost/Mod_Dwpost.php:36 -msgid "Dreamwidth Crosspost Connector App" -msgstr "" - -#: ../../addon/dwpost/Mod_Dwpost.php:37 -msgid "Relay public postings to Dreamwidth" -msgstr "" - -#: ../../addon/dwpost/Mod_Dwpost.php:52 -msgid "Dreamwidth username" -msgstr "" - -#: ../../addon/dwpost/Mod_Dwpost.php:56 -msgid "Dreamwidth password" -msgstr "" - -#: ../../addon/dwpost/Mod_Dwpost.php:60 -msgid "Post to Dreamwidth by default" -msgstr "" - -#: ../../addon/dwpost/Mod_Dwpost.php:68 -msgid "Dreamwidth Crosspost Connector" -msgstr "" - -#: ../../addon/notifyadmin/notifyadmin.php:34 -msgid "New registration" -msgstr "" - -#: ../../addon/notifyadmin/notifyadmin.php:42 -#, php-format -msgid "Message sent to %s. New account registration: %s" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:94 -msgid "Hubzilla Directory Stats" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:95 -msgid "Total Hubs" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:97 -msgid "Hubzilla Hubs" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:99 -msgid "Friendica Hubs" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:101 -msgid "Diaspora Pods" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:103 -msgid "Hubzilla Channels" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:105 -msgid "Friendica Channels" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:107 -msgid "Diaspora Channels" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:109 -msgid "Aged 35 and above" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:111 -msgid "Aged 34 and under" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:113 -msgid "Average Age" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:115 -msgid "Known Chatrooms" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:117 -msgid "Known Tags" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:119 -msgid "" -"Please note Diaspora and Friendica statistics are merely those **this " -"directory** is aware of, and not all those known in the network. This also " -"applies to chatrooms," -msgstr "" - -#: ../../addon/likebanner/likebanner.php:51 -msgid "Your Webbie:" -msgstr "" - -#: ../../addon/likebanner/likebanner.php:54 -msgid "Fontsize (px):" -msgstr "" - -#: ../../addon/likebanner/likebanner.php:68 -msgid "Link:" -msgstr "" - -#: ../../addon/likebanner/likebanner.php:70 -msgid "Like us on Hubzilla" -msgstr "" - -#: ../../addon/likebanner/likebanner.php:72 -msgid "Embed:" -msgstr "" - -#: ../../addon/redphotos/redphotos.php:106 -msgid "Photos imported" -msgstr "" - -#: ../../addon/redphotos/redphotos.php:129 -msgid "Redmatrix Photo Album Import" -msgstr "" - -#: ../../addon/redphotos/redphotos.php:130 -msgid "This will import all your Redmatrix photo albums to this channel." -msgstr "" - -#: ../../addon/redphotos/redphotos.php:131 -#: ../../addon/redfiles/redfiles.php:121 -msgid "Redmatrix Server base URL" -msgstr "" - -#: ../../addon/redphotos/redphotos.php:132 -#: ../../addon/redfiles/redfiles.php:122 -msgid "Redmatrix Login Username" -msgstr "" - -#: ../../addon/redphotos/redphotos.php:133 -#: ../../addon/redfiles/redfiles.php:123 -msgid "Redmatrix Login Password" -msgstr "" - -#: ../../addon/redphotos/redphotos.php:134 -msgid "Import just this album" -msgstr "" - -#: ../../addon/redphotos/redphotos.php:134 -msgid "Leave blank to import all albums" -msgstr "" - -#: ../../addon/redphotos/redphotos.php:135 -msgid "Maximum count to import" -msgstr "" - -#: ../../addon/redphotos/redphotos.php:135 -msgid "0 or blank to import all available" -msgstr "" - -#: ../../addon/irc/Mod_Irc.php:23 ../../addon/irc/irc.php:41 -msgid "Popular Channels" -msgstr "" - -#: ../../addon/irc/irc.php:37 -msgid "Channels to auto connect" -msgstr "" - -#: ../../addon/irc/irc.php:37 ../../addon/irc/irc.php:41 -msgid "Comma separated list" -msgstr "" - -#: ../../addon/irc/irc.php:45 -msgid "IRC Settings" -msgstr "" - -#: ../../addon/irc/irc.php:54 -msgid "IRC settings saved." -msgstr "" - -#: ../../addon/irc/irc.php:58 -msgid "IRC Chatroom" -msgstr "" - -#: ../../addon/gallery/gallery.php:38 ../../addon/gallery/Mod_Gallery.php:135 -msgid "Gallery" -msgstr "" - -#: ../../addon/gallery/gallery.php:41 -msgid "Photo Gallery" -msgstr "" - -#: ../../addon/gallery/Mod_Gallery.php:58 -msgid "Gallery App" -msgstr "" - -#: ../../addon/gallery/Mod_Gallery.php:59 -msgid "A simple gallery for your photo albums" -msgstr "" - -#: ../../addon/ljpost/Mod_Ljpost.php:36 -msgid "Livejournal Crosspost Connector App" -msgstr "" - -#: ../../addon/ljpost/Mod_Ljpost.php:37 -msgid "Relay public posts to Livejournal" -msgstr "" - -#: ../../addon/ljpost/Mod_Ljpost.php:54 -msgid "Livejournal username" -msgstr "" - -#: ../../addon/ljpost/Mod_Ljpost.php:58 -msgid "Livejournal password" -msgstr "" - -#: ../../addon/ljpost/Mod_Ljpost.php:62 -msgid "Post to Livejournal by default" -msgstr "" - -#: ../../addon/ljpost/Mod_Ljpost.php:70 -msgid "Livejournal Crosspost Connector" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:45 -msgid "Post to Livejournal" -msgstr "" - -#: ../../addon/openid/openid.php:49 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: ../../addon/openid/openid.php:49 -msgid "The error message was:" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:52 -msgid "First Name" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:53 -msgid "Last Name" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/Mod_Redred.php:75 -msgid "Nickname" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:55 -msgid "Full Name" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:61 -msgid "Profile Photo 16px" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:62 -msgid "Profile Photo 32px" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:63 -msgid "Profile Photo 48px" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:64 -msgid "Profile Photo 64px" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:65 -msgid "Profile Photo 80px" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:66 -msgid "Profile Photo 128px" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:67 -msgid "Timezone" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:70 -msgid "Birth Year" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:71 -msgid "Birth Month" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:72 -msgid "Birth Day" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:73 -msgid "Birthdate" -msgstr "" - -#: ../../addon/openid/Mod_Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "" - -#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:317 -msgid "Login failed." -msgstr "" - -#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 ../../include/channel.php:1536 -msgid "Male" -msgstr "" - -#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 ../../include/channel.php:1534 -msgid "Female" -msgstr "" - -#: ../../addon/randpost/randpost.php:97 -msgid "You're welcome." -msgstr "" - -#: ../../addon/randpost/randpost.php:98 -msgid "Ah shucks..." -msgstr "" - -#: ../../addon/randpost/randpost.php:99 -msgid "Don't mention it." -msgstr "" - -#: ../../addon/randpost/randpost.php:100 -msgid "<blush>" -msgstr "" - -#: ../../addon/startpage/Mod_Startpage.php:50 -msgid "Startpage App" -msgstr "" - -#: ../../addon/startpage/Mod_Startpage.php:51 -msgid "Set a preferred page to load on login from home page" -msgstr "" - -#: ../../addon/startpage/Mod_Startpage.php:62 -msgid "Page to load after login" -msgstr "" - -#: ../../addon/startpage/Mod_Startpage.php:62 -msgid "" -"Examples: "apps", "network?f=&gid=37" (privacy " -"collection), "channel" or "notifications/system" (leave " -"blank for default network page (grid)." -msgstr "" - -#: ../../addon/startpage/Mod_Startpage.php:70 -msgid "Startpage" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslap" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslapped" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:20 -msgid "shag" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:20 -msgid "shagged" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:21 -msgid "patent" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:21 -msgid "patented" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:22 -msgid "hug" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:22 -msgid "hugged" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:23 -msgid "murder" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:23 -msgid "murdered" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:24 -msgid "worship" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:24 -msgid "worshipped" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:25 -msgid "kiss" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:25 -msgid "kissed" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:26 -msgid "tempt" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:26 -msgid "tempted" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:27 -msgid "raise eyebrows at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:27 -msgid "raised their eyebrows at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:28 -msgid "insult" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:28 -msgid "insulted" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:29 -msgid "praise" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:29 -msgid "praised" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:30 -msgid "be dubious of" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:30 -msgid "was dubious of" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:31 -msgid "eat" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:31 -msgid "ate" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:32 -msgid "giggle and fawn at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:32 -msgid "giggled and fawned at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:33 -msgid "doubt" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:33 -msgid "doubted" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:34 -msgid "glare" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:34 -msgid "glared at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:35 -msgid "fuck" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:35 -msgid "fucked" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:36 -msgid "bonk" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:36 -msgid "bonked" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:37 -msgid "declare undying love for" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:37 -msgid "declared undying love for" -msgstr "" - -#: ../../addon/diaspora/Receiver.php:1495 -#, php-format -msgid "%1$s dislikes %2$s's %3$s" -msgstr "" - -#: ../../addon/diaspora/Mod_Diaspora.php:40 -msgid "Diaspora Protocol Settings updated." -msgstr "" - -#: ../../addon/diaspora/Mod_Diaspora.php:49 -msgid "" -"The diaspora protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." -msgstr "" - -#: ../../addon/diaspora/Mod_Diaspora.php:55 -msgid "Diaspora Protocol App" -msgstr "" - -#: ../../addon/diaspora/Mod_Diaspora.php:74 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "" - -#: ../../addon/diaspora/Mod_Diaspora.php:78 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "" - -#: ../../addon/diaspora/Mod_Diaspora.php:82 -msgid "Sign and forward posts and comments with no existing Diaspora signature" -msgstr "" - -#: ../../addon/diaspora/Mod_Diaspora.php:87 -msgid "Followed hashtags (comma separated, do not include the #)" -msgstr "" - -#: ../../addon/diaspora/Mod_Diaspora.php:96 -msgid "Diaspora Protocol" -msgstr "" - -#: ../../addon/diaspora/import_diaspora.php:18 -msgid "No username found in import file." -msgstr "" - -#: ../../addon/diaspora/import_diaspora.php:43 ../../include/import.php:73 -msgid "Unable to create a unique channel address. Import failed." -msgstr "" - -#: ../../addon/photocache/Mod_Photocache.php:27 -msgid "Photo Cache settings saved." -msgstr "" - -#: ../../addon/photocache/Mod_Photocache.php:36 -msgid "" -"Photo Cache addon saves a copy of images from external sites locally to " -"increase your anonymity in the web." -msgstr "" - -#: ../../addon/photocache/Mod_Photocache.php:42 -msgid "Photo Cache App" -msgstr "" - -#: ../../addon/photocache/Mod_Photocache.php:53 -msgid "Minimal photo size for caching" -msgstr "" - -#: ../../addon/photocache/Mod_Photocache.php:55 -msgid "In pixels. From 1 up to 1024, 0 will be replaced with system default." -msgstr "" - -#: ../../addon/photocache/Mod_Photocache.php:64 -msgid "Photo Cache" -msgstr "" - -#: ../../addon/testdrive/testdrive.php:104 -#, php-format -msgid "Your account on %s will expire in a few days." -msgstr "" - -#: ../../addon/testdrive/testdrive.php:105 -msgid "Your $Productname test account is about to expire." -msgstr "" - -#: ../../addon/rainbowtag/Mod_Rainbowtag.php:15 -msgid "Add some colour to tag clouds" -msgstr "" - -#: ../../addon/rainbowtag/Mod_Rainbowtag.php:21 -#: ../../addon/rainbowtag/Mod_Rainbowtag.php:26 -msgid "Rainbow Tag App" -msgstr "" - -#: ../../addon/rainbowtag/Mod_Rainbowtag.php:34 -msgid "Rainbow Tag" -msgstr "" - -#: ../../addon/upload_limits/upload_limits.php:25 -msgid "Show Upload Limits" -msgstr "" - -#: ../../addon/upload_limits/upload_limits.php:27 -msgid "Hubzilla configured maximum size: " -msgstr "" - -#: ../../addon/upload_limits/upload_limits.php:28 -msgid "PHP upload_max_filesize: " -msgstr "" - -#: ../../addon/upload_limits/upload_limits.php:29 -msgid "PHP post_max_size (must be larger than upload_max_filesize): " -msgstr "" - -#: ../../addon/gravatar/gravatar.php:123 -msgid "generic profile image" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:124 -msgid "random geometric pattern" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:125 -msgid "monster face" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:126 -msgid "computer generated face" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:127 -msgid "retro arcade style face" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:128 -msgid "Hub default profile photo" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:143 -msgid "Information" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:143 -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 "" - -#: ../../addon/gravatar/gravatar.php:150 ../../addon/msgfooter/msgfooter.php:46 -#: ../../addon/xmpp/xmpp.php:43 -msgid "Save Settings" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:151 -msgid "Default avatar image" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:151 -msgid "Select default avatar image if none was found at Gravatar. See README" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:152 -msgid "Rating of images" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:152 -msgid "Select the appropriate avatar rating for your site. See README" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:165 -msgid "Gravatar settings updated." -msgstr "" - -#: ../../addon/hzfiles/hzfiles.php:79 -msgid "Hubzilla File Storage Import" -msgstr "" - -#: ../../addon/hzfiles/hzfiles.php:80 -msgid "This will import all your cloud files from another server." -msgstr "" - -#: ../../addon/hzfiles/hzfiles.php:81 -msgid "Hubzilla Server base URL" -msgstr "" - -#: ../../addon/hzfiles/hzfiles.php:82 -msgid "Since modified date yyyy-mm-dd" -msgstr "" - -#: ../../addon/hzfiles/hzfiles.php:83 -msgid "Until modified date yyyy-mm-dd" -msgstr "" - -#: ../../addon/visage/Mod_Visage.php:21 -msgid "Who viewed my channel/profile" -msgstr "" - -#: ../../addon/visage/Mod_Visage.php:25 -msgid "Recent Channel/Profile Viewers" -msgstr "" - -#: ../../addon/visage/Mod_Visage.php:36 -msgid "No entries." -msgstr "" - -#: ../../addon/nsabait/Mod_Nsabait.php:20 -#: ../../addon/nsabait/Mod_Nsabait.php:24 -msgid "NSA Bait App" -msgstr "" - -#: ../../addon/nsabait/Mod_Nsabait.php:26 -msgid "Make yourself a political target" -msgstr "" - -#: ../../addon/mailtest/mailtest.php:19 -msgid "Send test email" -msgstr "" - -#: ../../addon/mailtest/mailtest.php:50 ../../addon/hubwall/hubwall.php:50 -msgid "No recipients found." -msgstr "" - -#: ../../addon/mailtest/mailtest.php:66 -msgid "Mail sent." -msgstr "" - -#: ../../addon/mailtest/mailtest.php:68 -msgid "Sending of mail failed." -msgstr "" - -#: ../../addon/mailtest/mailtest.php:77 -msgid "Mail Test" -msgstr "" - -#: ../../addon/mailtest/mailtest.php:96 ../../addon/hubwall/hubwall.php:92 -msgid "Message subject" -msgstr "" - -#: ../../addon/mdpost/mdpost.php:42 -msgid "Use markdown for editing posts" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:146 -msgid "View Larger" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:170 -msgid "Tile Server URL" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:170 -msgid "" -"A list of public tile servers" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:171 -msgid "Nominatim (reverse geocoding) Server URL" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:171 -msgid "" -"A list of Nominatim servers" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:172 -msgid "Default zoom" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:172 -msgid "" -"The default zoom level. (1:world, 18:highest, also depends on tile server)" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:173 -msgid "Include marker on map" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:173 -msgid "Include a marker on the map." -msgstr "" - -#: ../../addon/msgfooter/msgfooter.php:47 -msgid "text to include in all outgoing posts from this site" -msgstr "" - -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:22 -msgid "Fuzzloc Settings updated." -msgstr "" - -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:34 -msgid "Fuzzy Location App" -msgstr "" - -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:35 -msgid "" -"Blur your precise location if your channel uses browser location mapping" -msgstr "" - -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:40 -msgid "Minimum offset in meters" -msgstr "" - -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:44 -msgid "Maximum offset in meters" -msgstr "" - -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:53 -msgid "Fuzzy Location" -msgstr "" - -#: ../../addon/rtof/rtof.php:51 -msgid "Post to Friendica" -msgstr "" - -#: ../../addon/rtof/Mod_Rtof.php:24 -msgid "Friendica Crosspost Connector Settings saved." -msgstr "" - -#: ../../addon/rtof/Mod_Rtof.php:36 -msgid "Friendica Crosspost Connector App" -msgstr "" - -#: ../../addon/rtof/Mod_Rtof.php:37 -msgid "Relay public postings to a connected Friendica account" -msgstr "" - -#: ../../addon/rtof/Mod_Rtof.php:49 -msgid "Send public postings to Friendica by default" -msgstr "" - -#: ../../addon/rtof/Mod_Rtof.php:53 -msgid "Friendica API Path" -msgstr "" - -#: ../../addon/rtof/Mod_Rtof.php:53 ../../addon/redred/Mod_Redred.php:67 -msgid "https://{sitename}/api" -msgstr "" - -#: ../../addon/rtof/Mod_Rtof.php:57 -msgid "Friendica login name" -msgstr "" - -#: ../../addon/rtof/Mod_Rtof.php:61 -msgid "Friendica password" -msgstr "" - -#: ../../addon/rtof/Mod_Rtof.php:69 -msgid "Friendica Crosspost Connector" -msgstr "" - -#: ../../addon/jappixmini/Mod_Jappixmini.php:96 -msgid "Jappixmini App" -msgstr "" - -#: ../../addon/jappixmini/Mod_Jappixmini.php:97 -msgid "Provides a Facebook-like chat using Jappix Mini" -msgstr "" - -#: ../../addon/jappixmini/Mod_Jappixmini.php:157 ../../include/channel.php:1452 -#: ../../include/channel.php:1623 -msgid "Status:" -msgstr "" - -#: ../../addon/jappixmini/Mod_Jappixmini.php:161 -msgid "Hide Jappixmini Chat-Widget from the webinterface" -msgstr "" - -#: ../../addon/jappixmini/Mod_Jappixmini.php:166 -msgid "Jabber username" -msgstr "" - -#: ../../addon/jappixmini/Mod_Jappixmini.php:172 -msgid "Jabber server" -msgstr "" - -#: ../../addon/jappixmini/Mod_Jappixmini.php:178 -msgid "Jabber BOSH host URL" -msgstr "" - -#: ../../addon/jappixmini/Mod_Jappixmini.php:185 -msgid "Jabber password" -msgstr "" - -#: ../../addon/jappixmini/Mod_Jappixmini.php:191 -msgid "Encrypt Jabber password with Hubzilla password" -msgstr "" - -#: ../../addon/jappixmini/Mod_Jappixmini.php:195 -#: ../../addon/redred/Mod_Redred.php:79 -msgid "Hubzilla password" -msgstr "" - -#: ../../addon/jappixmini/Mod_Jappixmini.php:199 -#: ../../addon/jappixmini/Mod_Jappixmini.php:203 -msgid "Approve subscription requests from Hubzilla contacts automatically" -msgstr "" - -#: ../../addon/jappixmini/Mod_Jappixmini.php:207 -msgid "Purge internal list of jabber addresses of contacts" -msgstr "" - -#: ../../addon/jappixmini/Mod_Jappixmini.php:212 -msgid "Configuration Help" -msgstr "" - -#: ../../addon/jappixmini/Mod_Jappixmini.php:258 -msgid "Jappixmini Settings" -msgstr "" - -#: ../../addon/upgrade_info/upgrade_info.php:43 -msgid "Your channel has been upgraded to the latest $Projectname version." -msgstr "" - -#: ../../addon/upgrade_info/upgrade_info.php:44 -msgid "" -"To improve usability, we have converted some features into installable stand-" -"alone apps." -msgstr "" - -#: ../../addon/upgrade_info/upgrade_info.php:45 -msgid "Please visit the $Projectname" -msgstr "" - -#: ../../addon/upgrade_info/upgrade_info.php:46 -msgid "app store" -msgstr "" - -#: ../../addon/upgrade_info/upgrade_info.php:47 -msgid "and install possibly missing apps." -msgstr "" - -#: ../../addon/upgrade_info/upgrade_info.php:52 -msgid "Upgrade Info" -msgstr "" - -#: ../../addon/upgrade_info/upgrade_info.php:56 -msgid "Do not show this again" -msgstr "" - -#: ../../addon/channelreputation/channelreputation.php:98 -#: ../../addon/channelreputation/channelreputation.php:99 -#: ../../addon/cart/myshop.php:141 ../../addon/cart/myshop.php:177 -#: ../../addon/cart/myshop.php:211 ../../addon/cart/myshop.php:259 -#: ../../addon/cart/myshop.php:294 ../../addon/cart/myshop.php:317 -msgid "Access Denied" -msgstr "" - -#: ../../addon/channelreputation/channelreputation.php:106 -msgid "Enable Community Moderation" -msgstr "" - -#: ../../addon/channelreputation/channelreputation.php:114 -msgid "Reputation automatically given to new members" -msgstr "" - -#: ../../addon/channelreputation/channelreputation.php:115 -msgid "Reputation will never fall below this value" -msgstr "" - -#: ../../addon/channelreputation/channelreputation.php:116 -msgid "Minimum reputation before posting is allowed" -msgstr "" - -#: ../../addon/channelreputation/channelreputation.php:117 -msgid "Minimum reputation before commenting is allowed" -msgstr "" - -#: ../../addon/channelreputation/channelreputation.php:118 -msgid "Minimum reputation before a member is able to moderate other posts" -msgstr "" - -#: ../../addon/channelreputation/channelreputation.php:119 -msgid "" -"Max ratio of moderator's reputation that can be added to/deducted from " -"reputation of person being moderated" -msgstr "" - -#: ../../addon/channelreputation/channelreputation.php:120 -msgid "Reputation \"cost\" to post" -msgstr "" - -#: ../../addon/channelreputation/channelreputation.php:121 -msgid "Reputation \"cost\" to comment" -msgstr "" - -#: ../../addon/channelreputation/channelreputation.php:122 -msgid "" -"Reputation automatically recovers at this rate per hour until it reaches " -"minimum_to_post" -msgstr "" - -#: ../../addon/channelreputation/channelreputation.php:123 -msgid "" -"When minimum_to_moderate > reputation > minimum_to_post reputation recovers " -"at this rate per hour" -msgstr "" - -#: ../../addon/channelreputation/channelreputation.php:137 -msgid "Community Moderation Settings" -msgstr "" - -#: ../../addon/channelreputation/channelreputation.php:365 -msgid "Can moderate reputation on my channel." -msgstr "" - -#: ../../addon/channelreputation/channelreputation.php:549 -#: ../../addon/channelreputation/channelreputation.php:552 -msgid "Channel Reputation" -msgstr "" - -#: ../../addon/superblock/superblock.php:337 -msgid "Block Completely" -msgstr "" - -#: ../../addon/superblock/Mod_Superblock.php:20 -msgid "Superblock App" -msgstr "" - -#: ../../addon/superblock/Mod_Superblock.php:21 -msgid "Block channels" -msgstr "" - -#: ../../addon/superblock/Mod_Superblock.php:63 -msgid "superblock settings updated" -msgstr "" - -#: ../../addon/superblock/Mod_Superblock.php:87 -msgid "Currently blocked" -msgstr "" - -#: ../../addon/superblock/Mod_Superblock.php:89 -msgid "No channels currently blocked" -msgstr "" - -#: ../../addon/nofed/Mod_Nofed.php:21 -msgid "nofed Settings saved." -msgstr "" - -#: ../../addon/nofed/Mod_Nofed.php:33 -msgid "No Federation App" -msgstr "" - -#: ../../addon/nofed/Mod_Nofed.php:34 -msgid "" -"Prevent posting from being federated to anybody. It will exist only on your " -"channel page." -msgstr "" - -#: ../../addon/nofed/Mod_Nofed.php:42 -msgid "Federate posts by default" -msgstr "" - -#: ../../addon/nofed/Mod_Nofed.php:50 -msgid "No Federation" -msgstr "" - -#: ../../addon/nofed/nofed.php:47 -msgid "Federate" -msgstr "" - -#: ../../addon/redred/Mod_Redred.php:24 -msgid "Channel is required." -msgstr "" - -#: ../../addon/redred/Mod_Redred.php:38 -msgid "Hubzilla Crosspost Connector Settings saved." -msgstr "" - -#: ../../addon/redred/Mod_Redred.php:50 -#: ../../addon/statusnet/Mod_Statusnet.php:146 -msgid "Hubzilla Crosspost Connector App" -msgstr "" - -#: ../../addon/redred/Mod_Redred.php:51 -msgid "Relay public postings to another Hubzilla channel" -msgstr "" - -#: ../../addon/redred/Mod_Redred.php:63 -msgid "Send public postings to Hubzilla channel by default" -msgstr "" - -#: ../../addon/redred/Mod_Redred.php:67 -msgid "Hubzilla API Path" -msgstr "" - -#: ../../addon/redred/Mod_Redred.php:71 -msgid "Hubzilla login name" -msgstr "" - -#: ../../addon/redred/Mod_Redred.php:75 -msgid "Hubzilla channel name" -msgstr "" - -#: ../../addon/redred/Mod_Redred.php:87 -msgid "Hubzilla Crosspost Connector" -msgstr "" - -#: ../../addon/redred/redred.php:50 -msgid "Post to Hubzilla" -msgstr "" - -#: ../../addon/logrot/logrot.php:36 -msgid "Logfile archive directory" -msgstr "" - -#: ../../addon/logrot/logrot.php:36 -msgid "Directory to store rotated logs" -msgstr "" - -#: ../../addon/logrot/logrot.php:37 -msgid "Logfile size in bytes before rotating" -msgstr "" - -#: ../../addon/logrot/logrot.php:38 -msgid "Number of logfiles to retain" -msgstr "" - -#: ../../addon/frphotos/frphotos.php:92 -msgid "Friendica Photo Album Import" -msgstr "" - -#: ../../addon/frphotos/frphotos.php:93 -msgid "This will import all your Friendica photo albums to this Red channel." -msgstr "" - -#: ../../addon/frphotos/frphotos.php:94 -msgid "Friendica Server base URL" -msgstr "" - -#: ../../addon/frphotos/frphotos.php:95 -msgid "Friendica Login Username" -msgstr "" - -#: ../../addon/frphotos/frphotos.php:96 -msgid "Friendica Login Password" -msgstr "" - -#: ../../addon/hsse/Mod_Hsse.php:15 -msgid "WYSIWYG status editor" -msgstr "" - -#: ../../addon/hsse/Mod_Hsse.php:21 ../../addon/hsse/Mod_Hsse.php:26 -msgid "WYSIWYG Status App" -msgstr "" - -#: ../../addon/hsse/Mod_Hsse.php:34 -msgid "WYSIWYG Status" -msgstr "" - -#: ../../addon/hsse/hsse.php:82 ../../include/conversation.php:1285 -msgid "Set your location" -msgstr "" - -#: ../../addon/hsse/hsse.php:83 ../../include/conversation.php:1286 -msgid "Clear browser location" -msgstr "" - -#: ../../addon/hsse/hsse.php:99 ../../include/conversation.php:1302 -msgid "Embed (existing) photo from your photo albums" -msgstr "" - -#: ../../addon/hsse/hsse.php:135 ../../include/conversation.php:1338 -msgid "Tag term:" -msgstr "" - -#: ../../addon/hsse/hsse.php:136 ../../include/conversation.php:1339 -msgid "Where are you right now?" -msgstr "" - -#: ../../addon/hsse/hsse.php:141 ../../include/conversation.php:1344 -msgid "Choose a different album..." -msgstr "" - -#: ../../addon/hsse/hsse.php:145 ../../include/conversation.php:1348 -msgid "Comments enabled" -msgstr "" - -#: ../../addon/hsse/hsse.php:146 ../../include/conversation.php:1349 -msgid "Comments disabled" -msgstr "" - -#: ../../addon/hsse/hsse.php:195 ../../include/conversation.php:1401 -msgid "Page link name" -msgstr "" - -#: ../../addon/hsse/hsse.php:198 ../../include/conversation.php:1404 -msgid "Post as" -msgstr "" - -#: ../../addon/hsse/hsse.php:212 ../../include/conversation.php:1418 -msgid "Toggle voting" -msgstr "" - -#: ../../addon/hsse/hsse.php:215 ../../include/conversation.php:1421 -msgid "Disable comments" -msgstr "" - -#: ../../addon/hsse/hsse.php:216 ../../include/conversation.php:1422 -msgid "Toggle comments" -msgstr "" - -#: ../../addon/hsse/hsse.php:224 ../../include/conversation.php:1430 -msgid "Categories (optional, comma-separated list)" -msgstr "" - -#: ../../addon/hsse/hsse.php:247 ../../include/conversation.php:1453 -msgid "Other networks and post services" -msgstr "" - -#: ../../addon/hsse/hsse.php:253 ../../include/conversation.php:1459 -msgid "Set publish date" -msgstr "" - -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:25 -msgid "ActivityPub Protocol Settings updated." -msgstr "" - -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:34 -msgid "" -"The activitypub protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." -msgstr "" - -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:40 -msgid "Activitypub Protocol App" -msgstr "" - -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:48 -msgid "Deliver to ActivityPub recipients in privacy groups" -msgstr "" - -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:48 -msgid "" -"May result in a large number of mentions and expose all the members of your " -"privacy group" -msgstr "" - -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:52 -msgid "Send multi-media HTML articles" -msgstr "" - -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:52 -msgid "Not supported by some microblog services such as Mastodon" -msgstr "" - -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:60 -msgid "Activitypub Protocol" -msgstr "" - -#: ../../addon/donate/donate.php:21 -msgid "Project Servers and Resources" -msgstr "" - -#: ../../addon/donate/donate.php:22 -msgid "Project Creator and Tech Lead" -msgstr "" - -#: ../../addon/donate/donate.php:49 -msgid "" -"And the hundreds of other people and organisations who helped make the " -"Hubzilla possible." -msgstr "" - -#: ../../addon/donate/donate.php:52 -msgid "" -"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " -"their time and expertise - and often paying out of pocket for services they " -"share with others." -msgstr "" - -#: ../../addon/donate/donate.php:53 -msgid "" -"There is no corporate funding and no ads, and we do not collect and sell " -"your personal information. (We don't control your personal information - " -"you do.)" -msgstr "" - -#: ../../addon/donate/donate.php:54 -msgid "" -"Help support our ground-breaking work in decentralisation, web identity, and " -"privacy." -msgstr "" - -#: ../../addon/donate/donate.php:56 -msgid "" -"Your donations keep servers and services running and also helps us to " -"provide innovative new features and continued development." -msgstr "" - -#: ../../addon/donate/donate.php:59 -msgid "Donate" -msgstr "" - -#: ../../addon/donate/donate.php:61 -msgid "" -"Choose a project, developer, or public hub to support with a one-time " -"donation" -msgstr "" - -#: ../../addon/donate/donate.php:62 -msgid "Donate Now" -msgstr "" - -#: ../../addon/donate/donate.php:63 -msgid "" -"Or become a project sponsor (Hubzilla Project only)" -msgstr "" - -#: ../../addon/donate/donate.php:64 -msgid "" -"Please indicate if you would like your first name or full name (or nothing) " -"to appear in our sponsor listing" -msgstr "" - -#: ../../addon/donate/donate.php:65 -msgid "Sponsor" -msgstr "" - -#: ../../addon/donate/donate.php:68 -msgid "Special thanks to: " -msgstr "" - -#: ../../addon/chords/Mod_Chords.php:44 -msgid "" -"This is a fairly comprehensive and complete guitar chord dictionary which " -"will list most of the available ways to play a certain chord, starting from " -"the base of the fingerboard up to a few frets beyond the twelfth fret " -"(beyond which everything repeats). A couple of non-standard tunings are " -"provided for the benefit of slide players, etc." -msgstr "" - -#: ../../addon/chords/Mod_Chords.php:46 -msgid "" -"Chord names start with a root note (A-G) and may include sharps (#) and " -"flats (b). This software will parse most of the standard naming conventions " -"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." -msgstr "" - -#: ../../addon/chords/Mod_Chords.php:48 -msgid "" -"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " -"E7b13b11 ..." -msgstr "" - -#: ../../addon/chords/Mod_Chords.php:51 -msgid "Guitar Chords" -msgstr "" - -#: ../../addon/chords/Mod_Chords.php:52 -msgid "The complete online chord dictionary" -msgstr "" - -#: ../../addon/chords/Mod_Chords.php:57 -msgid "Tuning" -msgstr "" - -#: ../../addon/chords/Mod_Chords.php:58 -msgid "Chord name: example: Em7" -msgstr "" - -#: ../../addon/chords/Mod_Chords.php:59 -msgid "Show for left handed stringing" -msgstr "" - -#: ../../addon/chords/chords.php:33 -msgid "Quick Reference" -msgstr "" - -#: ../../addon/libertree/libertree.php:43 -msgid "Post to Libertree" -msgstr "" - -#: ../../addon/libertree/Mod_Libertree.php:25 -msgid "Libertree Crosspost Connector Settings saved." -msgstr "" - -#: ../../addon/libertree/Mod_Libertree.php:35 -msgid "Libertree Crosspost Connector App" -msgstr "" - -#: ../../addon/libertree/Mod_Libertree.php:36 -msgid "Relay public posts to Libertree" -msgstr "" - -#: ../../addon/libertree/Mod_Libertree.php:51 -msgid "Libertree API token" -msgstr "" - -#: ../../addon/libertree/Mod_Libertree.php:55 -msgid "Libertree site URL" -msgstr "" - -#: ../../addon/libertree/Mod_Libertree.php:59 -msgid "Post to Libertree by default" -msgstr "" - -#: ../../addon/libertree/Mod_Libertree.php:67 -msgid "Libertree Crosspost Connector" -msgstr "" - -#: ../../addon/flattrwidget/Mod_Flattrwidget.php:41 -msgid "Flattr widget settings updated." -msgstr "" - -#: ../../addon/flattrwidget/Mod_Flattrwidget.php:53 -msgid "Flattr Widget App" -msgstr "" - -#: ../../addon/flattrwidget/Mod_Flattrwidget.php:54 -msgid "Add a Flattr button to your channel page" -msgstr "" - -#: ../../addon/flattrwidget/Mod_Flattrwidget.php:65 -msgid "Flattr user" -msgstr "" - -#: ../../addon/flattrwidget/Mod_Flattrwidget.php:69 -msgid "URL of the Thing to flattr" -msgstr "" - -#: ../../addon/flattrwidget/Mod_Flattrwidget.php:69 -msgid "If empty channel URL is used" -msgstr "" - -#: ../../addon/flattrwidget/Mod_Flattrwidget.php:73 -msgid "Title of the Thing to flattr" -msgstr "" - -#: ../../addon/flattrwidget/Mod_Flattrwidget.php:73 -msgid "If empty \"channel name on The Hubzilla\" will be used" -msgstr "" - -#: ../../addon/flattrwidget/Mod_Flattrwidget.php:77 -msgid "Static or dynamic flattr button" -msgstr "" - -#: ../../addon/flattrwidget/Mod_Flattrwidget.php:77 -msgid "static" -msgstr "" - -#: ../../addon/flattrwidget/Mod_Flattrwidget.php:77 -msgid "dynamic" -msgstr "" - -#: ../../addon/flattrwidget/Mod_Flattrwidget.php:81 -msgid "Alignment of the widget" -msgstr "" - -#: ../../addon/flattrwidget/Mod_Flattrwidget.php:81 -msgid "left" -msgstr "" - -#: ../../addon/flattrwidget/Mod_Flattrwidget.php:81 -msgid "right" -msgstr "" - -#: ../../addon/flattrwidget/Mod_Flattrwidget.php:89 -msgid "Flattr Widget" -msgstr "" - -#: ../../addon/flattrwidget/flattrwidget.php:50 -msgid "Flattr this!" -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:61 -msgid "" -"Please contact your site administrator.
The provided API URL is not " -"valid." -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:98 -msgid "We could not contact the GNU social API with the Path you entered." -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:130 -msgid "GNU social settings updated." -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:147 -msgid "" -"Relay public postings to a connected GNU social account (formerly StatusNet)" -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:181 -msgid "Globally Available GNU social OAuthKeys" -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:183 -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 "" - -#: ../../addon/statusnet/Mod_Statusnet.php:198 -msgid "Provide your own OAuth Credentials" -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:200 -msgid "" -"No consumer key pair for GNU social found. Register your Hubzilla 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 " -"Hubzilla installation at your favourite GNU social installation." -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:204 -msgid "OAuth Consumer Key" -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:208 -msgid "OAuth Consumer Secret" -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:212 -msgid "Base API Path" -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:212 -msgid "Remember the trailing /" -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:216 -msgid "GNU social application name" -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:239 -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 "" - -#: ../../addon/statusnet/Mod_Statusnet.php:241 -msgid "Log in with GNU social" -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:244 -msgid "Copy the security code from GNU social here" -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:254 -msgid "Cancel Connection Process" -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:256 -msgid "Current GNU social API is" -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:260 -msgid "Cancel GNU social Connection" -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:272 -#: ../../addon/twitter/Mod_Twitter.php:147 -msgid "Currently connected to: " -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:277 -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 "" - -#: ../../addon/statusnet/Mod_Statusnet.php:282 -msgid "Post to GNU social by default" -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:282 -msgid "" -"If enabled your public postings will be posted to the associated GNU-social " -"account by default" -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:291 -#: ../../addon/twitter/Mod_Twitter.php:171 -msgid "Clear OAuth configuration" -msgstr "" - -#: ../../addon/statusnet/Mod_Statusnet.php:303 -msgid "GNU-Social Crosspost Connector" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:145 -msgid "Post to GNU social" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:594 -msgid "API URL" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:597 -msgid "Application name" -msgstr "" - -#: ../../addon/qrator/qrator.php:48 -msgid "QR code" -msgstr "" - -#: ../../addon/qrator/qrator.php:63 -msgid "QR Generator" -msgstr "" - -#: ../../addon/qrator/qrator.php:64 -msgid "Enter some text" -msgstr "" - -#: ../../addon/chess/Mod_Chess.php:180 ../../addon/chess/Mod_Chess.php:377 -msgid "Invalid game." -msgstr "" - -#: ../../addon/chess/Mod_Chess.php:186 ../../addon/chess/Mod_Chess.php:417 -msgid "You are not a player in this game." -msgstr "" - -#: ../../addon/chess/Mod_Chess.php:242 -msgid "You must be a local channel to create a game." -msgstr "" - -#: ../../addon/chess/Mod_Chess.php:260 -msgid "You must select one opponent that is not yourself." -msgstr "" - -#: ../../addon/chess/Mod_Chess.php:271 -msgid "Random color chosen." -msgstr "" - -#: ../../addon/chess/Mod_Chess.php:279 -msgid "Error creating new game." -msgstr "" - -#: ../../addon/chess/Mod_Chess.php:306 ../../include/channel.php:1207 -msgid "Requested channel is not available." -msgstr "" - -#: ../../addon/chess/Mod_Chess.php:311 ../../addon/chess/Mod_Chess.php:333 -msgid "Chess not installed." -msgstr "" - -#: ../../addon/chess/Mod_Chess.php:326 -msgid "You must select a local channel /chess/channelname" -msgstr "" - -#: ../../addon/chess/chess.php:642 -msgid "Enable notifications" -msgstr "" - -#: ../../addon/twitter/Mod_Twitter.php:65 -msgid "Twitter settings updated." -msgstr "" - -#: ../../addon/twitter/Mod_Twitter.php:78 -msgid "Twitter Crosspost Connector App" -msgstr "" - -#: ../../addon/twitter/Mod_Twitter.php:79 -msgid "Relay public posts to Twitter" -msgstr "" - -#: ../../addon/twitter/Mod_Twitter.php:103 -msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." -msgstr "" - -#: ../../addon/twitter/Mod_Twitter.php:125 -msgid "" -"At this Hubzilla instance the Twitter plugin 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 "" - -#: ../../addon/twitter/Mod_Twitter.php:127 -msgid "Log in with Twitter" -msgstr "" - -#: ../../addon/twitter/Mod_Twitter.php:130 -msgid "Copy the PIN from Twitter here" -msgstr "" - -#: ../../addon/twitter/Mod_Twitter.php:152 -msgid "" -"Note: Due 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 "" - -#: ../../addon/twitter/Mod_Twitter.php:157 -msgid "Twitter post length" -msgstr "" - -#: ../../addon/twitter/Mod_Twitter.php:157 -msgid "Maximum tweet length" -msgstr "" - -#: ../../addon/twitter/Mod_Twitter.php:162 -msgid "Send public postings to Twitter by default" -msgstr "" - -#: ../../addon/twitter/Mod_Twitter.php:162 -msgid "" -"If enabled your public postings will be posted to the associated Twitter " -"account by default" -msgstr "" - -#: ../../addon/twitter/Mod_Twitter.php:181 -msgid "Twitter Crosspost Connector" -msgstr "" - -#: ../../addon/twitter/twitter.php:107 -msgid "Post to Twitter" -msgstr "" - -#: ../../addon/smileybutton/Mod_Smileybutton.php:35 -msgid "Smileybutton App" -msgstr "" - -#: ../../addon/smileybutton/Mod_Smileybutton.php:36 -msgid "Adds a smileybutton to the jot editor" -msgstr "" - -#: ../../addon/smileybutton/Mod_Smileybutton.php:44 -msgid "Hide the button and show the smilies directly." -msgstr "" - -#: ../../addon/smileybutton/Mod_Smileybutton.php:52 -msgid "Smileybutton Settings" -msgstr "" - -#: ../../addon/cart/Settings/Cart.php:56 -msgid "Enable Test Catalog" -msgstr "" - -#: ../../addon/cart/Settings/Cart.php:68 -msgid "Enable Manual Payments" -msgstr "" - -#: ../../addon/cart/Settings/Cart.php:88 -msgid "Base Merchant Currency" -msgstr "" - -#: ../../addon/cart/Settings/Cart.php:111 ../../addon/cart/cart.php:1263 -msgid "Cart Settings" -msgstr "" - -#: ../../addon/cart/myshop.php:30 -msgid "Access Denied." -msgstr "" - -#: ../../addon/cart/myshop.php:111 ../../addon/cart/cart.php:1334 -msgid "Order Not Found" -msgstr "" - -#: ../../addon/cart/myshop.php:186 ../../addon/cart/myshop.php:220 -#: ../../addon/cart/myshop.php:269 ../../addon/cart/myshop.php:327 -msgid "Invalid Item" -msgstr "" - -#: ../../addon/cart/cart.php:159 -msgid "DB Cleanup Failure" -msgstr "" - -#: ../../addon/cart/cart.php:565 -msgid "[cart] Item Added" -msgstr "" - -#: ../../addon/cart/cart.php:953 -msgid "Order already checked out." -msgstr "" - -#: ../../addon/cart/cart.php:1256 -msgid "Drop database tables when uninstalling." -msgstr "" - -#: ../../addon/cart/cart.php:1275 ../../addon/cart/cart.php:1278 -msgid "Shop" -msgstr "" - -#: ../../addon/cart/cart.php:1395 -msgid "Cart utilities for orders and payments" -msgstr "" - -#: ../../addon/cart/cart.php:1433 -msgid "You must be logged into the Grid to shop." -msgstr "" - -#: ../../addon/cart/cart.php:1466 -#: ../../addon/cart/submodules/paypalbutton.php:392 -#: ../../addon/cart/manual_payments.php:68 -msgid "Order not found." -msgstr "" - -#: ../../addon/cart/cart.php:1474 -msgid "Access denied." -msgstr "" - -#: ../../addon/cart/cart.php:1526 ../../addon/cart/cart.php:1669 -msgid "No Order Found" -msgstr "" - -#: ../../addon/cart/cart.php:1535 -msgid "An unknown error has occurred Please start again." -msgstr "" - -#: ../../addon/cart/cart.php:1702 -msgid "Invalid Payment Type. Please start again." -msgstr "" - -#: ../../addon/cart/cart.php:1709 -msgid "Order not found" -msgstr "" - -#: ../../addon/cart/submodules/paypalbutton.php:85 -msgid "Enable Paypal Button Module" -msgstr "" - -#: ../../addon/cart/submodules/paypalbutton.php:93 -msgid "Use Production Key" -msgstr "" - -#: ../../addon/cart/submodules/paypalbutton.php:100 -msgid "Paypal Sandbox Client Key" -msgstr "" - -#: ../../addon/cart/submodules/paypalbutton.php:107 -msgid "Paypal Sandbox Secret Key" -msgstr "" - -#: ../../addon/cart/submodules/paypalbutton.php:113 -msgid "Paypal Production Client Key" -msgstr "" - -#: ../../addon/cart/submodules/paypalbutton.php:120 -msgid "Paypal Production Secret Key" -msgstr "" - -#: ../../addon/cart/submodules/paypalbutton.php:252 -msgid "Paypal button payments are not enabled." -msgstr "" - -#: ../../addon/cart/submodules/paypalbutton.php:270 -msgid "" -"Paypal button payments are not properly configured. Please choose another " -"payment option." -msgstr "" - -#: ../../addon/cart/submodules/manualcat.php:61 -msgid "Enable Manual Cart Module" -msgstr "" - -#: ../../addon/cart/submodules/manualcat.php:173 -#: ../../addon/cart/submodules/hzservices.php:160 -msgid "New Sku" -msgstr "" - -#: ../../addon/cart/submodules/manualcat.php:209 -#: ../../addon/cart/submodules/hzservices.php:195 -msgid "Cannot save edits to locked item." -msgstr "" - -#: ../../addon/cart/submodules/manualcat.php:252 -#: ../../addon/cart/submodules/hzservices.php:644 -msgid "Changes Locked" -msgstr "" - -#: ../../addon/cart/submodules/manualcat.php:256 -#: ../../addon/cart/submodules/hzservices.php:648 -msgid "Item available for purchase." -msgstr "" - -#: ../../addon/cart/submodules/manualcat.php:263 -#: ../../addon/cart/submodules/hzservices.php:655 -msgid "Price" -msgstr "" - -#: ../../addon/cart/submodules/hzservices.php:62 -msgid "Enable Hubzilla Services Module" -msgstr "" - -#: ../../addon/cart/submodules/hzservices.php:243 -#: ../../addon/cart/submodules/hzservices.php:330 -msgid "SKU not found." -msgstr "" - -#: ../../addon/cart/submodules/hzservices.php:296 -#: ../../addon/cart/submodules/hzservices.php:300 -msgid "Invalid Activation Directive." -msgstr "" - -#: ../../addon/cart/submodules/hzservices.php:371 -#: ../../addon/cart/submodules/hzservices.php:375 -msgid "Invalid Deactivation Directive." -msgstr "" - -#: ../../addon/cart/submodules/hzservices.php:561 -msgid "Add to this privacy group" -msgstr "" - -#: ../../addon/cart/submodules/hzservices.php:577 -msgid "Set user service class" -msgstr "" - -#: ../../addon/cart/submodules/hzservices.php:604 -msgid "You must be using a local account to purchase this service." -msgstr "" - -#: ../../addon/cart/submodules/hzservices.php:659 -msgid "Add buyer to privacy group" -msgstr "" - -#: ../../addon/cart/submodules/hzservices.php:664 -msgid "Add buyer as connection" -msgstr "" - -#: ../../addon/cart/submodules/hzservices.php:672 -#: ../../addon/cart/submodules/hzservices.php:714 -msgid "Set Service Class" -msgstr "" - -#: ../../addon/cart/submodules/subscriptions.php:151 -msgid "Enable Subscription Management Module" -msgstr "" - -#: ../../addon/cart/submodules/subscriptions.php:223 -msgid "" -"Cannot include subscription items with different terms in the same order." -msgstr "" - -#: ../../addon/cart/submodules/subscriptions.php:372 -msgid "Select Subscription to Edit" -msgstr "" - -#: ../../addon/cart/submodules/subscriptions.php:380 -msgid "Edit Subscriptions" -msgstr "" - -#: ../../addon/cart/submodules/subscriptions.php:414 -msgid "Subscription SKU" -msgstr "" - -#: ../../addon/cart/submodules/subscriptions.php:419 -msgid "Catalog Description" -msgstr "" - -#: ../../addon/cart/submodules/subscriptions.php:423 -msgid "Subscription available for purchase." -msgstr "" - -#: ../../addon/cart/submodules/subscriptions.php:428 -msgid "Maximum active subscriptions to this item per account." -msgstr "" - -#: ../../addon/cart/submodules/subscriptions.php:431 -msgid "Subscription price." -msgstr "" - -#: ../../addon/cart/submodules/subscriptions.php:435 -msgid "Quantity" -msgstr "" - -#: ../../addon/cart/submodules/subscriptions.php:439 -msgid "Term" -msgstr "" - -#: ../../addon/cart/manual_payments.php:7 -msgid "Error: order mismatch. Please try again." -msgstr "" - -#: ../../addon/cart/manual_payments.php:61 -msgid "Manual payments are not enabled." -msgstr "" - -#: ../../addon/cart/manual_payments.php:77 -msgid "Finished" -msgstr "" - -#: ../../addon/piwik/piwik.php:85 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -msgstr "" - -#: ../../addon/piwik/piwik.php:88 -#, php-format -msgid "" -"If you do not want that your visits are logged this way you can " -"set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." -msgstr "" - -#: ../../addon/piwik/piwik.php:96 -msgid "Piwik Base URL" -msgstr "" - -#: ../../addon/piwik/piwik.php:96 -msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with " -"trailing slash)" -msgstr "" - -#: ../../addon/piwik/piwik.php:97 -msgid "Site ID" -msgstr "" - -#: ../../addon/piwik/piwik.php:98 -msgid "Show opt-out cookie link?" -msgstr "" - -#: ../../addon/piwik/piwik.php:99 -msgid "Asynchronous tracking" -msgstr "" - -#: ../../addon/piwik/piwik.php:100 -msgid "Enable frontend JavaScript error tracking" -msgstr "" - -#: ../../addon/piwik/piwik.php:100 -msgid "This feature requires Piwik >= 2.2.0" -msgstr "" - -#: ../../addon/tour/tour.php:76 -msgid "Edit your profile and change settings." -msgstr "" - -#: ../../addon/tour/tour.php:77 -msgid "Click here to see activity from your connections." -msgstr "" - -#: ../../addon/tour/tour.php:78 -msgid "Click here to see your channel home." -msgstr "" - -#: ../../addon/tour/tour.php:79 -msgid "You can access your private messages from here." -msgstr "" - -#: ../../addon/tour/tour.php:80 -msgid "Create new events here." -msgstr "" - -#: ../../addon/tour/tour.php:81 -msgid "" -"You can accept new connections and change permissions for existing ones " -"here. You can also e.g. create groups of contacts." -msgstr "" - -#: ../../addon/tour/tour.php:82 -msgid "System notifications will arrive here" -msgstr "" - -#: ../../addon/tour/tour.php:83 -msgid "Search for content and users" -msgstr "" - -#: ../../addon/tour/tour.php:84 -msgid "Browse for new contacts" -msgstr "" - -#: ../../addon/tour/tour.php:85 -msgid "Launch installed apps" -msgstr "" - -#: ../../addon/tour/tour.php:86 -msgid "Looking for help? Click here." -msgstr "" - -#: ../../addon/tour/tour.php:87 -msgid "" -"New events have occurred in your network. Click here to see what has " -"happened!" -msgstr "" - -#: ../../addon/tour/tour.php:88 -msgid "You have received a new private message. Click here to see from who!" -msgstr "" - -#: ../../addon/tour/tour.php:89 -msgid "There are events this week. Click here too see which!" -msgstr "" - -#: ../../addon/tour/tour.php:90 -msgid "You have received a new introduction. Click here to see who!" -msgstr "" - -#: ../../addon/tour/tour.php:91 -msgid "" -"There is a new system notification. Click here to see what has happened!" -msgstr "" - -#: ../../addon/tour/tour.php:94 -msgid "Click here to share text, images, videos and sound." -msgstr "" - -#: ../../addon/tour/tour.php:95 -msgid "You can write an optional title for your update (good for long posts)." -msgstr "" - -#: ../../addon/tour/tour.php:96 -msgid "Entering some categories here makes it easier to find your post later." -msgstr "" - -#: ../../addon/tour/tour.php:97 -msgid "Share photos, links, location, etc." -msgstr "" - -#: ../../addon/tour/tour.php:98 -msgid "" -"Only want to share content for a while? Make it expire at a certain date." -msgstr "" - -#: ../../addon/tour/tour.php:99 -msgid "You can password protect content." -msgstr "" - -#: ../../addon/tour/tour.php:100 -msgid "Choose who you share with." -msgstr "" - -#: ../../addon/tour/tour.php:102 -msgid "Click here when you are done." -msgstr "" - -#: ../../addon/tour/tour.php:105 -msgid "Adjust from which channels posts should be displayed." -msgstr "" - -#: ../../addon/tour/tour.php:106 -msgid "Only show posts from channels in the specified privacy group." -msgstr "" - -#: ../../addon/tour/tour.php:110 -msgid "" -"Easily find posts containing tags (keywords preceded by the \"#\" symbol)." -msgstr "" - -#: ../../addon/tour/tour.php:111 -msgid "Easily find posts in given category." -msgstr "" - -#: ../../addon/tour/tour.php:112 -msgid "Easily find posts by date." -msgstr "" - -#: ../../addon/tour/tour.php:113 -msgid "" -"Suggested users who have volounteered to be shown as suggestions, and who we " -"think you might find interesting." -msgstr "" - -#: ../../addon/tour/tour.php:114 -msgid "Here you see channels you have connected to." -msgstr "" - -#: ../../addon/tour/tour.php:115 -msgid "Save your search so you can repeat it at a later date." -msgstr "" - -#: ../../addon/tour/tour.php:118 -msgid "" -"If you see this icon you can be sure that the sender is who it say it is. It " -"is normal that it is not always possible to verify the sender, so the icon " -"will be missing sometimes. There is usually no need to worry about that." -msgstr "" - -#: ../../addon/tour/tour.php:119 -msgid "" -"Danger! It seems someone tried to forge a message! This message is not " -"necessarily from who it says it is from!" -msgstr "" - -#: ../../addon/tour/tour.php:126 -msgid "" -"Welcome to Hubzilla! Would you like to see a tour of the UI?

You can " -"pause it at any time and continue where you left off by reloading the page, " -"or navigting to another page.

You can also advance by pressing the " -"return key" -msgstr "" - -#: ../../addon/sendzid/Mod_Sendzid.php:14 -msgid "Send your identity to all websites" -msgstr "" - -#: ../../addon/sendzid/Mod_Sendzid.php:20 -msgid "Sendzid App" -msgstr "" - -#: ../../addon/sendzid/Mod_Sendzid.php:32 -msgid "Send ZID" -msgstr "" - -#: ../../addon/tictac/tictac.php:21 -msgid "Three Dimensional Tic-Tac-Toe" -msgstr "" - -#: ../../addon/tictac/tictac.php:54 -msgid "3D Tic-Tac-Toe" -msgstr "" - -#: ../../addon/tictac/tictac.php:59 -msgid "New game" -msgstr "" - -#: ../../addon/tictac/tictac.php:60 -msgid "New game with handicap" -msgstr "" - -#: ../../addon/tictac/tictac.php:61 -msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " -msgstr "" - -#: ../../addon/tictac/tictac.php:62 -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 "" - -#: ../../addon/tictac/tictac.php:64 -msgid "" -"The handicap game disables the center position on the middle level because " -"the player claiming this square often has an unfair advantage." -msgstr "" - -#: ../../addon/tictac/tictac.php:183 -msgid "You go first..." -msgstr "" - -#: ../../addon/tictac/tictac.php:188 -msgid "I'm going first this time..." -msgstr "" - -#: ../../addon/tictac/tictac.php:194 -msgid "You won!" -msgstr "" - -#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 -msgid "\"Cat\" game!" -msgstr "" - -#: ../../addon/tictac/tictac.php:223 -msgid "I won!" -msgstr "" - -#: ../../addon/pageheader/Mod_Pageheader.php:22 -msgid "pageheader Settings saved." -msgstr "" - -#: ../../addon/pageheader/Mod_Pageheader.php:34 -msgid "Page Header App" -msgstr "" - -#: ../../addon/pageheader/Mod_Pageheader.php:35 -msgid "Inserts a page header" -msgstr "" - -#: ../../addon/pageheader/Mod_Pageheader.php:43 -msgid "Message to display on every page on this server" -msgstr "" - -#: ../../addon/pageheader/Mod_Pageheader.php:51 -msgid "Page Header" -msgstr "" - -#: ../../addon/authchoose/Mod_Authchoose.php:22 -msgid "" -"Allow magic authentication only to websites of your immediate connections" -msgstr "" - -#: ../../addon/authchoose/Mod_Authchoose.php:28 -#: ../../addon/authchoose/Mod_Authchoose.php:33 -msgid "Authchoose App" -msgstr "" - -#: ../../addon/authchoose/Mod_Authchoose.php:39 -msgid "Authchoose" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:19 -msgid "lonely" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:20 -msgid "drunk" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:21 -msgid "horny" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:22 -msgid "stoned" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:23 -msgid "fucked up" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:24 -msgid "clusterfucked" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:25 -msgid "crazy" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:26 -msgid "hurt" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:27 -msgid "sleepy" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:28 -msgid "grumpy" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:29 -msgid "high" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:30 -msgid "semi-conscious" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:31 -msgid "in love" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:32 -msgid "in lust" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:33 -msgid "naked" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:34 -msgid "stinky" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:35 -msgid "sweaty" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:36 -msgid "bleeding out" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:37 -msgid "victorious" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:38 -msgid "defeated" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:39 -msgid "envious" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:40 -msgid "jealous" -msgstr "" - -#: ../../addon/xmpp/Mod_Xmpp.php:23 -msgid "XMPP settings updated." -msgstr "" - -#: ../../addon/xmpp/Mod_Xmpp.php:35 -msgid "XMPP App" -msgstr "" - -#: ../../addon/xmpp/Mod_Xmpp.php:36 -msgid "Embedded XMPP (Jabber) client" -msgstr "" - -#: ../../addon/xmpp/Mod_Xmpp.php:52 -msgid "Individual credentials" -msgstr "" - -#: ../../addon/xmpp/Mod_Xmpp.php:58 -msgid "Jabber BOSH server" -msgstr "" - -#: ../../addon/xmpp/Mod_Xmpp.php:67 -msgid "XMPP Settings" -msgstr "" - -#: ../../addon/xmpp/xmpp.php:44 -msgid "Jabber BOSH host" -msgstr "" - -#: ../../addon/xmpp/xmpp.php:45 -msgid "Use central userbase" -msgstr "" - -#: ../../addon/xmpp/xmpp.php:45 -msgid "" -"If enabled, members will automatically login to an ejabberd server that has " -"to be installed on this machine with synchronized credentials via the " -"\"auth_ejabberd.php\" script." -msgstr "" - -#: ../../addon/wholikesme/wholikesme.php:29 -msgid "Who likes me?" -msgstr "" - -#: ../../addon/pumpio/Mod_Pumpio.php:40 -msgid "Pump.io Settings saved." -msgstr "" - -#: ../../addon/pumpio/Mod_Pumpio.php:53 -msgid "Pump.io Crosspost Connector App" -msgstr "" - -#: ../../addon/pumpio/Mod_Pumpio.php:54 -msgid "Relay public posts to pump.io" -msgstr "" - -#: ../../addon/pumpio/Mod_Pumpio.php:73 -msgid "Pump.io servername" -msgstr "" - -#: ../../addon/pumpio/Mod_Pumpio.php:73 -msgid "Without \"http://\" or \"https://\"" -msgstr "" - -#: ../../addon/pumpio/Mod_Pumpio.php:77 -msgid "Pump.io username" -msgstr "" - -#: ../../addon/pumpio/Mod_Pumpio.php:77 -msgid "Without the servername" -msgstr "" - -#: ../../addon/pumpio/Mod_Pumpio.php:88 -msgid "You are not authenticated to pumpio" -msgstr "" - -#: ../../addon/pumpio/Mod_Pumpio.php:90 -msgid "(Re-)Authenticate your pump.io connection" -msgstr "" - -#: ../../addon/pumpio/Mod_Pumpio.php:94 -msgid "Post to pump.io by default" -msgstr "" - -#: ../../addon/pumpio/Mod_Pumpio.php:98 -msgid "Should posts be public" -msgstr "" - -#: ../../addon/pumpio/Mod_Pumpio.php:102 -msgid "Mirror all public posts" -msgstr "" - -#: ../../addon/pumpio/Mod_Pumpio.php:112 -msgid "Pump.io Crosspost Connector" -msgstr "" - -#: ../../addon/pumpio/pumpio.php:152 -msgid "You are now authenticated to pumpio." -msgstr "" - -#: ../../addon/pumpio/pumpio.php:153 -msgid "return to the featured settings page" -msgstr "" - -#: ../../addon/pumpio/pumpio.php:168 -msgid "Post to Pump.io" -msgstr "" - -#: ../../addon/ldapauth/ldapauth.php:70 -msgid "An account has been created for you." -msgstr "" - -#: ../../addon/ldapauth/ldapauth.php:77 -msgid "Authentication successful but rejected: account creation is disabled." -msgstr "" - -#: ../../addon/opensearch/opensearch.php:26 -#, php-format -msgctxt "opensearch" -msgid "Search %1$s (%2$s)" -msgstr "" - -#: ../../addon/opensearch/opensearch.php:28 -msgctxt "opensearch" -msgid "$Projectname" -msgstr "" - -#: ../../addon/opensearch/opensearch.php:43 -msgid "Search $Projectname" -msgstr "" - -#: ../../addon/redfiles/redfiles.php:119 -msgid "Redmatrix File Storage Import" -msgstr "" - -#: ../../addon/redfiles/redfiles.php:120 -msgid "This will import all your Redmatrix cloud files to this channel." -msgstr "" - -#: ../../addon/redfiles/redfilehelper.php:64 -msgid "file" -msgstr "" - -#: ../../addon/hubwall/hubwall.php:19 -msgid "Send email to all members" -msgstr "" - -#: ../../addon/hubwall/hubwall.php:73 -#, php-format -msgid "%1$d of %2$d messages sent." -msgstr "" - -#: ../../addon/hubwall/hubwall.php:81 -msgid "Send email to all hub members." -msgstr "" - -#: ../../addon/hubwall/hubwall.php:93 -msgid "Sender Email address" -msgstr "" - -#: ../../addon/hubwall/hubwall.php:94 -msgid "Test mode (only send to hub administrator)" -msgstr "" - -#: ../../include/selectors.php:18 -msgid "Profile to assign new connections" -msgstr "" - -#: ../../include/selectors.php:41 -msgid "Frequently" -msgstr "" - -#: ../../include/selectors.php:42 -msgid "Hourly" -msgstr "" - -#: ../../include/selectors.php:43 -msgid "Twice daily" -msgstr "" - -#: ../../include/selectors.php:44 -msgid "Daily" -msgstr "" - -#: ../../include/selectors.php:45 -msgid "Weekly" -msgstr "" - -#: ../../include/selectors.php:46 -msgid "Monthly" -msgstr "" - -#: ../../include/selectors.php:60 -msgid "Currently Male" -msgstr "" - -#: ../../include/selectors.php:60 -msgid "Currently Female" -msgstr "" - -#: ../../include/selectors.php:60 -msgid "Mostly Male" -msgstr "" - -#: ../../include/selectors.php:60 -msgid "Mostly Female" -msgstr "" - -#: ../../include/selectors.php:60 -msgid "Transgender" -msgstr "" - -#: ../../include/selectors.php:60 -msgid "Intersex" -msgstr "" - -#: ../../include/selectors.php:60 -msgid "Transsexual" -msgstr "" - -#: ../../include/selectors.php:60 -msgid "Hermaphrodite" -msgstr "" - -#: ../../include/selectors.php:60 ../../include/channel.php:1540 -msgid "Neuter" -msgstr "" - -#: ../../include/selectors.php:60 ../../include/channel.php:1542 -msgid "Non-specific" -msgstr "" - -#: ../../include/selectors.php:60 -msgid "Undecided" -msgstr "" - -#: ../../include/selectors.php:96 ../../include/selectors.php:115 -msgid "Males" -msgstr "" - -#: ../../include/selectors.php:96 ../../include/selectors.php:115 -msgid "Females" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Gay" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Lesbian" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "No Preference" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Bisexual" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Autosexual" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Abstinent" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Virgin" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Deviant" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Fetish" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Oodles" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Nonsexual" -msgstr "" - -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Single" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Lonely" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Available" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Unavailable" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Has crush" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Infatuated" -msgstr "" - -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Dating" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Unfaithful" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Sex Addict" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Friends/Benefits" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Casual" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Engaged" -msgstr "" - -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Married" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Imaginarily married" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Partners" -msgstr "" - -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Cohabiting" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Common law" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Happy" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Not looking" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Swinger" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Betrayed" -msgstr "" - -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Separated" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Unstable" -msgstr "" - -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Divorced" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Imaginarily divorced" -msgstr "" - -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Widowed" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Uncertain" -msgstr "" - -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "It's complicated" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Don't care" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Ask me" -msgstr "" - -#: ../../include/conversation.php:169 -#, php-format -msgid "likes %1$s's %2$s" -msgstr "" - -#: ../../include/conversation.php:172 -#, php-format -msgid "doesn't like %1$s's %2$s" -msgstr "" - -#: ../../include/conversation.php:212 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "" - -#: ../../include/conversation.php:247 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:251 ../../include/text.php:1176 -#: ../../include/text.php:1180 -msgid "poked" -msgstr "" - -#: ../../include/conversation.php:739 -#, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: ../../include/conversation.php:759 -msgid "Categories:" -msgstr "" - -#: ../../include/conversation.php:760 -msgid "Filed under:" -msgstr "" - -#: ../../include/conversation.php:785 -msgid "View in context" -msgstr "" - -#: ../../include/conversation.php:886 -msgid "remove" -msgstr "" - -#: ../../include/conversation.php:890 -msgid "Loading..." -msgstr "" - -#: ../../include/conversation.php:892 -msgid "Delete Selected Items" -msgstr "" - -#: ../../include/conversation.php:935 -msgid "View Source" -msgstr "" - -#: ../../include/conversation.php:945 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:954 -msgid "Unfollow Thread" -msgstr "" - -#: ../../include/conversation.php:1068 -msgid "Edit Connection" -msgstr "" - -#: ../../include/conversation.php:1078 -msgid "Message" -msgstr "" - -#: ../../include/conversation.php:1212 -#, php-format -msgid "%s likes this." -msgstr "" - -#: ../../include/conversation.php:1212 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: ../../include/conversation.php:1216 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1218 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1224 -msgid "and" -msgstr "" - -#: ../../include/conversation.php:1227 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1228 -#, php-format -msgid "%s like this." -msgstr "" - -#: ../../include/conversation.php:1228 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: ../../include/conversation.php:1708 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1711 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1714 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1717 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1720 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1723 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/bookmarks.php:34 -#, php-format -msgid "%1$s's bookmarks" -msgstr "" - -#: ../../include/import.php:26 -msgid "Unable to import a removed channel." -msgstr "" - -#: ../../include/import.php:52 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "" - -#: ../../include/import.php:117 -msgid "Cloned channel not found. Import failed." -msgstr "" - -#: ../../include/text.php:501 -msgid "prev" -msgstr "" - -#: ../../include/text.php:503 -msgid "first" -msgstr "" - -#: ../../include/text.php:532 -msgid "last" -msgstr "" - -#: ../../include/text.php:535 -msgid "next" -msgstr "" - -#: ../../include/text.php:553 -msgid "older" -msgstr "" - -#: ../../include/text.php:555 -msgid "newer" -msgstr "" - -#: ../../include/text.php:979 -msgid "No connections" -msgstr "" - -#: ../../include/text.php:1011 -#, php-format -msgid "View all %s connections" -msgstr "" - -#: ../../include/text.php:1073 -#, php-format -msgid "Network: %s" -msgstr "" - -#: ../../include/text.php:1176 ../../include/text.php:1180 -msgid "poke" -msgstr "" - -#: ../../include/text.php:1181 -msgid "ping" -msgstr "" - -#: ../../include/text.php:1181 -msgid "pinged" -msgstr "" - -#: ../../include/text.php:1182 -msgid "prod" -msgstr "" - -#: ../../include/text.php:1182 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:1183 -msgid "slap" -msgstr "" - -#: ../../include/text.php:1183 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:1184 -msgid "finger" -msgstr "" - -#: ../../include/text.php:1184 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:1185 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:1185 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:1208 -msgid "happy" -msgstr "" - -#: ../../include/text.php:1209 -msgid "sad" -msgstr "" - -#: ../../include/text.php:1210 -msgid "mellow" -msgstr "" - -#: ../../include/text.php:1211 -msgid "tired" -msgstr "" - -#: ../../include/text.php:1212 -msgid "perky" -msgstr "" - -#: ../../include/text.php:1213 -msgid "angry" -msgstr "" - -#: ../../include/text.php:1214 -msgid "stupefied" -msgstr "" - -#: ../../include/text.php:1215 -msgid "puzzled" -msgstr "" - -#: ../../include/text.php:1216 -msgid "interested" -msgstr "" - -#: ../../include/text.php:1217 -msgid "bitter" -msgstr "" - -#: ../../include/text.php:1218 -msgid "cheerful" -msgstr "" - -#: ../../include/text.php:1219 -msgid "alive" -msgstr "" - -#: ../../include/text.php:1220 -msgid "annoyed" -msgstr "" - -#: ../../include/text.php:1221 -msgid "anxious" -msgstr "" - -#: ../../include/text.php:1222 -msgid "cranky" -msgstr "" - -#: ../../include/text.php:1223 -msgid "disturbed" -msgstr "" - -#: ../../include/text.php:1224 -msgid "frustrated" -msgstr "" - -#: ../../include/text.php:1225 -msgid "depressed" -msgstr "" - -#: ../../include/text.php:1226 -msgid "motivated" -msgstr "" - -#: ../../include/text.php:1227 -msgid "relaxed" -msgstr "" - -#: ../../include/text.php:1228 -msgid "surprised" -msgstr "" - -#: ../../include/text.php:1416 ../../include/js_strings.php:95 -msgid "Monday" -msgstr "" - -#: ../../include/text.php:1416 ../../include/js_strings.php:96 -msgid "Tuesday" -msgstr "" - -#: ../../include/text.php:1416 ../../include/js_strings.php:97 -msgid "Wednesday" -msgstr "" - -#: ../../include/text.php:1416 ../../include/js_strings.php:98 -msgid "Thursday" -msgstr "" - -#: ../../include/text.php:1416 ../../include/js_strings.php:99 -msgid "Friday" -msgstr "" - -#: ../../include/text.php:1416 ../../include/js_strings.php:100 -msgid "Saturday" -msgstr "" - -#: ../../include/text.php:1416 ../../include/js_strings.php:94 -msgid "Sunday" -msgstr "" - -#: ../../include/text.php:1420 ../../include/js_strings.php:70 -msgid "January" -msgstr "" - -#: ../../include/text.php:1420 ../../include/js_strings.php:71 -msgid "February" -msgstr "" - -#: ../../include/text.php:1420 ../../include/js_strings.php:72 -msgid "March" -msgstr "" - -#: ../../include/text.php:1420 ../../include/js_strings.php:73 -msgid "April" -msgstr "" - -#: ../../include/text.php:1420 -msgid "May" -msgstr "" - -#: ../../include/text.php:1420 ../../include/js_strings.php:75 -msgid "June" -msgstr "" - -#: ../../include/text.php:1420 ../../include/js_strings.php:76 -msgid "July" -msgstr "" - -#: ../../include/text.php:1420 ../../include/js_strings.php:77 -msgid "August" -msgstr "" - -#: ../../include/text.php:1420 ../../include/js_strings.php:78 -msgid "September" -msgstr "" - -#: ../../include/text.php:1420 ../../include/js_strings.php:79 -msgid "October" -msgstr "" - -#: ../../include/text.php:1420 ../../include/js_strings.php:80 -msgid "November" -msgstr "" - -#: ../../include/text.php:1420 ../../include/js_strings.php:81 -msgid "December" -msgstr "" - -#: ../../include/text.php:1494 -msgid "Unknown Attachment" -msgstr "" - -#: ../../include/text.php:1496 ../../include/feedutils.php:858 -msgid "unknown" -msgstr "" - -#: ../../include/text.php:1532 -msgid "remove category" -msgstr "" - -#: ../../include/text.php:1606 -msgid "remove from file" -msgstr "" - -#: ../../include/text.php:1765 ../../include/message.php:13 -msgid "Download binary/encrypted content" -msgstr "" - -#: ../../include/text.php:1935 ../../include/language.php:423 -msgid "default" -msgstr "" - -#: ../../include/text.php:1943 -msgid "Page layout" -msgstr "" - -#: ../../include/text.php:1943 -msgid "You can create your own with the layouts tool" -msgstr "" - -#: ../../include/text.php:1954 -msgid "HTML" -msgstr "" - -#: ../../include/text.php:1957 -msgid "Comanche Layout" -msgstr "" - -#: ../../include/text.php:1962 -msgid "PHP" -msgstr "" - -#: ../../include/text.php:1971 -msgid "Page content type" -msgstr "" - -#: ../../include/text.php:2104 -msgid "activity" -msgstr "" - -#: ../../include/text.php:2205 -msgid "a-z, 0-9, -, and _ only" -msgstr "" - -#: ../../include/text.php:2531 -msgid "Design Tools" -msgstr "" - -#: ../../include/text.php:2537 -msgid "Pages" -msgstr "" - -#: ../../include/text.php:2559 -msgid "Import website..." -msgstr "" - -#: ../../include/text.php:2560 -msgid "Select folder to import" -msgstr "" - -#: ../../include/text.php:2561 -msgid "Import from a zipped folder:" -msgstr "" - -#: ../../include/text.php:2562 -msgid "Import from cloud files:" -msgstr "" - -#: ../../include/text.php:2563 -msgid "/cloud/channel/path/to/folder" -msgstr "" - -#: ../../include/text.php:2564 -msgid "Enter path to website files" -msgstr "" - -#: ../../include/text.php:2565 -msgid "Select folder" -msgstr "" - -#: ../../include/text.php:2566 -msgid "Export website..." -msgstr "" - -#: ../../include/text.php:2567 -msgid "Export to a zip file" -msgstr "" - -#: ../../include/text.php:2568 -msgid "website.zip" -msgstr "" - -#: ../../include/text.php:2569 -msgid "Enter a name for the zip file." -msgstr "" - -#: ../../include/text.php:2570 -msgid "Export to cloud files" -msgstr "" - -#: ../../include/text.php:2571 -msgid "/path/to/export/folder" -msgstr "" - -#: ../../include/text.php:2572 -msgid "Enter a path to a cloud files destination." -msgstr "" - -#: ../../include/text.php:2573 -msgid "Specify folder" -msgstr "" - -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "" - -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "" - -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "" - -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "" - -#: ../../include/contact_widgets.php:218 -msgid "Common Connections" -msgstr "" - -#: ../../include/contact_widgets.php:222 -#, php-format -msgid "View all %d common connections" -msgstr "" - -#: ../../include/markdown.php:198 ../../include/bbcode.php:347 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "" - -#: ../../include/follow.php:37 -msgid "Channel is blocked on this site." -msgstr "" - -#: ../../include/follow.php:42 -msgid "Channel location missing." -msgstr "" - -#: ../../include/follow.php:84 -msgid "Response from remote channel was incomplete." -msgstr "" - -#: ../../include/follow.php:96 -msgid "Premium channel - please visit:" -msgstr "" - -#: ../../include/follow.php:110 -msgid "Channel was deleted and no longer exists." -msgstr "" - -#: ../../include/follow.php:165 -msgid "Remote channel or protocol unavailable." -msgstr "" - -#: ../../include/follow.php:188 -msgid "Channel discovery failed." -msgstr "" - -#: ../../include/follow.php:200 -msgid "Protocol disabled." -msgstr "" - -#: ../../include/follow.php:211 -msgid "Cannot connect to yourself." -msgstr "" - -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "" - -#: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "" - -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "" - -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "" - -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "" - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "" - -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "" - -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "" - -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "" - -#: ../../include/js_strings.php:26 -msgid "lovely" -msgstr "" - -#: ../../include/js_strings.php:27 -msgid "wonderful" -msgstr "" - -#: ../../include/js_strings.php:28 -msgid "fantastic" -msgstr "" - -#: ../../include/js_strings.php:29 -msgid "great" -msgstr "" - -#: ../../include/js_strings.php:30 -msgid "" -"Your chosen nickname was either already taken or not valid. Please use our " -"suggestion (" -msgstr "" - -#: ../../include/js_strings.php:31 -msgid ") or enter a new one." -msgstr "" - -#: ../../include/js_strings.php:32 -msgid "Thank you, this nickname is valid." -msgstr "" - -#: ../../include/js_strings.php:33 -msgid "A channel name is required." -msgstr "" - -#: ../../include/js_strings.php:34 -msgid "This is a " -msgstr "" - -#: ../../include/js_strings.php:35 -msgid " channel name" -msgstr "" - -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d minutes" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/js_strings.php:42 -#, php-format -msgid "about %d hours" -msgid_plural "about %d hours" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/js_strings.php:43 -#, php-format -msgid "%d days" -msgid_plural "%d days" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/js_strings.php:44 -#, php-format -msgid "%d months" -msgid_plural "%d months" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/js_strings.php:45 -#, php-format -msgid "%d years" -msgid_plural "%d years" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/js_strings.php:50 -msgid "timeago.prefixAgo" -msgstr "" - -#: ../../include/js_strings.php:51 -msgid "timeago.prefixFromNow" -msgstr "" - -#: ../../include/js_strings.php:52 -msgid "timeago.suffixAgo" -msgstr "" - -#: ../../include/js_strings.php:53 -msgid "timeago.suffixFromNow" -msgstr "" - -#: ../../include/js_strings.php:56 -msgid "less than a minute" -msgstr "" - -#: ../../include/js_strings.php:57 -msgid "about a minute" -msgstr "" - -#: ../../include/js_strings.php:59 -msgid "about an hour" -msgstr "" - -#: ../../include/js_strings.php:61 -msgid "a day" -msgstr "" - -#: ../../include/js_strings.php:63 -msgid "about a month" -msgstr "" - -#: ../../include/js_strings.php:65 -msgid "about a year" -msgstr "" - -#: ../../include/js_strings.php:67 -msgid " " -msgstr "" - -#: ../../include/js_strings.php:68 -msgid "timeago.numbers" -msgstr "" - -#: ../../include/js_strings.php:74 -msgctxt "long" -msgid "May" -msgstr "" - -#: ../../include/js_strings.php:82 -msgid "Jan" -msgstr "" - -#: ../../include/js_strings.php:83 -msgid "Feb" -msgstr "" - -#: ../../include/js_strings.php:84 -msgid "Mar" -msgstr "" - -#: ../../include/js_strings.php:85 -msgid "Apr" -msgstr "" - -#: ../../include/js_strings.php:86 -msgctxt "short" -msgid "May" -msgstr "" - -#: ../../include/js_strings.php:87 -msgid "Jun" -msgstr "" - -#: ../../include/js_strings.php:88 -msgid "Jul" -msgstr "" - -#: ../../include/js_strings.php:89 -msgid "Aug" -msgstr "" - -#: ../../include/js_strings.php:90 -msgid "Sep" -msgstr "" - -#: ../../include/js_strings.php:91 -msgid "Oct" -msgstr "" - -#: ../../include/js_strings.php:92 -msgid "Nov" -msgstr "" - -#: ../../include/js_strings.php:93 -msgid "Dec" -msgstr "" - -#: ../../include/js_strings.php:101 -msgid "Sun" -msgstr "" - -#: ../../include/js_strings.php:102 -msgid "Mon" -msgstr "" - -#: ../../include/js_strings.php:103 -msgid "Tue" -msgstr "" - -#: ../../include/js_strings.php:104 -msgid "Wed" -msgstr "" - -#: ../../include/js_strings.php:105 -msgid "Thu" -msgstr "" - -#: ../../include/js_strings.php:106 -msgid "Fri" -msgstr "" - -#: ../../include/js_strings.php:107 -msgid "Sat" -msgstr "" - -#: ../../include/js_strings.php:108 -msgctxt "calendar" -msgid "today" -msgstr "" - -#: ../../include/js_strings.php:109 -msgctxt "calendar" -msgid "month" -msgstr "" - -#: ../../include/js_strings.php:110 -msgctxt "calendar" -msgid "week" -msgstr "" - -#: ../../include/js_strings.php:111 -msgctxt "calendar" -msgid "day" -msgstr "" - -#: ../../include/js_strings.php:112 -msgctxt "calendar" -msgid "All day" -msgstr "" - -#: ../../include/message.php:41 -msgid "Unable to determine sender." -msgstr "" - -#: ../../include/message.php:80 -msgid "No recipient provided." -msgstr "" - -#: ../../include/message.php:85 -msgid "[no subject]" -msgstr "" - -#: ../../include/message.php:215 -msgid "Stored post could not be verified." -msgstr "" - -#: ../../include/activities.php:42 -msgid " and " -msgstr "" - -#: ../../include/activities.php:50 -msgid "public profile" -msgstr "" - -#: ../../include/activities.php:59 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: ../../include/activities.php:60 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "" - -#: ../../include/activities.php:63 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" - -#: ../../include/attach.php:267 ../../include/attach.php:376 -msgid "Item was not found." -msgstr "" - -#: ../../include/attach.php:284 -msgid "Unknown error." -msgstr "" - -#: ../../include/attach.php:569 -msgid "No source file." -msgstr "" - -#: ../../include/attach.php:591 -msgid "Cannot locate file to replace" -msgstr "" - -#: ../../include/attach.php:610 -msgid "Cannot locate file to revise/update" -msgstr "" - -#: ../../include/attach.php:752 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "" - -#: ../../include/attach.php:773 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "" - -#: ../../include/attach.php:955 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "" - -#: ../../include/attach.php:984 -msgid "Stored file could not be verified. Upload failed." -msgstr "" - -#: ../../include/attach.php:1058 ../../include/attach.php:1074 -msgid "Path not available." -msgstr "" - -#: ../../include/attach.php:1123 ../../include/attach.php:1288 -msgid "Empty pathname" -msgstr "" - -#: ../../include/attach.php:1149 -msgid "duplicate filename or path" -msgstr "" - -#: ../../include/attach.php:1174 -msgid "Path not found." -msgstr "" - -#: ../../include/attach.php:1242 -msgid "mkdir failed." -msgstr "" - -#: ../../include/attach.php:1246 -msgid "database storage failed." -msgstr "" - -#: ../../include/attach.php:1294 -msgid "Empty path" -msgstr "" - -#: ../../include/security.php:541 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "" - -#: ../../include/items.php:955 ../../include/items.php:1015 -msgid "(Unknown)" -msgstr "" - -#: ../../include/items.php:1203 -msgid "Visible to anybody on the internet." -msgstr "" - -#: ../../include/items.php:1205 -msgid "Visible to you only." -msgstr "" - -#: ../../include/items.php:1207 -msgid "Visible to anybody in this network." -msgstr "" - -#: ../../include/items.php:1209 -msgid "Visible to anybody authenticated." -msgstr "" - -#: ../../include/items.php:1211 -#, php-format -msgid "Visible to anybody on %s." -msgstr "" - -#: ../../include/items.php:1213 -msgid "Visible to all connections." -msgstr "" - -#: ../../include/items.php:1215 -msgid "Visible to approved connections." -msgstr "" - -#: ../../include/items.php:1217 -msgid "Visible to specific connections." -msgstr "" - -#: ../../include/items.php:4291 -msgid "Privacy group is empty." -msgstr "" - -#: ../../include/items.php:4298 -#, php-format -msgid "Privacy group: %s" -msgstr "" - -#: ../../include/items.php:4310 -msgid "Connection not found." -msgstr "" - -#: ../../include/items.php:4659 -msgid "profile photo" -msgstr "" - -#: ../../include/items.php:4851 -#, php-format -msgid "[Edited %s]" -msgstr "" - -#: ../../include/items.php:4851 -msgctxt "edit_activity" -msgid "Post" -msgstr "" - -#: ../../include/items.php:4851 -msgctxt "edit_activity" -msgid "Comment" -msgstr "" - -#: ../../include/channel.php:43 -msgid "Unable to obtain identity information from database" -msgstr "" - -#: ../../include/channel.php:76 -msgid "Empty name" -msgstr "" - -#: ../../include/channel.php:79 -msgid "Name too long" -msgstr "" - -#: ../../include/channel.php:196 -msgid "No account identifier" -msgstr "" - -#: ../../include/channel.php:208 -msgid "Nickname is required." -msgstr "" - -#: ../../include/channel.php:287 -msgid "Unable to retrieve created identity" -msgstr "" - -#: ../../include/channel.php:429 -msgid "Default Profile" -msgstr "" - -#: ../../include/channel.php:588 ../../include/channel.php:677 -msgid "Unable to retrieve modified identity" -msgstr "" - -#: ../../include/channel.php:1353 -msgid "Create New Profile" -msgstr "" - -#: ../../include/channel.php:1374 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/channel.php:1451 ../../include/channel.php:1579 -msgid "Gender:" -msgstr "" - -#: ../../include/channel.php:1453 ../../include/channel.php:1647 -msgid "Homepage:" -msgstr "" - -#: ../../include/channel.php:1454 -msgid "Online Now" -msgstr "" - -#: ../../include/channel.php:1507 -msgid "Change your profile photo" -msgstr "" - -#: ../../include/channel.php:1538 -msgid "Trans" -msgstr "" - -#: ../../include/channel.php:1584 -msgid "Like this channel" -msgstr "" - -#: ../../include/channel.php:1608 -msgid "j F, Y" -msgstr "" - -#: ../../include/channel.php:1609 -msgid "j F" -msgstr "" - -#: ../../include/channel.php:1616 -msgid "Birthday:" -msgstr "" - -#: ../../include/channel.php:1629 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: ../../include/channel.php:1641 -msgid "Tags:" -msgstr "" - -#: ../../include/channel.php:1645 -msgid "Sexual Preference:" -msgstr "" - -#: ../../include/channel.php:1651 -msgid "Political Views:" -msgstr "" - -#: ../../include/channel.php:1653 -msgid "Religion:" -msgstr "" - -#: ../../include/channel.php:1657 -msgid "Hobbies/Interests:" -msgstr "" - -#: ../../include/channel.php:1659 -msgid "Likes:" -msgstr "" - -#: ../../include/channel.php:1661 -msgid "Dislikes:" -msgstr "" - -#: ../../include/channel.php:1663 -msgid "Contact information and Social Networks:" -msgstr "" - -#: ../../include/channel.php:1665 -msgid "My other channels:" -msgstr "" - -#: ../../include/channel.php:1667 -msgid "Musical interests:" -msgstr "" - -#: ../../include/channel.php:1669 -msgid "Books, literature:" -msgstr "" - -#: ../../include/channel.php:1671 -msgid "Television:" -msgstr "" - -#: ../../include/channel.php:1673 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: ../../include/channel.php:1675 -msgid "Love/Romance:" -msgstr "" - -#: ../../include/channel.php:1677 -msgid "Work/employment:" -msgstr "" - -#: ../../include/channel.php:1679 -msgid "School/education:" -msgstr "" - -#: ../../include/channel.php:1702 -msgid "Like this thing" -msgstr "" - -#: ../../include/event.php:28 ../../include/event.php:75 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: ../../include/event.php:36 ../../include/event.php:79 -msgid "Starts:" -msgstr "" - -#: ../../include/event.php:46 ../../include/event.php:83 -msgid "Finishes:" -msgstr "" - -#: ../../include/event.php:1020 -msgid "This event has been added to your calendar." -msgstr "" - -#: ../../include/event.php:1239 -msgid "Not specified" -msgstr "" - -#: ../../include/event.php:1240 -msgid "Needs Action" -msgstr "" - -#: ../../include/event.php:1241 -msgid "Completed" -msgstr "" - -#: ../../include/event.php:1242 -msgid "In Process" -msgstr "" - -#: ../../include/event.php:1243 -msgid "Cancelled" -msgstr "" - -#: ../../include/event.php:1322 ../../include/connections.php:698 -msgid "Home, Voice" -msgstr "" - -#: ../../include/event.php:1323 ../../include/connections.php:699 -msgid "Home, Fax" -msgstr "" - -#: ../../include/event.php:1325 ../../include/connections.php:701 -msgid "Work, Voice" -msgstr "" - -#: ../../include/event.php:1326 ../../include/connections.php:702 -msgid "Work, Fax" -msgstr "" - -#: ../../include/network.php:1718 -msgid "GNU-Social" -msgstr "" - -#: ../../include/network.php:1719 -msgid "RSS/Atom" -msgstr "" - -#: ../../include/network.php:1723 -msgid "Facebook" -msgstr "" - -#: ../../include/network.php:1725 -msgid "LinkedIn" -msgstr "" - -#: ../../include/network.php:1726 -msgid "XMPP/IM" -msgstr "" - -#: ../../include/network.php:1727 -msgid "MySpace" -msgstr "" - -#: ../../include/language.php:436 -msgid "Select an alternate language" -msgstr "" - -#: ../../include/acl_selectors.php:113 -msgid "Who can see this?" -msgstr "" - -#: ../../include/acl_selectors.php:114 -msgid "Custom selection" -msgstr "" - -#: ../../include/acl_selectors.php:115 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " -"the scope of \"Show\"." -msgstr "" - -#: ../../include/acl_selectors.php:116 -msgid "Show" -msgstr "" - -#: ../../include/acl_selectors.php:117 -msgid "Don't show" -msgstr "" - -#: ../../include/acl_selectors.php:150 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These " -"permissions set who is allowed to view the post." -msgstr "" - -#: ../../include/bbcode.php:200 ../../include/bbcode.php:1190 -#: ../../include/bbcode.php:1193 ../../include/bbcode.php:1198 -#: ../../include/bbcode.php:1201 ../../include/bbcode.php:1204 -#: ../../include/bbcode.php:1207 ../../include/bbcode.php:1212 -#: ../../include/bbcode.php:1215 ../../include/bbcode.php:1220 -#: ../../include/bbcode.php:1223 ../../include/bbcode.php:1226 -#: ../../include/bbcode.php:1229 -msgid "Image/photo" -msgstr "" - -#: ../../include/bbcode.php:239 ../../include/bbcode.php:1240 -msgid "Encrypted content" -msgstr "" - -#: ../../include/bbcode.php:255 -#, php-format -msgid "Install %1$s element %2$s" -msgstr "" - -#: ../../include/bbcode.php:259 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "" - -#: ../../include/bbcode.php:339 -msgid "card" -msgstr "" - -#: ../../include/bbcode.php:341 -msgid "article" -msgstr "" - -#: ../../include/bbcode.php:424 ../../include/bbcode.php:432 -msgid "Click to open/close" -msgstr "" - -#: ../../include/bbcode.php:432 -msgid "spoiler" -msgstr "" - -#: ../../include/bbcode.php:445 -msgid "View article" -msgstr "" - -#: ../../include/bbcode.php:445 -msgid "View summary" -msgstr "" - -#: ../../include/bbcode.php:1178 -msgid "$1 wrote:" -msgstr "" - -#: ../../include/oembed.php:226 -msgid "View PDF" -msgstr "" - -#: ../../include/oembed.php:356 -msgid " by " -msgstr "" - -#: ../../include/oembed.php:357 -msgid " on " -msgstr "" - -#: ../../include/oembed.php:386 -msgid "Embedded content" -msgstr "" - -#: ../../include/oembed.php:395 -msgid "Embedding disabled" -msgstr "" - -#: ../../include/zid.php:351 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "" - -#: ../../include/features.php:86 ../../include/features.php:273 -msgid "Start calendar week on Monday" -msgstr "" - -#: ../../include/features.php:87 ../../include/features.php:274 -msgid "Default is Sunday" -msgstr "" - -#: ../../include/features.php:100 -msgid "Search by Date" -msgstr "" - -#: ../../include/features.php:101 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: ../../include/features.php:108 -msgid "Tag Cloud" -msgstr "" - -#: ../../include/features.php:109 -msgid "Provide a personal tag cloud on your channel page" -msgstr "" - -#: ../../include/features.php:116 ../../include/features.php:373 -msgid "Use blog/list mode" -msgstr "" - -#: ../../include/features.php:117 ../../include/features.php:374 -msgid "Comments will be displayed separately" -msgstr "" - -#: ../../include/features.php:129 -msgid "Connection Filtering" -msgstr "" - -#: ../../include/features.php:130 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "" - -#: ../../include/features.php:138 -msgid "Conversation" -msgstr "" - -#: ../../include/features.php:142 -msgid "Community Tagging" -msgstr "" - -#: ../../include/features.php:143 -msgid "Ability to tag existing posts" -msgstr "" - -#: ../../include/features.php:150 -msgid "Emoji Reactions" -msgstr "" - -#: ../../include/features.php:151 -msgid "Add emoji reaction ability to posts" -msgstr "" - -#: ../../include/features.php:158 -msgid "Dislike Posts" -msgstr "" - -#: ../../include/features.php:159 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: ../../include/features.php:166 -msgid "Star Posts" -msgstr "" - -#: ../../include/features.php:167 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/features.php:180 -msgid "Advanced Directory Search" -msgstr "" - -#: ../../include/features.php:181 -msgid "Allows creation of complex directory search queries" -msgstr "" - -#: ../../include/features.php:190 -msgid "Editor" -msgstr "" - -#: ../../include/features.php:194 -msgid "Post Categories" -msgstr "" - -#: ../../include/features.php:195 -msgid "Add categories to your posts" -msgstr "" - -#: ../../include/features.php:203 -msgid "Large Photos" -msgstr "" - -#: ../../include/features.php:204 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "" - -#: ../../include/features.php:211 -msgid "Even More Encryption" -msgstr "" - -#: ../../include/features.php:212 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "" - -#: ../../include/features.php:219 -msgid "Enable Voting Tools" -msgstr "" - -#: ../../include/features.php:220 -msgid "Provide a class of post which others can vote on" -msgstr "" - -#: ../../include/features.php:227 -msgid "Disable Comments" -msgstr "" - -#: ../../include/features.php:228 -msgid "Provide the option to disable comments for a post" -msgstr "" - -#: ../../include/features.php:235 -msgid "Delayed Posting" -msgstr "" - -#: ../../include/features.php:236 -msgid "Allow posts to be published at a later date" -msgstr "" - -#: ../../include/features.php:243 -msgid "Content Expiration" -msgstr "" - -#: ../../include/features.php:244 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "" - -#: ../../include/features.php:251 -msgid "Suppress Duplicate Posts/Comments" -msgstr "" - -#: ../../include/features.php:252 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "" - -#: ../../include/features.php:259 -msgid "Auto-save drafts of posts and comments" -msgstr "" - -#: ../../include/features.php:260 -msgid "" -"Automatically saves post and comment drafts in local browser storage to help " -"prevent accidental loss of compositions" -msgstr "" - -#: ../../include/features.php:281 -msgid "Smart Birthdays" -msgstr "" - -#: ../../include/features.php:282 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "" - -#: ../../include/features.php:289 -msgid "Event Timezone Selection" -msgstr "" - -#: ../../include/features.php:290 -msgid "Allow event creation in timezones other than your own." -msgstr "" - -#: ../../include/features.php:299 -msgid "Manage" -msgstr "" - -#: ../../include/features.php:303 -msgid "Navigation Channel Select" -msgstr "" - -#: ../../include/features.php:304 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "" - -#: ../../include/features.php:318 -msgid "Save search terms for re-use" -msgstr "" - -#: ../../include/features.php:326 -msgid "Ability to file posts under folders" -msgstr "" - -#: ../../include/features.php:333 -msgid "Alternate Stream Order" -msgstr "" - -#: ../../include/features.php:334 -msgid "" -"Ability to order the stream by last post date, last comment date or " -"unthreaded activities" -msgstr "" - -#: ../../include/features.php:341 -msgid "Contact Filter" -msgstr "" - -#: ../../include/features.php:342 -msgid "Ability to display only posts of a selected contact" -msgstr "" - -#: ../../include/features.php:349 -msgid "Forum Filter" -msgstr "" - -#: ../../include/features.php:350 -msgid "Ability to display only posts of a specific forum" -msgstr "" - -#: ../../include/features.php:357 -msgid "Personal Posts Filter" -msgstr "" - -#: ../../include/features.php:358 -msgid "Ability to display only posts that you've interacted on" -msgstr "" - -#: ../../include/features.php:366 -msgid "Show friend and connection suggestions" -msgstr "" - -#: ../../include/features.php:387 -msgid "Photo Location" -msgstr "" - -#: ../../include/features.php:388 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "" - -#: ../../include/features.php:401 -msgid "Advanced Profiles" -msgstr "" - -#: ../../include/features.php:402 -msgid "Additional profile sections and selections" -msgstr "" - -#: ../../include/features.php:409 -msgid "Profile Import/Export" -msgstr "" - -#: ../../include/features.php:410 -msgid "Save and load profile details across sites/channels" -msgstr "" - -#: ../../include/features.php:417 -msgid "Multiple Profiles" -msgstr "" - -#: ../../include/features.php:418 -msgid "Ability to create multiple profiles" -msgstr "" - -#: ../../include/taxonomy.php:320 -msgid "Trending" -msgstr "" - -#: ../../include/taxonomy.php:552 -msgid "Keywords" -msgstr "" - -#: ../../include/taxonomy.php:573 -msgid "have" -msgstr "" - -#: ../../include/taxonomy.php:573 -msgid "has" -msgstr "" - -#: ../../include/taxonomy.php:574 -msgid "want" -msgstr "" - -#: ../../include/taxonomy.php:574 -msgid "wants" -msgstr "" - -#: ../../include/taxonomy.php:575 -msgid "likes" -msgstr "" - -#: ../../include/taxonomy.php:576 -msgid "dislikes" -msgstr "" - -#: ../../include/account.php:36 -msgid "Not a valid email address" -msgstr "" - -#: ../../include/account.php:38 -msgid "Your email domain is not among those allowed on this site" -msgstr "" - -#: ../../include/account.php:44 -msgid "Your email address is already registered at this site." -msgstr "" - -#: ../../include/account.php:76 -msgid "An invitation is required." -msgstr "" - -#: ../../include/account.php:80 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/account.php:158 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/account.php:225 -msgid "Failed to store account information." -msgstr "" - -#: ../../include/account.php:314 -#, php-format -msgid "Registration confirmation for %s" -msgstr "" - -#: ../../include/account.php:385 -#, php-format -msgid "Registration request at %s" -msgstr "" - -#: ../../include/account.php:407 -msgid "your registration password" -msgstr "" - -#: ../../include/account.php:413 ../../include/account.php:475 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../include/account.php:486 -msgid "Account approved." -msgstr "" - -#: ../../include/account.php:526 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: ../../include/account.php:805 ../../include/account.php:807 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/account.php:813 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/account.php:818 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/datetime.php:140 -msgid "Birthday" -msgstr "" - -#: ../../include/datetime.php:140 -msgid "Age: " -msgstr "" - -#: ../../include/datetime.php:140 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: ../../include/datetime.php:244 -msgid "less than a second ago" -msgstr "" - -#: ../../include/datetime.php:262 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "" - -#: ../../include/datetime.php:273 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:276 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:279 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:282 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:285 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:288 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:291 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:520 -#, php-format -msgid "%1$s's birthday" -msgstr "" - -#: ../../include/datetime.php:521 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "" - -#: ../../include/nav.php:86 -msgid "Remote authentication" -msgstr "" - -#: ../../include/nav.php:86 -msgid "Click to authenticate to your home hub" -msgstr "" - -#: ../../include/nav.php:92 -msgid "Manage your channels" -msgstr "" - -#: ../../include/nav.php:95 -msgid "Manage your privacy groups" -msgstr "" - -#: ../../include/nav.php:97 -msgid "Account/Channel Settings" -msgstr "" - -#: ../../include/nav.php:103 ../../include/nav.php:132 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:106 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:109 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:118 ../../include/nav.php:122 -msgid "Sign in" -msgstr "" - -#: ../../include/nav.php:149 -msgid "Take me home" -msgstr "" - -#: ../../include/nav.php:151 -msgid "Log me out of this site" -msgstr "" - -#: ../../include/nav.php:156 -msgid "Create an account" -msgstr "" - -#: ../../include/nav.php:168 -msgid "Help and documentation" -msgstr "" - -#: ../../include/nav.php:183 -msgid "Search site @name, !forum, #tag, ?docs, content" -msgstr "" - -#: ../../include/nav.php:189 -msgid "Site Setup and Configuration" -msgstr "" - -#: ../../include/nav.php:329 -msgid "@name, !forum, #tag, ?doc, content" -msgstr "" - -#: ../../include/nav.php:330 -msgid "Please wait..." -msgstr "" - -#: ../../include/nav.php:336 -msgid "Add Apps" -msgstr "" - -#: ../../include/nav.php:337 -msgid "Arrange Apps" -msgstr "" - -#: ../../include/nav.php:338 -msgid "Toggle System Apps" -msgstr "" - -#: ../../include/nav.php:424 -msgid "Status Messages and Posts" -msgstr "" - -#: ../../include/nav.php:437 -msgid "Profile Details" -msgstr "" - -#: ../../include/nav.php:447 ../../include/photos.php:669 -msgid "Photo Albums" -msgstr "" - -#: ../../include/nav.php:455 -msgid "Files and Storage" -msgstr "" - -#: ../../include/nav.php:493 -msgid "Saved Bookmarks" -msgstr "" - -#: ../../include/nav.php:504 -msgid "View Cards" -msgstr "" - -#: ../../include/nav.php:515 -msgid "View Articles" -msgstr "" - -#: ../../include/nav.php:527 -msgid "View Webpages" -msgstr "" - -#: ../../include/photos.php:151 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "" - -#: ../../include/photos.php:162 -msgid "Image file is empty." -msgstr "" - -#: ../../include/photos.php:327 -msgid "Photo storage failed." -msgstr "" - -#: ../../include/photos.php:376 -msgid "a new photo" -msgstr "" - -#: ../../include/photos.php:380 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "" - -#: ../../include/photos.php:674 -msgid "Upload New Photos" -msgstr "" - -#: ../../include/zot.php:775 -msgid "Invalid data packet" -msgstr "" - -#: ../../include/zot.php:4288 -msgid "invalid target signature" -msgstr "" - -#: ../../include/connections.php:133 -msgid "New window" -msgstr "" - -#: ../../include/connections.php:134 -msgid "Open the selected location in a different window or browser tab" -msgstr "" - -#: ../../include/auth.php:192 -msgid "Delegation session ended." -msgstr "" - -#: ../../include/auth.php:196 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:291 -msgid "Email validation is incomplete. Please check your email." -msgstr "" - -#: ../../include/auth.php:307 -msgid "Failed authentication" -msgstr "" - -#: ../../include/help.php:80 -msgid "Help:" -msgstr "" - -#: ../../include/help.php:129 -msgid "Not Found" +msgid "Welcome %s. Remote authentication successful." msgstr "" diff --git a/view/ja-bk/hmessages.po b/view/ja-bk/hmessages.po new file mode 100644 index 000000000..e69de29bb diff --git a/view/ja-bk/hstrings.php b/view/ja-bk/hstrings.php new file mode 100644 index 000000000..30e3d4303 --- /dev/null +++ b/view/ja-bk/hstrings.php @@ -0,0 +1,3349 @@ +you do.)"] = "企業の資金や広告はありません。また、個人情報を収集して販売することはありません。 (私たちはあなたの個人情報を管理していません。)"; +App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "分散化、Web ID、およびプライバシーに関する当社の革新的な作業を支援します。"; +App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "あなたの寄付はサーバーとサービスを稼働させ続け、革新的な新機能と継続的な開発を提供するのにも役立ちます。"; +App::$strings["Donate"] = "寄付"; +App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "1回限りの寄付で支援するプロジェクト、開発者、または公共の拠点を選択してください"; +App::$strings["Donate Now"] = "今寄付する"; +App::$strings["Or become a project sponsor (Hubzilla Project only)"] = "またはプロジェクトのスポンサーになる(Hubzillaプロジェクトのみ)"; +App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "あなたが私たちのスポンサーリストにあなたのファーストネームまたはフルネーム(あるいはニックネーム)を載せて欲しいかどうかも明記してください。"; +App::$strings["Sponsor"] = "スポンサー"; +App::$strings["Special thanks to: "] = "スペシャルサンクス : "; +App::$strings["Currently blocked"] = "現在のブロック"; +App::$strings["No channels currently blocked"] = "現在ブロックしているチャンネルはありません。"; +App::$strings["Remove"] = "削除"; +App::$strings["Superblock Settings"] = "Superblockの設定"; +App::$strings["Block Completely"] = "完璧にブロック"; +App::$strings["superblock settings updated"] = "Superblockの設定は更新されました。"; +App::$strings["XMPP settings updated."] = "XMPPの設定は更新されました。"; +App::$strings["Enable Chat"] = "チャットの有効化"; +App::$strings["Individual credentials"] = "アクセス権限の設定"; +App::$strings["Jabber BOSH server"] = ""; +App::$strings["XMPP Settings"] = "XMPPの設定"; +App::$strings["Save Settings"] = "設定の保存"; +App::$strings["Jabber BOSH host"] = ""; +App::$strings["Use central userbase"] = ""; +App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = ""; +App::$strings["Settings updated."] = "設定は更新されました"; +App::$strings["Send email to all members"] = "全てのメンバーにメールを送信する"; +App::$strings["%s Administrator"] = "%sのアドミン"; +App::$strings["%1\$d of %2\$d messages sent."] = "%"; +App::$strings["Send email to all hub members."] = "hubの全てのメンバーへメールを送信しました。"; +App::$strings["Sender Email address"] = "送信者のメールアドレス"; +App::$strings["Test mode (only send to hub administrator)"] = "テストモード (hubのアドミンにのみ送信されます)"; +App::$strings["Report Bug"] = "バグ報告"; +App::$strings["Post to Insanejournal"] = ""; +App::$strings["Enable InsaneJournal Post Plugin"] = ""; +App::$strings["InsaneJournal username"] = ""; +App::$strings["InsaneJournal password"] = ""; +App::$strings["Post to InsaneJournal by default"] = ""; +App::$strings["InsaneJournal Post Settings"] = ""; +App::$strings["Insane Journal Settings saved."] = ""; +App::$strings["Hubzilla Directory Stats"] = "Hubzilla ディレクトリ ステータス"; +App::$strings["Total Hubs"] = "全てのhub"; +App::$strings["Hubzilla Hubs"] = ""; +App::$strings["Friendica Hubs"] = ""; +App::$strings["Diaspora Pods"] = ""; +App::$strings["Hubzilla Channels"] = "Hubzillaチャンネル"; +App::$strings["Friendica Channels"] = "Friendicaチャンネル"; +App::$strings["Diaspora Channels"] = "Diasporaチャンネル"; +App::$strings["Aged 35 and above"] = "年齢 : 35歳やそれ以上"; +App::$strings["Aged 34 and under"] = "年齢 : 34歳やそれ以下"; +App::$strings["Average Age"] = "平均年齢"; +App::$strings["Known Chatrooms"] = "既知のチャットルーム"; +App::$strings["Known Tags"] = "既知のタグ"; +App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = ""; +App::$strings["Invalid game."] = ""; +App::$strings["You are not a player in this game."] = "あなたはこのゲームのプレーヤーではありません。"; +App::$strings["You must be a local channel to create a game."] = "あなたがゲームを作成するためにはローカルチャンネルに移動する必要があります。"; +App::$strings["You must select one opponent that is not yourself."] = "相手を選んでください。"; +App::$strings["Random color chosen."] = "ランダムにカラーを選択しました。"; +App::$strings["Error creating new game."] = "ゲーム作成のエラーです"; +App::$strings["Requested channel is not available."] = "リクエストされたチャンネルは存在しません。"; +App::$strings["You must select a local channel /chess/channelname"] = "ローカルチャンネルを選択する必要があります /chess/channelname"; +App::$strings["You must be logged in to see this page."] = "このページを表示するにはログインする必要があります。"; +App::$strings["Enable notifications"] = "通知の有効化"; +App::$strings["Planets Settings updated."] = "Planetsの設定は適用されました。"; +App::$strings["Enable Planets Plugin"] = "Planetsプラグインの有効化"; +App::$strings["Planets Settings"] = "Planetsの設定"; +App::$strings["Post to Libertree"] = ""; +App::$strings["Enable Libertree Post Plugin"] = "Libertreeプラグインの有効化"; +App::$strings["Libertree API token"] = ""; +App::$strings["Libertree site URL"] = ""; +App::$strings["Post to Libertree by default"] = ""; +App::$strings["Libertree Post Settings"] = ""; +App::$strings["Libertree Settings saved."] = ""; +App::$strings["Only authenticate automatically to sites of your friends"] = ""; +App::$strings["By default you are automatically authenticated anywhere in the network"] = "通常はあなたは自動的にどのネットワークでも認証されます。"; +App::$strings["Authchoose Settings"] = ""; +App::$strings["Atuhchoose Settings updated."] = ""; +App::$strings["Logfile archive directory"] = ""; +App::$strings["Directory to store rotated logs"] = ""; +App::$strings["Logfile size in bytes before rotating"] = ""; +App::$strings["Number of logfiles to retain"] = ""; +App::$strings["QR code"] = "QRコード"; +App::$strings["QR Generator"] = ""; +App::$strings["Enter some text"] = "テキストを入力"; +App::$strings["text to include in all outgoing posts from this site"] = ""; +App::$strings["file"] = "ファイル"; +App::$strings["Permission denied"] = "権限がありません"; +App::$strings["Redmatrix File Storage Import"] = ""; +App::$strings["This will import all your Redmatrix cloud files to this channel."] = "チャンネルにRedmatrixのクラウドファイルをインポートします。"; +App::$strings["Redmatrix Server base URL"] = "RedmatrixサーバーのURL"; +App::$strings["Redmatrix Login Username"] = "Redmatrixログイン名"; +App::$strings["Redmatrix Login Password"] = "Redmatrixパスワード"; +App::$strings["Deactivate the feature"] = ""; +App::$strings["Hide the button and show the smilies directly."] = ""; +App::$strings["Smileybutton Settings"] = ""; +App::$strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Этот плагин просматривает публикации для слов / текста, которые вы указываете ниже, и сворачивает любой контент, содержащий эти ключевые слова, поэтому он не отображается в неподходящее время, например, сексуальные инсинуации, которые могут быть неправильными в настройке работы. Например, мы рекомендуем отмечать любой контент, содержащий наготу, тегом #NSFW. Этот фильтр также способен реагировать на любое другое указанное вами слово / текст и может использоваться в качестве фильтра содержимого общего назначения."; +App::$strings["Enable Content filter"] = "コンテンツフィルターの有効化"; +App::$strings["Comma separated list of keywords to hide"] = "隠したいキーワードコンテンツをコンマで仕切ってください。"; +App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = ""; +App::$strings["Not Safe For Work Settings"] = "NSFW設定"; +App::$strings["General Purpose Content Filter"] = ""; +App::$strings["NSFW Settings saved."] = "NSFW設定は保存されました。"; +App::$strings["Possible adult content"] = ""; +App::$strings["%s - view"] = "%s - 表示"; +App::$strings["Flattr this!"] = ""; +App::$strings["Flattr widget settings updated."] = ""; +App::$strings["Flattr user"] = ""; +App::$strings["URL of the Thing to flattr"] = ""; +App::$strings["If empty channel URL is used"] = ""; +App::$strings["Title of the Thing to flattr"] = ""; +App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = ""; +App::$strings["Static or dynamic flattr button"] = ""; +App::$strings["static"] = ""; +App::$strings["dynamic"] = ""; +App::$strings["Alignment of the widget"] = ""; +App::$strings["left"] = ""; +App::$strings["right"] = ""; +App::$strings["Enable Flattr widget"] = ""; +App::$strings["Flattr Widget Settings"] = ""; +App::$strings["Permission denied."] = "権限がありません。"; +App::$strings["You are now authenticated to pumpio."] = "pumpioに接続されました。"; +App::$strings["return to the featured settings page"] = ""; +App::$strings["Post to Pump.io"] = "Pump.ioへ投稿"; +App::$strings["Pump.io servername"] = "Pump.ioのサーバー名"; +App::$strings["Without \"http://\" or \"https://\""] = ""; +App::$strings["Pump.io username"] = "Pump.ioユーザー名"; +App::$strings["Without the servername"] = "サーバー名以外"; +App::$strings["You are not authenticated to pumpio"] = "Pump.ioと認証されました。"; +App::$strings["(Re-)Authenticate your pump.io connection"] = "Pump.ioと再認証されました。"; +App::$strings["Enable pump.io Post Plugin"] = "Pump.io投稿プラグインを有効化"; +App::$strings["Post to pump.io by default"] = "Pump.ioへの投稿をデフォルトにする"; +App::$strings["Should posts be public"] = "パブリックへ投稿"; +App::$strings["Mirror all public posts"] = "全てのパブリック投稿をミラーする"; +App::$strings["Pump.io Post Settings"] = "Pump.io投稿設定"; +App::$strings["PumpIO Settings saved."] = "Pump.ioの設定を保存しました"; +App::$strings["Save Bookmarks"] = "ブックマークに保存する"; +App::$strings["Status:"] = "配偶者:"; +App::$strings["Activate addon"] = "アドオンのアクティベート"; +App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = ""; +App::$strings["Jabber username"] = ""; +App::$strings["Jabber server"] = "Jabberサーバー"; +App::$strings["Jabber BOSH host URL"] = ""; +App::$strings["Jabber password"] = "Jabberパスワード"; +App::$strings["Encrypt Jabber password with Hubzilla password"] = ""; +App::$strings["Recommended"] = "オンを推奨"; +App::$strings["Hubzilla password"] = ""; +App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = ""; +App::$strings["Purge internal list of jabber addresses of contacts"] = ""; +App::$strings["Configuration Help"] = "設定のヘルプ"; +App::$strings["Add Contact"] = "コンタクトの追加"; +App::$strings["Jappix Mini Settings"] = "Jappix Miniの設定"; +App::$strings["Post to LiveJournal"] = "LiveJournalへの投稿"; +App::$strings["Enable LiveJournal Post Plugin"] = "LiveJournalの有効化"; +App::$strings["LiveJournal username"] = "LiveJournalユーザー名"; +App::$strings["LiveJournal password"] = "LiveJournalパスワード"; +App::$strings["Post to LiveJournal by default"] = "デフォルトでLiveJournalへ投稿"; +App::$strings["LiveJournal Post Settings"] = "LiveJournal投稿設定"; +App::$strings["LiveJournal Settings saved."] = "LiveJournal設定は保存されました。"; +App::$strings["Errors encountered deleting database table "] = ""; +App::$strings["Submit Settings"] = "設定の適用"; +App::$strings["Drop tables when uninstalling?"] = "アンインストール時にデータベーステーブルをDropしますか?"; +App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "チェックしていた場合、アンインストール時にデータベースが削除されます。"; +App::$strings["Mapbox Access Token"] = "Mapboxアクセストークン"; +App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = "MapBoxアクセストークンを登録していた場合、OpenStreetMapサーバーにMapBoxを乗せて表示されます(翻訳不定)"; +App::$strings["Rendezvous"] = ""; +App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "このアイデンティティはあなたがいない間に他のメンバーによって削除されました。\"New identity\"を押すかページをリフレッシュして新しいアイデンティティを登録してください。同じ名前を使用できるかもしれません。"; +App::$strings["Welcome to Rendezvous!"] = "Rendezvousへようこそ!"; +App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "あなたの名前を入力してRendezvousに参加しましょう!位置情報の共有を開始するにはGPSへのアクセスをサイトに許可してください。 位置情報が認識されると、赤いドットが出現して他のユーザーもあなたの位置を確認できるようになります。"; +App::$strings["Let's meet here"] = "ここで会おう!"; +App::$strings["Name"] = "名前"; +App::$strings["Description"] = "説明"; +App::$strings["New marker"] = "新しいマーカー"; +App::$strings["Edit marker"] = "マーカーの編集"; +App::$strings["New identity"] = ""; +App::$strings["Delete marker"] = "マーカーの編集"; +App::$strings["Delete member"] = "メンバーの削除"; +App::$strings["Edit proximity alert"] = "接近アラートの編集"; +App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = "接近アラートはメンバーが指定した半径の内側に入った時に発動します。

半径を入力してください(0なら無効になります):"; +App::$strings["distance"] = "距離"; +App::$strings["Proximity alert distance (meters)"] = "アラートが発動する距離(メートル)"; +App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = "接近アラートはあなたが指定したマーカーの指定した半径の内側に入った時に発動します。

半径を入力してください(0なら無効になります):"; +App::$strings["Marker proximity alert"] = "マーカー接近アラート"; +App::$strings["Reminder note"] = "リマインダーメモ"; +App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "メモを入力するとあなたが指定範囲に接近した時にメモが表示されます。"; +App::$strings["Add new rendezvous"] = "新しいRendezvousを追加"; +App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "新しいRadezvousを作成しグループの仲間と位置情報を交換します。リンクを共有することで他のユーザーが見ることができます。マップにマーカー等を設置することもできます。"; +App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "まだRendezvousを作成していません。ボタンを押してRandezvousを作成しましょう!"; +App::$strings["Errors encountered creating database tables."] = ""; +App::$strings["View Larger"] = "大きく見る"; +App::$strings["Tile Server URL"] = ""; +App::$strings["A list of public tile servers"] = ""; +App::$strings["Nominatim (reverse geocoding) Server URL"] = ""; +App::$strings["A list of Nominatim servers"] = ""; +App::$strings["Default zoom"] = ""; +App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "デフォルトのズームレベルです。(1:ワールド 18:最大)"; +App::$strings["Include marker on map"] = "マップにマーカーを含める"; +App::$strings["Include a marker on the map."] = "マップにマーカーを含める"; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "指定したOpenIDでログイン中に問題が発生しました。 IDの正しいつづりを確認してください。"; +App::$strings["The error message was:"] = "エラーメッセージ:"; +App::$strings["OpenID protocol error. No ID returned."] = "OpenIDプロトコルのエラーです。IDがreturnしませんでした。"; +App::$strings["Welcome %s. Remote authentication successful."] = "ようこそ、%s. リモートログインは成功しました。"; +App::$strings["Login failed."] = "ログインに失敗しました。"; +App::$strings["First Name"] = "名"; +App::$strings["Last Name"] = "姓"; +App::$strings["Nickname"] = "ニックネーム"; +App::$strings["Full Name"] = "フルネーム"; +App::$strings["Email"] = "Eメール"; +App::$strings["Profile Photo"] = "プロファイル画像"; +App::$strings["Profile Photo 16px"] = "プロファイル画像 16px"; +App::$strings["Profile Photo 32px"] = "プロファイル画像 32px"; +App::$strings["Profile Photo 48px"] = "プロファイル画像 48px"; +App::$strings["Profile Photo 64px"] = "プロファイル画像 64px"; +App::$strings["Profile Photo 80px"] = "プロファイル画像 80px"; +App::$strings["Profile Photo 128px"] = "プロファイル画像 128px"; +App::$strings["Timezone"] = "タイムゾーン"; +App::$strings["Homepage URL"] = "ホームページのURL"; +App::$strings["Language"] = "言語"; +App::$strings["Birth Year"] = "誕生年"; +App::$strings["Birth Month"] = "誕生月"; +App::$strings["Birth Day"] = "誕生日"; +App::$strings["Birthdate"] = "誕生日"; +App::$strings["Gender"] = "性別"; +App::$strings["Male"] = "男性"; +App::$strings["Female"] = "女性"; +App::$strings["Your Webbie:"] = ""; +App::$strings["Fontsize (px):"] = "フォントサイズ (px):"; +App::$strings["Link:"] = "リンク:"; +App::$strings["Like us on Hubzilla"] = ""; +App::$strings["Embed:"] = ""; +App::$strings["Extended Identity Sharing"] = "拡張アイデンティティ共有"; +App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "アイデンティティを全てのウェブサイトとインターネットで共有します。オフにすると、アイデンティティは \$Projectname のサイトでのみ表示されます。"; +App::$strings["An account has been created for you."] = "あなたによってアカウントが作成されました。"; +App::$strings["Authentication successful but rejected: account creation is disabled."] = "認証は通りましたがアクセスは拒否されました: アカウント作成が無効になっています。"; +App::$strings["Post to Twitter"] = "Twitterへ投稿"; +App::$strings["Twitter settings updated."] = "Twitter設定は更新されました。"; +App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Twitterへのアクセスに使うコンシューマーキーがありません。管理者に報告してください。"; +App::$strings["At this Hubzilla instance the Twitter plugin 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."] = "このhubzillaインスタンスではTwitterプラグインが有効になっていますが、あなたのアカウントは接続されていません。下のボタンをクリックしてTwitterのPINを取得しコピーして貼り付けてください。"; +App::$strings["Log in with Twitter"] = "Twitterにログイン"; +App::$strings["Copy the PIN from Twitter here"] = ""; +App::$strings["Currently connected to: "] = "接続中:"; +App::$strings["Note: Due 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."] = "注:プライバシー設定のため(不明な閲覧者からプロフィールの詳細を非表示にしますか?)、Twitterへの公開投稿に含まれる可能性のあるリンクをクリックすると、訪問者に空白のページが表示されます。 あなたのプロフィールへのアクセスは制限されています。"; +App::$strings["Allow posting to Twitter"] = "Twitterへ投稿"; +App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "チェックを入れておくと、パブリックな投稿がデフォルトでTwitterに投稿するようになります。"; +App::$strings["Twitter post length"] = "Twitterに投稿する長さ"; +App::$strings["Maximum tweet length"] = "最大の長さ"; +App::$strings["Send public postings to Twitter by default"] = "デフォルトでTwitterに投稿する"; +App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "チェックを入れておくと、パブリックな投稿がデフォルトでTwitterに投稿するようになります。"; +App::$strings["Clear OAuth configuration"] = "OAuth設定を閉じる"; +App::$strings["Twitter Post Settings"] = ""; +App::$strings["Consumer Key"] = "コンシューマーキー"; +App::$strings["Consumer Secret"] = "シークレットキー"; +App::$strings["Flag Adult Photos"] = "アダルト投稿フラグを使用する"; +App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "投稿する画像が\"不適切な画像\"として伏せられるようになります。"; +App::$strings["Unknown"] = ""; +App::$strings["ActivityPub"] = ""; +App::$strings["photo"] = "画像"; +App::$strings["status"] = "投稿"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$sが%2\$sの%3\$sにいいね!しました。"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s わるいね! %2\$s %3\$s"; +App::$strings["ActivityPub Protocol Settings updated."] = "ActivityPubプロトコル設定は更新されました。"; +App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Activity pub プロトコルはNomadic Identityをサポートしていません。チャンネルのクローン先からは投稿の表示をすることはできなくなっています。"; +App::$strings["Enable the ActivityPub protocol for this channel"] = "このチャンネルでActivity pubを有効化する"; +App::$strings["Deliver to ActivityPub recipients in privacy groups"] = "Activitypubユーザーの含まれるプライバシーグループの範囲選択時でも送信する"; +App::$strings["May result in a large number of mentions and expose all the members of your privacy group"] = "投稿は大量のメンション、ダイレクトメッセージで構成されることになるはずです。"; +App::$strings["Send multi-media HTML articles"] = "Multi-media HTML articlesを送信する"; +App::$strings["Not supported by some microblog services such as Mastodon"] = "Mastodonのようないくつかのマイクロブログサービスはこの機能をサポートしていません。"; +App::$strings["ActivityPub Protocol Settings"] = "ActivityPubの設定"; +App::$strings["No username found in import file."] = "インポートファイルにユーザー名がありません。"; +App::$strings["Unable to create a unique channel address. Import failed."] = "ユニークなチャンネルアドレスの作成に失敗しました。インポートに失敗しました。"; +App::$strings["Import completed."] = "インポートが完了しました。"; +App::$strings["\$projectname"] = ""; +App::$strings["Diaspora Protocol Settings updated."] = "Diasporaプロトコル設定は更新されました。"; +App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Diasporaは他鯖送信に対応しておりません。他のhubからは表示できない可能性があります。"; +App::$strings["Enable the Diaspora protocol for this channel"] = "このチャンネルにDiasporaプロコルを有効化する"; +App::$strings["Allow any Diaspora member to comment on your public posts"] = "どんなDisporaメンバーにもコメントを許可する"; +App::$strings["Prevent your hashtags from being redirected to other sites"] = "ハッシュタグが他のサイトにリダイレクトされないようにする"; +App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Diasporaの存在しない署名で出版物やコメントに署名して送る"; +App::$strings["Followed hashtags (comma separated, do not include the #)"] = "ハッシュタグをフォローする(コンマで仕切り、#は含まないで)"; +App::$strings["Diaspora Protocol Settings"] = "Diasporaプロトコル設定"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$sにアテンドしています"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$sにアテンドしていません"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$sにアテンドするかもしれません"; +App::$strings["System defaults:"] = "システムデフォルト:"; +App::$strings["Preferred Clipart IDs"] = ""; +App::$strings["List of preferred clipart ids. These will be shown first."] = ""; +App::$strings["Default Search Term"] = ""; +App::$strings["The default search term. These will be shown second."] = ""; +App::$strings["Return After"] = ""; +App::$strings["Page to load after image selection."] = ""; +App::$strings["View Profile"] = "ユーザー情報"; +App::$strings["Edit Profile"] = "Edit Profile"; +App::$strings["Profile List"] = "プロファイルリスト"; +App::$strings["Order of Preferred"] = ""; +App::$strings["Sort order of preferred clipart ids."] = ""; +App::$strings["Newest first"] = ""; +App::$strings["As entered"] = ""; +App::$strings["Order of other"] = ""; +App::$strings["Sort order of other clipart ids."] = ""; +App::$strings["Most downloaded first"] = ""; +App::$strings["Most liked first"] = ""; +App::$strings["Preferred IDs Message"] = ""; +App::$strings["Message to display above preferred results."] = "上記の結果の上に合致するメッセージ"; +App::$strings["Uploaded by: "] = "アップロード者:"; +App::$strings["Drawn by: "] = "執筆者:"; +App::$strings["Use this image"] = "この画像を使用"; +App::$strings["Or select from a free OpenClipart.org image:"] = "又はOpenClipart.orgのフリー画像を使用する。"; +App::$strings["Search Term"] = ""; +App::$strings["Unknown error. Please try again later."] = "原因不明のエラーです。後でやり直してください。"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "もし写真の変更後に反映されていない場合はキャッシュを削除してページを再読み込みしてみてください。"; +App::$strings["Profile photo updated successfully."] = "プロファイル画像のアップロードに成功しました。"; +App::$strings["Edit your profile and change settings."] = "プロファイルの編集と設定の変更"; +App::$strings["Click here to see activity from your connections."] = "クリックしてコネクションからのアクティビティを表示"; +App::$strings["Click here to see your channel home."] = "クリックしてチャンネルのホームを表示"; +App::$strings["You can access your private messages from here."] = "ここからプライベートメッセージを表示できます。"; +App::$strings["Create new events here."] = "ここから新しいイベントを作成できます。"; +App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = "新しいコネクションの許可や権限の変更ができます。また、コネクションのグループ分けをすることができます。"; +App::$strings["System notifications will arrive here"] = "届いた通知はここに表示されます。"; +App::$strings["Search for content and users"] = "コンテンツやユーザーを検索する"; +App::$strings["Browse for new contacts"] = "新しいコンタクトを表示する"; +App::$strings["Launch installed apps"] = "インストール済みのアプリを起動する"; +App::$strings["Looking for help? Click here."] = "ヘルプを見るにはここをクリック"; +App::$strings["New events have occurred in your network. Click here to see what has happened!"] = "新しいイベントが貴方のネットワークで発生しました!ここをクリックして何が起きてるのか確認しましょう!"; +App::$strings["You have received a new private message. Click here to see from who!"] = "プライベートメッセージを取得しました!ここをクリックして表示しましょう!"; +App::$strings["There are events this week. Click here too see which!"] = "この一週間のイベントです。クリックして詳細を確認しましょう!"; +App::$strings["You have received a new introduction. Click here to see who!"] = "新しいフォロー要求がありました!クリックして確認しましょう!"; +App::$strings["There is a new system notification. Click here to see what has happened!"] = "新しいシステム通知です!クリックして確認しましょう!"; +App::$strings["Click here to share text, images, videos and sound."] = "ここをクリックしてテキストや画像、映像や音声を共有できます。"; +App::$strings["You can write an optional title for your update (good for long posts)."] = "任意でタイトルを書くことができます(より長い投稿に有効です)。"; +App::$strings["Entering some categories here makes it easier to find your post later."] = "カテゴリーを作成して簡単に投稿を整理することができます。"; +App::$strings["Share photos, links, location, etc."] = "画像、リンク、位置情報等を共有する"; +App::$strings["Only want to share content for a while? Make it expire at a certain date."] = "一定期間しか共有したくない?投稿に期限を設けましょう!"; +App::$strings["You can password protect content."] = "パスワードで投稿をプロテクトすることができます。"; +App::$strings["Choose who you share with."] = "誰と共有するか選んでください。"; +App::$strings["Click here when you are done."] = "終了した時にクリックしてください。"; +App::$strings["Adjust from which channels posts should be displayed."] = ""; +App::$strings["Only show posts from channels in the specified privacy group."] = "プライバシーグループの中での投稿のみを表示する"; +App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = "ハッシュタグを使用して投稿を簡単に見つけられるようになります。 (キーワードの前にハッシュタグ\"#\"を付けてください)。"; +App::$strings["Easily find posts in given category."] = "カテゴリーを設定して簡単に投稿を発見できるようにする"; +App::$strings["Easily find posts by date."] = "日付で投稿を発見できるようにする"; +App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = ""; +App::$strings["Here you see channels you have connected to."] = "あなたがコネクトしているチャンネルを見ることができます。"; +App::$strings["Save your search so you can repeat it at a later date."] = "あなたの検索履歴を保存しリピートすることができます。"; +App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = ""; +App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = ""; +App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

You can also advance by pressing the return key"] = " +Hubzillaへようこそ!ウェルカムツアーを開始しませんか?

これはいつでも一時停止できるしページを再読み込みしてから再開することもできます。

You can also advance by pressing the return key"; +App::$strings["Some setting"] = ""; +App::$strings["A setting"] = ""; +App::$strings["Skeleton Settings"] = ""; +App::$strings["Show Upload Limits"] = "アップロードリミットを見る"; +App::$strings["Hubzilla configured maximum size: "] = "hubzillaは最大サイズに変更されました :"; +App::$strings["PHP upload_max_filesize: "] = ""; +App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = ""; +App::$strings["GNU-Social Protocol Settings updated."] = "GNU Socialプロトコル設定はアップデートされました。"; +App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "GNU Socialプロトコルはhubzillaのクローン機能をサポートしていません。他のhubからはこのアカウントの投稿は表示できない可能性があります。"; +App::$strings["Enable the GNU-Social protocol for this channel"] = "このチャンネルでGNU Socialプロトコルを有効化する"; +App::$strings["GNU-Social Protocol Settings"] = "GNU Socialプロトコル設定"; +App::$strings["Follow"] = "フォロー"; +App::$strings["%1\$s is now following %2\$s"] = "%1\$sは%2\$sをフォローしています。"; +App::$strings["Gallery"] = "ギャラリー"; +App::$strings["Photo Gallery"] = "フォトギャラリー"; +App::$strings["Page to load after login"] = "ページはログインの後に表示されます。"; +App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = "例: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (空白でデフォルトのネットワークページ)."; +App::$strings["Startpage Settings"] = "スタートページ設定"; +App::$strings["Message to display on every page on this server"] = " +"; +App::$strings["Pageheader Settings"] = "ページヘッダー設定"; +App::$strings["pageheader Settings saved."] = "ページヘッダー設定は保存されました。"; +App::$strings["Three Dimensional Tic-Tac-Toe"] = "三次元Tic-Tac-Toe"; +App::$strings["3D Tic-Tac-Toe"] = ""; +App::$strings["New game"] = "新しいゲーム"; +App::$strings["New game with handicap"] = "ハンデありでニューゲーム"; +App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "3次元Tic-Tac-Toeは伝統的なゲームです。ちょっとカスタマイズされていることを除いて、ね。"; +App::$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."] = " +"; +App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "ハンデありのゲームは二段目の中央が封じられています。なぜなら先手のユーザーがそこを抑えると圧倒的に有利になってしまうからです。"; +App::$strings["You go first..."] = "お先にどうぞ...."; +App::$strings["I'm going first this time..."] = "先に行かせてもらいます。"; +App::$strings["You won!"] = "あなたの勝ちだ!"; +App::$strings["\"Cat\" game!"] = " +"; +App::$strings["I won!"] = "私の勝ちだ!"; +App::$strings["Fuzzloc Settings updated."] = ""; +App::$strings["Fuzzloc allows you to blur your precise location if your channel uses browser location mapping."] = ""; +App::$strings["Enable Fuzzloc Plugin"] = ""; +App::$strings["Minimum offset in meters"] = ""; +App::$strings["Maximum offset in meters"] = ""; +App::$strings["Fuzzloc Settings"] = ""; +App::$strings["Post to Friendica"] = "Friendicaへ投稿する"; +App::$strings["rtof Settings saved."] = "rtof設定は保存されました"; +App::$strings["Allow posting to Friendica"] = "Friendicaへの投稿を許可する"; +App::$strings["Send public postings to Friendica by default"] = ""; +App::$strings["Friendica API Path"] = ""; +App::$strings["https://{sitename}/api"] = ""; +App::$strings["Friendica login name"] = ""; +App::$strings["Friendica password"] = ""; +App::$strings["Hubzilla to Friendica Post Settings"] = ""; +App::$strings["Post to GNU social"] = "GNU Socialへ投稿する"; +App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = "サイト管理者へ連絡してください。
このAPI URLは存在しません。"; +App::$strings["We could not contact the GNU social API with the Path you entered."] = "Нам не удалось установить контакт с GNU Social API по введённому вами пути"; +App::$strings["GNU social settings updated."] = "Настройки GNU Social обновлены."; +App::$strings["Globally Available GNU social OAuthKeys"] = "Глобально доступные ключи OAuthKeys GNU Social"; +App::$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)."] = "Существуют предварительно настроенные пары ключей OAuth для некоторых доступных серверов GNU social. Если вы используете один из них, используйте эти учетные данные.
Если вы не хотите подключаться к какому-либо другому серверу GNU social (см. ниже)."; +App::$strings["Provide your own OAuth Credentials"] = ""; +App::$strings["No consumer key pair for GNU social found. Register your Hubzilla 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 Hubzilla installation at your favourite GNU social installation."] = "
"; +App::$strings["OAuth Consumer Key"] = "Ключ клиента OAuth"; +App::$strings["OAuth Consumer Secret"] = "Пароль клиента OAuth"; +App::$strings["Base API Path"] = "Основной путь к API"; +App::$strings["Remember the trailing /"] = "Запомнить закрывающий /"; +App::$strings["GNU social application name"] = "Имя приложения GNU social"; +App::$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."] = "Чтобы подключиться к вашей учетной записи GNU social нажмите кнопку ниже для получения кода безопасности из GNU social, который вы должны скопировать в поле ввода ниже и отправить форму. Только ваши общедоступные сообщения будут опубликованы в GNU social."; +App::$strings["Log in with GNU social"] = "Войти с GNU social"; +App::$strings["Copy the security code from GNU social here"] = "Скопируйте код безопасности GNU social здесь"; +App::$strings["Cancel Connection Process"] = "Отменить процесс подключения"; +App::$strings["Current GNU social API is"] = "Текущий GNU social API"; +App::$strings["Cancel GNU social Connection"] = "Отменить подключение с GNU social"; +App::$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."] = "Замечание: Из-за настроек конфиденциальности (скрыть данные своего профиля от неизвестных зрителей?) cсылка, потенциально включенная в общедоступные публикации, переданные в GNU social, приведет посетителя к пустой странице, информирующей его о том, что доступ к вашему профилю был ограничен."; +App::$strings["Allow posting to GNU social"] = "Разрешить публиковать в GNU social"; +App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи GNU social"; +App::$strings["Post to GNU social by default"] = "Публиковать в GNU social по умолчанию"; +App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи GNU social по умолчанию"; +App::$strings["GNU social Post Settings"] = ""; +App::$strings["Site name"] = "Название сайта"; +App::$strings["API URL"] = ""; +App::$strings["Application name"] = "Название приложения"; +App::$strings["Enable Rainbowtag"] = "Включить Rainbowtag"; +App::$strings["Rainbowtag Settings"] = "Настройки Rainbowtag"; +App::$strings["Rainbowtag Settings saved."] = "Настройки Rainbowtag сохранены."; +App::$strings["Friendica Photo Album Import"] = "Импортировать альбом фотографий Friendica"; +App::$strings["This will import all your Friendica photo albums to this Red channel."] = "Это позволит импортировать все ваши альбомы фотографий Friendica в этот канал."; +App::$strings["Friendica Server base URL"] = "Базовый URL сервера Friendica"; +App::$strings["Friendica Login Username"] = "Имя пользователя для входа Friendica"; +App::$strings["Friendica Login Password"] = "Пароль для входа Firendica"; +App::$strings["This website is tracked using the Piwik analytics tool."] = "Этот сайт отслеживается с помощью инструментов аналитики Piwik."; +App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Если вы не хотите, чтобы ваши визиты регистрировались таким образом, вы можете отключить cookie с тем, чтобы Piwik не отслеживал дальнейшие посещения сайта."; +App::$strings["Piwik Base URL"] = "Базовый URL Piwik"; +App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Абсолютный путь к вашей установке Piwik (без типа протокола, с начальным слэшем)"; +App::$strings["Site ID"] = "ID сайта"; +App::$strings["Show opt-out cookie link?"] = "Показывать ссылку на отказ от использования cookies?"; +App::$strings["Asynchronous tracking"] = "Асинхронное отслеживание"; +App::$strings["Enable frontend JavaScript error tracking"] = "Включить отслеживание ошибок JavaScript на фронтенде."; +App::$strings["This feature requires Piwik >= 2.2.0"] = "Эта функция требует версию Piwik >= 2.2.0"; +App::$strings["Photos imported"] = "Фотографии импортированы"; +App::$strings["Redmatrix Photo Album Import"] = "Импортировать альбом фотографий Redmatrix"; +App::$strings["This will import all your Redmatrix photo albums to this channel."] = "Это позволит импортировать все ваши альбомы фотографий Redmatrix в этот канал."; +App::$strings["Import just this album"] = "Импортировать только этот альбом"; +App::$strings["Leave blank to import all albums"] = "Оставьте пустым для импорта всех альбомов"; +App::$strings["Maximum count to import"] = "Максимальное количество для импорта"; +App::$strings["0 or blank to import all available"] = "0 или пусто для импорта всех доступных"; +App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Искать %1\$s (%2\$s)"; +App::$strings["__ctx:opensearch__ \$Projectname"] = ""; +App::$strings["\$Projectname"] = ""; +App::$strings["Search \$Projectname"] = "Поиск \$Projectname"; +App::$strings["Recent Channel/Profile Viewers"] = ""; +App::$strings["This plugin/addon has not been configured."] = "このプラグイン/アドオンは設定されていません。"; +App::$strings["Please visit the Visage settings on %s"] = "%sのVisage Settingsに行ってください。"; +App::$strings["your feature settings page"] = "あなたのfeature設定ページ"; +App::$strings["No entries."] = ""; +App::$strings["Enable Visage Visitor Logging"] = ""; +App::$strings["Visage Settings"] = ""; +App::$strings["Error: order mismatch. Please try again."] = "Ошибка: несоответствие заказа. Пожалуйста, попробуйте ещё раз"; +App::$strings["Manual payments are not enabled."] = "Ручные платежи не подключены."; +App::$strings["Order not found."] = "Заказ не найден."; +App::$strings["Finished"] = "Завершено"; +App::$strings["Invalid channel"] = "Недействительный канал"; +App::$strings["[cart] Item Added"] = "[cart] Элемент добавлен"; +App::$strings["Order already checked out."] = "Заказ уже проверен."; +App::$strings["Enable Shopping Cart"] = "Включить корзину"; +App::$strings["Enable Test Catalog"] = "Включить тестовый каталог"; +App::$strings["Enable Manual Payments"] = "Включить ручные платежи"; +App::$strings["Base Merchant Currency"] = "Основная торговая валюта"; +App::$strings["Cart - Base Settings"] = "Корзина - Основные настройки"; +App::$strings["Shop"] = "Магазин"; +App::$strings["Profile Unavailable."] = "Профиль недоступен."; +App::$strings["Order Not Found"] = "Заказ не найден"; +App::$strings["You must be logged into the Grid to shop."] = "Вы должны быть в сети для доступа к магазину"; +App::$strings["Cart Not Enabled (profile: "] = "Корзина не подключена (профиль:"; +App::$strings["Access denied."] = "Доступ запрещён."; +App::$strings["No Order Found"] = "Нет найденных заказов"; +App::$strings["An unknown error has occurred Please start again."] = "Произошла неизвестная ошибка. Пожалуйста, начните снова."; +App::$strings["Invalid Payment Type. Please start again."] = "Недействительный тип платежа. Пожалуйста, начните снова."; +App::$strings["Order not found"] = "Заказ не найден"; +App::$strings["Enable Paypal Button Module"] = "Включить модуль кнопки Paypal"; +App::$strings["Use Production Key"] = "Использовать ключ Production"; +App::$strings["Paypal Sandbox Client Key"] = "Ключ клиента Paypal Sandbox"; +App::$strings["Paypal Sandbox Secret Key"] = "Секретный ключ Paypal Sandbox"; +App::$strings["Paypal Production Client Key"] = "Ключ клиента Paypal Production"; +App::$strings["Paypal Production Secret Key"] = "Секретный ключ Paypal Production"; +App::$strings["Cart - Paypal Addon"] = "Корзина - Paypal плагин"; +App::$strings["Paypal button payments are not enabled."] = "Кнопка Paypal для платежей не включена."; +App::$strings["Paypal button payments are not properly configured. Please choose another payment option."] = "Кнопка Paypal для платежей настроена неправильно. Пожалуйста, используйте другой вариант оплаты."; +App::$strings["Enable Hubzilla Services Module"] = "Включить модуль сервиса Hubzilla"; +App::$strings["Cart - Hubzilla Services Addon"] = "Корзина - плагин сервиса Hubzilla"; +App::$strings["New Sku"] = "Новый код"; +App::$strings["Cannot save edits to locked item."] = "Невозможно сохранить изменения заблокированной позиции."; +App::$strings["SKU not found."] = "Код не найден."; +App::$strings["Invalid Activation Directive."] = "Недействительная директива активации."; +App::$strings["Invalid Deactivation Directive."] = "Недействительная директива деактивации"; +App::$strings["Add to this privacy group"] = "Добавить в эту группу безопасности"; +App::$strings["Set user service class"] = "Установить класс обслуживания пользователя"; +App::$strings["You must be using a local account to purchase this service."] = "Вы должны использовать локальную учётноую запись для покупки этого сервиса."; +App::$strings["Changes Locked"] = "Изменения заблокированы"; +App::$strings["Item available for purchase."] = "Позиция доступна для приобретения."; +App::$strings["Price"] = "Цена"; +App::$strings["Add buyer to privacy group"] = "Добавить покупателя в группу безопасности"; +App::$strings["Add buyer as connection"] = "Добавить покупателя как контакт"; +App::$strings["Set Service Class"] = "Установить класс обслуживания"; +App::$strings["Access Denied."] = "Доступ запрещён."; +App::$strings["Access Denied"] = "Доступ запрещён"; +App::$strings["Invalid Item"] = "Недействительный элемент"; +App::$strings["Nsabait Settings updated."] = "Настройки Nsabait обновлены"; +App::$strings["Enable NSAbait Plugin"] = "Включить плагин NSAbait"; +App::$strings["NSAbait Settings"] = "Настройки Nsabait"; +App::$strings["Hubzilla File Storage Import"] = "Импорт файлового хранилища Hubzilla"; +App::$strings["This will import all your cloud files from another server."] = "Это позволит импортировать все ваши файлы с другого сервера."; +App::$strings["Hubzilla Server base URL"] = "Базовый URL сервера Hubzilla"; +App::$strings["Since modified date yyyy-mm-dd"] = "Начиная с даты изменений yyyy-mm-dd"; +App::$strings["Until modified date yyyy-mm-dd"] = "Заканчивая датой изменений yyyy-mm-dd"; +App::$strings["Federate"] = ""; +App::$strings["nofed Settings saved."] = "Настройки nofed сохранены."; +App::$strings["Allow Federation Toggle"] = "Разрешить переключение федерации"; +App::$strings["Federate posts by default"] = "Разрешить федерацию публикаций по умолчанию"; +App::$strings["NoFed Settings"] = "Настройки NoFed"; +App::$strings["generic profile image"] = "Стандартное изображение профиля"; +App::$strings["random geometric pattern"] = "Случайный геометрический рисунок"; +App::$strings["monster face"] = "Лицо чудовища"; +App::$strings["computer generated face"] = "Сгенерированное компьютером лицо"; +App::$strings["retro arcade style face"] = "Лицо в стиле старой аркадной игры"; +App::$strings["Hub default profile photo"] = "Фотография профиля по умолчанию"; +App::$strings["Information"] = "Информация"; +App::$strings["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."] = "Плагин Libravatar также установлен. Пожалуйста, отключите плагин Libravatar или этот плагин Gravatar. Если Плагин Libravatar ничего не найдёт, он вернётся в Gravatar."; +App::$strings["Default avatar image"] = "Изображение аватара по умолчанию"; +App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "Выберите изображения аватар по умолчанию если ничего не было найдено в Gravatar (см. README)."; +App::$strings["Rating of images"] = "Оценки изображений"; +App::$strings["Select the appropriate avatar rating for your site. See README"] = "Выберите подходящую оценку аватара для вашего сайта (см. README)."; +App::$strings["Gravatar settings updated."] = "Настройки Gravatar обновлены."; +App::$strings["Post to Red"] = "Опубликовать в Red"; +App::$strings["Channel is required."] = "チャンネルが必要です。"; +App::$strings["Invalid channel."] = "Недействительный канал."; +App::$strings["redred Settings saved."] = "Настройки RedRed сохранены."; +App::$strings["Allow posting to another Hubzilla Channel"] = ""; +App::$strings["Send public postings to Hubzilla channel by default"] = ""; +App::$strings["Hubzilla API Path"] = ""; +App::$strings["Hubzilla login name"] = ""; +App::$strings["Hubzilla channel name"] = ""; +App::$strings["Hubzilla Crosspost Settings"] = ""; +App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = ""; +App::$strings["Chord names start with a root note (A-G) and may include sharps (#) and flats (b). This software will parse most of the standard naming conventions such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements."] = ""; +App::$strings["Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."] = "Примеры действительных включают A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."; +App::$strings["Guitar Chords"] = "ギターコード"; +App::$strings["The complete online chord dictionary"] = "Полный онлайн словарь аккордов"; +App::$strings["Tuning"] = "Настройка"; +App::$strings["Chord name: example: Em7"] = "Наименование аккорда - example: Em7"; +App::$strings["Show for left handed stringing"] = "Показывать струны для левшей"; +App::$strings["Quick Reference"] = "Быстрая ссылка"; +App::$strings["New registration"] = "Новая регистрация"; +App::$strings["%s : Message delivery failed."] = "%s : Доставка сообщения не удалась."; +App::$strings["Message sent to %s. New account registration: %s"] = "Сообщение отправлено в %s. Регистрация нового аккаунта: %s"; +App::$strings["Channels to auto connect"] = ""; +App::$strings["Comma separated list"] = ""; +App::$strings["Popular Channels"] = ""; +App::$strings["IRC Settings"] = ""; +App::$strings["IRC settings saved."] = ""; +App::$strings["IRC Chatroom"] = "Чат IRC"; +App::$strings["bitchslap"] = "дать леща"; +App::$strings["bitchslapped"] = "получил леща"; +App::$strings["shag"] = "вздрючить"; +App::$strings["shagged"] = "вздрюченный"; +App::$strings["patent"] = ""; +App::$strings["patented"] = ""; +App::$strings["hug"] = "обнять"; +App::$strings["hugged"] = "обнятый"; +App::$strings["murder"] = "убить"; +App::$strings["murdered"] = "убитый"; +App::$strings["worship"] = "почитать"; +App::$strings["worshipped"] = "почитаемый"; +App::$strings["kiss"] = "целовать"; +App::$strings["kissed"] = "поцелованный"; +App::$strings["tempt"] = "искушать"; +App::$strings["tempted"] = "искушённый"; +App::$strings["raise eyebrows at"] = "поднять брови"; +App::$strings["raised their eyebrows at"] = "поднял брови"; +App::$strings["insult"] = "оскорбить"; +App::$strings["insulted"] = "оскорблённый"; +App::$strings["praise"] = "хвалить"; +App::$strings["praised"] = "похваленный"; +App::$strings["be dubious of"] = "усомниться"; +App::$strings["was dubious of"] = "усомнился"; +App::$strings["eat"] = "есть"; +App::$strings["ate"] = "съел"; +App::$strings["giggle and fawn at"] = ""; +App::$strings["giggled and fawned at"] = ""; +App::$strings["doubt"] = "сомневаться"; +App::$strings["doubted"] = "сомневался"; +App::$strings["glare"] = ""; +App::$strings["glared at"] = ""; +App::$strings["fuck"] = "трахнуть"; +App::$strings["fucked"] = "трахнул"; +App::$strings["bonk"] = ""; +App::$strings["bonked"] = ""; +App::$strings["declare undying love for"] = "признаться в любви к"; +App::$strings["declared undying love for"] = "признался в любви к"; +App::$strings["Post to WordPress"] = "Опубликовать в WordPress"; +App::$strings["Enable WordPress Post Plugin"] = "Включить плагин публикаций WordPress"; +App::$strings["WordPress username"] = "Имя пользователя WordPress"; +App::$strings["WordPress password"] = "Пароль WordPress"; +App::$strings["WordPress API URL"] = "URL API WordPress"; +App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "Обычно https://your-blog.tld/xmlrpc.php"; +App::$strings["WordPress blogid"] = ""; +App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "Для многопользовательских сайтов, таких, как wordpress.com. В противном случае оставьте пустым"; +App::$strings["Post to WordPress by default"] = "Публиковать в WordPress по умолчанию"; +App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Пересылать комментарии (требуется плагин hubzilla_wp)"; +App::$strings["WordPress Post Settings"] = "Настройки публикации в WordPress"; +App::$strings["Wordpress Settings saved."] = "Настройки WordPress сохранены."; +App::$strings["Who likes me?"] = "Кому я нравлюсь?"; +App::$strings["Your account on %s will expire in a few days."] = "Ваш аккаунт на %s перестанет работать через несколько дней."; +// App::$strings["Your $Productname test account is about to expire."] = "Срок действия пробного аккаунта в $Productname близок к окончанию."; +App::$strings["Create an account to access services and applications"] = "Создайте аккаунт для доступа к службам и приложениям"; +App::$strings["Register"] = "登録"; +App::$strings["Logout"] = "ログアウト"; +App::$strings["Login"] = "ログイン"; +App::$strings["Stream"] = "ストリーム"; +App::$strings["Remote Authentication"] = "リモートログインをする"; +App::$strings["Login/Email"] = "ログイン / email"; +App::$strings["Password"] = "パスワード"; +App::$strings["Remember me"] = "ログイン情報を記憶する"; +App::$strings["Forgot your password?"] = "パスワードを忘れましたか?"; +App::$strings["Password Reset"] = "パスワードのリセット"; +App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Ошибка SSL/TLS веб-сайта для %s"; +App::$strings["Website SSL certificate is not valid. Please correct."] = "SSL/TLS сертификат веб-сайт недействителен. Исправьте это."; +App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Задания Cron не запущены на %s"; +App::$strings["Cron/Scheduled tasks not running."] = "Задания Cron / планировщика не запущены."; +App::$strings["never"] = ""; +App::$strings["Default"] = "デフォルト"; +App::$strings["Focus (Hubzilla default)"] = ""; +App::$strings["Theme settings"] = "テーマ設定"; +App::$strings["Narrow navbar"] = ""; +App::$strings["Navigation bar background color"] = ""; +App::$strings["Navigation bar icon color "] = ""; +App::$strings["Navigation bar active icon color "] = ""; +App::$strings["Link color"] = ""; +App::$strings["Set font-color for banner"] = ""; +App::$strings["Set the background color"] = ""; +App::$strings["Set the background image"] = ""; +App::$strings["Set the background color of items"] = ""; +App::$strings["Set the background color of comments"] = ""; +App::$strings["Set font-size for the entire application"] = ""; +App::$strings["Examples: 1rem, 100%, 16px"] = ""; +App::$strings["Set font-color for posts and comments"] = ""; +App::$strings["Set radius of corners"] = ""; +App::$strings["Example: 4px"] = ""; +App::$strings["Set shadow depth of photos"] = ""; +App::$strings["Set maximum width of content region in pixel"] = ""; +App::$strings["Leave empty for default width"] = ""; +App::$strings["Set size of conversation author photo"] = ""; +App::$strings["Set size of followup author photos"] = ""; +App::$strings["Image/photo"] = "イメージ / 画像"; +App::$strings["Encrypted content"] = "暗号化済みコンテンツ"; +App::$strings["Install %1\$s element %2\$s"] = "%1\$sエレメント%2\$sをインストールする"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "この投稿にはインストール可能な要素%sが含まれています。ただし、このサイトにインストールする権限がありません。"; +App::$strings["webpage"] = "ウェブページ"; +App::$strings["layout"] = "レイアウト"; +App::$strings["block"] = "ブロック"; +App::$strings["menu"] = "メニュー"; +App::$strings["card"] = "カード"; +App::$strings["article"] = "記事"; +App::$strings["post"] = "この投稿"; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$sが%3\$sに%2\$sをしました。"; +App::$strings["Click to open/close"] = ""; +App::$strings["spoiler"] = ""; +App::$strings["View article"] = "記事を見る"; +App::$strings["View summary"] = "概略へ戻る"; +App::$strings["Different viewers will see this text differently"] = "他のユーザーにはこのテキストは違って見えます。"; +App::$strings["$1 wrote:"] = "$1が書きました:"; +App::$strings["Not a valid email address"] = "無効なメールアドレスです。"; +App::$strings["Your email domain is not among those allowed on this site"] = "このメールアドレスにはこのサイトで許可されていないドメインが使用されています。"; +App::$strings["Your email address is already registered at this site."] = "このメールアドレスは既に使用されています。"; +App::$strings["An invitation is required."] = "招待状が必要です。"; +App::$strings["Invitation could not be verified."] = "招待状は利用できませんでした。"; +App::$strings["Please enter the required information."] = "必須情報を確認してください。"; +App::$strings["Failed to store account information."] = "アカウント情報を保存できませんでした。"; +App::$strings["Registration confirmation for %s"] = ""; +App::$strings["Registration request at %s"] = ""; +App::$strings["your registration password"] = "あなたの登録パスワード"; +App::$strings["Registration details for %s"] = "%sの登録状況"; +App::$strings["Account approved."] = "アカウントが承認されました。"; +App::$strings["Registration revoked for %s"] = "%sによって登録は取り消されました。"; +App::$strings["Click here to upgrade."] = "ここをクリックしてアップグレード"; +App::$strings["This action exceeds the limits set by your subscription plan."] = "このアクションは、購読プランで設定されている制限を超えています。"; +App::$strings["This action is not available under your subscription plan."] = "Это действие невозможно из-за ограничений в вашем плане."; +App::$strings["Delegation session ended."] = "Делегированная сессия завершена."; +App::$strings["Logged out."] = "ログアウトしました。"; +App::$strings["Email validation is incomplete. Please check your email."] = "Eメール認証は完了していません。メールをチェックしてください。"; +App::$strings["Failed authentication"] = "登録に失敗しました。"; +App::$strings["event"] = "イベント"; +App::$strings["channel"] = "チャンネル"; +App::$strings["comment"] = "コメント"; +App::$strings["likes %1\$s's %2\$s"] = "%1\$sの %2\$sをいいね!しました。"; +App::$strings["doesn't like %1\$s's %2\$s"] = "%1\$sの %2\$sをわるいね!しました。"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$sは%2\$sにコネクトしました。"; +App::$strings["%1\$s poked %2\$s"] = "%1\$sは%2\$sをpokeしました。"; +App::$strings["poked"] = ""; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s は %2\$s"; +App::$strings["This is an unsaved preview"] = "これはセーブされていないプレビューです。"; +App::$strings["__ctx:title__ Likes"] = "いいね!"; +App::$strings["__ctx:title__ Dislikes"] = "わるいね!"; +App::$strings["__ctx:title__ Agree"] = ""; +App::$strings["__ctx:title__ Disagree"] = ""; +App::$strings["__ctx:title__ Abstain"] = "欠席"; +App::$strings["__ctx:title__ Attending"] = "出席"; +App::$strings["__ctx:title__ Not attending"] = "出席しない"; +App::$strings["__ctx:title__ Might attend"] = "出席するかも"; +App::$strings["Select"] = "選択"; +App::$strings["Delete"] = "削除"; +App::$strings["Toggle Star Status"] = "ホシをつける"; +App::$strings["Private Message"] = "プライベートメッセージ"; +App::$strings["Message signature validated"] = "メッセージ署名が検証されました"; +App::$strings["Message signature incorrect"] = "メッセージ署名が正しくありません"; +App::$strings["Approve"] = "許可"; +App::$strings["View %s's profile @ %s"] = "%sのプロファイルを見る%s"; +App::$strings["Categories:"] = "カテゴリー:"; +App::$strings["Filed under:"] = ""; +App::$strings["from %s"] = "via %s"; +App::$strings["last edited: %s"] = "最終更新: %s"; +App::$strings["Expires: %s"] = "期限: %s"; +App::$strings["View in context"] = "さらに表示..."; +App::$strings["Please wait"] = "お待ちください"; +App::$strings["remove"] = "削除"; +App::$strings["Loading..."] = "読み込み中....."; +App::$strings["Delete Selected Items"] = "選択した項目を削除"; +App::$strings["View Source"] = "ソースコードを見る"; +App::$strings["Follow Thread"] = "スレッドをフォローする"; +App::$strings["Unfollow Thread"] = "スレッドのフォローを解除"; +App::$strings["Recent Activity"] = "サーバーに届いているアクティビティ"; +App::$strings["Connect"] = "フォロー"; +App::$strings["Edit Connection"] = "コネクションの編集"; +App::$strings["Message"] = "メッセージ"; +App::$strings["Ratings"] = "レーティング"; +App::$strings["Poke"] = ""; +App::$strings["%s likes this."] = "%s人がいいね!"; +App::$strings["%s doesn't like this."] = "%s人がわるいね!"; +App::$strings["%2\$d people like this."] = "%2\$d人がいいね!しました。"; +App::$strings["%2\$d people don't like this."] = "%2\$d人がわるいね!しました。"; +App::$strings["and"] = "と"; +App::$strings[", and %d other people"] = array( + 0 => ", и ещё %d человеку", + 1 => ", и ещё %d человекам", + 2 => ", и ещё %d человекам", +); +App::$strings["%s like this."] = "%sがいいね!しました。"; +App::$strings["%s don't like this."] = "%sがわるいね!しました。"; +App::$strings["Set your location"] = "位置情報"; +App::$strings["Clear browser location"] = "ブラウザの位置情報を削除"; +App::$strings["Insert web link"] = "リンクの挿入"; +App::$strings["Embed (existing) photo from your photo albums"] = "アルバムから画像を選択"; +App::$strings["Please enter a link URL:"] = "URLを入力してください : "; +App::$strings["Tag term:"] = "タグの入力:"; +App::$strings["Where are you right now?"] = "位置情報を入力してください : "; +App::$strings["Choose images to embed"] = "画像を選択してください。"; +App::$strings["Choose an album"] = "アルバムを選択してください。"; +App::$strings["Choose a different album..."] = "アルバム選択に戻る"; +App::$strings["Error getting album list"] = "アルバムリストの取得に失敗しました..."; +App::$strings["Error getting photo link"] = "画像リンクの取得に失敗しました..."; +App::$strings["Error getting album"] = "アルバムの取得に失敗しました..."; +App::$strings["Comments enabled"] = "コメントは有効です。"; +App::$strings["Comments disabled"] = "コメントは無効です。"; +App::$strings["Preview"] = "プレビュー"; +App::$strings["Share"] = "投稿"; +App::$strings["Page link name"] = "ページリンク名"; +App::$strings["Post as"] = "投稿先"; +App::$strings["Bold"] = "太字"; +App::$strings["Italic"] = "斜体"; +App::$strings["Underline"] = "下線"; +App::$strings["Quote"] = "引用"; +App::$strings["Code"] = "プログラム"; +App::$strings["Attach/Upload file"] = "ファイルのアップロード"; +App::$strings["Embed an image from your albums"] = "アルバムから画像を選択"; +App::$strings["Cancel"] = "キャンセル"; +App::$strings["OK"] = ""; +App::$strings["Toggle voting"] = "投票"; +App::$strings["Disable comments"] = "コメントの無効化(zot範囲内のみ)"; +App::$strings["Toggle comments"] = "コメント許可の切り変え"; +App::$strings["Title (optional)"] = "タイトル (任意)"; +App::$strings["Categories (optional, comma-separated list)"] = "カテゴリ指定 (任意、カンマで追加)"; +App::$strings["Permission settings"] = "投稿の表示範囲の設定"; +App::$strings["Other networks and post services"] = "他のネットワーク送信サービス"; +App::$strings["Set expiration date"] = "時限性投稿作成"; +App::$strings["Set publish date"] = "投稿作成予約"; +App::$strings["Encrypt text"] = "暗号化テキスト"; +App::$strings["Commented Order"] = "コメント順"; +App::$strings["Sort by Comment Date"] = "コメント順で並べる"; +App::$strings["Posted Order"] = "投稿順"; +App::$strings["Sort by Post Date"] = "投稿の作成日時で並べる"; +App::$strings["Personal"] = "基本情報"; +App::$strings["Posts that mention or involve you"] = "あなたへのメンション付き投稿を作成しました。"; +App::$strings["New"] = ""; +App::$strings["Activity Stream - by date"] = "アクティビティストリーム - 日付順"; +App::$strings["Starred"] = "ホシつけ済み"; +App::$strings["Favourite Posts"] = "ホシをつけた投稿"; +App::$strings["Spam"] = "スパム"; +App::$strings["Posts flagged as SPAM"] = "投稿にスパムフラグを建てる"; +App::$strings["Channel"] = "チャンネル"; +App::$strings["Status Messages and Posts"] = "メッセージや投稿のステータス"; +App::$strings["About"] = ""; +App::$strings["Profile Details"] = "プロファイルの詳細"; +App::$strings["Photos"] = "写真"; +App::$strings["Photo Albums"] = "フォトアルバム"; +App::$strings["Files"] = "ファイル"; +App::$strings["Files and Storage"] = "ファイルとストレージ"; +App::$strings["Events"] = "イベント"; +App::$strings["Chatrooms"] = "チャットルーム"; +App::$strings["Bookmarks"] = "ブックマーク"; +App::$strings["Saved Bookmarks"] = "保存済みのブックマーク"; +App::$strings["Cards"] = "カード"; +App::$strings["View Cards"] = "カードを見る"; +App::$strings["articles"] = "記事"; +App::$strings["View Articles"] = "記事を見る"; +App::$strings["Webpages"] = "Webページ"; +App::$strings["View Webpages"] = "Webページを見る"; +App::$strings["Wikis"] = ""; +App::$strings["Wiki"] = ""; +App::$strings["__ctx:noun__ Like"] = "いいね!"; +App::$strings["__ctx:noun__ Dislike"] = "わるいね!"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Посетит", + 1 => "Посетят", + 2 => "Посетят", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Не посетит", + 1 => "Не посетят", + 2 => "Не посетят", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Не решил", + 1 => "Не решили", + 2 => "Не решили", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "Согласен", + 1 => "Согласны", + 2 => "Согласны", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Не согласен", + 1 => "Не согласны", + 2 => "Не согласны", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Воздержался", + 1 => "Воздержались", + 2 => "Воздержались", +); +App::$strings["Invalid data packet"] = "Неверный пакет данных"; +App::$strings["Unable to verify channel signature"] = "Невозможно проверить подпись канала"; +App::$strings["Unable to verify site signature for %s"] = "Невозможно проверить подпись сайта %s"; +App::$strings["invalid target signature"] = "недопустимая целевая подпись"; +App::$strings["l F d, Y \\@ g:i A"] = ""; +App::$strings["Starts:"] = "開始:"; +App::$strings["Finishes:"] = "終了:"; +App::$strings["Location:"] = "ロケーション"; +App::$strings["This event has been added to your calendar."] = "このイベントは貴方のカレンダーに追加されました。"; +App::$strings["Not specified"] = "Не указано"; +App::$strings["Needs Action"] = "Требует действия"; +App::$strings["Completed"] = "Завершено"; +App::$strings["In Process"] = "В процессе"; +App::$strings["Cancelled"] = "Отменено"; +App::$strings["Mobile"] = "携帯"; +App::$strings["Home"] = "家"; +App::$strings["Home, Voice"] = "Дом, голос"; +App::$strings["Home, Fax"] = "Дом, факс"; +App::$strings["Work"] = "仕事場"; +App::$strings["Work, Voice"] = "Работа, голос"; +App::$strings["Work, Fax"] = "Работа, факс"; +App::$strings["Other"] = "その他"; +App::$strings["Item was not found."] = "Элемент не найден."; +App::$strings["Unknown error."] = "Неизвестная ошибка."; +App::$strings["No source file."] = "Нет исходного файла."; +App::$strings["Cannot locate file to replace"] = "Не удается найти файл для замены"; +App::$strings["Cannot locate file to revise/update"] = "Не удается найти файл для пересмотра / обновления"; +App::$strings["File exceeds size limit of %d"] = "Файл превышает предельный размер %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Вы достигли предела %1$.0f Мбайт для хранения вложений."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Загрузка файла не удалась. Возможно система перегружена или попытка прекращена."; +App::$strings["Stored file could not be verified. Upload failed."] = "Файл для сохранения не может быть проверен. Загрузка не удалась."; +App::$strings["Path not available."] = "Путь недоступен."; +App::$strings["Empty pathname"] = "Пустое имя пути"; +App::$strings["duplicate filename or path"] = "дублирующееся имя файла или пути"; +App::$strings["Path not found."] = "Путь не найден."; +App::$strings["mkdir failed."] = "mkdir не удался"; +App::$strings["database storage failed."] = "ошибка при записи базы данных."; +App::$strings["Empty path"] = "Пустое имя пути"; +App::$strings["unknown"] = "неизвестный"; +App::$strings["%1\$s's bookmarks"] = "%1\$s"; +App::$strings["Directory Options"] = "ディレクトリオプション"; +App::$strings["Safe Mode"] = "セーフモード"; +App::$strings["Public Forums Only"] = "フォーラムのみ"; +App::$strings["This Website Only"] = "このサーバーのみ"; +App::$strings["view full size"] = "посмотреть в полный размер"; +App::$strings["Friendica"] = ""; +App::$strings["OStatus"] = ""; +App::$strings["GNU-Social"] = "GNU social"; +App::$strings["RSS/Atom"] = ""; +App::$strings["Diaspora"] = ""; +App::$strings["Facebook"] = ""; +App::$strings["Zot"] = ""; +App::$strings["LinkedIn"] = ""; +App::$strings["XMPP/IM"] = ""; +App::$strings["MySpace"] = ""; +App::$strings[" and "] = " と "; +App::$strings["public profile"] = "パブリックプロファイル"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s изменил %2\$s на “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "%1\$sの%2\$sを訪れる"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s обновлено %2\$s, изменено %3\$s."; +App::$strings["Remote authentication"] = "Удаленная аутентификация"; +App::$strings["Click to authenticate to your home hub"] = "Нажмите, чтобы аутентифицировать себя на домашнем узле"; +App::$strings["Channel Manager"] = "チャンネルの管理"; +App::$strings["Manage your channels"] = "Управление вашими каналами"; +App::$strings["Privacy Groups"] = "プライバシーグループ"; +App::$strings["Manage your privacy groups"] = "Управление вашим группами безопасности"; +App::$strings["Settings"] = "チャンネルの設定"; +App::$strings["Account/Channel Settings"] = "アカウント/チャンネルの設定"; +App::$strings["End this session"] = "このセッションの終了"; +App::$strings["Your profile page"] = "プロファイルページ"; +App::$strings["Edit Profiles"] = "ユーザー情報の編集"; +App::$strings["Manage/Edit profiles"] = "プロファイルの管理/編集"; +App::$strings["Edit your profile"] = "プロフィールを編集する"; +App::$strings["Sign in"] = "ログイン"; +App::$strings["Take me home"] = "自分のホームに戻る"; +App::$strings["Log me out of this site"] = "Выйти с этого сайта"; +App::$strings["Create an account"] = "アカウント作成"; +App::$strings["Help"] = "ヘルプ"; +App::$strings["Help and documentation"] = "ヘルプとドキュメント"; +App::$strings["Search"] = "検索"; +App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "@ユーザー, !フォーラム, #タグ, ?docs, contentsで検索"; +App::$strings["Admin"] = "管理画面"; +App::$strings["Site Setup and Configuration"] = "サイト設定"; +App::$strings["Loading"] = "読み込み"; +App::$strings["@name, !forum, #tag, ?doc, content"] = ""; +App::$strings["Please wait..."] = "お待ちください ..."; +App::$strings["Add Apps"] = "アプリの追加"; +App::$strings["Arrange Apps"] = "アプリの並び換え"; +App::$strings["Toggle System Apps"] = "システムアプリを表示する"; +App::$strings["Calendar"] = "カレンダー"; +App::$strings["Articles"] = "記事"; +App::$strings["Help:"] = "ヘルプ:"; +App::$strings["Not Found"] = ""; +App::$strings["Page not found."] = ""; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Удаленная группа с этим названием была восстановлена. Существующие разрешения пункт могут применяться к этой группе и к её будущих участников. Если это не то, чего вы хотели, пожалуйста, создайте другую группу с другим именем."; +App::$strings["Add new connections to this privacy group"] = "新しいコネクションをこのプライバシーグループに追加する"; +App::$strings["edit"] = "編集"; +App::$strings["Edit group"] = "グループの編集"; +App::$strings["Add privacy group"] = "プライバシーグループの追加"; +App::$strings["Channels not in any privacy group"] = "Каналы не включены ни в одну группу безопасности"; +App::$strings["add"] = "追加"; +App::$strings["Unable to import a removed channel."] = "削除されたチャンネルをインポートできませんでした。"; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "重複したアイデンティティはインポートできません。この作業は失敗しました。"; +App::$strings["Cloned channel not found. Import failed."] = "クローンチャンネルは存在しません。インポートは失敗しました。"; +App::$strings["Profile Photos"] = "プロファイル画像"; +App::$strings["Trending"] = "トレンド"; +App::$strings["Tags"] = "タグ"; +App::$strings["Categories"] = "カテゴリー"; +App::$strings["Keywords"] = "キーワード"; +App::$strings["have"] = ""; +App::$strings["has"] = ""; +App::$strings["want"] = ""; +App::$strings["wants"] = ""; +App::$strings["like"] = "いいね!"; +App::$strings["likes"] = "いいね!"; +App::$strings["dislike"] = "わるいね!"; +App::$strings["dislikes"] = "わるいね!"; +App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = ""; +App::$strings["default"] = "デフォルト"; +App::$strings["Select an alternate language"] = "言語を選択してください。"; +App::$strings["Channel is blocked on this site."] = "チャンネルはこのサイトでブロックされています。"; +App::$strings["Channel location missing."] = "チャンネルロケーションが不明です。"; +App::$strings["Response from remote channel was incomplete."] = "Ответ удаленного канала неполный."; +App::$strings["Premium channel - please visit:"] = "プレミアムチャンネル - 見てください:"; +App::$strings["Channel was deleted and no longer exists."] = "Канал удален и больше не существует."; +App::$strings["Remote channel or protocol unavailable."] = "Удалённый канал или протокол недоступен."; +App::$strings["Channel discovery failed."] = "Не удалось обнаружить канал."; +App::$strings["Protocol disabled."] = "Протокол отключен."; +App::$strings["Cannot connect to yourself."] = "Нельзя подключиться к самому себе."; +App::$strings["Visible to your default audience"] = "デフォルトのユーザーに表示"; +App::$strings["__ctx:acl__ Profile"] = "プロファイル"; +App::$strings["Only me"] = "自分だけ"; +App::$strings["Who can see this?"] = "投稿範囲 : "; +App::$strings["Custom selection"] = "カスタマイズ"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = " +\"表示\"で表示されます。\"非表示\"は\"表示\"よりも優先されます。"; +App::$strings["Show"] = "表示"; +App::$strings["Don't show"] = "非表示"; +App::$strings["Permissions"] = "表示範囲設定"; +App::$strings["Close"] = "閉じる"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "投稿範囲は %s 投稿後に %s 変更することはできません。ここで設定した人のみがこの投稿を観覧でいるようになります。"; +App::$strings["Miscellaneous"] = "その他"; +App::$strings["Birthday"] = "誕生日"; +App::$strings["Age: "] = "年齢:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD или MM-DD"; +App::$strings["Required"] = "必須"; +App::$strings["less than a second ago"] = "一秒未満"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d%2\$s前"; +App::$strings["__ctx:relative_date__ year"] = "年"; +App::$strings["__ctx:relative_date__ month"] = "月"; +App::$strings["__ctx:relative_date__ week"] = "週"; +App::$strings["__ctx:relative_date__ day"] = "日"; +App::$strings["__ctx:relative_date__ hour"] = "時間"; +App::$strings["__ctx:relative_date__ minute"] = "分"; +App::$strings["__ctx:relative_date__ second"] = "秒"; +App::$strings["%1\$s's birthday"] = "%1\$sの誕生日"; +App::$strings["Happy Birthday %1\$s"] = "はっぴばーすでぇーでぃあ%1\$s!!!"; +App::$strings["Cannot locate DNS info for database server '%s'"] = ""; +App::$strings["prev"] = "前へ"; +App::$strings["first"] = "最初"; +App::$strings["last"] = "最後"; +App::$strings["next"] = "次へ"; +App::$strings["older"] = "古い"; +App::$strings["newer"] = "新しい"; +App::$strings["No connections"] = "コネクション無し"; +App::$strings["Connections"] = "コネクション"; +App::$strings["View all %s connections"] = "全ての%s件のコネクションを見る"; +App::$strings["Network: %s"] = "ネットワーク: %s"; +App::$strings["Save"] = "保存"; +App::$strings["poke"] = ""; +App::$strings["ping"] = ""; +App::$strings["pinged"] = ""; +App::$strings["prod"] = ""; +App::$strings["prodded"] = ""; +App::$strings["slap"] = ""; +App::$strings["slapped"] = ""; +App::$strings["finger"] = ""; +App::$strings["fingered"] = ""; +App::$strings["rebuff"] = ""; +App::$strings["rebuffed"] = ""; +App::$strings["happy"] = ""; +App::$strings["sad"] = ""; +App::$strings["mellow"] = ""; +App::$strings["tired"] = ""; +App::$strings["perky"] = ""; +App::$strings["angry"] = ""; +App::$strings["stupefied"] = ""; +App::$strings["puzzled"] = ""; +App::$strings["interested"] = ""; +App::$strings["bitter"] = ""; +App::$strings["cheerful"] = ""; +App::$strings["alive"] = ""; +App::$strings["annoyed"] = ""; +App::$strings["anxious"] = ""; +App::$strings["cranky"] = ""; +App::$strings["disturbed"] = ""; +App::$strings["frustrated"] = ""; +App::$strings["depressed"] = ""; +App::$strings["motivated"] = ""; +App::$strings["relaxed"] = ""; +App::$strings["surprised"] = ""; +App::$strings["Monday"] = "月曜日"; +App::$strings["Tuesday"] = "火曜日"; +App::$strings["Wednesday"] = "水曜日"; +App::$strings["Thursday"] = "木曜日"; +App::$strings["Friday"] = "金曜日"; +App::$strings["Saturday"] = "土曜日"; +App::$strings["Sunday"] = "日曜日"; +App::$strings["January"] = "1月"; +App::$strings["February"] = "2月"; +App::$strings["March"] = "3月"; +App::$strings["April"] = "4月"; +App::$strings["May"] = "5月"; +App::$strings["June"] = "6月"; +App::$strings["July"] = "7月"; +App::$strings["August"] = "8月"; +App::$strings["September"] = "9月"; +App::$strings["October"] = "10月"; +App::$strings["November"] = "11月"; +App::$strings["December"] = "12月"; +App::$strings["Unknown Attachment"] = "未定義のファイル"; +App::$strings["Size"] = "サイズ"; +App::$strings["remove category"] = "カテゴリーの削除"; +App::$strings["remove from file"] = "ファイルからの削除"; +App::$strings["Download binary/encrypted content"] = "バイナリ/暗号化済みコンテンツをダウンロード"; +App::$strings["Link to Source"] = "投稿元のサイトへ移動"; +App::$strings["Page layout"] = "ページレイアウト"; +App::$strings["You can create your own with the layouts tool"] = "レイアウトツールで自分のレイアウトを作成することができます。"; +App::$strings["BBcode"] = ""; +App::$strings["HTML"] = ""; +App::$strings["Text"] = "テキスト"; +App::$strings["Comanche Layout"] = ""; +App::$strings["PHP"] = ""; +App::$strings["Page content type"] = "ページの方式を選択"; +App::$strings["activity"] = "ホーム"; +App::$strings["a-z, 0-9, -, and _ only"] = "a-z, 0-9, -, _ のみ"; +App::$strings["Design Tools"] = "デザインツール"; +App::$strings["Blocks"] = "ブロック"; +App::$strings["Menus"] = "メニュー"; +App::$strings["Layouts"] = "レイアウト"; +App::$strings["Pages"] = "ページ"; +App::$strings["Import"] = "インポート"; +App::$strings["Import website..."] = "webサイトのインポート"; +App::$strings["Select folder to import"] = "フォルダーを選んでインポート"; +App::$strings["Import from a zipped folder:"] = "zipフォルダーからインポート:"; +App::$strings["Import from cloud files:"] = "クラウドファイルからインポート:"; +App::$strings["/cloud/channel/path/to/folder"] = ""; +App::$strings["Enter path to website files"] = ""; +App::$strings["Select folder"] = "フォルダーの選択"; +App::$strings["Export website..."] = "webサイトをエクスポートする...."; +App::$strings["Export to a zip file"] = "zipファイルでエクスポートする"; +App::$strings["website.zip"] = ""; +App::$strings["Enter a name for the zip file."] = "zipファイルの名前を入力"; +App::$strings["Export to cloud files"] = "クラウドへエクスポートする"; +App::$strings["/path/to/export/folder"] = ""; +App::$strings["Enter a path to a cloud files destination."] = "Введите путь к расположению сетевых файлов."; +App::$strings["Specify folder"] = "特別なフォルダー"; +App::$strings["Collection"] = "コレクション"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "セッションは長時間無操作だったため切断されました(3時間以上)。作業をするためには画面を再読み込みしてください。"; +App::$strings["Edit"] = "編集"; +App::$strings["(Unknown)"] = "(Неизвестный)"; +App::$strings["Visible to anybody on the internet."] = "ネット界の誰でも見ることができます。"; +App::$strings["Visible to you only."] = "貴方しか見ることはできません。"; +App::$strings["Visible to anybody in this network."] = "このネットワークの中の誰でも見ることができます。"; +App::$strings["Visible to anybody authenticated."] = "認証されたユーザーのみが見ることができます。"; +App::$strings["Visible to anybody on %s."] = ""; +App::$strings["Visible to all connections."] = "全てのコネクションに表示"; +App::$strings["Visible to approved connections."] = "許可済みのコネクションだけに表示"; +App::$strings["Visible to specific connections."] = "特定のコネクションにだけ表示"; +App::$strings["Item not found."] = "アイテムは存在しません。"; +App::$strings["Privacy group not found."] = "プライバシーグループはありません。"; +App::$strings["Privacy group is empty."] = "プライバシーグループは空です。"; +App::$strings["Privacy group: %s"] = "プライバシーグループ : %s"; +App::$strings["Connection: %s"] = "コネクション: %s"; +App::$strings["Connection not found."] = "コネクションがありません"; +App::$strings["female"] = "女性"; +App::$strings["%1\$s updated her %2\$s"] = "%1\$sが%2\$sをアップデートしました。"; +App::$strings["male"] = "男性"; +App::$strings["%1\$s updated his %2\$s"] = "%1\$sが%2\$sをアップデートしました。"; +App::$strings["%1\$s updated their %2\$s"] = "%1\$sが%2\$sをアップデートしました。"; +App::$strings["profile photo"] = "プロファイル画像"; +App::$strings["[Edited %s]"] = "[編集 %s]"; +App::$strings["__ctx:edit_activity__ Post"] = "投稿"; +App::$strings["__ctx:edit_activity__ Comment"] = "コメント"; +App::$strings["%d invitation available"] = ""; +App::$strings["Advanced"] = ""; +App::$strings["Find Channels"] = "友達を探す"; +App::$strings["Enter name or interest"] = "名前または興味を入力"; +App::$strings["Connect/Follow"] = "接続/フォロー"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Владимир Ильич, Революционер"; +App::$strings["Find"] = "検索"; +App::$strings["Channel Suggestions"] = "チャンネルの提案"; +App::$strings["Random Profile"] = "チャンネルガチャ"; +App::$strings["Invite Friends"] = "友人を招待しよう!"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Расширенный пример: name=ivan and country=russia"; +App::$strings["Saved Folders"] = "投稿のフォルダーへの保存"; +App::$strings["Everything"] = "全て"; +App::$strings["Common Connections"] = "Общие контакты"; +App::$strings["View all %d common connections"] = "%d件の全てのコネクションを表示"; +App::$strings["Unable to obtain identity information from database"] = "Невозможно получить идентификационную информацию из базы данных"; +App::$strings["Empty name"] = "空の名前"; +App::$strings["Name too long"] = "名前が長すぎます"; +App::$strings["No account identifier"] = ""; +App::$strings["Nickname is required."] = "ニックネームは必須です。"; +App::$strings["Reserved nickname. Please choose another."] = "このニックネームは利用済みです。他を利用してください。"; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "ニックネームが使用済みか、利用できない文字列が含まれています。"; +App::$strings["Unable to retrieve created identity"] = ""; +App::$strings["Default Profile"] = "デフォルトのプロファイル"; +App::$strings["Friends"] = ""; +App::$strings["Unable to retrieve modified identity"] = "Не удается найти изменённый идентификатор"; +App::$strings["Requested profile is not available."] = "要求されたプロファイルは利用できませんでした。"; +App::$strings["Change profile photo"] = "プロ画の変更"; +App::$strings["Create New Profile"] = "新しいプロファイルの作成"; +App::$strings["Profile Image"] = "プロファイルイメージ"; +App::$strings["Visible to everybody"] = "全員へ表示"; +App::$strings["Edit visibility"] = "表示範囲を指定する"; +App::$strings["Gender:"] = "性別:"; +App::$strings["Homepage:"] = "ホームページ:"; +App::$strings["Online Now"] = "オンライン"; +App::$strings["Change your profile photo"] = "プロファイル画像の変更"; +App::$strings["Trans"] = ""; +App::$strings["Neuter"] = ""; +App::$strings["Non-specific"] = ""; +App::$strings["Full Name:"] = "フルネーム:"; +App::$strings["Like this channel"] = "このチャンネルをいいね!する"; +App::$strings["j F, Y"] = ""; +App::$strings["j F"] = ""; +App::$strings["Birthday:"] = "誕生日:"; +App::$strings["Age:"] = "年齢:"; +App::$strings["for %1\$d %2\$s"] = "for %1\$d %2\$s"; +App::$strings["Tags:"] = "タグ:"; +App::$strings["Sexual Preference:"] = ""; +App::$strings["Hometown:"] = ""; +App::$strings["Political Views:"] = "政治関心:"; +App::$strings["Religion:"] = "信仰:"; +App::$strings["About:"] = ""; +App::$strings["Hobbies/Interests:"] = "趣味/興味:"; +App::$strings["Likes:"] = "好き:"; +App::$strings["Dislikes:"] = "嫌い:"; +App::$strings["Contact information and Social Networks:"] = "連絡先とソーシャルネットワーク:"; +App::$strings["My other channels:"] = "他のチャンネル:"; +App::$strings["Musical interests:"] = "好きな音楽:"; +App::$strings["Books, literature:"] = "好きな本やリテラチャー:"; +App::$strings["Television:"] = "好きなテレビ:"; +App::$strings["Film/dance/culture/entertainment:"] = "映画/ダンス/カルチャー/エンタメ:"; +App::$strings["Love/Romance:"] = "ラブ/ロマンス:"; +App::$strings["Work/employment:"] = "職 / 従業員:"; +App::$strings["School/education:"] = "学校 / 教育:"; +App::$strings["Profile"] = "プロファイル"; +App::$strings["Like this thing"] = "これにいいね!"; +App::$strings["Export"] = "エクスポート"; +App::$strings["cover photo"] = "カバー画像"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "あなたのチャンネルアドレスを入力してください(例: channel@example.com)"; +App::$strings["Authenticate"] = "認証"; +App::$strings["Account '%s' deleted"] = "アカウント'%s'は削除されました。"; +App::$strings["General Features"] = ""; +App::$strings["New Member Links"] = "初めての人へ"; +App::$strings["Display new member quick links menu"] = "新規さんのためにクイックメニューを表示します。"; +App::$strings["Advanced Profiles"] = ""; +App::$strings["Additional profile sections and selections"] = "追加のプロファイルを作成する"; +App::$strings["Profile Import/Export"] = "プロファイルのインポートとエクスポート"; +App::$strings["Save and load profile details across sites/channels"] = "サイトやチャンネルを越えてプロファイルを保存、読み込みする"; +App::$strings["Web Pages"] = ""; +App::$strings["Provide managed web pages on your channel"] = ""; +App::$strings["Provide a wiki for your channel"] = ""; +App::$strings["Private Notes"] = "プライバシーノート"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Включает инструмент для хранения заметок и напоминаний (прим.: не зашифровано)"; +App::$strings["Create personal planning cards"] = "Создать личные карточки планирования"; +App::$strings["Create interactive articles"] = "Создать интерактивные статьи"; +App::$strings["Navigation Channel Select"] = "ナビゲーションバーでのチャンネル切り換え"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "アカウント画像のメニューから簡単にチャンネルを切り換えができるようになります。"; +App::$strings["Photo Location"] = "画像の位置情報"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Если данные о местоположении доступны на загруженных фотографий, связать их с картой."; +App::$strings["Access Controlled Chatrooms"] = "チャットルームのアクセス権限"; +App::$strings["Provide chatrooms and chat services with access control."] = "Предоставлять чаты и их службы с контролем доступа."; +App::$strings["Smart Birthdays"] = "スマート誕生日"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "国境を越えた人も祝えるように誕生日の時間をそれぞれのタイムゾーンに依存せず固定する"; +App::$strings["Event Timezone Selection"] = "イベントタイムゾーンセレクション"; +App::$strings["Allow event creation in timezones other than your own."] = "自分以外のタイムゾーンでイベントの作成を許可する"; +App::$strings["Premium Channel"] = "プレミアムチャンネル"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Позволяет установить ограничения и условия для подключающихся к вашему каналу"; +App::$strings["Advanced Directory Search"] = ""; +App::$strings["Allows creation of complex directory search queries"] = "複雑なディレクトリ検索クエリの作成が可能になります"; +App::$strings["Advanced Theme and Layout Settings"] = "詳細なテーマ/レイアウト設定"; +App::$strings["Allows fine tuning of themes and page layouts"] = "Разрешает тонкую настройку тем и шаблонов страниц"; +App::$strings["Access Control and Permissions"] = "アクセスコントロールと権限"; +App::$strings["Enable management and selection of privacy groups"] = "Включить управление и выбор групп безопасности"; +App::$strings["Multiple Profiles"] = "複数のプロファイル"; +App::$strings["Ability to create multiple profiles"] = "プロファイルが一つだといつから錯覚していた....???"; +App::$strings["Permission Categories"] = "権限カテゴリー"; +App::$strings["Create custom connection permission limits"] = "Создать пользовательские ограничения на доступ к подключению"; +App::$strings["OAuth1 Clients"] = "Клиенты OAuth1"; +App::$strings["Manage OAuth1 authenticatication tokens for mobile and remote apps."] = "Управлять токенами аутентификации OAuth1 для мобильных и удалённых приложений."; +App::$strings["OAuth2 Clients"] = "Клиенты OAuth2"; +App::$strings["Manage OAuth2 authenticatication tokens for mobile and remote apps."] = "Управлять токенами аутентификации OAuth2 для мобильных и удалённых приложений."; +App::$strings["Access Tokens"] = "Токены доступа"; +App::$strings["Create access tokens so that non-members can access private content."] = "Создать токены доступа для доступа к приватному содержимому."; +App::$strings["Post Composition Features"] = "Функции создания публикаций"; +App::$strings["Large Photos"] = "大きい画像"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "1024px以上のサイズの大きいサムネイルを投稿に表示します。有効にしていない時は640pxの小さいサムネイルが表示されます。"; +App::$strings["Channel Sources"] = "チャンネルソース"; +App::$strings["Automatically import channel content from other channels or feeds"] = ""; +App::$strings["Even More Encryption"] = "暗号化"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = " +共通暗号化キーによるエンドツーエンドの暗号化処理のできるオプションです。"; +App::$strings["Enable Voting Tools"] = "投票ツール"; +App::$strings["Provide a class of post which others can vote on"] = "投稿に対して賛成反対の意思を選択できるボックスを追加できるようになるオプションです。"; +App::$strings["Disable Comments"] = "コメントの無効化"; +App::$strings["Provide the option to disable comments for a post"] = "投稿に対してコメントができなくなります(Activitypubやdiasporaユーザーには通用しないので気をつけてください)。"; +App::$strings["Delayed Posting"] = "投稿予約"; +App::$strings["Allow posts to be published at a later date"] = "投稿を指定時刻に自動的に投稿する予約をできるようにするオプションです。"; +App::$strings["Content Expiration"] = "時限性投稿"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "投稿/コメントを指定時刻に自動的に削除してくれるようにするオプションです。"; +App::$strings["Suppress Duplicate Posts/Comments"] = "投稿の連投阻止"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = " +同じ内容の投稿を連続でしようとした時に阻止してくれるようになります。"; +App::$strings["Auto-save drafts of posts and comments"] = "下書きの自動保存"; +App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = " +自動で書きかけの投稿を保存します。画面が復帰した時に入力欄に復元されるようになります。"; +App::$strings["Network and Stream Filtering"] = "ストリームフィルター"; +App::$strings["Search by Date"] = "日付で検索"; +App::$strings["Ability to select posts by date ranges"] = "日付範囲で投稿を選択できるようになります。"; +App::$strings["Saved Searches"] = "保存済みの検索ワード"; +App::$strings["Save search terms for re-use"] = "検索ワードを保存すると後で簡単に利用できるようになります。"; +App::$strings["Alternate Stream Order"] = "ストリームオーダー"; +App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = "ストリームオーダーではストリームを\"コメント更新順\"、\"投稿日時順\"、\"スレッドの分解\"で時系列に並び変えができるようになります。"; +App::$strings["Contact Filter"] = "コンタクトフィルター"; +App::$strings["Ability to display only posts of a selected contact"] = "入力欄に入力したユーザーのみの投稿を表示するフィルターです。"; +App::$strings["Forum Filter"] = "フォーラムフィルター"; +App::$strings["Ability to display only posts of a specific forum"] = "参加している特定フォーラムの投稿だけを表示するフィルターです。"; +App::$strings["Personal Posts Filter"] = "マイアクションフィルター"; +App::$strings["Ability to display only posts that you've interacted on"] = "自分の全ての行動を表示するフィルターです。他者の投稿へのコメント等も含まれます。"; +App::$strings["Affinity Tool"] = "友好深度フィルター(適語募集中)"; +App::$strings["Filter stream activity by depth of relationships"] = "フォロワーの親友度でフィルタリングをします。(日本語不完全)"; +App::$strings["Suggest Channels"] = "チャンネルの提案"; +App::$strings["Show friend and connection suggestions"] = "新たなフォローの候補を表示します。"; +App::$strings["Connection Filtering"] = "コネクションフィルタリング"; +App::$strings["Use blog/list mode"] = "ブログ/リストモード"; +App::$strings["Community Tagging"] = "第三者からのタグ付け"; +App::$strings["Max height of content (in pixels)"] = "コンテンツの高さ(ピクセル指定)"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "受信したポストをキーワードやコンテンツでフィルタリングする"; +App::$strings["Post/Comment Tools"] = "投稿/コメントツール"; +App::$strings["Comments will be displayed separately"] = "投稿一覧とコメントとを分割する"; +App::$strings["Ability to tag existing posts"] = "タグを追加でつけるためのボタン"; +App::$strings["Post Categories"] = "投稿カテゴリー"; +App::$strings["Add categories to your posts"] = "投稿にカテゴリーを追加する"; +App::$strings["Emoji Reactions"] = "絵文字リアクション"; +App::$strings["Add emoji reaction ability to posts"] = "絵文字一つでリアクションするための便利なボタン"; +App::$strings["Ability to file posts under folders"] = "投稿をフォルダーに保存して整理をすることができるようになります。"; +App::$strings["Dislike Posts"] = "わるいね!"; +App::$strings["Ability to dislike posts/comments"] = "投稿やコメントにわるいね!をするボタン"; +App::$strings["Star Posts"] = "ホシ付け"; +App::$strings["Ability to mark special posts with a star indicator"] = "目印のホシをつけるためのボタン"; +App::$strings["Tag Cloud"] = "タグクラウド"; +App::$strings["Provide a personal tag cloud on your channel page"] = "自分の投稿からタグクラウドを生成します。"; +App::$strings["Unable to determine sender."] = "Невозможно определить отправителя."; +App::$strings["No recipient provided."] = "Получатель не предоставлен."; +App::$strings["[no subject]"] = ""; +App::$strings["Stored post could not be verified."] = "Сохранённая публикация не может быть проверена."; +App::$strings["Frequently"] = "頻度"; +App::$strings["Hourly"] = "毎時"; +App::$strings["Twice daily"] = "隔日"; +App::$strings["Daily"] = "毎日"; +App::$strings["Weekly"] = "毎週"; +App::$strings["Monthly"] = "毎月"; +App::$strings["Currently Male"] = "今は男"; +App::$strings["Currently Female"] = "今は女"; +App::$strings["Mostly Male"] = "ほぼ男"; +App::$strings["Mostly Female"] = "ほぼ女"; +App::$strings["Transgender"] = "トランスジェンダー"; +App::$strings["Intersex"] = "インターセックス"; +App::$strings["Transsexual"] = "トランスセクシャル"; +App::$strings["Hermaphrodite"] = "半陰陽"; +App::$strings["Undecided"] = "未定義"; +App::$strings["Males"] = "男"; +App::$strings["Females"] = "女"; +App::$strings["Gay"] = "ゲイ"; +App::$strings["Lesbian"] = "レズ"; +App::$strings["No Preference"] = "性的指向無し"; +App::$strings["Bisexual"] = "バイセクシャル"; +App::$strings["Autosexual"] = "オートセクシャル"; +App::$strings["Abstinent"] = "禁欲"; +App::$strings["Virgin"] = "ヴァージン"; +App::$strings["Deviant"] = ""; +App::$strings["Fetish"] = ""; +App::$strings["Oodles"] = ""; +App::$strings["Nonsexual"] = ""; +App::$strings["Single"] = "独身"; +App::$strings["Lonely"] = "孤独"; +App::$strings["Available"] = ""; +App::$strings["Unavailable"] = ""; +App::$strings["Has crush"] = ""; +App::$strings["Infatuated"] = ""; +App::$strings["Dating"] = ""; +App::$strings["Unfaithful"] = ""; +App::$strings["Sex Addict"] = ""; +App::$strings["Friends/Benefits"] = ""; +App::$strings["Casual"] = ""; +App::$strings["Engaged"] = ""; +App::$strings["Married"] = "既婚"; +App::$strings["Imaginarily married"] = ""; +App::$strings["Partners"] = ""; +App::$strings["Cohabiting"] = ""; +App::$strings["Common law"] = ""; +App::$strings["Happy"] = ""; +App::$strings["Not looking"] = ""; +App::$strings["Swinger"] = ""; +App::$strings["Betrayed"] = ""; +App::$strings["Separated"] = "別居"; +App::$strings["Unstable"] = ""; +App::$strings["Divorced"] = ""; +App::$strings["Imaginarily divorced"] = "В воображаемом разводе"; +App::$strings["Widowed"] = ""; +App::$strings["Uncertain"] = "Неопределенный"; +App::$strings["It's complicated"] = ""; +App::$strings["Don't care"] = "Всё равно"; +App::$strings["Ask me"] = "聞いて"; +App::$strings["Delete this item?"] = "このアイテムを削除しますか?"; +App::$strings["Comment"] = "コメント"; +App::$strings["%s show all"] = "%s 全て表示する"; +App::$strings["%s show less"] = "%s 隠されてたものを隠す"; +App::$strings["%s expand"] = "%s 展開する"; +App::$strings["%s collapse"] = "%s 縮小する"; +App::$strings["Password too short"] = "パスワードが短かすぎます。"; +App::$strings["Passwords do not match"] = "パスワードが一致しません。"; +App::$strings["everybody"] = "だれでも"; +App::$strings["Secret Passphrase"] = "パスワード"; +App::$strings["Passphrase hint"] = "パスワードのヒント"; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Уведомление: Права доступа изменились, но до сих пор не сохранены."; +App::$strings["close all"] = "з全て閉じる"; +App::$strings["Nothing new here"] = "新しいものはありません"; +App::$strings["Rate This Channel (this is public)"] = "Оценкa этoго канала (общедоступно)"; +App::$strings["Rating"] = "Оценка"; +App::$strings["Describe (optional)"] = "Охарактеризовать (необязательно)"; +App::$strings["Please enter a link URL"] = "URLを入力してください : "; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Есть несохраненные изменения. Вы уверены, что хотите покинуть эту страницу?"; +App::$strings["Location"] = "ロケーション"; +App::$strings["lovely"] = "かわいらしい"; +App::$strings["wonderful"] = "素晴しい"; +App::$strings["fantastic"] = "わくわくする"; +App::$strings["great"] = "いい"; +App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = "このニックネームは利用できません。こちら("; +App::$strings[") or enter a new one."] = ")はどうですか?このまま続行するか新しいニックネームを入力してください。"; +App::$strings["Thank you, this nickname is valid."] = "Спасибо, этот псевдоним может быть использован."; +App::$strings["A channel name is required."] = "チャンネル名は必須です。"; +App::$strings["This is a "] = "これは"; +App::$strings[" channel name"] = "チャンネル名だ!"; +App::$strings["timeago.prefixAgo"] = ""; +App::$strings["timeago.prefixFromNow"] = ""; +App::$strings["timeago.suffixAgo"] = "前"; +App::$strings["timeago.suffixFromNow"] = ""; +App::$strings["less than a minute"] = "ほんのちょっとすぐ"; +App::$strings["about a minute"] = "1分ぐらい"; +App::$strings["%d minutes"] = "%d分"; +App::$strings["about an hour"] = "約1時間"; +App::$strings["about %d hours"] = "約%d時間"; +App::$strings["a day"] = "1日"; +App::$strings["%d days"] = "%d日"; +App::$strings["about a month"] = "約1ヶ月"; +App::$strings["%d months"] = "%dヶ月"; +App::$strings["about a year"] = "約1年"; +App::$strings["%d years"] = "%d年"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = ""; +App::$strings["__ctx:long__ May"] = "5月"; +App::$strings["Jan"] = "1月"; +App::$strings["Feb"] = "2月"; +App::$strings["Mar"] = "3月"; +App::$strings["Apr"] = "4月"; +App::$strings["__ctx:short__ May"] = "5月"; +App::$strings["Jun"] = "6月"; +App::$strings["Jul"] = "7月"; +App::$strings["Aug"] = "8月"; +App::$strings["Sep"] = "9月"; +App::$strings["Oct"] = "10月"; +App::$strings["Nov"] = "11月"; +App::$strings["Dec"] = "12月"; +App::$strings["Sun"] = "日"; +App::$strings["Mon"] = "月"; +App::$strings["Tue"] = "火"; +App::$strings["Wed"] = "水"; +App::$strings["Thu"] = "木"; +App::$strings["Fri"] = "金"; +App::$strings["Sat"] = "土"; +App::$strings["__ctx:calendar__ today"] = "今日"; +App::$strings["__ctx:calendar__ month"] = "月"; +App::$strings["__ctx:calendar__ week"] = "週"; +App::$strings["__ctx:calendar__ day"] = "日"; +App::$strings["__ctx:calendar__ All day"] = "毎日"; +App::$strings["View PDF"] = "PDFで見る"; +App::$strings[" by "] = ""; +App::$strings[" on "] = ""; +App::$strings["Embedded content"] = "Встроенное содержимое"; +App::$strings["Embedding disabled"] = "Встраивание отключено"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "Файл превышает предельный размер для сайта в %lu байт"; +App::$strings["Image file is empty."] = "Файл изображения пуст."; +App::$strings["Unable to process image"] = "Не удается обработать изображение"; +App::$strings["Photo storage failed."] = "Ошибка хранилища фотографий."; +App::$strings["a new photo"] = "новая фотография"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s опубликовал %2\$s в %3\$s"; +App::$strings["Recent Photos"] = "最近の画像"; +App::$strings["Upload New Photos"] = "Загрузить новые фотографии"; +App::$strings["New window"] = "Новое окно"; +App::$strings["Open the selected location in a different window or browser tab"] = "Открыть выбранное местоположение в другом окне или вкладке браузера"; +App::$strings["Wiki updated successfully"] = "Wiki успешно обновлена"; +App::$strings["Wiki files deleted successfully"] = "Wiki успешно удалена"; +App::$strings["0. Beginner/Basic"] = "Начинающий / Базовый"; +App::$strings["1. Novice - not skilled but willing to learn"] = "1. Новичок - не опытный, но желающий учиться"; +App::$strings["2. Intermediate - somewhat comfortable"] = "2. Промежуточный - более удобный"; +App::$strings["3. Advanced - very comfortable"] = "3. Продвинутый - очень удобный"; +App::$strings["4. Expert - I can write computer code"] = "4. Эксперт - я умею программировать"; +App::$strings["5. Wizard - I probably know more than you do"] = "5. Волшебник - возможно я знаю больше чем ты"; +App::$strings["Public"] = "一般公開"; +App::$strings["Anybody in the \$Projectname network"] = "Любому в сети \$Projectname"; +App::$strings["Any account on %s"] = "Любой аккаунт в %s"; +App::$strings["Any of my connections"] = "Любой из моих контактов"; +App::$strings["Only connections I specifically allow"] = "Только те контакты, кому я дам разрешение"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Любой аутентифицированный (может включать посетителей их других сетей)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Любые контакты включая те, которые вы ещё не одобрили"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Это настройка по умолчанию для аудитории ваших обычных потоков и публикаций"; +App::$strings["This is your default setting for who can view your default channel profile"] = "Это настройка по умолчанию для тех, кто может просматривать профиль вашего основного канала"; +App::$strings["This is your default setting for who can view your connections"] = "Это настройка по умолчанию для тех, кто может просматривать ваши контакты"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Это настройка по умолчанию для тех, кто может просматривать ваше хранилище файлов и фотографий"; +App::$strings["This is your default setting for the audience of your webpages"] = "Это настройка по умолчанию для аудитории ваших веб-страниц"; +App::$strings["Admin Delete"] = "管理者削除"; +App::$strings["Save to Folder"] = "フォルダに保存する"; +App::$strings["I will attend"] = "Я буду присутствовать"; +App::$strings["I will not attend"] = "Я не буду присутствовать"; +App::$strings["I might attend"] = "Я возможно буду присутствовать"; +App::$strings["I agree"] = "同意"; +App::$strings["I disagree"] = "反対"; +App::$strings["I abstain"] = "辞退"; +App::$strings["View all"] = "全て表示"; +App::$strings["Add Tag"] = "タグを追加する"; +App::$strings["I like this (toggle)"] = "いいね!する"; +App::$strings["I don't like this (toggle)"] = "わるいね!する"; +App::$strings["Share This"] = "再共有"; +App::$strings["share"] = ""; +App::$strings["Delivery Report"] = "投稿の転送状況"; +App::$strings["%d comment"] = "%d件のコメント"; +App::$strings["View %s's profile - %s"] = "%sのプロファイルを表示 - %s"; +App::$strings["to"] = ""; +App::$strings["via"] = ""; +App::$strings["Wall-to-Wall"] = "Стена-к-Стене"; +App::$strings["via Wall-To-Wall:"] = "через Стена-к-Стене:"; +App::$strings["Attend"] = "Посетить"; +App::$strings["Attendance Options"] = "Параметры посещаемости"; +App::$strings["Vote"] = "Голосовать"; +App::$strings["Voting Options"] = "Параметры голосования"; +App::$strings["Add to Calendar"] = "カレンダーに追加"; +App::$strings["Mark all seen"] = "全部既読する"; +App::$strings["__ctx:noun__ Likes"] = "__ctx:noun__ が'いいね!'をしました。"; +App::$strings["__ctx:noun__ Dislikes"] = "__ctx:noun__ が'わるいね!'をしました。"; +App::$strings["This is you"] = "This is you"; +App::$strings["Image"] = "画像の挿入"; +App::$strings["Insert Link"] = "リンクの挿入"; +App::$strings["Video"] = "ビデオ"; +App::$strings["Your full name (required)"] = "フルネーム(必須)"; +App::$strings["Your email address (required)"] = "Eメールアドレス(必須)"; +App::$strings["Your website URL (optional)"] = "URL(webサイト)"; +App::$strings["Apps"] = "アプリ"; +App::$strings["Site Admin"] = "管理画面"; +App::$strings["View Bookmarks"] = "ブックマークの表示"; +App::$strings["My Chatrooms"] = "チャット"; +App::$strings["Remote Diagnostics"] = ""; +App::$strings["Activity"] = "ホーム"; +App::$strings["Channel Home"] = "ユーザーの投稿"; +App::$strings["Directory"] = "ディレクトリ"; +App::$strings["Mail"] = "ダイレクトメッセージ"; +App::$strings["Mood"] = "Mood"; +App::$strings["Chat"] = "チャット"; +App::$strings["Probe"] = ""; +App::$strings["Suggest"] = "あなたへのおすすめ"; +App::$strings["Random Channel"] = "チャンネルガチャ"; +App::$strings["Invite"] = "招待する"; +App::$strings["Features"] = "Функции"; +App::$strings["Post"] = "投稿"; +App::$strings["Update"] = "更新"; +App::$strings["Install"] = "インストール"; +App::$strings["Purchase"] = "Купить"; +App::$strings["Undelete"] = "Восстановить"; +App::$strings["Add to app-tray"] = "app-trayに追加"; +App::$strings["Remove from app-tray"] = "app-trayから削除"; +App::$strings["Pin to navbar"] = "ナビバーに固定する"; +App::$strings["Unpin from navbar"] = "ナビバーのピンを外す"; +App::$strings["\$Projectname Notification"] = "\$Projectname通知"; +App::$strings["Thank You,"] = "ありがとう。"; +App::$strings["This email was sent by %1\$s at %2\$s."] = "このEmailは%1\$sから%2\$sへ送信されました。"; +App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "メッセージの受信を停止したい場合は、あなたの通知設定を調整してください。%s"; +App::$strings["To stop receiving these messages, please adjust your %s."] = "メッセージの受信を停止したい場合は、あなたの%sを調整してください。"; +App::$strings["Notification Settings"] = "通知設定"; +App::$strings["%s "] = ""; +App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Notify] Получено новое сообщение в %s"; +App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s отправил вам новое личное сообщение в %2\$s."; +App::$strings["%1\$s sent you %2\$s."] = "%1\$s послал вам %2\$s."; +App::$strings["a private message"] = "личное сообщение"; +App::$strings["Please visit %s to view and/or reply to your private messages."] = "Пожалуйста, посетите %s для просмотра и/или ответа на ваши личные сообщения."; +App::$strings["commented on"] = "コメント :"; +App::$strings["liked"] = "いいね!"; +App::$strings["disliked"] = "わるいね!"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = ""; +App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = ""; +App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s%2\$s [zrl=%3\$s]あなたの %4\$s[/zrl]"; +App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Отмодерирован комментарий к беседе #%1\$d по %2\$s"; +App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Комментарий к беседе #%1\$d по %2\$s"; +App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$sがあなたがフォローしている投稿/コンテンツにコメントしました"; +App::$strings["Please visit %s to view and/or reply to the conversation."] = "Пожалуйста, посетите %s для просмотра и / или ответа в беседе."; +App::$strings["Please visit %s to approve or reject this comment."] = "Пожалуйста посетитет %s для одобрения и отклонения комментария."; +App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$sが[zrl=%2\$s]あなたの%3\$s[/zrl]をいいね!しました。"; +App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Беседа получила отметку \"нравится\" #%1\$d от %2\$s"; +App::$strings["%1\$s liked an item/conversation you created."] = "%1\$s нравится тема / беседа которую вы создали."; +App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Notify] %s сделал публикацию на стене вашего профиля"; +App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s сделал публикацию на стене вашего профиля в %2\$s"; +App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s опубликовал на [zrl=%2\$s]вашей стене[/zrl]"; +App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Notify] %sがタグ付けしました。"; +App::$strings["%1\$s tagged you at %2\$s"] = "%1\$sが%2\$sにタグ付けしました。"; +App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$s]タグ付けしました[/zrl]。"; +App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Notify] %1\$sがpokeしました。"; +App::$strings["%1\$s poked you at %2\$s"] = "%1\$sが%2\$sをpokeしました。"; +App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]がpokeしました[/zrl]。"; +App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Notify] %sがあなたの投稿にタグ付けしました。"; +App::$strings["%1\$s tagged your post at %2\$s"] = ""; +App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$sが[zrl=%2\$s]あなたの投稿[/zrl]にタグ付けしました。"; +App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Notify] Получено приглашение"; +App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Вы получили новый запрос контакта от '%1\$s' в %2\$s"; +App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Вы получили [zrl=%1\$s]новый запрос контакта[/zrl] от %2\$s."; +App::$strings["You may visit their profile at %s"] = "Вы можете увидеть его профиль по ссылке %s"; +App::$strings["Please visit %s to approve or reject the connection request."] = "Пожалуйста, посетите %s, чтобы одобрить или отклонить запрос контакта."; +App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Notify] Получено предложение дружить"; +App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Вы получили предложение дружить от '%1\$s' в %2\$s"; +App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Вы получили [zrl=%1\$s]предложение дружить[/zrl] для %2\$s от %3\$s."; +App::$strings["Name:"] = "Имя:"; +App::$strings["Photo:"] = "Фото:"; +App::$strings["Please visit %s to approve or reject the suggestion."] = "Пожалуйста, посетите %s, чтобы одобрить или отклонить предложение."; +App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Уведомление]"; +App::$strings["created a new post"] = "新しい投稿を作成しました。"; +App::$strings["commented on %s's post"] = "%sの投稿にコメントしました。"; +App::$strings["edited a post dated %s"] = "отредактировал публикацию датированную %s"; +App::$strings["edited a comment dated %s"] = "отредактировал комментарий датированный %s"; +App::$strings["(No Title)"] = "(нет заголовка)"; +App::$strings["Wiki page create failed."] = "Не удалось создать страницу Wiki."; +App::$strings["Wiki not found."] = "Wiki не найдена."; +App::$strings["Destination name already exists"] = "Имя назначения уже существует"; +App::$strings["Page not found"] = "Страница не найдена."; +App::$strings["Error reading page content"] = "Ошибка чтения содержимого страницы"; +App::$strings["Error reading wiki"] = "Ошибка чтения Wiki"; +App::$strings["Page update failed."] = "Не удалось обновить страницу."; +App::$strings["Nothing deleted"] = "Ничего не удалено"; +App::$strings["Compare: object not found."] = "Сравнение: объект не найден."; +App::$strings["Page updated"] = "Страница обновлена"; +App::$strings["Untitled"] = "Не озаглавлено"; +App::$strings["Wiki resource_id required for git commit"] = "Требуется resource_id Wiki для отправки в Git"; +App::$strings["__ctx:wiki_history__ Message"] = "Сообщение"; +App::$strings["__ctx:permcat__ default"] = "デフォルト"; +App::$strings["__ctx:permcat__ follower"] = "フォロワー"; +App::$strings["__ctx:permcat__ contributor"] = "コントリビューター"; +App::$strings["__ctx:permcat__ publisher"] = "パブリッシャー"; +App::$strings["Update Error at %s"] = "アップデートが%sでエラーしました"; +App::$strings["Update %s failed. See error logs."] = "%sのアップデートに失敗しました。エラーログを確認してください。"; +App::$strings["Missing room name"] = "[ルーム名が無い]"; +App::$strings["Duplicate room name"] = "[ルーム名の重複]"; +App::$strings["Invalid room specifier."] = ""; +App::$strings["Room not found."] = "ルームは存在しません。"; +App::$strings["Room is full"] = " ルームは満杯です。"; +App::$strings["Commented Date"] = "コメント更新順"; +App::$strings["Order by last commented date"] = "コメントが新しい順に投稿を並べる"; +App::$strings["Posted Date"] = "投稿日時順"; +App::$strings["Order by last posted date"] = "投稿日時が新しい順に投稿を並べる"; +App::$strings["Date Unthreaded"] = "スレッドの分解/Twitter風"; +App::$strings["Order unthreaded by date"] = "投稿コメント関係無しに時系列に並べる"; +App::$strings["Activity Order"] = "投稿の並び"; +App::$strings["Site"] = "サイト"; +App::$strings["Accounts"] = "アカウント"; +App::$strings["Member registrations waiting for confirmation"] = "メンバーが登録の許可を待っています"; +App::$strings["Channels"] = "チャンネル"; +App::$strings["Security"] = "セキュリティ"; +App::$strings["Addons"] = "アドオン"; +App::$strings["Themes"] = "テーマ"; +App::$strings["Inspect queue"] = "待機中のキュー"; +App::$strings["Profile Fields"] = "プロファイルの内容"; +App::$strings["DB updates"] = ""; +App::$strings["Logs"] = "ログ"; +App::$strings["Addon Features"] = "アドオンの設定"; +App::$strings["Tasks"] = "タスク"; +App::$strings["Ignore/Hide"] = "拒否/隠す"; +App::$strings["Suggestions"] = "知り合いかも?"; +App::$strings["See more..."] = "もっと見る"; +App::$strings["Received Messages"] = "メッセージを受信しました"; +App::$strings["Sent Messages"] = "メッセージを送信しました"; +App::$strings["Conversations"] = "会話"; +App::$strings["No messages."] = "メッセージはありません"; +App::$strings["Delete conversation"] = "会話を削除"; +App::$strings["Select Channel"] = "チャンネルの選択"; +App::$strings["Read-write"] = "読み書き"; +App::$strings["Read-only"] = "読む"; +App::$strings["My Calendars"] = "マイ カレンダー"; +App::$strings["Shared Calendars"] = "共有カレンダー"; +App::$strings["Share this calendar"] = "このカレンダーを共有する"; +App::$strings["Calendar name and color"] = "カレンダー名と色"; +App::$strings["Create new calendar"] = "新しいカレンダーを作成"; +App::$strings["Create"] = "作成"; +App::$strings["Calendar Name"] = "カレンダー名"; +App::$strings["Calendar Tools"] = "カレンダーツール"; +App::$strings["Import calendar"] = "カレンダーのインポート"; +App::$strings["Select a calendar to import to"] = "インポートするカレンダーを選択してください"; +App::$strings["Upload"] = "アップロード"; +App::$strings["Addressbooks"] = "アドレス帳"; +App::$strings["Addressbook name"] = "アドレス帳の名前"; +App::$strings["Create new addressbook"] = "新しいアドレス帳の作成"; +App::$strings["Addressbook Name"] = "アドレス帳の名前"; +App::$strings["Addressbook Tools"] = "アドレス帳ツール"; +App::$strings["Import addressbook"] = "アドレス帳のインポート"; +App::$strings["Select an addressbook to import to"] = "インポートするアドレス帳を選択してください"; +App::$strings["__ctx:widget__ Activity"] = "Активность"; +App::$strings["HQ Control Panel"] = "Панель управления HQ"; +App::$strings["Create a new post"] = "新規投稿の作成"; +App::$strings["Add new page"] = "新しいページの追加"; +App::$strings["Options"] = "オプション"; +App::$strings["Wiki Pages"] = "Wikiページ一覧"; +App::$strings["Page name"] = "ページの名前"; +App::$strings["Private Mail Menu"] = "プライベートメッセージメニュー"; +App::$strings["Combined View"] = "統合ビュー"; +App::$strings["Inbox"] = "受信ボックス"; +App::$strings["Outbox"] = "送信ボックス"; +App::$strings["New Message"] = "新規メッセージ"; +App::$strings["photo/image"] = "画像"; +App::$strings["Archives"] = "アーカイブ"; +App::$strings["Events Tools"] = "イベントツール"; +App::$strings["Export Calendar"] = "カレンダーのエクスポート"; +App::$strings["Import Calendar"] = "カレンダーのインポート"; +App::$strings["Wiki List"] = "Wikiリスト"; +App::$strings["Account settings"] = "アカウント設定"; +App::$strings["Channel settings"] = "チャンネルの設定"; +App::$strings["Additional features"] = ""; +App::$strings["Addon settings"] = "アドオンの設定"; +App::$strings["Display settings"] = "見た目の設定"; +App::$strings["Manage locations"] = "所在地の管理"; +App::$strings["Export channel"] = "チャンネルのエクスポート"; +App::$strings["OAuth1 apps"] = "OAuth1アプリケーション"; +App::$strings["OAuth2 apps"] = "OAuth2アプリケーション"; +App::$strings["Guest Access Tokens"] = "ゲスト アクセストゥークン"; +App::$strings["Connection Default Permissions"] = "規定のコネクション権限"; +App::$strings["Premium Channel Settings"] = "プレミアムチャンネル設定"; +App::$strings["View Photo"] = "画像を見る"; +App::$strings["Edit Album"] = "アルバムの編集"; +App::$strings["Public Hubs"] = ""; +App::$strings["Notes"] = "メモ"; +App::$strings["Overview"] = ""; +App::$strings["App Collections"] = "アプリ一覧"; +App::$strings["Available Apps"] = "利用可能なアプリ"; +App::$strings["Installed apps"] = "インストール済みアプリ"; +App::$strings["Bookmarked Chatrooms"] = "ブックマーク済みのチャットルーム"; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "У вас есть %1$.0f из %2$.0f разрешенных контактов."; +App::$strings["Add New Connection"] = "新しい接続の作成"; +App::$strings["Enter channel address"] = "チャンネルのurlを入力してください。"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "例 : harukin@plus.haruk.in https://plus.haruk.in/channel/harukin"; +App::$strings["Chat Members"] = "チャットメンバー"; +App::$strings["Suggested Chatrooms"] = "チャットルームの提案"; +App::$strings["Rating Tools"] = "評価ツール"; +App::$strings["Rate Me"] = "自分の評価"; +App::$strings["View Ratings"] = "評価を見る"; +App::$strings["Remove term"] = "Удалить термин"; +App::$strings["Me"] = ""; +App::$strings["Family"] = "Семья"; +App::$strings["Acquaintances"] = "Знакомые"; +App::$strings["All"] = "全部"; +App::$strings["Refresh"] = "更新"; +App::$strings["Personal Posts"] = "マイアクション"; +App::$strings["Show posts that mention or involve me"] = "自分がコメント、いいね!等をした投稿を表示する"; +App::$strings["Starred Posts"] = "ホシをつけた投稿"; +App::$strings["Show posts that I have starred"] = "ホシをつけた投稿を表示する"; +App::$strings["Show posts related to the %s privacy group"] = "プライバシーグループ\"%s\"の中の投稿を表示する"; +App::$strings["Show my privacy groups"] = "プライバシーグループを表示する"; +App::$strings["Show posts to this forum"] = "このフォーラムへの投稿を表示する"; +App::$strings["Forums"] = "フォーラム"; +App::$strings["Show forums"] = "フォーラムの表示"; +App::$strings["Show posts that I have filed to %s"] = "フォルダ'%s'に保存した投稿を表示"; +App::$strings["Show filed post categories"] = "保存した投稿"; +App::$strings["Panel search"] = "パネルサーチ"; +App::$strings["Filter by name"] = "特定文字列でフィルタリング"; +App::$strings["Remove active filter"] = "アクティビティフィルターの消去"; +App::$strings["Activity Filters"] = "アクティビティフィルター"; +App::$strings["Click to show more"] = "更に表示....."; +App::$strings["New Network Activity"] = "ホーム"; +App::$strings["New Network Activity Notifications"] = "ホームへの通知"; +App::$strings["View your network activity"] = "ホームを見る"; +App::$strings["Mark all notifications read"] = "全部既読にする"; +App::$strings["Show new posts only"] = "新しい投稿のみ表示する"; +App::$strings["New Home Activity"] = "自分への新しいアクティビティ"; +App::$strings["New Home Activity Notifications"] = "自分への新しいアクティビティ通知"; +App::$strings["View your home activity"] = "自分の投稿を見る"; +App::$strings["Mark all notifications seen"] = "全部既読にする"; +App::$strings["New Mails"] = "新しいダイレクトメッセージ"; +App::$strings["New Mails Notifications"] = "メッセージ通知"; +App::$strings["View your private mails"] = "メッセージを見る"; +App::$strings["Mark all messages seen"] = "全てのメッセージを既読にする"; +App::$strings["New Events"] = "新しいイベント"; +App::$strings["New Events Notifications"] = "新しいイベントの通知"; +App::$strings["View events"] = "イベントを見る"; +App::$strings["Mark all events seen"] = "全部既読にする"; +App::$strings["New Connections"] = "新規フォロー"; +App::$strings["New Connections Notifications"] = "新規フォローの通知"; +App::$strings["View all connections"] = "全てのコネクションを見る"; +App::$strings["New Files"] = "新しいファイル"; +App::$strings["New Files Notifications"] = "新しいファイルの通知"; +App::$strings["Notices"] = "通知"; +App::$strings["View all notices"] = "全ての通知を見る"; +App::$strings["Mark all notices seen"] = "全部既読にする"; +App::$strings["New Registrations"] = "新規登録"; +App::$strings["New Registrations Notifications"] = "新規登録の通知"; +App::$strings["Public Stream"] = "連合タイムライン"; +App::$strings["Public Stream Notifications"] = "連合タイムライン通知"; +App::$strings["View the public stream"] = "連合タイムラインを見る"; +App::$strings["Sorry, you have got no notifications at the moment"] = "申し訳ありませんが現在通知が取得できません。もう少しお待ちください。接続状況を確認して頂き、問題の無い場合は鯖主へご連絡ください。"; +App::$strings["Profile Creation"] = "プロフィールを作成しよう!"; +App::$strings["Upload profile photo"] = "プロ画をアップロードしよう!"; +App::$strings["Upload cover photo"] = "カバー画をアップロードしよう!"; +App::$strings["Find and Connect with others"] = "人を探してフォローしよう!"; +App::$strings["View the directory"] = "ディレクトリを見る"; +App::$strings["View friend suggestions"] = "フォローの提案を見る"; +App::$strings["Manage your connections"] = "自分のコネクションを管理する"; +App::$strings["Communicate"] = "さぁコミュニケーションだ!"; +App::$strings["View your channel homepage"] = "自分のチャンネルを見る"; +App::$strings["View your network stream"] = "自分のホームを見る"; +App::$strings["Documentation"] = "ドキュメント"; +App::$strings["View public stream"] = "連合タイムラインを見る"; +App::$strings["Social Networking"] = "一般的SNS用途"; +App::$strings["Social - Federation"] = "Social - 連合"; +App::$strings["Social - Mostly Public"] = "Social - 公開"; +App::$strings["Social - Restricted"] = "Social - 限定"; +App::$strings["Social - Private"] = "Social - 非公開"; +App::$strings["Community Forum"] = "コミュニティ / フォーラム"; +App::$strings["Forum - Mostly Public"] = "Forum - 公開"; +App::$strings["Forum - Restricted"] = "Forum - 限定"; +App::$strings["Forum - Private"] = "Forum - 非公開"; +App::$strings["Feed Republish"] = ""; +App::$strings["Feed - Mostly Public"] = "Feed - 公開"; +App::$strings["Feed - Restricted"] = "Feed - 限定"; +App::$strings["Special Purpose"] = ""; +App::$strings["Special - Celebrity/Soapbox"] = ""; +App::$strings["Special - Group Repository"] = ""; +App::$strings["Custom/Expert Mode"] = "カスタム / エキスパートモード"; +App::$strings["Can view my channel stream and posts"] = "チャンネルストリームや投稿の表示"; +App::$strings["Can send me their channel stream and posts"] = "個人のチャンネルストリームへの投稿"; +App::$strings["Can view my default channel profile"] = "規定のチャンネルプロファイルの表示"; +App::$strings["Can view my connections"] = "コネクションの表示"; +App::$strings["Can view my file storage and photos"] = "ストレージや画像の表示"; +App::$strings["Can upload/modify my file storage and photos"] = "ストレージやアルバムへのアップロード"; +App::$strings["Can view my channel webpages"] = "チャンネルウェブページの表示"; +App::$strings["Can view my wiki pages"] = "ウィキページの表示"; +App::$strings["Can create/edit my channel webpages"] = "ウェブページの編集"; +App::$strings["Can write to my wiki pages"] = "wikiへの寄稿"; +App::$strings["Can post on my channel (wall) page"] = "チャンネルページへの寄稿"; +App::$strings["Can comment on or like my posts"] = "投稿へのコメントやいいね!"; +App::$strings["Can send me private mail messages"] = "プライベートメッセージ(DM)の送信"; +App::$strings["Can like/dislike profiles and profile things"] = "プロファイルやプロファイル項目へのいいね!/わるいね!"; +App::$strings["Can forward to all my channel connections via ! mentions in posts"] = "!マークでのメンション&投稿"; +App::$strings["Can chat with me"] = "チャット"; +App::$strings["Can source my public posts in derived channels"] = "送信された投稿のソースへのリンク"; +App::$strings["Can administer my channel"] = "自分のチャンネルの管理権限"; +App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = " +リモートログインに失敗しました。既にローカルでログインしています。ログアウトしてから再試行してください。"; +App::$strings["App installed."] = "アプリはインストール済みです。"; +App::$strings["Malformed app."] = "不正な形式のアプリ."; +App::$strings["Embed code"] = ""; +App::$strings["Edit App"] = "アプリの編集"; +App::$strings["Create App"] = "アプリの作成"; +App::$strings["Name of app"] = "アプリの名前"; +App::$strings["Location (URL) of app"] = "アプリのURL"; +App::$strings["Photo icon URL"] = "アプリのアイコンのURL"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 ピクセル - 任意"; +App::$strings["Categories (optional, comma separated list)"] = "カテゴリー (任意、コンマで分けれます。)"; +App::$strings["Version ID"] = "バージョンID"; +App::$strings["Price of app"] = "アプリの価格"; +App::$strings["Location (URL) to purchase app"] = "アプリ購入先URL"; +App::$strings["network"] = "ネットワーク"; +App::$strings["INVALID EVENT DISMISSED!"] = ""; +App::$strings["Summary: "] = "サマリー:"; +App::$strings["Date: "] = "日付:"; +App::$strings["Reason: "] = "理由:"; +App::$strings["INVALID CARD DISMISSED!"] = ""; +App::$strings["Name: "] = "名前:"; +App::$strings["Event title"] = "イベントのタイトル"; +App::$strings["Start date and time"] = "開始日と時刻"; +App::$strings["Example: YYYY-MM-DD HH:mm"] = "例: YYYY-MM-DD HH:mm"; +App::$strings["End date and time"] = "終了日と時刻"; +App::$strings["Previous"] = "前へ"; +App::$strings["Next"] = "次へ"; +App::$strings["Today"] = "今日"; +App::$strings["Month"] = "月"; +App::$strings["Week"] = "週"; +App::$strings["Day"] = "日"; +App::$strings["List month"] = "月リスト"; +App::$strings["List week"] = "週リスト"; +App::$strings["List day"] = "日リスト"; +App::$strings["More"] = "増やす"; +App::$strings["Less"] = "減らす"; +App::$strings["Select calendar"] = "カレンダーの選択"; +App::$strings["Delete all"] = "全部削除"; +App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Простите, но редактирование повторяющихся событий пока не реализовано."; +App::$strings["Organisation"] = "Организация"; +App::$strings["Title"] = "Наименование"; +App::$strings["Phone"] = "電話番号"; +App::$strings["Instant messenger"] = "メッセージ"; +App::$strings["Website"] = "Веб-сайт"; +App::$strings["Address"] = "アドレス"; +App::$strings["Note"] = "Заметка"; +App::$strings["Add Field"] = "追加"; +App::$strings["P.O. Box"] = "абонентский ящик"; +App::$strings["Additional"] = "Дополнительно"; +App::$strings["Street"] = "Улица"; +App::$strings["Locality"] = "Населённый пункт"; +App::$strings["Region"] = "Регион"; +App::$strings["ZIP Code"] = "Индекс"; +App::$strings["Country"] = "国"; +App::$strings["Default Calendar"] = "デフォルトカレンダー"; +App::$strings["Default Addressbook"] = "デフォルトアドレスブック"; +App::$strings["This page is available only to site members"] = "Эта страница доступна только для подписчиков сайта"; +App::$strings["Welcome"] = ""; +App::$strings["What would you like to do?"] = "Что бы вы хотели сделать?"; +App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Пожалуйста, запомните эту страницу если вы хотите вернуться на неё в будущем"; +App::$strings["Upload a profile photo"] = "Загрузить фотографию профиля"; +App::$strings["Upload a cover photo"] = "Загрузить фотографию обложки"; +App::$strings["Edit your default profile"] = "Редактировать ваш профиль по умолчанию"; +App::$strings["View the channel directory"] = "Просмотр каталога каналов"; +App::$strings["View/edit your channel settings"] = "Просмотреть / редактировать настройки вашего канала"; +App::$strings["View the site or project documentation"] = "Просмотр документации сайта / проекта"; +App::$strings["Visit your channel homepage"] = "Посетить страницу вашего канала"; +App::$strings["View your connections and/or add somebody whose address you already know"] = "Просмотреть ваши контакты и / или добавить кого-то чей адрес в уже знаете"; +App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Ваш персональный поток (может быть пуст пока вы не добавите контакты)"; +App::$strings["View the public stream. Warning: this content is not moderated"] = "Просмотр публичного потока. Предупреждение: этот контент не модерируется"; +App::$strings["Page owner information could not be retrieved."] = "Информация о владельце страницы не может быть получена."; +App::$strings["Album not found."] = "Альбом не найден."; +App::$strings["Delete Album"] = "Удалить альбом"; +App::$strings["Delete Photo"] = "画像の削除"; +App::$strings["Public access denied."] = "Общественный доступ запрещен."; +App::$strings["No photos selected"] = "Никакие фотографии не выбраны"; +App::$strings["Access to this item is restricted."] = "Доступ к этому элементу ограничен."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "画像に%1$.2f MB中%2$.2fMBの容量を消費しています。"; +App::$strings["%1$.2f MB photo storage used."] = "画像に%1$.2fMBの容量を消費しています。"; +App::$strings["Upload Photos"] = "画像のアップロード"; +App::$strings["Enter an album name"] = "アルバム名"; +App::$strings["or select an existing album (doubleclick)"] = "または既にあるアルバムに追加(ダブルクリック)"; +App::$strings["Create a status post for this upload"] = "このアップロードに関して自動でインフォメーション投稿をする"; +App::$strings["Description (optional)"] = "説明(オプション)"; +App::$strings["Show Newest First"] = "名前順"; +App::$strings["Show Oldest First"] = "古い順"; +App::$strings["Add Photos"] = "画像の追加"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Доступ запрещен. Доступ к этому элементу может быть ограничен."; +App::$strings["Photo not available"] = "画像は利用できません"; +App::$strings["Use as profile photo"] = "プロファイル画像として使用"; +App::$strings["Use as cover photo"] = "カバー画像として使用"; +App::$strings["Private Photo"] = "プライベート画像"; +App::$strings["View Full Size"] = "フルサイズで表示"; +App::$strings["Edit photo"] = "画像の編集"; +App::$strings["Rotate CW (right)"] = "右に回転"; +App::$strings["Rotate CCW (left)"] = "左に回転"; +App::$strings["Move photo to album"] = "画像を指定のアルバムへ移動"; +App::$strings["Enter a new album name"] = "新しいアルバム名の入力"; +App::$strings["or select an existing one (doubleclick)"] = "又は既存のアルバムの使用(ダブルクリック)"; +App::$strings["Add a Tag"] = "タグの追加"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "例: @bob, @Barbara_Jensen, @jim@example.com"; +App::$strings["Flag as adult in album view"] = "アルバム内でアダルトフラグを付ける"; +App::$strings["Photo Tools"] = "画像ツール"; +App::$strings["In This Photo:"] = "На этой фотографии:"; +App::$strings["Map"] = "Карта"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Указанные хабы разрешают публичную регистрацию для сети \$Projectname. Все хабы в сети взаимосвязаны, поэтому членство в любом из них передает членство во всю сеть. Некоторым хабам может потребоваться подписка или предоставление многоуровневых планов обслуживания. Сам хаб может предоставить дополнительные сведения."; +App::$strings["Hub URL"] = "URL сервера"; +App::$strings["Access Type"] = "Тип доступа"; +App::$strings["Registration Policy"] = "Политика регистрации"; +App::$strings["Stats"] = "Статистика"; +App::$strings["Software"] = "Программное обеспечение"; +App::$strings["Rate"] = "Оценка"; +App::$strings["View"] = "表示"; +App::$strings["Continue"] = "続ける"; +App::$strings["Premium Channel Setup"] = "Установка премиум канала"; +App::$strings["Enable premium channel connection restrictions"] = "Включить ограничения для премиум канала"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Пожалуйста введите ваши ограничения или условия, такие, как оплата PayPal, правила использования и т.п."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "このチャンネルをフォローするためには追加のステップや許諾が必要になる可能性があります :"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Потенциальные соединения будут видеть следующий предварительный текст:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "継続することにより、私はこのページで提供された指示に従ったとみなします。"; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Владельцем канала не было представлено никаких специальных инструкций.)"; +App::$strings["Restricted or Premium Channel"] = "制限された、またはプレミアムなチャンネル"; +App::$strings["Poke somebody"] = ""; +App::$strings["Poke/Prod"] = ""; +App::$strings["Poke, prod or do other things to somebody"] = ""; +App::$strings["Recipient"] = ""; +App::$strings["Choose what you wish to do to recipient"] = ""; +App::$strings["Make this post private"] = ""; +App::$strings["Unable to find your hub."] = "あなたのhubからみつけることができませんでした。"; +App::$strings["Post successful."] = "投稿しました。"; +App::$strings["%s element installed"] = "%sのエレメントがインストールされました。"; +App::$strings["%s element installation failed"] = "%sのエレメントのインストールに失敗しました。"; +App::$strings["sent you a private message"] = "あなたにプライベートメッセージを送信しました。"; +App::$strings["added your channel"] = "あなたのチャンネルを追加しました。"; +App::$strings["requires approval"] = "Требуется подтверждение"; +App::$strings["g A l F d"] = "g A l F d"; +App::$strings["[today]"] = "[今日]"; +App::$strings["posted an event"] = "イベントを投稿しました。"; +App::$strings["shared a file with you"] = "あなたとファイルを共有しました。"; +App::$strings["Private forum"] = "プライベートフォーラム"; +App::$strings["Public forum"] = "パブリックフォーラム"; +App::$strings["Some blurb about what to do when you're new here"] = "Некоторые предложения о том, что делать, если вы здесь новичок "; +App::$strings["Active"] = "アクティブ"; +App::$strings["Blocked"] = "ブロック"; +App::$strings["Ignored"] = "拒否"; +App::$strings["Hidden"] = "隠し"; +App::$strings["Archived/Unreachable"] = "アーカイブ/リーチ"; +App::$strings["Active Connections"] = "アクティブなコネクション"; +App::$strings["Show active connections"] = "アクティブなコネクションを表示"; +App::$strings["Show pending (new) connections"] = "許可待ちな新しいコネクションを表示"; +App::$strings["Only show blocked connections"] = "ブロック済みのコネクションだけを表示"; +App::$strings["Only show ignored connections"] = "拒否済みのコネクションだけを表示"; +App::$strings["Only show archived/unreachable connections"] = "アーカイブ/リーチ済みのコネクションだけを表示"; +App::$strings["Only show hidden connections"] = "隠したコネクションだけを表示"; +App::$strings["All Connections"] = "全てのコネクション"; +App::$strings["Show all connections"] = "全てのコネクションを表示する"; +App::$strings["Pending approval"] = "許可待ち"; +App::$strings["Archived"] = "アーカイブ済み"; +App::$strings["Not connected at this location"] = "このロケーションからはアクセスできません。"; +App::$strings["%1\$s [%2\$s]"] = ""; +App::$strings["Edit connection"] = "コネクションの編集"; +App::$strings["Delete connection"] = "コネクションの削除"; +App::$strings["Channel address"] = "チャンネルアドレス"; +App::$strings["Network"] = "ネットワーク"; +App::$strings["Call"] = ""; +App::$strings["Status"] = "ステータス"; +App::$strings["Connected"] = "コネクト日時"; +App::$strings["Approve connection"] = "コネクション要求の許可"; +App::$strings["Ignore connection"] = "コネクション要求の拒否"; +App::$strings["Ignore"] = "拒否"; +App::$strings["Recent activity"] = "最近のアクティビティ"; +App::$strings["Search your connections"] = "コネクションを検索"; +App::$strings["Connections search"] = "コネクションの検索"; +App::$strings["Unable to locate original post."] = "ポストのオリジナルの場所を特定できませんでした。"; +App::$strings["Empty post discarded."] = "空のポストは作成できません。"; +App::$strings["Duplicate post suppressed."] = "多重投稿を検出しました。"; +App::$strings["System error. Post not saved."] = "システムエラーです。投稿は保存されませんでした。"; +App::$strings["Your comment is awaiting approval."] = "Ваш комментарий ожидает одобрения."; +App::$strings["Unable to obtain post information from database."] = "データベースから投稿の情報を取得できませんでした。"; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Вы достигли вашего ограничения в %1$.0f публикаций высокого уровня."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Вы достигли вашего ограничения в %1$.0f страниц."; +App::$strings["Calendar entries imported."] = "События календаря импортированы."; +App::$strings["No calendar entries found."] = "Не найдено событий в календаре."; +App::$strings["Event can not end before it has started."] = "Событие не может завершиться до его начала."; +App::$strings["Unable to generate preview."] = "プレビューの生成ができませんでした。"; +App::$strings["Event title and start time are required."] = "イベントのタイトルと開始時刻は必須です"; +App::$strings["Event not found."] = "Событие не найдено."; +App::$strings["Edit event title"] = "イベントタイトル"; +App::$strings["Categories (comma-separated list)"] = "カテゴリ指定 (任意、カンマで追加)"; +App::$strings["Edit Category"] = "カテゴリーの編集"; +App::$strings["Category"] = "カテゴリー"; +App::$strings["Edit start date and time"] = "開始時刻と日時"; +App::$strings["Finish date and time are not known or not relevant"] = "終了時期は未定、又は終了概念が無い"; +App::$strings["Edit finish date and time"] = "終了時刻と日時"; +App::$strings["Finish date and time"] = "終了時刻と日時"; +App::$strings["Adjust for viewer timezone"] = "観覧者のタイムゾーンに自動で調整する"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "局所的なイベントには的していますが、世界的なイベントには適していないかもしれません。"; +App::$strings["Edit Description"] = "説明"; +App::$strings["Edit Location"] = "位置情報"; +App::$strings["Timezone:"] = "タイムゾーン:"; +App::$strings["Advanced Options"] = "詳細設定"; +App::$strings["l, F j"] = ""; +App::$strings["Edit event"] = "イベントの編集"; +App::$strings["Delete event"] = "イベントの削除"; +App::$strings["calendar"] = "カレンダー"; +App::$strings["Edit Event"] = "イベントの編集"; +App::$strings["Create Event"] = "イベントの作成"; +App::$strings["Event removed"] = "イベントは削除されました"; +App::$strings["Failed to remove event"] = "イベントの削除に失敗しました"; +App::$strings["Layout Name"] = "レイアウト名"; +App::$strings["Layout Description (Optional)"] = "レイアウトの説明(任意)"; +App::$strings["Comanche page description language help"] = "Помощь по языку описания страниц Comanche "; +App::$strings["Layout Description"] = "レイアウトの説明"; +App::$strings["Created"] = "作成"; +App::$strings["Edited"] = "編集"; +App::$strings["Download PDL file"] = "PDLファイルのダウンロード"; +App::$strings["No more system notifications."] = "通知はありません。"; +App::$strings["System Notifications"] = "通知"; +App::$strings["Layout updated."] = "レイアウトはアップデートされました"; +App::$strings["Feature disabled."] = "機能は無効化されています"; +App::$strings["Edit System Page Description"] = "ページのレイアウト全体のデザイン設定を変更できます。"; +App::$strings["(modified)"] = "(編集済み)"; +App::$strings["Reset"] = "リセット"; +App::$strings["Layout not found."] = "レイアウトはありません"; +App::$strings["Module Name:"] = "モジュール名:"; +App::$strings["Layout Help"] = "レイアウトヘルプ"; +App::$strings["Edit another layout"] = "他のレイアウトを編集"; +App::$strings["System layout"] = "システムレイアウト"; +App::$strings["Unable to lookup recipient."] = ""; +App::$strings["Unable to communicate with requested channel."] = "Не удалось установить связь с запрашиваемым каналом."; +App::$strings["Cannot verify requested channel."] = "Не удалось установить подлинность требуемого канала."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Выбранный канал ограничивает частные сообщения. Отправка не удалась."; +App::$strings["Messages"] = "Сообщения"; +App::$strings["message"] = "メッセージ"; +App::$strings["Message recalled."] = "Сообщение отозванно."; +App::$strings["Conversation removed."] = "Разговор удален."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Истекает YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "Запрашиваемый канал не доступен."; +App::$strings["Send Private Message"] = "Отправить личное сообщение"; +App::$strings["To:"] = "Кому:"; +App::$strings["Subject:"] = "Тема:"; +App::$strings["Your message:"] = "Сообщение:"; +App::$strings["Attach file"] = "Прикрепить файл"; +App::$strings["Send"] = "Отправить"; +App::$strings["Delete message"] = "Удалить сообщение"; +App::$strings["Delivery report"] = "転送状況"; +App::$strings["Recall message"] = "Отозвать сообщение"; +App::$strings["Message has been recalled."] = "Сообщение отозванно"; +App::$strings["Delete Conversation"] = "Удалить разговор"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Безопасная связь недоступна. Вы можете попытаться ответить со страницы профиля отправителя."; +App::$strings["Send Reply"] = "Отправить ответ"; +App::$strings["Your message for %s (%s):"] = "Ваше сообщение для %s (%s):"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Удаление канала не разрешается в течении 48 часов после смены пароля у аккаунта."; +App::$strings["Remove This Channel"] = "チャンネルの削除"; +App::$strings["WARNING: "] = "警告 : "; +App::$strings["This channel will be completely removed from the network. "] = "このチャンネルはネットワークから完全に削除されます。"; +App::$strings["This action is permanent and can not be undone!"] = "この作業は取り消せませんので注意して実行してください。"; +App::$strings["Please enter your password for verification:"] = "パスワードを入力してください : "; +App::$strings["Remove this channel and all its clones from the network"] = "このチャンネルとそのクローンを全て削除する"; +App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "デフォルトではこのhubのチャンネルだけがネットワークから削除されます。クローンを作成している場合は削除されません。"; +App::$strings["Remove Channel"] = "チャンネルの削除"; +App::$strings["Reset form"] = "Очистить форму"; +App::$strings["Welcome to Hubzilla!"] = "hubzillaへようこそ!!!!"; +App::$strings["You have got no unseen posts..."] = "У вас нет видимых публикаций..."; +App::$strings["Item not found"] = "Элемент не найден"; +App::$strings["Channel not found."] = "Канал не найден."; +App::$strings["Edit Card"] = "Редактировать карточку"; +App::$strings["Xchan Lookup"] = "Поиск Xchan"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "Запрос Xchan начинается с (или webbie):"; +App::$strings["Not found."] = "Не найдено."; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "ユーザーのおすすめはありません。もしこのサイトが作成されたばかりなのであれば24時間後にもう一度確認してみてください。"; +App::$strings["Posts and comments"] = "Публикации и комментарии"; +App::$strings["Only posts"] = "Только публикации"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Недостаточно прав. Запрос перенаправлен на страницу профиля."; +App::$strings["Search Results For:"] = "検索結果: "; +App::$strings["Documentation Search"] = "Поиск документации"; +App::$strings["Members"] = "メンバー"; +App::$strings["Administrators"] = "Администраторы"; +App::$strings["Developers"] = "Разработчики"; +App::$strings["Tutorials"] = "Руководства"; +App::$strings["\$Projectname Documentation"] = "\$Projectnameヘルプ"; +App::$strings["Contents"] = "コンテンツ"; +App::$strings["This site is not a directory server"] = "Этот сайт не является сервером каталога"; +App::$strings["Export Channel"] = "Экспорт канала"; +App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Экспортировать основную информацию из канала в файл. Служит в качестве резервной копии ваших контактов, основных данных и профиля, однако не включает содержимое. Может быть использовано для импорта ваши данных на новый сервер."; +App::$strings["Export Content"] = "Экспортировать содержимое"; +App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Экспортировать информацию из вашего канала и его содержимое в резервную копию в формате JSON которая может быть использована для восстановления или импорта на другом сервере. Сохраняет все ваши контакты, разрешения, данные профиля и публикации за несколько месяцев. Файл может иметь очень большой размер. Пожалуйста, будьте терпеливы и подождите несколько минут пока не начнётся загрузка."; +App::$strings["Export your posts from a given year."] = "Экспортировать ваши публикации за данный год."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Вы также можете экспортировать ваши публикации и беседы за определённый месяц или год. Выберите дату в панели местоположения в браузере. Если экспорт будет неудачным (это возможно, например, из-за исчерпания памяти на сервере), повторите попытку, выбрав меньший диапазон дат."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Для выбора всех публикаций заданного года, например текущего, посетите %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Для выбора всех публикаций заданного месяца, например за январь сего года, посетите %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Данные файлы с содержимым могут быть импортированы и восстановлены на любом содержащем ваш канал сайте. Посетите %2\$s. Для лучших результатов пожалуйста производите импорт и восстановление в порядке датировки (старые сначала)."; +App::$strings["Away"] = "Нет на месте"; +App::$strings["Online"] = "В сети"; +App::$strings["Invalid item."] = "Недействительный элемент."; +App::$strings["Authorize application connection"] = "Авторизовать подключение приложения"; +App::$strings["Return to your app and insert this Security Code:"] = "Вернитесь к своему приложению и вставьте этот код безопасности:"; +App::$strings["Please login to continue."] = "Пожалуйста, войдите, чтобы продолжить."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Вы хотите авторизовать это приложение для доступа к вашим публикациям и контактам и / или созданию новых публикаций?"; +App::$strings["item"] = "пункт"; +App::$strings["No ratings"] = "Оценок нет"; +App::$strings["Rating: "] = "Оценкa:"; +App::$strings["Website: "] = "Веб-сайт:"; +App::$strings["Description: "] = "Описание:"; +App::$strings["Failed to create source. No channel selected."] = "Не удалось создать источник. Канал не выбран."; +App::$strings["Source created."] = "Источник создан."; +App::$strings["Source updated."] = "Источник обновлен."; +App::$strings["*"] = ""; +App::$strings["Manage remote sources of content for your channel."] = "Управлять удалённым источниками содержимого для вашего канала"; +App::$strings["New Source"] = "Новый источник"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Импортировать всё или выбранное содержимое из следующего канала в этот канал и распределить его в соответствии с вашими настройками."; +App::$strings["Only import content with these words (one per line)"] = "Импортировать содержимое только с этим текстом (построчно)"; +App::$strings["Leave blank to import all public content"] = "Оставьте пустым для импорта всего общедоступного содержимого"; +App::$strings["Channel Name"] = "チャンネル名"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Добавить следующие категории к импортированным публикациям из этого источника (через запятые)"; +App::$strings["Optional"] = "Необязательно"; +App::$strings["Resend posts with this channel as author"] = "Отправить публикации в этот канал повторно как автор"; +App::$strings["Copyrights may apply"] = "Могут применяться авторские права"; +App::$strings["Source not found."] = "Источник не найден."; +App::$strings["Edit Source"] = "Редактировать источник"; +App::$strings["Delete Source"] = "Удалить источник"; +App::$strings["Source removed"] = "Источник удален"; +App::$strings["Unable to remove source."] = "Невозможно удалить источник."; +App::$strings["About this site"] = "Об этом сайте"; +App::$strings["Site Name"] = "Название сайта"; +App::$strings["Site Information"] = "Информация о сайте"; +App::$strings["Administrator"] = "Администратор"; +App::$strings["Terms of Service"] = "利用規約"; +App::$strings["Software and Project information"] = "Информация о программном обеспечении и проекте"; +App::$strings["This site is powered by \$Projectname"] = "Этот сайт работает на \$Projectname"; +App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Объединенные и децентрализованные сети и службы идентификациии обеспечиваются Zot"; +App::$strings["Additional federated transport protocols:"] = "Дополнительные федеративные транспортные протоколы:"; +App::$strings["Version %s"] = "Версия %s"; +App::$strings["Project homepage"] = "Домашняя страница проекта"; +App::$strings["Developer homepage"] = "Домашняя страница разработчика"; +App::$strings["Image uploaded but image cropping failed."] = "Изображение загружено но обрезка не удалась."; +App::$strings["Image resize failed."] = "Не удалось изменить размер изображения."; +App::$strings["Image upload failed."] = "Загрузка изображения не удалась."; +App::$strings["Unable to process image."] = "画像処理に失敗しました。"; +App::$strings["Photo not available."] = "Фотография недоступна."; +App::$strings["Your default profile photo is visible to anybody on the internet. Profile photos for alternate profiles will inherit the permissions of the profile"] = "Фотография вашего профиля по умолчанию видна всем в Интернете. Фотографияпрофиля для альтернативных профилей наследуют разрешения текущего профиля"; +App::$strings["Your profile photo is visible to anybody on the internet and may be distributed to other websites."] = "プロフィール写真はインターネット上の誰でも見ることができ、他のウェブサイトに配布される可能性があります。"; +App::$strings["Upload File:"] = "ファイルをアップロード:"; +App::$strings["Select a profile:"] = "Выбрать профиль:"; +App::$strings["Use Photo for Profile"] = "Использовать фотографию для профиля"; +App::$strings["Change Profile Photo"] = "プロ画の変更"; +App::$strings["Use"] = "Использовать"; +App::$strings["Use a photo from your albums"] = "アップロード済画像から選ぶ"; +App::$strings["Choose a different album"] = "別のアルバムを選ぶ"; +App::$strings["Select existing photo"] = "アップロード済画像から選ぶ"; +App::$strings["Crop Image"] = "画像の切り取り"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "画像を四角に切り取ってください。"; +App::$strings["Done Editing"] = "編集の終了"; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s отслеживает %2\$s's %3\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s прекратил отслеживать %2\$s's %3\$s"; +App::$strings["No channel."] = "Канала нет."; +App::$strings["No connections in common."] = "Общих контактов нет."; +App::$strings["View Common Connections"] = "コモンなコネクションを表示"; +App::$strings["Permission Denied."] = "権限がありません."; +App::$strings["File not found."] = "ファイルがありません"; +App::$strings["Edit file permissions"] = "ファイルの権限の編集"; +App::$strings["Set/edit permissions"] = "権限の設定、編集"; +App::$strings["Include all files and sub folders"] = "全てのファイルとサブフォルダーを含める"; +App::$strings["Return to file list"] = "ファイルリストに戻る"; +App::$strings["Copy/paste this code to attach file to a post"] = "Копировать / вставить этот код для прикрепления файла к публикации"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Копировать / вставить эту URL для ссылки на файл со страницы"; +App::$strings["Share this file"] = "Поделиться этим файлом"; +App::$strings["Show URL to this file"] = "Показать URL этого файла"; +App::$strings["Show in your contacts shared folder"] = "あなたのフォロワーが共有したフォルダも表示する"; +App::$strings["Post not found."] = "ポストがありません"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s отметил тегом %2\$s %3\$s с %4\$s"; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Бля бля бля Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Block Name"] = "ブロック名"; +App::$strings["Edit Block"] = "ブロックの編集"; +App::$strings["Item is not editable"] = "アイテムは編集不可になっています。"; +App::$strings["Edit post"] = "投稿の作成"; +App::$strings["Tag removed"] = "タグは削除されました。"; +App::$strings["Remove Item Tag"] = "アイテムタグの削除"; +App::$strings["Select a tag to remove: "] = "削除するタグを選択:"; +App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Удаление канала не разрешается в течении 48 часов после смены пароля у аккаунта."; +App::$strings["Remove This Account"] = "このアカウントを削除する"; +App::$strings["This account and all its channels will be completely removed from the network. "] = "このアカウントとそのチャンネルはネットワークから完全に削除されます。"; +App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "アカウントを削除し全てのチャンネルとそのクローンを削除"; +App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "デフォルトでは、このハブにあるチャネルのインスタンスのみがネットワークから削除されます(クローン先やクローン元のチャンネルは削除されません)。"; +App::$strings["Remove Account"] = "アカウントの削除"; +App::$strings["Blocked accounts"] = "Заблокированные аккаунты"; +App::$strings["Expired accounts"] = "Просроченные аккаунты"; +App::$strings["Expiring accounts"] = "Близкие к просрочке аккаунты"; +App::$strings["Primary"] = "プライマリ"; +App::$strings["Clones"] = "Клоны"; +App::$strings["Message queues"] = "Очередь сообщений"; +App::$strings["Your software should be updated"] = "Ваше программное обеспечение должно быть обновлено"; +App::$strings["Administration"] = "Администрирование"; +App::$strings["Summary"] = "Резюме"; +App::$strings["Registered accounts"] = "Зарегистрированные аккаунты"; +App::$strings["Pending registrations"] = "Ждут утверждения"; +App::$strings["Registered channels"] = "Зарегистрированные каналы"; +App::$strings["Active addons"] = "Активные расширения"; +App::$strings["Version"] = "Версия системы"; +App::$strings["Repository version (master)"] = "Версия репозитория (master)"; +App::$strings["Repository version (dev)"] = "Версия репозитория (dev)"; +App::$strings["Could not access contact record."] = "Не удалось получить доступ к записи контакта."; +App::$strings["Could not locate selected profile."] = "Не удалось обнаружить выбранный профиль."; +App::$strings["Connection updated."] = "コネクションはアップデートされました。"; +App::$strings["Failed to update connection record."] = "Не удалось обновить запись контакта."; +App::$strings["is now connected to"] = "は接続されました:"; +App::$strings["Could not access address book record."] = "Не удалось получить доступ к записи адресной книги."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Обновление невозможно - в настоящее время канал недоступен."; +App::$strings["Unable to set address book parameters."] = "Не удалось получить доступ к параметрам адресной книги."; +App::$strings["Connection has been removed."] = "Контакт был удалён."; +App::$strings["View %s's profile"] = "%sのプロファイルを見る"; +App::$strings["Refresh Permissions"] = "パーミッションの更新"; +App::$strings["Fetch updated permissions"] = ""; +App::$strings["Refresh Photo"] = "画像の更新"; +App::$strings["Fetch updated photo"] = ""; +App::$strings["View recent posts and comments"] = "最近の投稿やコメントを見る"; +App::$strings["Unblock"] = "ブロックの解除"; +App::$strings["Block"] = "ブロック"; +App::$strings["Block (or Unblock) all communications with this connection"] = "このコネクションとの全ての関係をブロック(解除)する"; +App::$strings["This connection is blocked!"] = "このコネクションはブロックしています!"; +App::$strings["Unignore"] = "拒否の解除"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "全ての自分に対するコミュニケーションを拒否する"; +App::$strings["This connection is ignored!"] = "このコネクションは拒否されました!"; +App::$strings["Unarchive"] = "アンアーカイブ"; +App::$strings["Archive"] = "アーカイブ"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "チャンネルのアーカイブ(又はアーカイブの復帰) - チャンネルを死亡マークするがアクセスは可能"; +App::$strings["This connection is archived!"] = "このコネクションはアーカイブされました!"; +App::$strings["Unhide"] = "出す"; +App::$strings["Hide"] = "隠す"; +App::$strings["Hide or Unhide this connection from your other connections"] = "このコネクションを他のチャンネルから表示/非表示にする"; +App::$strings["This connection is hidden!"] = "このコネクションは非表示になっています!"; +App::$strings["Delete this connection"] = "このコネクションを削除する"; +App::$strings["Fetch Vcard"] = ""; +App::$strings["Fetch electronic calling card for this connection"] = ""; +App::$strings["Open Individual Permissions section by default"] = "Открывать раздел \"Индивидуальные разрешения\" по умолчанию"; +App::$strings["Affinity"] = "Сходство"; +App::$strings["Open Set Affinity section by default"] = "Открыть секцию установления сходства по умолчанию"; +App::$strings["Filter"] = "Фильтр"; +App::$strings["Open Custom Filter section by default"] = "Открывать секцию \"Настраиваемый фильтр\" по умолчанию"; +App::$strings["Approve this connection"] = "コネクションを許可する"; +App::$strings["Accept connection to allow communication"] = "コミュニケーションを取るために許可します!"; +App::$strings["Set Affinity"] = "Установить сходство"; +App::$strings["Set Profile"] = "プロファイルの設定"; +App::$strings["Set Affinity & Profile"] = "Установить сходство и профиль"; +App::$strings["This connection is unreachable from this location."] = "このコネクションはこの場所からリーチできません"; +App::$strings["This connection may be unreachable from other channel locations."] = "このチャンネルの投稿は本体のhub以外では取得できない可能性があります。"; +App::$strings["Location independence is not supported by their network."] = "連合コネクションが相手のネットワークでサポートされていません。"; +App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "ここからこのチャンネルに接続できません。連合コネクションが相手のネットワークでサポートされていません。"; +App::$strings["Apply these permissions automatically"] = "これらの権限設定を自動でセットする"; +App::$strings["Connection requests will be approved without your interaction"] = "Запросы контактов будут одобрены без вашего участия"; +App::$strings["Permission role"] = "権限ルール"; +App::$strings["Add permission role"] = "権限ルールの追加"; +App::$strings["This connection's primary address is"] = "このコネクションの住所 : "; +App::$strings["Available locations:"] = "このコネクションの別荘"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Разрешения, указанные на этой странице, будут применяться ко всем новым соединениям."; +App::$strings["Connection Tools"] = "コネクションツール"; +App::$strings["Slide to adjust your degree of friendship"] = "Прокрутить для настройки степени дружбы"; +App::$strings["Slide to adjust your rating"] = "Прокрутить для настройки оценки"; +App::$strings["Optionally explain your rating"] = "Объясните свою оценку (не обязательно)"; +App::$strings["Custom Filter"] = "カスタムフィルター"; +App::$strings["Only import posts with this text"] = "次のテキストにマッチする投稿だけ表示"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "一単語、又は #ハッシュタグ, /パターン/ や lang=xxl;で指定できます。空白で全ての投稿を取得します。"; +App::$strings["Do not import posts with this text"] = "次のテキストにマッチする投稿を表示しない"; +App::$strings["This information is public!"] = "Эта информация общедоступна!"; +App::$strings["Connection Pending Approval"] = "コネクション要求が来ています。"; +App::$strings["inherited"] = "継承済み"; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "%sのフォローに使用するプロファイルを選択してください。 相手にもこのプロファイルが表示されます。"; +App::$strings["Their Settings"] = "相手の設定"; +App::$strings["My Settings"] = "自分の設定"; +App::$strings["Individual Permissions"] = "アクセス権限の設定"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = " +幾つかの権限はあなたのチャンネルのプライバシー設定によって隠されています。それは隠された設定よりも優先度が高いです(翻訳不定)。 あなたはこれらの設定をここで変更できません。"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Некоторые разрешения могут быть унаследованы из настроек приватности вашего канала, которые могут иметь более высокий приоритет чем индивидуальные. Вы можете изменить эти настройки, однако они не будут применены до изменения переданных по наследству настроек."; +App::$strings["Last update:"] = "最終更新 : "; +App::$strings["Details"] = "Сведения"; +App::$strings["Import Webpage Elements"] = "Импортировать части веб-страницы"; +App::$strings["Import selected"] = "Импортировать выбранное"; +App::$strings["Export Webpage Elements"] = "Экспортировать часть веб-страницы"; +App::$strings["Export selected"] = "Экспортировать выбранное"; +App::$strings["Actions"] = "Действия"; +App::$strings["Page Link"] = "ページリンク"; +App::$strings["Page Title"] = "ページタイトル"; +App::$strings["Invalid file type."] = "Неверный тип файла."; +App::$strings["Error opening zip file"] = "Ошибка открытия ZIP файла"; +App::$strings["Invalid folder path."] = "Неверный путь к каталогу."; +App::$strings["No webpage elements detected."] = "Не обнаружено частей веб-страницы."; +App::$strings["Import complete."] = "Импорт завершен."; +App::$strings["Page link"] = "ページリンク"; +App::$strings["Edit Webpage"] = "Редактировать веб-страницу"; +App::$strings["Edit Layout"] = "Редактировать шаблон"; +App::$strings["This directory server requires an access token"] = "Для доступа к этому серверу каталогов требуется токен"; +App::$strings["Comment approved"] = "Комментарий одобрен"; +App::$strings["Comment deleted"] = "Комментарий удалён"; +App::$strings["Add Article"] = "記事の入力"; +App::$strings["Bookmark added"] = "ブックマークに追加されました。"; +App::$strings["My Bookmarks"] = "マイブックマーク"; +App::$strings["My Connections Bookmarks"] = "自分のコネクションのブックマーク"; +App::$strings["Files: shared with me"] = "ファイル : 自分に共有された項目"; +App::$strings["NEW"] = "НОВОЕ"; +App::$strings["Last Modified"] = "変更履歴"; +App::$strings["Remove all files"] = "全てのファイルを削除"; +App::$strings["Remove this file"] = "このファイルを削除"; +App::$strings["Select a bookmark folder"] = "ブックマークフォルダーの選択"; +App::$strings["Save Bookmark"] = "ブックマークの保存"; +App::$strings["URL of bookmark"] = "ブックマークのURL"; +App::$strings["Or enter new bookmark folder name"] = "又は新しいブックマークフォルダーの名前を入力"; +App::$strings["Permissions denied."] = "権限がありません。"; +App::$strings["Unknown App"] = "未知のアプリ"; +App::$strings["Authorize"] = "登録"; +App::$strings["Do you authorize the app %s to access your channel data?"] = "あなたのチャンネルデータにアクセスするために次のアプリ %s を登録しますか?"; +App::$strings["Allow"] = "許可"; +App::$strings["Deny"] = "拒否"; +App::$strings["Items tagged with: %s"] = "次によってタグ付け: %s"; +App::$strings["Search results for: %s"] = "次の検索結果: %s"; +App::$strings["\$Projectname Server - Setup"] = "\$Projectname サーバーのセットアップ"; +App::$strings["Could not connect to database."] = "データベースに接続できませんでした。"; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "URLにアクセスできませんでした。SSLかDNSに問題があるようです。"; +App::$strings["Could not create table."] = "テーブルが作成できませんでした。"; +App::$strings["Your site database has been installed."] = ""; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = ""; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = ""; +App::$strings["System check"] = "システムチェック画面"; +App::$strings["Check again"] = "再チェック"; +App::$strings["Database connection"] = "データベースの設定"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "インストールを続行するためには \$Projectname がデータベースと接続する必要があります。"; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "設定方法は管理者やプロバイダーへご確認ください。"; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "下記で指定するデータベースは既に作成されている必要があります。もしまだ作成していない場合は作成してからこの画面を続行してください。"; +App::$strings["Database Server Name"] = "サーバー名"; +App::$strings["Default is 127.0.0.1"] = "デフォルト : 127.0.0.1"; +App::$strings["Database Port"] = "データベースのポート"; +App::$strings["Communication port number - use 0 for default"] = "通信ポートの設定です。 0でデフォルト設定を維持します。"; +App::$strings["Database Login Name"] = "データベースのユーザー名"; +App::$strings["Database Login Password"] = "パスワード"; +App::$strings["Database Name"] = "データベース名"; +App::$strings["Database Type"] = "データベースタイプ"; +App::$strings["Site administrator email address"] = "サイト管理者のメールアドレス"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = ""; +App::$strings["Website URL"] = "サイトのURL"; +App::$strings["Please use SSL (https) URL if available."] = "可能であればssl(https)を利用することを強くお勧めします。"; +App::$strings["Please select a default timezone for your website"] = "webサイトのデフォルトのタイムゾーンを選択してください。"; +App::$strings["Site settings"] = "サイト設定"; +App::$strings["PHP version 5.5 or greater is required."] = "PHPバージョン5.5以上が必須です。"; +App::$strings["PHP version"] = "PHPバージョン"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = " +CUIのphpバージョン取得コマンドがありません。サーバーのPATHを確認してください。"; +App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Если у вас на сервере не установлена консольная версия PHP вы не сможете запустить фоновый опрос через cron. "; +App::$strings["PHP executable path"] = "Пусть к исполняемому модулю PHP"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Введите полный путь к исполняемому модулю PHP. Вы можете оставить его пустым для продолжения установки."; +App::$strings["Command line PHP"] = "PHPコマンドライン"; +App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "Невозможно проверить командную строку PHP поскольку требуемая функция shell_exec() отключена."; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "このバージョンのphpは \"register_argc_argv\" に対応していません。"; +App::$strings["This is required for message delivery to work."] = "これは投稿の他サーバーへの送信に必要となります。"; +App::$strings["PHP register_argc_argv"] = ""; +App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "合計ファイル送信の最大値は %s に設定されています。一ファイルの最大値は %s です。 %d 個のファイルまで一度にアップロードできます。"; +App::$strings["You can adjust these settings in the server php.ini file."] = "php.iniでこれを設定することができます。"; +App::$strings["PHP upload limits"] = "PHP Upload limits"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Ошибка: функция \"openssl_pkey_new\" не может сгенерировать ключи шифрования"; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Если работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"."; +App::$strings["Generate encryption keys"] = "暗号化キーの生成"; +App::$strings["libCurl PHP module"] = ""; +App::$strings["GD graphics PHP module"] = ""; +App::$strings["OpenSSL PHP module"] = ""; +App::$strings["PDO database PHP module"] = ""; +App::$strings["mb_string PHP module"] = ""; +App::$strings["xml PHP module"] = ""; +App::$strings["zip PHP module"] = ""; +App::$strings["Apache mod_rewrite module"] = ""; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: требуемый модуль mod_rewrite веб-сервера Apache не установлен."; +App::$strings["exec"] = ""; +App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = ""; +App::$strings["shell_exec"] = ""; +App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = ""; +App::$strings["Error: libCURL PHP module required but not installed."] = ""; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = ""; +App::$strings["Error: openssl PHP module required but not installed."] = ""; +App::$strings["Error: PDO database PHP module required but not installed."] = ""; +App::$strings["Error: mb_string PHP module required but not installed."] = ""; +App::$strings["Error: xml PHP module required for DAV but not installed."] = ""; +App::$strings["Error: zip PHP module required but not installed."] = ""; +App::$strings[".htconfig.php is writable"] = ""; +App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = ""; +App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = ""; +App::$strings["Please see install/INSTALL.txt for additional information."] = ""; +App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; +App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = ""; +App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; +App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = ""; +App::$strings["%s is writable"] = "%s の書き込み権限"; +App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the top level web folder"] = "Эта программа использует каталог хранения для загруженных файлов. Для веб-сервера требуется доступ на запись начиная с верхнего уровня каталога хранения."; +App::$strings["store is writable"] = "./storeの書き込み権限"; +App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = ""; +App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = ""; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Эти ограничения приняты поскольку ваши общедоступные публикации могут, например, содержать ссылки на изображения на вашем собственном хабе."; +App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = ""; +App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = ""; +App::$strings["Providers are available that issue free certificates which are browser-valid."] = ""; +App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = ""; +App::$strings["SSL certificate validation"] = ""; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = ""; +App::$strings["Url rewrite is working"] = ""; +App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; +App::$strings["

What next?

"] = "

次に

"; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; +App::$strings["Remote privacy information not available."] = ""; +App::$strings["Visible to:"] = "見れる人:"; +App::$strings["Connection added."] = "コネクションを追加しました。"; +App::$strings["Menu not found."] = "Меню не найдено"; +App::$strings["Unable to create element."] = "Невозможно создать элемент."; +App::$strings["Unable to update menu element."] = "Невозможно обновить элемент меню."; +App::$strings["Unable to add menu element."] = "Невозможно добавить элемент меню."; +App::$strings["Menu Item Permissions"] = "Разрешения на пункт меню"; +App::$strings["(click to open/close)"] = "(クリックして開く、閉じる)"; +App::$strings["Link Name"] = "Имя ссылки"; +App::$strings["Link or Submenu Target"] = "Ссылка или цель подменю"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Введите URL ссылки или выберите имя меню для создания подменю"; +App::$strings["Use magic-auth if available"] = "Использовать magic-auth если возможно"; +App::$strings["Open link in new window"] = "Открыть ссылку в новом окне"; +App::$strings["Order in list"] = "Порядок в списке"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Большие значения в конце списка"; +App::$strings["Submit and finish"] = "Отправить и завершить"; +App::$strings["Submit and continue"] = "Отправить и продолжить"; +App::$strings["Menu:"] = "Меню:"; +App::$strings["Link Target"] = "Цель ссылки"; +App::$strings["Edit menu"] = "Редактировать меню"; +App::$strings["Edit element"] = "Редактировать элемент"; +App::$strings["Drop element"] = "Удалить элемент"; +App::$strings["New element"] = "Новый элемент"; +App::$strings["Edit this menu container"] = "Редактировать контейнер меню"; +App::$strings["Add menu element"] = "Добавить элемент меню"; +App::$strings["Delete this menu item"] = "Удалить этот элемент меню"; +App::$strings["Edit this menu item"] = "Редактировать этот элемент меню"; +App::$strings["Menu item not found."] = "Элемент меню не найден."; +App::$strings["Menu item deleted."] = "メニューアイテムは削除されました。"; +App::$strings["Menu item could not be deleted."] = "Невозможно удалить элемент меню."; +App::$strings["Edit Menu Element"] = "Редактировать элемент меню"; +App::$strings["Link text"] = "Текст ссылки"; +App::$strings["Plugin %s disabled."] = "Плагин %s отключен."; +App::$strings["Plugin %s enabled."] = "Плагин %s включен."; +App::$strings["Disable"] = "Запретить"; +App::$strings["Enable"] = "Разрешить"; +App::$strings["Toggle"] = "Переключить"; +App::$strings["Author: "] = "Автор: "; +App::$strings["Maintainer: "] = "Сопровождающий:"; +App::$strings["Minimum project version: "] = "Минимальная версия проекта:"; +App::$strings["Maximum project version: "] = "Максимальная версия проекта:"; +App::$strings["Minimum PHP version: "] = "Минимальная версия PHP:"; +App::$strings["Compatible Server Roles: "] = "Совместимые роли сервера:"; +App::$strings["Requires: "] = "Необходимо:"; +App::$strings["Disabled - version incompatibility"] = "Отключено - несовместимость версий"; +App::$strings["Enter the public git repository URL of the addon repo."] = "Введите URL публичного репозитория расширений git"; +App::$strings["Addon repo git URL"] = "URL репозитория расширений git"; +App::$strings["Custom repo name"] = "Пользовательское имя репозитория"; +App::$strings["(optional)"] = "(необязательно)"; +App::$strings["Download Addon Repo"] = "Загрузить репозиторий расширений"; +App::$strings["Install new repo"] = "Установить новый репозиторий"; +App::$strings["Manage Repos"] = "Управление репозиториями"; +App::$strings["Installed Addon Repositories"] = "Установленные репозитории расширений"; +App::$strings["Install a New Addon Repository"] = "Установить новый репозиторий расширений"; +App::$strings["Switch branch"] = "Переключить ветку"; +App::$strings["Site settings updated."] = "Настройки сайта обновлены."; +App::$strings["%s - (Incompatible)"] = "%s - (несовместимо)"; +App::$strings["mobile"] = "携帯電話"; +App::$strings["experimental"] = "экспериментальный"; +App::$strings["unsupported"] = "неподдерживаемый"; +App::$strings["Yes - with approval"] = "Да - требует подтверждения"; +App::$strings["My site is not a public server"] = "Мой сайт не является публичным сервером"; +App::$strings["My site has paid access only"] = "Мой сайт доступен только с оплатой "; +App::$strings["My site has free access only"] = "На моём сайте разрешён свободный доступ"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "На моём сайте разрешены бесплатные аккаунты с дополнительными платными услугами"; +App::$strings["Beginner/Basic"] = "Начинающий/Базовый"; +App::$strings["Novice - not skilled but willing to learn"] = "Новичок - не опытный, но желающий учиться"; +App::$strings["Intermediate - somewhat comfortable"] = "Промежуточный - более удобный"; +App::$strings["Advanced - very comfortable"] = "Продвинутый - очень удобный"; +App::$strings["Expert - I can write computer code"] = "Эксперт - я умею программировать"; +App::$strings["Wizard - I probably know more than you do"] = "Волшебник - возможно я знаю больше чем ты"; +App::$strings["Default permission role for new accounts"] = "Разрешения по умолчанию для новых аккаунтов"; +App::$strings["This role will be used for the first channel created after registration."] = "Эта роль будет использоваться для первого канала, созданного после регистрации."; +App::$strings["Registration"] = "登録"; +App::$strings["File upload"] = "Загрузка файла"; +App::$strings["Policies"] = "Правила"; +App::$strings["Site default technical skill level"] = "Уровень технических навыков на сайте по умолчанию"; +App::$strings["Used to provide a member experience matched to technical comfort level"] = "Используется чтобы обеспечить удобство на уровне технических навыков пользователя"; +App::$strings["Lock the technical skill level setting"] = "Заблокировать уровень технических навыков"; +App::$strings["Members can set their own technical comfort level by default"] = "Участники могут выбрать уровень своих технических навыков по умолчанию"; +App::$strings["Banner/Logo"] = "Баннер / логотип"; +App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Разрешён нефильтруемый HTML/CSS/JS"; +App::$strings["Administrator Information"] = "Информация об администраторе"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Контактная информация для администраторов сайта. Показывается на информационной странице сайта. Можно использовать BBCode."; +App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Публичное видимое описание сайта. Показывается на информационной странице сайта. Можно использовать BBCode."; +App::$strings["System language"] = "Язык системы"; +App::$strings["System theme"] = "Системная тема"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Системная тема по умолчанию - может быть изменена в профиле пользователя - изменить параметры темы."; +App::$strings["Allow Feeds as Connections"] = "Разрешить ленты новостей как контакты"; +App::$strings["(Heavy system resource usage)"] = "(Высокое использование системных ресурсов)"; +App::$strings["Maximum image size"] = "Максимальный размер изображения"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Максимальный размер загруженных изображений в байтах. По умолчанию 0 или без ограничений."; +App::$strings["Does this site allow new member registration?"] = "Разрешается ли регистрация новых пользователей на этом сайте?"; +App::$strings["Invitation only"] = "Только по приглашениям"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Регистрация пользователей разрешается только по приглашениям. Вышеуказанная политика регистрация должны быть установлена в \"Да\"."; +App::$strings["Minimum age"] = "Минимальный возраст"; +App::$strings["Minimum age (in years) for who may register on this site."] = "Минимальный возраст (в годах) для регистрации на этом сайте."; +App::$strings["Which best describes the types of account offered by this hub?"] = "Как лучше описать тип учётных записей предлагаемых на этом хабе?"; +App::$strings["Register text"] = "Текст регистрации"; +App::$strings["Will be displayed prominently on the registration page."] = "Будет отображаться на странице регистрации на видном месте."; +App::$strings["Site homepage to show visitors (default: login box)"] = "Домашняя страница, которая будет показываться посетителям сайт (по умочанию - форма входа)."; +App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "например: 'public' для показа публичного потока, 'page/sys/home' показывает системную страницу home или 'include:home.html' для подключения файла."; +App::$strings["Preserve site homepage URL"] = "Сохранить URL главной страницы сайта"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Показывать домашнюю страницу сайта во фрейме вместо стандартной переадресации"; +App::$strings["Accounts abandoned after x days"] = "Аккаунты считаются заброшенными после N дней"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Системные ресурсы не будут расходоваться для опроса внешних сайтов для заброшенных аккаунтов. Введите 0 для отсутствия ограничений."; +App::$strings["Allowed friend domains"] = "Разрешенные домены друзей"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Список разделённых запятыми доменов с которыми разрешено устанавливать дружеские отношения на этом сайте. Wildcards разрешены. Пусто означает разрешены любые домены."; +App::$strings["Verify Email Addresses"] = "Проверка адреса электронной почты"; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Включите для проверки адреса электронной почты использованного при регистрации (рекомендуется)."; +App::$strings["Force publish"] = "Принудительно публиковать"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Включите для принудительного включения всех учётных записей на данном сайте в каталог."; +App::$strings["Import Public Streams"] = "Импортированные публичные потоки"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Импортировать и разрешить публичный доступ к загружаемым с других сайтов потоков. Внимание - этот контент не может модерироваться."; +App::$strings["Site only Public Streams"] = "Публичные потоки только с сайта"; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Разрешить доступ к общедоступному контенту, исходящему только с этого сайта, если импортированные публичные потоки отключены."; +App::$strings["Allow anybody on the internet to access the Public streams"] = "Разрешить всем доступ к публичным потокам"; +App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Отключите если для просмотра требуется аутентификация. Внимание - этот контент не может модерироваться."; +App::$strings["Only import Public stream posts with this text"] = "Импортировать только публичные потоки с этим текстом"; +App::$strings["Do not import Public stream posts with this text"] = "Не импортировать публичные потоки с этим текстом"; +App::$strings["Login on Homepage"] = "Вход на домашней странице"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Предоставлять форму входа для посетителей на домашней странице если другого содержимого не настроено."; +App::$strings["Enable context help"] = "Включить контекстную помощь"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Показывать контекстную помощь для текущей странице при нажатии на кнопку \"Помощь\"."; +App::$strings["Reply-to email address for system generated email."] = "Адрес email Reply-to для генерируемых системой сообщений."; +App::$strings["Sender (From) email address for system generated email."] = "Адрес email отправителя (From) для генерируемых системой сообщений."; +App::$strings["Name of email sender for system generated email."] = "Имя отправителя для генерируемых системой сообщений."; +App::$strings["Directory Server URL"] = "URL сервера каталогов"; +App::$strings["Default directory server"] = "Сервер каталогов по умолчанию"; +App::$strings["Proxy user"] = "Имя пользователя proxy-сервера"; +App::$strings["Proxy URL"] = "URL proxy-сервера"; +App::$strings["Network timeout"] = "Время ожидания сети"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Значение в секундах. Если установлен в 0 - без ограничений (не рекомендуется)."; +App::$strings["Delivery interval"] = "Интервал доставки"; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Значение задержки фоновых процессов доставки в секундах для снижения нагрузки на систему. Рекомендуется 4-5 для серверов совместного использования, 2-3 для частных виртуальных и 0-1 для выделенных серверов."; +App::$strings["Deliveries per process"] = "Доставок на процесс"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Количество доставок для одного процесса. Настройте в соответствии с производительностью системы. Рекомендуется 1-5."; +App::$strings["Queue Threshold"] = "Порог очереди"; +App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Всегда откладывать немедленную доставку, если в очереди содержится большее количество записей, чем это."; +App::$strings["Poll interval"] = "Интервал опроса"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Задержка фоновых процессов опроса на указанное количество секунд для снижения нагрузки на систему. Если 0 - использовать интервал доставки."; +App::$strings["Path to ImageMagick convert program"] = "Путь к ImageMagick"; +App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "При установке эта программа генерирует миниатюры изображений для больших файлов (свыше 4000 в любом измерении) для предотвращения утечки памяти. Пример: /usr/bin/convert"; +App::$strings["Allow SVG thumbnails in file browser"] = "Разрешить SVG миниатюры в просмотрщике файлов"; +App::$strings["WARNING: SVG images may contain malicious code."] = "Внимание: изображения SVG могут содержать вредоносный код."; +App::$strings["Maximum Load Average"] = "Максимальная средняя нагрузка"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Максимальная нагрузка системы для откладывания процессов опроса и доставки - по умолчанию 50."; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Срок хранения в днях для импортированного содержимого (из матрицы / сети)."; +App::$strings["0 for no expiration of imported content"] = "0 для постоянного хранения импортированного содержимого"; +App::$strings["Do not expire any posts which have comments less than this many days ago"] = "Продлевать строк хранения для любых публикаций, которые имею комментарии возрастом менее этого значения"; +App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Публичные серверы: необязательная маркетинговая лэндинг-страница для новых пользователей"; +App::$strings["Create this page first. Default is %s/register"] = "Создать эту страницу первой. По умолчанию %s/register"; +App::$strings["Page to display after creating a new channel"] = "Страница для показа после создания нового канала"; +App::$strings["Default: profiles"] = "По умолчанию: профили"; +App::$strings["Optional: site location"] = "Необязательно: место размещения сайта"; +App::$strings["Region or country"] = "Регион или страна"; +App::$strings["Log settings updated."] = "Настройки журнала обновлены."; +App::$strings["Clear"] = "Очистить"; +App::$strings["Debugging"] = "Отладка"; +App::$strings["Log file"] = "Файл журнала"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Должен быть доступен для записи веб-сервером. Пусть относителен основного каталога веб-сайта."; +App::$strings["Log level"] = "Уровень журнала"; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "%s аккаунт блокирован/разблокирован", + 1 => "%s аккаунта блокированы/разблокированы", + 2 => "%s аккаунтов блокированы/разблокированы", +); +App::$strings["%s account deleted"] = array( + 0 => "%s аккаунт удалён", + 1 => "%s аккаунта удалёны", + 2 => "%s аккаунтов удалёны", +); +App::$strings["Account not found"] = "Аккаунт не найден"; +App::$strings["Account '%s' blocked"] = "Аккаунт '%s' заблокирован"; +App::$strings["Account '%s' unblocked"] = "Аккаунт '%s' разблокирован"; +App::$strings["select all"] = "выбрать все"; +App::$strings["Registrations waiting for confirm"] = "Регистрации ждут подтверждения"; +App::$strings["Request date"] = "Дата запроса"; +App::$strings["No registrations."] = "Нет новых регистраций."; +App::$strings["ID"] = ""; +App::$strings["All Channels"] = "Все каналы"; +App::$strings["Register date"] = "Дата регистрации"; +App::$strings["Last login"] = "Последний вход"; +App::$strings["Expires"] = "Срок действия"; +App::$strings["Service Class"] = "Класс обслуживания"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Выбранные учётные записи будут удалены!\n\nВсё что было ими опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?"; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Этот аккаунт {0} будет удалён!\n\nВсё что им было опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "По умолчанию, HTML без фильтрации доступен во встраиваемых медиа. Это небезопасно."; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Рекомендуется настроить разрешения использовать HTML без фильтрации только для следующих сайтов:"; +App::$strings["https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = ""; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "се остальные встроенные материалы будут отфильтрованы, если встроенное содержимое с этого сайта явно заблокировано."; +App::$strings["Block public"] = "Блокировать публичный доступ"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Установите флажок для блокировки публичного доступа ко всем другим общедоступным страницам на этом сайте, если вы в настоящее время не аутентифицированы."; +App::$strings["Provide a cloud root directory"] = "Предоставить корневой каталог в облаке"; +App::$strings["The cloud root directory lists all channel names which provide public files"] = "В корневом каталоге облака показываются все имена каналов, которые предоставляют общедоступные файлы"; +App::$strings["Show total disk space available to cloud uploads"] = "Показывать общее доступное для загрузок место в хранилище"; +App::$strings["Set \"Transport Security\" HTTP header"] = "Установить HTTP-заголовок \"Transport Security\""; +App::$strings["Set \"Content Security Policy\" HTTP header"] = "Установить HTTP-заголовок \"Content Security Policy\""; +App::$strings["Allowed email domains"] = "Разрешённые домены email"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Список разделённых запятыми доменов для которых разрешена регистрация на этом сайте. Wildcards разрешены. Если пусто то разрешены любые домены."; +App::$strings["Not allowed email domains"] = "Запрещённые домены email"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Список разделённых запятыми доменов для которых запрещена регистрация на этом сайте. Wildcards разрешены. Если пусто то разрешены любые домены до тех пор, пока разрешённые домены не будут указаны."; +App::$strings["Allow communications only from these sites"] = "Разрешить связь только с этими сайтами"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Один сайт на строку. Оставьте пустым для разрешения взаимодействия без ограничений (по умочанию)."; +App::$strings["Block communications from these sites"] = "Блокировать связь с этими сайтами"; +App::$strings["Allow communications only from these channels"] = "Разрешить связь только для этих каналов"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Один канал (или его хэш) на строку. Оставьте пустым для разрешения взаимодействия с любым каналом (по умолчанию)."; +App::$strings["Block communications from these channels"] = "Блокировать связь с этими каналами"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Разрешать встраивание только для безопасных (SSL/TLS) сайтов и ссылок."; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Разрешить встраивать нефильтруемое HTML-содержимое только для этих доменов"; +App::$strings["One site per line. By default embedded content is filtered."] = "Один сайт на строку. По умолчанию встраиваемое содержимое фильтруется."; +App::$strings["Block embedded HTML from these domains"] = "Блокировать встраивание HTML-содержимого для этих доменов"; +App::$strings["Update has been marked successful"] = "Обновление было помечено как успешное"; +App::$strings["Executing %s failed. Check system logs."] = "Выполнение %s неудачно. Проверьте системный журнал."; +App::$strings["Update %s was successfully applied."] = "Обновление %sбыло успешно применено."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Обновление %s не вернуло статус. Неизвестно было ли оно успешным."; +App::$strings["Update function %s could not be found."] = "Функция обновления %sне может быть найдена."; +App::$strings["Failed Updates"] = "Обновления с ошибками"; +App::$strings["Mark success (if update was manually applied)"] = "Пометить успешным (если обновление было применено вручную)"; +App::$strings["Attempt to execute this update step automatically"] = "Попытаться применить это обновление автоматически"; +App::$strings["No failed updates."] = "Ошибок обновлений нет."; +App::$strings["New Profile Field"] = "Поле нового профиля"; +App::$strings["Field nickname"] = "Псевдоним поля"; +App::$strings["System name of field"] = "Системное имя поля"; +App::$strings["Input type"] = "Тип ввода"; +App::$strings["Field Name"] = "Имя поля"; +App::$strings["Label on profile pages"] = "Метка на странице профиля"; +App::$strings["Help text"] = "Текст подсказки"; +App::$strings["Additional info (optional)"] = "Дополнительная информация (необязательно)"; +App::$strings["Field definition not found"] = "Определения поля не найдено"; +App::$strings["Edit Profile Field"] = "Редактировать поле профиля"; +App::$strings["Basic Profile Fields"] = "Основные поля профиля"; +App::$strings["Advanced Profile Fields"] = "Дополнительные поля профиля"; +App::$strings["(In addition to basic fields)"] = "(к основым полям)"; +App::$strings["All available fields"] = "Все доступные поля"; +App::$strings["Custom Fields"] = "Настраиваемые поля"; +App::$strings["Create Custom Field"] = "Создать настраиваемое поле"; +App::$strings["Theme settings updated."] = "Настройки темы обновленны."; +App::$strings["No themes found."] = "Темы не найдены."; +App::$strings["Screenshot"] = "Снимок экрана"; +App::$strings["[Experimental]"] = "[экспериментальный]"; +App::$strings["[Unsupported]"] = "[неподдерживаемый]"; +App::$strings["Off"] = ""; +App::$strings["On"] = ""; +App::$strings["Lock feature %s"] = "Заблокировать функцию \"%s\""; +App::$strings["Manage Additional Features"] = "Управлять дополнительными функциями"; +App::$strings["Queue Statistics"] = "Статистика очереди"; +App::$strings["Total Entries"] = "Всего записей"; +App::$strings["Priority"] = "Приоритет"; +App::$strings["Destination URL"] = "Конечный URL-адрес"; +App::$strings["Mark hub permanently offline"] = "Пометить хаб как постоянно отключенный"; +App::$strings["Empty queue for this hub"] = "Освободить очередь для этого хаба"; +App::$strings["Last known contact"] = "Последний известный контакт"; +App::$strings["Password changed for account %d."] = "Пароль для аккаунта %d изменён."; +App::$strings["Account settings updated."] = "アカウント設定がアップデートされました。"; +App::$strings["Account not found."] = "Учётная запись не найдена."; +App::$strings["Account Edit"] = "Редактировать аккаунт"; +App::$strings["New Password"] = "Новый пароль"; +App::$strings["New Password again"] = "Повторите новый пароль"; +App::$strings["Technical skill level"] = "Уровень технических навыков"; +App::$strings["Account language (for emails)"] = "Язык сообщения для email"; +App::$strings["Service class"] = "Класс обслуживания"; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "%s канал цензурируется/нецензурируется", + 1 => "%s канала цензурируются/нецензурируются", + 2 => "%s каналов цензурируются/нецензурируются", +); +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "в %s канале код разрешён/запрещён", + 1 => "в %s каналах код разрешён/запрещён", + 2 => "в %s каналах код разрешён/запрещён", +); +App::$strings["%s channel deleted"] = array( + 0 => "%s канал удалён", + 1 => "%s канала удалены", + 2 => "%s каналов удалены", +); +App::$strings["Channel not found"] = "Канал не найден"; +App::$strings["Channel '%s' deleted"] = "Канал '%s' удалён"; +App::$strings["Channel '%s' censored"] = "Канал '%s' цензурируется"; +App::$strings["Channel '%s' uncensored"] = "Канал '%s' нецензурируется"; +App::$strings["Channel '%s' code allowed"] = "Код в канале '%s' разрешён"; +App::$strings["Channel '%s' code disallowed"] = "Код в канале '%s' запрещён"; +App::$strings["Censor"] = "Цензурировать"; +App::$strings["Uncensor"] = "Нецензурировать"; +App::$strings["Allow Code"] = "Разрешить код"; +App::$strings["Disallow Code"] = "Запретить код"; +App::$strings["UID"] = ""; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Выбранные каналы будут удалены!\n\nВсё что было опубликовано в этих каналах на этом сайте будет удалено навсегда!\n\nВы уверены?"; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Канал {0} будет удалён!\n\nВсё что было опубликовано в этом канале на этом сайте будет удалено навсегда!\n\nВы уверены?"; +App::$strings["Token verification failed."] = "トークンが違います。"; +App::$strings["Email Verification Required"] = "Eメール認証が必要です。"; +App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "認証トークンをメールへ送信しました [%s]メールに記載してあるトークンを下のボックスに入力してください。メールが届かない場合は迷惑メールを確認して頂き、そこにも無かった場合はサーバーの管理主へ連絡してください。"; +App::$strings["Resend Email"] = "メールを再送信する"; +App::$strings["Validation token"] = "トークン"; +App::$strings["Total invitation limit exceeded."] = "Превышено общее количество приглашений."; +App::$strings["%s : Not a valid email address."] = "%s : Недействительный адрес электронной почты."; +App::$strings["Please join us on \$Projectname"] = "Присоединятесь к \$Projectname !"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Превышен лимит приглашений. Пожалуйста, свяжитесь с администрацией сайта."; +App::$strings["%d message sent."] = array( + 0 => "%d сообщение отправлено.", + 1 => "%d сообщения отправлено.", + 2 => "%d сообщений отправлено.", +); +App::$strings["You have no more invitations available"] = "У вас больше нет приглашений"; +App::$strings["Send invitations"] = "Отправить приглашение"; +App::$strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному в строке:"; +App::$strings["Please join my community on \$Projectname."] = "Присоединятесь к нашему сообществу \$Projectname !"; +App::$strings["You will need to supply this invitation code:"] = "Вам нужно предоставит этот код приглашения:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Зарегистрируйтесь на любом из серверов \$Projectname"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Введите сетевой адрес \$Projectname в поисковой строке сайта"; +App::$strings["or visit"] = "или посетите"; +App::$strings["3. Click [Connect]"] = "Нажать [Подключиться]"; +App::$strings["Block Title"] = "ブロックのタイトル"; +App::$strings["Cover Photos"] = "Фотографии обложки"; +App::$strings["Your cover photo may be visible to anybody on the internet"] = "カバー写真はインターネット上の誰でも見ることができ、他のウェブサイトに配布される可能性があります。"; +App::$strings["Change Cover Photo"] = "カバ画の変更"; +App::$strings["Like/Dislike"] = "いいね! / わるいね!"; +App::$strings["This action is restricted to members."] = "Это действие доступно только участникам."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Пожалуйста, для продолжения войдите с вашим \$Projectname ID или зарегистрируйтесь как новый участник \$Projectname."; +App::$strings["Invalid request."] = "Неверный запрос."; +App::$strings["thing"] = "предмет"; +App::$strings["Channel unavailable."] = "Канал недоступен."; +App::$strings["Previous action reversed."] = "Предыдущее действие отменено."; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s согласен с %2\$s %3\$s"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s не согласен с %2\$s %3\$s"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s воздерживается от решения по %2\$s%3\$s"; +App::$strings["Action completed."] = "Действие завершено."; +App::$strings["Thank you."] = "Спасибо."; +App::$strings["If enabled, connection requests will be approved without your interaction"] = "Если включено, запросы контактов будут одобрены без вашего участия"; +App::$strings["Automatic approval settings"] = "Настройки автоматического одобрения"; +App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Некоторые индивидуальные разрешения могут быть предустановлены или заблокированы на основании типа вашего канала и настроек приватности."; +App::$strings["Unable to update menu."] = "メニューを更新できませんでした。"; +App::$strings["Unable to create menu."] = "メニューを作成できませんでした。"; +App::$strings["Menu Name"] = "メニュー名"; +App::$strings["Unique name (not visible on webpage) - required"] = "重複しない名前(webページには表示されません)。 - 必須"; +App::$strings["Menu Title"] = "メニューのタイトル"; +App::$strings["Visible on webpage - leave empty for no title"] = "webページに表示されます(空白にすることで非表示にもできます)。"; +App::$strings["Allow Bookmarks"] = "ブックマークの許可"; +App::$strings["Menu may be used to store saved bookmarks"] = "メニューはブックマークの保存のために使用されることとなります。"; +App::$strings["Submit and proceed"] = "確定して進む"; +App::$strings["Drop"] = "削除"; +App::$strings["Bookmarks allowed"] = "ブックマークの許可"; +App::$strings["Delete this menu"] = "このメニューを削除"; +App::$strings["Edit menu contents"] = "メニューの内容を編集"; +App::$strings["Edit this menu"] = "このメニューを編集"; +App::$strings["Menu could not be deleted."] = "メニューの削除ができません。"; +App::$strings["Edit Menu"] = "メニューの編集"; +App::$strings["Add or remove entries to this menu"] = "このメニューへのエントリーの追加/削除"; +App::$strings["Menu name"] = "メニュー名"; +App::$strings["Must be unique, only seen by you"] = "他と重複してはいけません(あなただけに表示されます)。"; +App::$strings["Menu title"] = "メニューのタイトル"; +App::$strings["Menu title as seen by others"] = "メニュータイトルは他のユーザーにも表示されます。"; +App::$strings["Allow bookmarks"] = "ブックマークの許可"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "あなたは%2$.0f個許可されてる中%1$.0f個のチャンネルをこのhubに作成しています。"; +App::$strings["Create a new channel"] = "新しいチャンネルを作成"; +App::$strings["Create New"] = "新規作成"; +App::$strings["Current Channel"] = "現在のチャンネル"; +App::$strings["Switch to one of your channels by selecting it."] = "選択したチャンネルに切り変えます。"; +App::$strings["Default Channel"] = "デフォルトのチャンネル"; +App::$strings["Make Default"] = "デフォルトのチャンネルにする"; +App::$strings["%d new messages"] = "%d件の新着メッセージ"; +App::$strings["%d new introductions"] = "%d件の新規フォローリクエスト"; +App::$strings["Delegated Channel"] = "Делегированный канал"; +App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Изменение названия канала не разрешается в течении 48 часов после смены пароля у аккаунта."; +App::$strings["Change channel nickname/address"] = "Изменить псевдоним / адрес канала"; +App::$strings["Any/all connections on other networks will be lost!"] = "Любые / все контакты в других сетях будут утеряны!"; +App::$strings["New channel address"] = "Новый адрес канала"; +App::$strings["Rename Channel"] = "Переименовать канал"; +App::$strings["Additional Features"] = "Дополнительные функции"; +App::$strings["Your technical skill level"] = "Ваш уровень технических навыков"; +App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Используется чтобы обеспечить соответствие опыта пользователя и функций на комфортном для вас уровне"; +App::$strings["Nobody except yourself"] = "Никто кроме вас"; +App::$strings["Only those you specifically allow"] = "Только персонально разрешённые"; +App::$strings["Approved connections"] = "Одобренные контакты"; +App::$strings["Any connections"] = "Любые контакты"; +App::$strings["Anybody on this website"] = "Любой на этом сайте"; +App::$strings["Anybody in this network"] = "Любой в этой сети"; +App::$strings["Anybody authenticated"] = "Любой аутентифицированный"; +App::$strings["Anybody on the internet"] = "Любой в интернете"; +App::$strings["Publish your default profile in the network directory"] = "Публиковать ваш профиль по умолчанию в сетевом каталоге"; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = "システム側でおすすめのユーザーとして紹介することを許可する"; +App::$strings["or"] = ""; +App::$strings["Your channel address is"] = "このチャンネルのアドレス : "; +App::$strings["Your files/photos are accessible via WebDAV at"] = "貴方のファイルや写真は次のWebDAVアドレスからアクセスできます : "; +App::$strings["Automatic membership approval"] = "Членство одобрено автоматически"; +App::$strings["Channel Settings"] = "チャンネル設定"; +App::$strings["Basic Settings"] = "基本設定"; +App::$strings["Email Address:"] = "メールアドレス:"; +App::$strings["Your Timezone:"] = "タイムゾーン:"; +App::$strings["Default Post Location:"] = "デフォルトの位置情報の指定 : "; +App::$strings["Geographical location to display on your posts"] = "デフォルトの現在地として投稿に記録される位置情報です。"; +App::$strings["Use Browser Location:"] = "ブラウザーから位置情報を取得する"; +App::$strings["Adult Content"] = "アダルトコンテンツ指定"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "しばしばor常にアダルトコンテンツを送信している場合はOnにしてください。(アダルトな要素を送信する時には#nsfwを付けるのを忘れないでください。)"; +App::$strings["Security and Privacy Settings"] = "セキュリティーとプライバシー"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "Ваши разрешения уже настроены. Нажмите чтобы просмотреть или изменить"; +App::$strings["Hide my online presence"] = "Скрывать моё присутствие онлайн"; +App::$strings["Prevents displaying in your profile that you are online"] = "Предотвращает отображения статуса \"в сети\" в вашем профиле"; +App::$strings["Simple Privacy Settings:"] = "Простые настройки безопасности:"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Полностью открытый - сверхлиберальный (должен использоваться с осторожностью)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Обычный - открытый по умолчанию, приватность по желанию (как в социальных сетях, но с улучшенными настройками)"; +App::$strings["Private - default private, never open or public"] = "Частный - частный по умочанию, не открытый и не публичный"; +App::$strings["Blocked - default blocked to/from everybody"] = "Закрытый - заблокированный по умолчанию от / для всех"; +App::$strings["Allow others to tag your posts"] = "他人が貴方の投稿にタグを追加することを許可する"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "主にコミュニティによって不適切なコンテンツに遡及的にフラグを立てるために使用されます。"; +App::$strings["Channel Permission Limits"] = "Ограничения разрешений канала"; +App::$strings["Expire other channel content after this many days"] = ""; +App::$strings["0 or blank to use the website limit."] = ""; +App::$strings["This website expires after %d days."] = "Срок хранения содержимого этого сайта истекает через %d дней"; +App::$strings["This website does not expire imported content."] = ""; +App::$strings["The website limit takes precedence if lower than your limit."] = ""; +App::$strings["Maximum Friend Requests/Day:"] = "Запросов в друзья в день:"; +App::$strings["May reduce spam activity"] = "Может ограничить спам активность"; +App::$strings["Default Privacy Group"] = "Группа конфиденциальности по умолчанию"; +App::$strings["Use my default audience setting for the type of object published"] = "Использовать настройки аудитории по умолчанию для типа опубликованного объекта"; +App::$strings["Profile to assign new connections"] = "コネクションをアサインするプロファイル"; +App::$strings["Channel role and privacy"] = "チャンネルの使い方"; +App::$strings["Default Permissions Group"] = "Группа разрешений по умолчанию"; +App::$strings["Maximum private messages per day from unknown people:"] = "Максимально количество сообщений от незнакомых людей, в день:"; +App::$strings["Useful to reduce spamming"] = "Полезно для сокращения количества спама"; +App::$strings["By default post a status message when:"] = "次のアクションの実行時に投稿を自動作成"; +App::$strings["accepting a friend request"] = "フレンドリクエストの許可"; +App::$strings["joining a forum/community"] = "フォーラム/コミュニティへの参加"; +App::$strings["making an interesting profile change"] = "おもしろい プロファイル更新"; +App::$strings["Send a notification email when:"] = "通知メールの送信"; +App::$strings["You receive a connection request"] = "コネクションリクエストを受け取った時"; +App::$strings["Your connections are confirmed"] = "あなたのコネクションリクエストが受理された時"; +App::$strings["Someone writes on your profile wall"] = "あなたのチャンネルに誰かが寄稿した時"; +App::$strings["Someone writes a followup comment"] = "誰かがフォローアップコメントを書いた時"; +App::$strings["You receive a private message"] = "プライベートメッセージ(DM)を取得した時"; +App::$strings["You receive a friend suggestion"] = "友達の提案が届いた時"; +App::$strings["You are tagged in a post"] = "ポストで名前リンクが貼られた時"; +App::$strings["You are poked/prodded/etc. in a post"] = "Poke(やその系統)された時"; +App::$strings["Someone likes your post/comment"] = "誰かが投稿やコメントにいいね!した時"; +App::$strings["Show visual notifications including:"] = "画面に表示する通知"; +App::$strings["Unseen grid activity"] = "未読のグリッドアクティビティ"; +App::$strings["Unseen stream activity"] = "未読のストリームアクティビティ"; +App::$strings["Unseen channel activity"] = "未読のチャンネルアクティビティ"; +App::$strings["Unseen private messages"] = "未読のプライベートメッセージ(DM)"; +App::$strings["Upcoming events"] = "イベント開始"; +App::$strings["Events today"] = "イベント当日"; +App::$strings["Upcoming birthdays"] = "誕生日当日"; +App::$strings["Not available in all themes"] = "一部のテーマには実装されていません。"; +App::$strings["System (personal) notifications"] = "システム(パーソナル)通知"; +App::$strings["System info messages"] = "システムインフォメーション"; +App::$strings["System critical alerts"] = "システムクリティカルアラート"; +App::$strings["New connections"] = "新しいコネクション"; +App::$strings["System Registrations"] = "システムへのユーザー登録"; +App::$strings["Unseen shared files"] = "未読の共有ファイル"; +App::$strings["Unseen public activity"] = "未読のパブリックアクティビティ"; +App::$strings["Unseen likes and dislikes"] = "未読のいいね!わるいね!"; +App::$strings["Unseen forum posts"] = "未読のフォーラムポスト"; +App::$strings["Email notification hub (hostname)"] = ""; +App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "もし貴方のチャンネルをクローンしている場合はメインのhubを選択してください。メールが二重に送信される原因となります。"; +App::$strings["Show new wall posts, private messages and connections under Notices"] = " +通知の下に優先度の低い内容(新しい投稿、プライベートメッセージ、コネクション等自分と直接関係の無い通知)を表示する"; +App::$strings["Notify me of events this many days in advance"] = ""; +App::$strings["Must be greater than 0"] = "0以上である必要があります。"; +App::$strings["Advanced Account/Page Type Settings"] = "Дополнительные настройки учётной записи / страницы"; +App::$strings["Change the behaviour of this account for special situations"] = "Изменить поведение этого аккаунта в особых ситуациях"; +App::$strings["Miscellaneous Settings"] = "他の設定"; +App::$strings["Default photo upload folder"] = "画像アップロードフォルダ名規則"; +App::$strings["%Y - current year, %m - current month"] = "%Y - 現在の年, %m -現在の月"; +App::$strings["Default file upload folder"] = "ファイルアップロードフォルダ名規則"; +App::$strings["Personal menu to display in your channel pages"] = "チャンネルページに表示するメニューを選択"; +App::$strings["Remove this channel."] = "このチャンネルを削除する"; +App::$strings["Firefox Share \$Projectname provider"] = ""; +App::$strings["Start calendar week on Monday"] = "カレンダーを頭月曜日にする"; +App::$strings["Affinity Slider settings updated."] = "Обновлены настройки слайдера cходства."; +App::$strings["No feature settings configured"] = "設定は変更されていません"; +App::$strings["Default maximum affinity level"] = "Максимальный уровень сходства по умолчанию."; +App::$strings["0-99 default 99"] = "0-99 (по умолчанию 99)"; +App::$strings["Default minimum affinity level"] = "Минимальный уровень сходства по умолчанию."; +App::$strings["0-99 - default 0"] = "0-99 (по умолчанию 0)"; +App::$strings["Affinity Slider Settings"] = "Настройки слайдера сходства"; +App::$strings["Addon Settings"] = "アドオンの設定"; +App::$strings["Please save/submit changes to any panel before opening another."] = "他のパネルを開く前に変更項目の保存をしてください。"; +App::$strings["Not valid email."] = "Не действительный адрес email."; +App::$strings["Protected email address. Cannot change to that email."] = "Защищенный адрес электронной почты. Нельзя изменить."; +App::$strings["System failure storing new email. Please try again."] = "Системная ошибка сохранения email. Пожалуйста попробуйте ещё раз."; +App::$strings["Technical skill level updated"] = "Уровень технических навыков обновлён"; +App::$strings["Password verification failed."] = "Не удалось выполнить проверку пароля."; +App::$strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменён."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменён."; +App::$strings["Password changed."] = "Пароль изменен."; +App::$strings["Password update failed. Please try again."] = "Изменение пароля не удалось. Пожалуйста, попробуйте ещё раз."; +App::$strings["Account Settings"] = "アカウント設定"; +App::$strings["Current Password"] = "現在のパスワード"; +App::$strings["Enter New Password"] = "新しいパスワード:"; +App::$strings["Confirm New Password"] = "新しいパスワードの再入力:"; +App::$strings["Leave password fields blank unless changing"] = "パスワードに変更を加えたくない場合は空欄で送信してください。"; +App::$strings["Remove this account including all its channels"] = "全てのチャンネル纏めてアカウントを削除する"; +App::$strings["%s - (Experimental)"] = "%s - (экспериментальный)"; +App::$strings["Display Settings"] = "画面表示設定"; +App::$strings["Theme Settings"] = "テーマ設定"; +App::$strings["Custom Theme Settings"] = "テーマのカスタマイズ設定"; +App::$strings["Content Settings"] = "コンテンツ設定"; +App::$strings["Display Theme:"] = "テーマ:"; +App::$strings["Select scheme"] = "スキームの選択"; +App::$strings["Preload images before rendering the page"] = "ページをレンダリングする前に画像をロードする"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "ページ自体の読み込みは遅くなりますが、ロード完了時に投稿がすぐ表示されます。"; +App::$strings["Enable user zoom on mobile devices"] = "モバイル端末でのズームを許可する"; +App::$strings["Update browser every xx seconds"] = "ブラウザーの情報更新頻度"; +App::$strings["Minimum of 10 seconds, no maximum"] = "最短10秒、最大値はありません。"; +App::$strings["Maximum number of conversations to load at any time:"] = ""; +App::$strings["Maximum of 100 items"] = "最大100アイテム"; +App::$strings["Show emoticons (smilies) as images"] = "絵文字を画像として扱う"; +App::$strings["Provide channel menu in navigation bar"] = "チャンネルメニューをナビゲーションバーに移動する"; +App::$strings["Default: channel menu located in app menu"] = "通常はアプリメニューに位置しています。"; +App::$strings["Manual conversation updates"] = "会話の自動更新"; +App::$strings["Default is on, turning this off may increase screen jumping"] = "デフォルトではオンです。スクリーンがジャンプする場合にこれをオフにしてください。"; +App::$strings["Link post titles to source"] = "ポストタイトルのクリックで投稿の本体へ移動"; +App::$strings["System Page Layout Editor - (advanced)"] = "システムページレイアウトエディタ(Advanced)"; +App::$strings["Use blog/list mode on channel page"] = "Использовать режим блога / списка на странице канала"; +App::$strings["(comments displayed separately)"] = "(комментарии отображаются отдельно)"; +App::$strings["Use blog/list mode on grid page"] = "Использовать режим блога / списка на странице матрицы"; +App::$strings["Channel page max height of content (in pixels)"] = "Максимальная высота содержания канала (в пикселях)"; +App::$strings["click to expand content exceeding this height"] = "нажмите, чтобы увеличить содержимое, превышающее эту высоту"; +App::$strings["Grid page max height of content (in pixels)"] = "Максимальная высота содержания на страницах матрицы (в пикселях)"; +App::$strings["Permission Name is required."] = "権限名は必須です。"; +App::$strings["Permission category saved."] = "権限カテゴリーは保存されました。"; +App::$strings["Use this form to create permission rules for various classes of people or connections."] = "このフォームを使用して複数の人で選別できる権限ルールを作成できます。"; +App::$strings["Permission Name"] = "権限名"; +App::$strings["Name and Secret are required"] = "名前とシークレットは必須です"; +App::$strings["Add OAuth2 application"] = "OAuth2アプリケーションの追加"; +App::$strings["Name of application"] = "アプリケーション名"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Сгенерирован автоматические - измените если требуется. Макс. длина 20"; +App::$strings["Redirect"] = "リダイレクト"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI перенаправления - оставьте пустыми до тех пока ваше приложение не требует этого"; +App::$strings["Grant Types"] = "Разрешить типы"; +App::$strings["leave blank unless your application sepcifically requires this"] = "оставьте пустыми до тех пока ваше приложение не требует этого"; +App::$strings["Authorization scope"] = "Область полномочий"; +App::$strings["OAuth2 Application not found."] = "Приложение OAuth2 не найдено."; +App::$strings["Add application"] = "Добавить приложение"; +App::$strings["Connected OAuth2 Apps"] = "Подключённые приложения OAuth2"; +App::$strings["Client key starts with"] = "Ключ клиента начинаетя с"; +App::$strings["No name"] = "名前無し"; +App::$strings["Remove authorization"] = "登録の削除"; +App::$strings["Name is required"] = "名前は必須です。"; +App::$strings["Key and Secret are required"] = "キーとシークレットキーは必須です。"; +App::$strings["Icon url"] = "アイコンURL"; +App::$strings["Application not found."] = "アプリケーションがありません。"; +App::$strings["Connected Apps"] = "接続済みアプリ"; +App::$strings["This channel is limited to %d tokens"] = "このチャンネルは%dのトークンで制限されています。"; +App::$strings["Name and Password are required."] = "名前とパスワードは必須です"; +App::$strings["Token saved."] = "トークンが保存されました。"; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Используйте эту форму для создания идентификаторов временного доступа для сторонних пользователей. Эти идентификаторы могут использоваться в списках контроля доступа, и посетители могут использовать эти учетные данные для доступа к частному контенту."; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Вы также можете предоставить доступ в стиле dropbox для друзей и коллег, добавив имя и пароль для входа на любой URL-адрес сайта. Например:"; +App::$strings["Login Name"] = "ログイン名"; +App::$strings["Login Password"] = "ログインパスワード"; +App::$strings["Expires (yyyy-mm-dd)"] = "期限(yyyy-mm-dd)"; +App::$strings["Room not found"] = "ルームがありません。"; +App::$strings["Leave Room"] = "ルームを去る"; +App::$strings["Delete Room"] = "ルームの削除"; +App::$strings["I am away right now"] = "退出中"; +App::$strings["I am online"] = "オンライン"; +App::$strings["Bookmark this room"] = "この部屋をブックマーク"; +App::$strings["New Chatroom"] = "新しいチャットルーム"; +App::$strings["Chatroom name"] = "チャットルームの名前"; +App::$strings["Expiration of chats (minutes)"] = "チャットの有効期限 (分単位)"; +App::$strings["%1\$s's Chatrooms"] = "%1\$sのチャットルーム"; +App::$strings["No chatrooms available"] = "チャットルームはありません"; +App::$strings["Expiration"] = "期限"; +App::$strings["min"] = "分"; +App::$strings["Website:"] = "サイト:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "リモートチャンネル[%s] (このサイトでは把握されていません。)"; +App::$strings["Rating (this information is public)"] = "Оценка (эта информация общедоступна)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Объясните свою оценку (необязательно; эта информация общедоступна)"; +App::$strings["Fetching URL returns error: %1\$s"] = ""; +App::$strings["Location not found."] = "ロケーションがありません。"; +App::$strings["Location lookup failed."] = "Поиск местоположения не удался"; +App::$strings["Please select another location to become primary before removing the primary location."] = "Пожалуйста, выберите другое местоположение в качестве основного прежде чем удалить предыдущее"; +App::$strings["Syncing locations"] = "同期中です...."; +App::$strings["No locations found."] = "他のロケーションがありません。"; +App::$strings["Manage Channel Locations"] = "チャンネル所在地の管理"; +App::$strings["Sync Now"] = "今すぐ同期"; +App::$strings["Please wait several minutes between consecutive operations."] = "作業を要求してからしばらくお待ちください。サーバー間の同期には時間がかかります。"; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "できるならそれぞれのクローン先に実際にログインして作業してもらえると負荷分散になり嬉しいです。。。。。"; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "当該のクローン先が閉鎖したなどログインできない状況の時にここを使用してください。"; +App::$strings["Nothing to import."] = "Ничего импортировать."; +App::$strings["Unable to download data from old server"] = "旧サーバーからデータを取得できませんでした。"; +App::$strings["Imported file is empty."] = "Импортированный файл пуст."; +App::$strings["Your service plan only allows %d channels."] = "Ваш класс обслуживания разрешает только %d каналов."; +App::$strings["No channel. Import failed."] = "Канала нет. Импорт невозможен."; +App::$strings["You must be logged in to use this feature."] = "Вы должны войти в систему, чтобы использовать эту функцию."; +App::$strings["Import Channel"] = "チャンネルのインポート"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "このフォームは外部サーバー/hubのチャンネルをインポートするためのものです。今利用している古いチャンネルの設定ファイルをご用意ください。"; +App::$strings["File to Upload"] = "ファイルのアップロード"; +App::$strings["Or provide the old server/hub details"] = "又は古いサーバーの情報を入力する"; +App::$strings["Your old identity address (xyz@example.com)"] = "古いチャンネルのアドレス(xyz@example.com 固有id@ドメイン)"; +App::$strings["Your old login email address"] = "古いアカウントのログインアドレス"; +App::$strings["Your old login password"] = "古いログインパスワード"; +App::$strings["Import a few months of posts if possible (limited by available memory"] = "最近の投稿のみを取得する(メモリによって制限されます)"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "ここをメインとして使うか、他をサブとして使うか選択することができます。ドメインはメインとした側のhubのドメインを利用することになります。"; +App::$strings["Make this hub my primary location"] = "ここをメインとする"; +App::$strings["Move this channel (disable all previous locations)"] = "完全にここにお引っこしする(以前の鯖の個人データを完全に消す)"; +App::$strings["Use this channel nickname instead of the one provided"] = "新しいチャンネルニックネームの設定"; +App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "新しいニックネームを指定することができます。空白のままにすると元のニックネームに似た別のニックネームが割り当てられます。"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "この作業にはそこそこ時間が掛ります。送信は一度だけにしてそのままお待ちください。"; +App::$strings["No connections."] = "Контактов нет."; +App::$strings["Visit %s's profile [%s]"] = "Посетить %s ​​профиль [%s]"; +App::$strings["View Connections"] = "コネクションの表示"; +App::$strings["Authentication failed."] = "Ошибка аутентификации."; +App::$strings["Your real name is recommended."] = "本名を使うことをオススメします!(義務ではない"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "例: \"harukin\", \"股尾前科\", \"唐澤貴洋\", \"龍神\""; +App::$strings["This will be used to create a unique network address (like an email address)."] = "これはメールのような固有のアドレスとなります。後から変更できません。"; +App::$strings["Allowed characters are a-z 0-9, - and _"] = "a-z 0-9, - и _ のみに対応しております。"; +App::$strings["Channel name"] = "チャンネル名"; +App::$strings["Choose a short nickname"] = "ニックネーム"; +App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = "貴方のプライバシー要求に従うように権限を設定してください。"; +App::$strings["Read more about channel permission roles"] = "チャンネルの権限についての詳細はこちらから"; +App::$strings["Create a Channel"] = "チャンネルの作成"; +App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = + "チャンネルはネットワークの中での一つの存在です。これは一般的なアカウントとして投稿することもできればフォーラムの中心やwebページ、ニュースフィードの基点等様々な事に利用できます。"; +App::$strings["or import an existing channel from another location."] = "又は チャンネルのインポート をする"; +App::$strings["Validate"] = "Проверить"; +App::$strings["Manage apps"] = "Управление приложениями"; +App::$strings["Create new app"] = "Создать новое приложение"; +App::$strings["No default suggestions were found."] = "Предложений по умолчанию не найдено."; +App::$strings["%d rating"] = array( + 0 => "%d оценка", + 1 => "%d оценки", + 2 => "%d оценок", +); +App::$strings["Gender: "] = "性別:"; +App::$strings["Status: "] = "配偶者:"; +App::$strings["Homepage: "] = "ホームページ:"; +App::$strings["Description:"] = "説明:"; +App::$strings["Public Forum:"] = "パブリックフォーラム:"; +App::$strings["Keywords: "] = "キーワード:"; +App::$strings["Don't suggest"] = "提案しない"; +App::$strings["Common connections (estimated):"] = "有名なコネクション:"; +App::$strings["Global Directory"] = "グローバルディレクトリ"; +App::$strings["Local Directory"] = "ローカルディレクトリ"; +App::$strings["Finding:"] = "検索:"; +App::$strings["next page"] = "次のページ"; +App::$strings["previous page"] = "前のページ"; +App::$strings["Sort options"] = "並べ替え"; +App::$strings["Alphabetic"] = "アルファベット(A->Z)"; +App::$strings["Reverse Alphabetic"] = "アルファベット(Z->A)"; +App::$strings["Newest to Oldest"] = "新しい順"; +App::$strings["Oldest to Newest"] = "古い順"; +App::$strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты)."; +App::$strings["Enter a folder name"] = "フォルダ名を入力してください"; +App::$strings["or select an existing folder (doubleclick)"] = "又はフォルダを選択する(ダブルクリックをしてください)"; +App::$strings["Invalid message"] = ""; +App::$strings["no results"] = "情報無し"; +App::$strings["channel sync processed"] = "チャンネルの同期は実行されました"; +App::$strings["queued"] = "キュー追加済"; +App::$strings["posted"] = "投稿完了"; +App::$strings["accepted for delivery"] = "転送が受理されました"; +App::$strings["updated"] = "アップデート済み"; +App::$strings["update ignored"] = "アップデートが拒否されました"; +App::$strings["permission denied"] = "権限が弾かれました"; +App::$strings["recipient not found"] = "レセプションがありません"; +App::$strings["mail recalled"] = "メールが再送信されました"; +App::$strings["duplicate mail received"] = "重複メールを受信しました"; +App::$strings["mail delivered"] = "メールを配送しました"; +App::$strings["Delivery report for %1\$s"] = "転送レポート : %1\$s"; +App::$strings["Redeliver"] = "再配送する"; +App::$strings["No such group"] = "そのようなグループは存在しません"; +App::$strings["No such channel"] = "そのようなチャンネルは存在しません"; +App::$strings["Privacy group is empty"] = "プライバシーグループは空です"; +App::$strings["Privacy group: "] = "プライバシーグループ : "; +App::$strings["Please login."] = "ログインしてください。"; +App::$strings["No service class restrictions found."] = "Ограничений класса обслуживание не найдено."; +App::$strings["Add Card"] = "カードの追加"; +App::$strings["Change Order of Pinned Navbar Apps"] = "Изменить порядок приложений на панели навигации"; +App::$strings["Change Order of App Tray Apps"] = "アプリの配置を変更できます。"; +App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Используйте стрелки для перемещения приложения влево (вверх) или вправо (вниз) в панели навигации"; +App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "上下の矢印を利用してアイテムの配置を変更します。"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Превышено максимальное количество регистраций на сегодня. Пожалуйста, попробуйте снова завтра."; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "アカウントの登録には利用規約に同意する必要があります。同意してから作成してください。"; +App::$strings["Passwords do not match."] = "パスワードが一致しません。"; +App::$strings["Registration successful. Continue to create your first channel..."] = "Регистрация завершена успешно. Для продолжения создайте свой первый канал..."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "登録に成功しました。認証を確認してください。"; +App::$strings["Your registration is pending approval by the site owner."] = "Ваша регистрация ожидает одобрения администрации сайта."; +App::$strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана."; +App::$strings["Registration on this hub is disabled."] = "Регистрация на этом хабе отключена."; +App::$strings["Registration on this hub is by approval only."] = "Регистрация на этом хабе только по утверждению."; +App::$strings["Register at another affiliated hub."] = "Зарегистрироваться на другом хабе."; +App::$strings["Registration on this hub is by invitation only."] = "Регистрация на этом хабе доступна только по приглашениям."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Этот сайт превысил максимальное количество регистраций на сегодня. Пожалуйста, попробуйте снова завтра. "; +App::$strings["I accept the %s for this website"] = "Я принимаю %s для этого веб-сайта."; +App::$strings["I am over %s years of age and accept the %s for this website"] = "私は %s 歳以上であり %s に同意します。"; +App::$strings["Your email address"] = "メールアドレス"; +App::$strings["Choose a password"] = "パスワード"; +App::$strings["Please re-enter your password"] = "パスワードの再入力"; +App::$strings["Please enter your invitation code"] = "Пожалуйста, введите Ваш код приглашения"; +App::$strings["Your Name"] = "Ваше имя"; +App::$strings["Real names are preferred."] = "Предпочтительны реальные имена."; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Ваш псевдоним будет использован для создания легко запоминаемого адреса канала, напр. nickname %s"; +App::$strings["Select a channel permission role for your usage needs and privacy requirements."] = "Выберите разрешения для канала в зависимости от ваших потребностей и требований приватности."; +App::$strings["no"] = "No"; +App::$strings["yes"] = "Yes"; +App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "Eメールでの認証を行います。この後メールボックスを確認してください。(迷惑メールになっている可能性があります。)"; +App::$strings["This setting requires special processing and editing has been blocked."] = "Этот параметр требует специальной обработки и редактирования и был заблокирован."; +App::$strings["Configuration Editor"] = "Редактор конфигурации"; +App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Предупреждение. Изменение некоторых настроек может привести к неработоспособности вашего канала. Пожалуйста, покиньте эту страницу, если вы точно не значете, как правильно использовать эту функцию."; +App::$strings["Edit Article"] = "記事の編集"; +App::$strings["Not found"] = ""; +App::$strings["Error retrieving wiki"] = "Ошибка при получении Wiki"; +App::$strings["Error creating zip file export folder"] = "zipファイルのエクスポートフォルダーの作成に失敗しました。"; +App::$strings["Error downloading wiki: "] = "wikiのダウンロードエラー:"; +App::$strings["Download"] = "ダウンロード"; +App::$strings["Wiki name"] = "Wikiの名前"; +App::$strings["Content type"] = "コンテンツタイプ"; +App::$strings["Type"] = "タイプ"; +App::$strings["Any type"] = ""; +App::$strings["Lock content type"] = "コンテンツタイプを固定する"; +App::$strings["Create a status post for this wiki"] = "このwikiに対してステータス投稿を設定する"; +App::$strings["Edit Wiki Name"] = "Wikiの名前の編集"; +App::$strings["Wiki not found"] = "Wikiはありません"; +App::$strings["Rename page"] = "ページの名前編集"; +App::$strings["Error retrieving page content"] = "ページコンテンツの検索に失敗しました"; +App::$strings["New page"] = "新しいページ"; +App::$strings["Revision Comparison"] = "差分の表示"; +App::$strings["Revert"] = "打ち消す"; +App::$strings["Short description of your changes (optional)"] = "この編集に対して説明を追加する"; +App::$strings["Source"] = "ソース"; +App::$strings["New page name"] = "新規ページ名"; +App::$strings["Embed image from photo albums"] = "フォトアルバムからの埋め込み画像"; +App::$strings["Error creating wiki. Invalid name."] = "wiki作成エラー: 名前が無効です。"; +App::$strings["A wiki with this name already exists."] = "そのwikiの名前は既に存在します。"; +App::$strings["Wiki created, but error creating Home page."] = "wikiは作成されましたがホームページの作成中にエラーが発生しました。"; +App::$strings["Error creating wiki"] = "Wiki作成エラーです。"; +App::$strings["Error updating wiki. Invalid name."] = "Wikiアップデートエラー: 名前が無効です。"; +App::$strings["Error updating wiki"] = "Wikiアップデートエラーです。"; +App::$strings["Wiki delete permission denied."] = "Wiki削除権限がありません。"; +App::$strings["Error deleting wiki"] = "Wiki削除エラーです。"; +App::$strings["New page created"] = "新規ページの作成"; +App::$strings["Cannot delete Home"] = "homeを削除できません。"; +App::$strings["Current Revision"] = "現在のバージョン"; +App::$strings["Selected Revision"] = "前のバージョンの探索"; +App::$strings["You must be authenticated."] = "あなたは認証されている必要があります。"; +App::$strings["Hub not found."] = "hubは存在しません。"; +App::$strings["Item not available."] = "アイテムは利用できません。"; +App::$strings["Privacy group created."] = "プライバシーグループを作成しました。"; +App::$strings["Could not create privacy group."] = "プライバシーグループをアップデートできません。"; +App::$strings["Privacy group updated."] = "プライバシーグループはアップデートされました。"; +App::$strings["Add Group"] = "グループへ追加"; +App::$strings["Privacy group name"] = "プライバシーグループ名"; +App::$strings["Members are visible to other channels"] = "メンバーは他のチャンネルへ公開されます。"; +App::$strings["Privacy group removed."] = "プライバシーグループを削除しました。"; +App::$strings["Unable to remove privacy group."] = "プライバシーグループを削除できませんでした。"; +App::$strings["Privacy Group: %s"] = "プライバシーグループ: %s"; +App::$strings["Privacy group name: "] = "プライバシーグループの名前: "; +App::$strings["Delete Group"] = "グループを削除する"; +App::$strings["Group members"] = "グループのメンバー"; +App::$strings["Not in this group"] = "グループ外のアカウント"; +App::$strings["Click a channel to toggle membership"] = "ユーザーをクリックしてグループを操作します。"; +App::$strings["Profile not found."] = "プロファイルは存在しません。"; +App::$strings["Profile deleted."] = "プロファイルを削除しました。"; +App::$strings["Profile-"] = "プロファイル"; +App::$strings["New profile created."] = "新しいプロファイルが作成されました。"; +App::$strings["Profile unavailable to clone."] = "プロファイルがクローンできません。"; +App::$strings["Profile unavailable to export."] = "プロファイルをエクスポートできません。"; +App::$strings["Profile Name is required."] = "プロファイル名は必須です。"; +App::$strings["Marital Status"] = "マテリアルステータス"; +App::$strings["Romantic Partner"] = "ロマンチックパートナー"; +App::$strings["Likes"] = "好きなもの"; +App::$strings["Dislikes"] = "嫌いなもの"; +App::$strings["Work/Employment"] = "職 / 従業員"; +App::$strings["Religion"] = "信仰"; +App::$strings["Political Views"] = "政治感心"; +App::$strings["Sexual Preference"] = "性的興味感心"; +App::$strings["Homepage"] = "ホームページ"; +App::$strings["Interests"] = "興味"; +App::$strings["Profile updated."] = "プロファイルをアップデートしました。"; +App::$strings["Hide your connections list from viewers of this profile"] = "見に来た人にこのプロフィールを見せない"; +App::$strings["Edit Profile Details"] = "プロフィールの編集"; +App::$strings["View this profile"] = "このプロフィールを表示"; +App::$strings["Profile Tools"] = "プロファイルツール"; +App::$strings["Change cover photo"] = "カバ画の変更"; +App::$strings["Create a new profile using these settings"] = "この情報を元にして新しいプロファイルを作成する"; +App::$strings["Clone this profile"] = "このプロファイルを複製する"; +App::$strings["Delete this profile"] = "このプロファイルを削除する"; +App::$strings["Add profile things"] = "カスタム項目...."; +App::$strings["Relationship"] = "交友関係"; +App::$strings["Import profile from file"] = "プロファイルをファイルからインポートする"; +App::$strings["Export profile to file"] = "プロファイルをファイルへエクスポートする"; +App::$strings["Your gender"] = "性別"; +App::$strings["Marital status"] = "配偶者の有無"; +App::$strings["Sexual preference"] = "性的興味感心"; +App::$strings["Profile name"] = "プロファイル名"; +App::$strings["This is your default profile."] = "これはデフォルトのプロファイルです。"; +App::$strings["Your full name"] = "フルネーム"; +App::$strings["Title/Description"] = "ひとこと"; +App::$strings["Street address"] = "住所"; +App::$strings["Locality/City"] = "都市"; +App::$strings["Region/State"] = "地域"; +App::$strings["Postal/Zip code"] = "郵便番号"; +App::$strings["Who (if applicable)"] = "相手"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "例: ivan1990, Ivan Petrov, ivan@example.com"; +App::$strings["Since (date)"] = "いつから(日付)"; +App::$strings["Tell us about yourself"] = "あなたについて"; +App::$strings["Hometown"] = "街"; +App::$strings["Political views"] = "政治関心"; +App::$strings["Religious views"] = "信仰"; +App::$strings["Keywords used in directory listings"] = "自分の趣味"; +App::$strings["Example: fishing photography software"] = "例: 釣り 写真 ソフトウェア"; +App::$strings["Musical interests"] = "好きな音楽"; +App::$strings["Books, literature"] = "好きな本やリテラチャー"; +App::$strings["Television"] = "好きなテレビ"; +App::$strings["Film/Dance/Culture/Entertainment"] = "映画/ダンス/文化/娯楽"; +App::$strings["Hobbies/Interests"] = "趣味/興味"; +App::$strings["Love/Romance"] = "ラブ/ロマンス"; +App::$strings["School/Education"] = "学校 / 教育"; +App::$strings["Contact information and social networks"] = "連絡先とSNS"; +App::$strings["My other channels"] = "他のチャンネル"; +App::$strings["Communications"] = "コミュニケーション"; +App::$strings["Email verification resent"] = "メール確認を再送信しました。"; +App::$strings["Unable to resend email verification message."] = "メッセージ確認を送信できませんでした。"; +App::$strings["vcard"] = "vCard"; +App::$strings["Invalid profile identifier."] = "Неверный идентификатор профиля"; +App::$strings["Profile Visibility Editor"] = "プロファイル可視エディター"; +App::$strings["Click on a contact to add or remove."] = "クリックしてチャンネルを追加又は削除できます。"; +App::$strings["Visible To"] = "表示"; +App::$strings["Thing updated"] = "アップデートされました。"; +App::$strings["Object store: failed"] = "Хранлищие объектов: неудача"; +App::$strings["Thing added"] = "追加されました。"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = ""; +App::$strings["Show Thing"] = "表示する"; +App::$strings["item not found."] = "アイテムはありません。"; +App::$strings["Edit Thing"] = "編集する"; +App::$strings["Select a profile"] = "プロファイルの選択"; +App::$strings["Post an activity"] = ""; +App::$strings["Only sends to viewers of the applicable profile"] = ""; +App::$strings["Name of thing e.g. something"] = "要素の名前"; +App::$strings["URL of thing (optional)"] = "URL(任意)"; +App::$strings["URL for photo of thing (optional)"] = ""; +App::$strings["Add Thing to your Profile"] = "プロファイルへカスタム項目を追加"; +App::$strings["Article"] = "記事"; +App::$strings["Item has been removed."] = "アイテムは削除されます。"; +App::$strings["Welcome to %s"] = "%sへようこそ!!"; +App::$strings["Please refresh page"] = "ページを更新してください。"; +App::$strings["Unknown error"] = "原因不明のエラーです。"; +App::$strings["No valid account found."] = "そのアカウントは見つかりませんでした。"; +App::$strings["Password reset request issued. Check your email."] = "パスワードのリセットリクエストがあります。メールを確認してください。"; +App::$strings["Site Member (%s)"] = ""; +App::$strings["Password reset requested at %s"] = ""; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "リクエストは承認されませんでした。パスワードのリセットに失敗しました(既に過去に実行しているのかもしれません)。"; +App::$strings["Your password has been reset as requested."] = "あなたのパスワードを入力値にリセットしました。"; +App::$strings["Your new password is"] = "あなたの新しいパスワードは"; +App::$strings["Save or copy your new password - and then"] = "Сохраните ваш новый пароль и затем"; +App::$strings["click here to login"] = "ここをクリックしてログイン"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Ваш пароль может быть изменён на странице Настройкипосле успешного входа."; +App::$strings["Your password has changed at %s"] = "Пароль был изменен на %s"; +App::$strings["Forgot your Password?"] = "パスワードを忘れましたか?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите ваш адрес электронной почты и нажмите отправить чтобы сбросить пароль. Затем проверьте ваш почтовый ящик для дальнейших инструкций. "; +App::$strings["Email Address"] = "Адрес электронной почты"; +App::$strings["Set your current mood and tell your friends"] = "Установить текущее настроение и рассказать друзьям"; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Предупреждение: Версия базы данных отличается от %1\$d обновления."; +App::$strings["Import completed"] = "インポートは完了しました。"; +App::$strings["Import Items"] = "アイテムのインポート"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Используйте эту форму для импорта существующих публикаций и содержимого из файла."; +App::$strings["toggle full screen mode"] = "フルスクリーンモードの切り替え"; +App::$strings["parent"] = ""; +App::$strings["Principal"] = ""; +App::$strings["Addressbook"] = "アドレス帳"; +App::$strings["Schedule Inbox"] = "インボックススケジュール"; +App::$strings["Schedule Outbox"] = "アウトボックススケジュール"; +App::$strings["Total"] = "合計"; +App::$strings["Shared"] = "共有"; +App::$strings["Add Files"] = "追加"; +App::$strings["You are using %1\$s of your available file storage."] = "あなたは%1\$sの容量を使っています。"; +App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Вы используете %1\$s из %2\$s доступного хранилища файлов (%3\$s%)."; +App::$strings["WARNING:"] = "わーにんぐ:"; +App::$strings["Create new folder"] = "新規フォルダの作成"; +App::$strings["Upload file"] = "ファイルのアップロード"; +App::$strings["Drop files here to immediately upload"] = "ファイルをここにドラックしてアップロードできます。"; + +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$sが[zrl=%3\$s]%4\$sの%5\$s[/zrl]にコメントしました"; \ No newline at end of file diff --git a/view/ja/hmessages.po b/view/ja/hmessages.po new file mode 100644 index 000000000..0285a8bb6 --- /dev/null +++ b/view/ja/hmessages.po @@ -0,0 +1,12091 @@ +# hubzilla +# Copyright (C) 2012-2016 hubzilla +# This file is distributed under the same license as the hubzilla package. +# Mike Macgirvin, 2012 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: 4.0.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-05-23 17:11+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: harukin \n" +"Language-Team: harukin \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../boot.php:1609 +msgid "Create an account to access services and applications" +msgstr "サービスとアプリケーションにアクセスするためにアカウントを作成する。" + +#: ../../boot.php:1610 ../../include/nav.php:160 +#: ../../Zotlabs/Module/Register.php:289 +msgid "Register" +msgstr "登録" + +#: ../../boot.php:1629 ../../include/nav.php:107 ../../include/nav.php:136 +#: ../../include/nav.php:155 +msgid "Logout" +msgstr "ログアウト" + +#: ../../boot.php:1630 ../../include/nav.php:122 ../../include/nav.php:126 +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Login" +msgstr "ログイン" + +#: ../../boot.php:1631 ../../include/channel.php:2475 +#: ../../Zotlabs/Module/Rmagic.php:93 +msgid "Remote Authentication" +msgstr "リモートログイン" + +#: ../../boot.php:1633 +msgid "Login/Email" +msgstr "ログイン/Eメール" + +#: ../../boot.php:1634 +msgid "Password" +msgstr "パスワード" + +#: ../../boot.php:1635 +msgid "Remember me" +msgstr "記憶する" + +#: ../../boot.php:1635 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:99 +#: ../../view/theme/redbasic/php/config.php:116 +#: ../../Zotlabs/Lib/Libzotdir.php:162 ../../Zotlabs/Lib/Libzotdir.php:163 +#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Module/Admin/Site.php:255 +#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Connedit.php:406 +#: ../../Zotlabs/Module/Connedit.php:796 ../../Zotlabs/Module/Defperms.php:197 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Filestorage.php:198 +#: ../../Zotlabs/Module/Filestorage.php:206 ../../Zotlabs/Module/Import.php:635 +#: ../../Zotlabs/Module/Import.php:639 ../../Zotlabs/Module/Import.php:640 +#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 +#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 +#: ../../Zotlabs/Module/Photos.php:712 ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings/Channel.php:309 +#: ../../Zotlabs/Module/Settings/Display.php:89 +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Wiki.php:228 +#: ../../Zotlabs/Storage/Browser.php:411 +msgid "No" +msgstr "" + +#: ../../boot.php:1635 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:99 +#: ../../view/theme/redbasic/php/config.php:116 +#: ../../Zotlabs/Lib/Libzotdir.php:162 ../../Zotlabs/Lib/Libzotdir.php:163 +#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Module/Admin/Site.php:257 +#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Connedit.php:406 +#: ../../Zotlabs/Module/Defperms.php:197 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Module/Filestorage.php:198 +#: ../../Zotlabs/Module/Filestorage.php:206 ../../Zotlabs/Module/Import.php:635 +#: ../../Zotlabs/Module/Import.php:639 ../../Zotlabs/Module/Import.php:640 +#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 +#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 +#: ../../Zotlabs/Module/Photos.php:712 ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings/Channel.php:309 +#: ../../Zotlabs/Module/Settings/Display.php:89 +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Wiki.php:228 +#: ../../Zotlabs/Storage/Browser.php:411 +msgid "Yes" +msgstr "" + +#: ../../boot.php:1638 +msgid "Forgot your password?" +msgstr "パスワードを忘れましたか?" + +#: ../../boot.php:1639 ../../Zotlabs/Module/Lostpass.php:91 +msgid "Password Reset" +msgstr "パスワードのリセット" + +#: ../../boot.php:2434 +#, php-format +msgid "[$Projectname] Website SSL error for %s" +msgstr "" + +#: ../../boot.php:2439 +msgid "Website SSL certificate is not valid. Please correct." +msgstr "ウェブサイトのssl認証ができません。修正してください。" + +#: ../../boot.php:2555 +#, php-format +msgid "[$Projectname] Cron tasks not running on %s" +msgstr "" + +#: ../../boot.php:2560 +msgid "Cron/Scheduled tasks not running." +msgstr "Cron/スケジュール済みタスクが実行されていません。" + +#: ../../boot.php:2561 ../../include/datetime.php:238 +msgid "never" +msgstr "全く" + +#: ../../include/account.php:36 +msgid "Not a valid email address" +msgstr "未認証のメールアドレス" + +#: ../../include/account.php:38 +msgid "Your email domain is not among those allowed on this site" +msgstr "あなたのメールドメインはこのサイトでは許可されていません。" + +#: ../../include/account.php:44 +msgid "Your email address is already registered at this site." +msgstr "あなたのメールアドレスは既にこのサイトに登録されています。" + +#: ../../include/account.php:76 +msgid "An invitation is required." +msgstr "招待が必要です。" + +#: ../../include/account.php:80 +msgid "Invitation could not be verified." +msgstr "招待が認証されませんでした。" + +#: ../../include/account.php:156 +msgid "Please enter the required information." +msgstr "必須事項を入力してください。" + +#: ../../include/account.php:223 +msgid "Failed to store account information." +msgstr "アカウント情報の保存に失敗しました。" + +#: ../../include/account.php:311 +#, php-format +msgid "Registration confirmation for %s" +msgstr "" + +#: ../../include/account.php:380 +#, php-format +msgid "Registration request at %s" +msgstr "" + +#: ../../include/account.php:402 +msgid "your registration password" +msgstr "" + +#: ../../include/account.php:408 ../../include/account.php:471 +#, php-format +msgid "Registration details for %s" +msgstr "" + +#: ../../include/account.php:482 +msgid "Account approved." +msgstr "" + +#: ../../include/account.php:522 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: ../../include/account.php:803 ../../include/account.php:805 +msgid "Click here to upgrade." +msgstr "" + +#: ../../include/account.php:811 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/account.php:816 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../include/acl_selectors.php:33 +#: ../../Zotlabs/Lib/PermissionDescription.php:34 +msgid "Visible to your default audience" +msgstr "" + +#: ../../include/acl_selectors.php:88 ../../Zotlabs/Module/Acl.php:121 +#: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 +msgctxt "acl" +msgid "Profile" +msgstr "" + +#: ../../include/acl_selectors.php:106 +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Only me" +msgstr "" + +#: ../../include/acl_selectors.php:113 +msgid "Who can see this?" +msgstr "" + +#: ../../include/acl_selectors.php:114 +msgid "Custom selection" +msgstr "" + +#: ../../include/acl_selectors.php:115 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " +"the scope of \"Show\"." +msgstr "" + +#: ../../include/acl_selectors.php:116 +msgid "Show" +msgstr "" + +#: ../../include/acl_selectors.php:117 +msgid "Don't show" +msgstr "" + +#: ../../include/acl_selectors.php:118 ../../include/nav.php:186 +#: ../../include/text.php:1084 ../../include/text.php:1096 +#: ../../Zotlabs/Lib/Apps.php:352 ../../Zotlabs/Module/Connections.php:352 +#: ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Widget/Activity_filter.php:151 +#: ../../Zotlabs/Widget/Sitesearch.php:31 +msgid "Search" +msgstr "" + +#: ../../include/acl_selectors.php:123 ../../Zotlabs/Module/Chat.php:243 +#: ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Filestorage.php:190 ../../Zotlabs/Module/Photos.php:717 +#: ../../Zotlabs/Module/Photos.php:1086 ../../Zotlabs/Module/Thing.php:319 +#: ../../Zotlabs/Module/Thing.php:372 +msgid "Permissions" +msgstr "" + +#: ../../include/acl_selectors.php:125 ../../Zotlabs/Lib/ThreadItem.php:463 +#: ../../Zotlabs/Module/Photos.php:1316 +msgid "Close" +msgstr "" + +#: ../../include/acl_selectors.php:150 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These " +"permissions set who is allowed to view the post." +msgstr "" + +#: ../../include/activities.php:42 +msgid " and " +msgstr "" + +#: ../../include/activities.php:50 +msgid "public profile" +msgstr "" + +#: ../../include/activities.php:59 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: ../../include/activities.php:60 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "" + +#: ../../include/activities.php:63 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: ../../include/attach.php:150 ../../include/attach.php:199 +#: ../../include/attach.php:272 ../../include/attach.php:380 +#: ../../include/attach.php:394 ../../include/attach.php:401 +#: ../../include/attach.php:483 ../../include/attach.php:1043 +#: ../../include/attach.php:1117 ../../include/attach.php:1280 +#: ../../include/items.php:3801 ../../include/photos.php:27 +#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Appman.php:87 +#: ../../Zotlabs/Module/Articles.php:88 +#: ../../Zotlabs/Module/Article_edit.php:51 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:24 +#: ../../Zotlabs/Module/Block.php:74 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Bookmarks.php:70 +#: ../../Zotlabs/Module/Cards.php:86 ../../Zotlabs/Module/Channel.php:168 +#: ../../Zotlabs/Module/Channel.php:335 ../../Zotlabs/Module/Channel.php:374 +#: ../../Zotlabs/Module/Chat.php:115 ../../Zotlabs/Module/Chat.php:120 +#: ../../Zotlabs/Module/Cloud.php:40 ../../Zotlabs/Module/Common.php:38 +#: ../../Zotlabs/Module/Connections.php:32 +#: ../../Zotlabs/Module/Connedit.php:399 +#: ../../Zotlabs/Module/Cover_photo.php:338 +#: ../../Zotlabs/Module/Cover_photo.php:351 +#: ../../Zotlabs/Module/Defperms.php:181 ../../Zotlabs/Module/Display.php:451 +#: ../../Zotlabs/Module/Editblock.php:67 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:107 +#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Events.php:271 +#: ../../Zotlabs/Module/Filestorage.php:17 +#: ../../Zotlabs/Module/Filestorage.php:72 +#: ../../Zotlabs/Module/Filestorage.php:90 +#: ../../Zotlabs/Module/Filestorage.php:113 +#: ../../Zotlabs/Module/Filestorage.php:160 ../../Zotlabs/Module/Group.php:14 +#: ../../Zotlabs/Module/Group.php:30 ../../Zotlabs/Module/Invite.php:21 +#: ../../Zotlabs/Module/Invite.php:102 ../../Zotlabs/Module/Item.php:397 +#: ../../Zotlabs/Module/Item.php:416 ../../Zotlabs/Module/Item.php:426 +#: ../../Zotlabs/Module/Item.php:1302 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Like.php:187 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mail.php:146 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Menu.php:129 ../../Zotlabs/Module/Menu.php:140 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mitem.php:129 +#: ../../Zotlabs/Module/Moderate.php:13 ../../Zotlabs/Module/Mood.php:126 +#: ../../Zotlabs/Module/Network.php:19 ../../Zotlabs/Module/New_channel.php:105 +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Notifications.php:11 +#: ../../Zotlabs/Module/Card_edit.php:51 ../../Zotlabs/Module/Regmod.php:20 +#: ../../Zotlabs/Module/Page.php:34 ../../Zotlabs/Module/Page.php:133 +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Photos.php:69 +#: ../../Zotlabs/Module/Poke.php:157 ../../Zotlabs/Module/Profile.php:85 +#: ../../Zotlabs/Module/Profile.php:101 ../../Zotlabs/Module/Profiles.php:198 +#: ../../Zotlabs/Module/Profiles.php:635 +#: ../../Zotlabs/Module/Profile_photo.php:302 +#: ../../Zotlabs/Module/Profile_photo.php:315 ../../Zotlabs/Module/Rate.php:113 +#: ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Service_limits.php:11 +#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Setup.php:206 +#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Sources.php:80 +#: ../../Zotlabs/Module/Suggest.php:32 ../../Zotlabs/Module/Thing.php:280 +#: ../../Zotlabs/Module/Thing.php:300 ../../Zotlabs/Module/Thing.php:341 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Webpages.php:133 +#: ../../Zotlabs/Module/Wiki.php:59 ../../Zotlabs/Module/Wiki.php:285 +#: ../../Zotlabs/Module/Wiki.php:428 ../../Zotlabs/Web/WebServer.php:123 +msgid "Permission denied." +msgstr "" + +#: ../../include/attach.php:267 ../../include/attach.php:375 +msgid "Item was not found." +msgstr "" + +#: ../../include/attach.php:284 +msgid "Unknown error." +msgstr "" + +#: ../../include/attach.php:568 +msgid "No source file." +msgstr "" + +#: ../../include/attach.php:590 +msgid "Cannot locate file to replace" +msgstr "" + +#: ../../include/attach.php:609 +msgid "Cannot locate file to revise/update" +msgstr "" + +#: ../../include/attach.php:751 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "" + +#: ../../include/attach.php:772 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "" + +#: ../../include/attach.php:954 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "" + +#: ../../include/attach.php:983 +msgid "Stored file could not be verified. Upload failed." +msgstr "" + +#: ../../include/attach.php:1057 ../../include/attach.php:1073 +msgid "Path not available." +msgstr "" + +#: ../../include/attach.php:1122 ../../include/attach.php:1285 +msgid "Empty pathname" +msgstr "" + +#: ../../include/attach.php:1148 +msgid "duplicate filename or path" +msgstr "" + +#: ../../include/attach.php:1173 +msgid "Path not found." +msgstr "" + +#: ../../include/attach.php:1241 +msgid "mkdir failed." +msgstr "" + +#: ../../include/attach.php:1245 +msgid "database storage failed." +msgstr "" + +#: ../../include/attach.php:1291 +msgid "Empty path" +msgstr "" + +#: ../../include/auth.php:192 +msgid "Delegation session ended." +msgstr "" + +#: ../../include/auth.php:196 +msgid "Logged out." +msgstr "" + +#: ../../include/auth.php:291 +msgid "Email validation is incomplete. Please check your email." +msgstr "" + +#: ../../include/auth.php:307 +msgid "Failed authentication" +msgstr "" + +#: ../../include/auth.php:317 +msgid "Login failed." +msgstr "" + +#: ../../include/bbcode.php:220 ../../include/bbcode.php:1210 +#: ../../include/bbcode.php:1213 ../../include/bbcode.php:1218 +#: ../../include/bbcode.php:1221 ../../include/bbcode.php:1224 +#: ../../include/bbcode.php:1227 ../../include/bbcode.php:1232 +#: ../../include/bbcode.php:1235 ../../include/bbcode.php:1240 +#: ../../include/bbcode.php:1243 ../../include/bbcode.php:1246 +#: ../../include/bbcode.php:1249 +msgid "Image/photo" +msgstr "" + +#: ../../include/bbcode.php:259 ../../include/bbcode.php:1260 +msgid "Encrypted content" +msgstr "" + +#: ../../include/bbcode.php:275 +#, php-format +msgid "Install %1$s element %2$s" +msgstr "" + +#: ../../include/bbcode.php:279 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "" + +#: ../../include/bbcode.php:289 ../../Zotlabs/Module/Impel.php:43 +msgid "webpage" +msgstr "" + +#: ../../include/bbcode.php:292 ../../Zotlabs/Module/Impel.php:53 +msgid "layout" +msgstr "" + +#: ../../include/bbcode.php:295 ../../Zotlabs/Module/Impel.php:48 +msgid "block" +msgstr "" + +#: ../../include/bbcode.php:298 ../../Zotlabs/Module/Impel.php:60 +msgid "menu" +msgstr "" + +#: ../../include/bbcode.php:359 +msgid "card" +msgstr "" + +#: ../../include/bbcode.php:361 +msgid "article" +msgstr "" + +#: ../../include/bbcode.php:363 ../../include/markdown.php:200 +#: ../../Zotlabs/Module/Tagger.php:77 +msgid "post" +msgstr "" + +#: ../../include/bbcode.php:367 ../../include/markdown.php:198 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "" + +#: ../../include/bbcode.php:444 ../../include/bbcode.php:452 +msgid "Click to open/close" +msgstr "" + +#: ../../include/bbcode.php:452 +msgid "spoiler" +msgstr "" + +#: ../../include/bbcode.php:465 +msgid "View article" +msgstr "" + +#: ../../include/bbcode.php:465 +msgid "View summary" +msgstr "" + +#: ../../include/bbcode.php:755 ../../include/bbcode.php:925 +#: ../../Zotlabs/Lib/NativeWikiPage.php:603 +msgid "Different viewers will see this text differently" +msgstr "" + +#: ../../include/bbcode.php:1198 +msgid "$1 wrote:" +msgstr "" + +#: ../../include/bookmarks.php:34 +#, php-format +msgid "%1$s's bookmarks" +msgstr "" + +#: ../../include/channel.php:43 +msgid "Unable to obtain identity information from database" +msgstr "" + +#: ../../include/channel.php:76 +msgid "Empty name" +msgstr "" + +#: ../../include/channel.php:79 +msgid "Name too long" +msgstr "" + +#: ../../include/channel.php:196 +msgid "No account identifier" +msgstr "" + +#: ../../include/channel.php:208 +msgid "Nickname is required." +msgstr "" + +#: ../../include/channel.php:222 ../../include/channel.php:655 +#: ../../Zotlabs/Module/Changeaddr.php:46 +msgid "Reserved nickname. Please choose another." +msgstr "" + +#: ../../include/channel.php:227 ../../include/channel.php:660 +#: ../../Zotlabs/Module/Changeaddr.php:51 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "" + +#: ../../include/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "" + +#: ../../include/channel.php:429 +msgid "Default Profile" +msgstr "" + +#: ../../include/channel.php:493 ../../include/channel.php:494 +#: ../../include/channel.php:501 ../../include/selectors.php:134 +#: ../../Zotlabs/Module/Connedit.php:725 +#: ../../Zotlabs/Module/Settings/Channel.php:70 +#: ../../Zotlabs/Module/Settings/Channel.php:74 +#: ../../Zotlabs/Module/Settings/Channel.php:75 +#: ../../Zotlabs/Module/Settings/Channel.php:78 +#: ../../Zotlabs/Module/Settings/Channel.php:89 +#: ../../Zotlabs/Widget/Affinity.php:32 +msgid "Friends" +msgstr "" + +#: ../../include/channel.php:588 ../../include/channel.php:677 +msgid "Unable to retrieve modified identity" +msgstr "" + +#: ../../include/channel.php:1273 +msgid "Requested channel is not available." +msgstr "" + +#: ../../include/channel.php:1319 ../../Zotlabs/Module/Achievements.php:15 +#: ../../Zotlabs/Module/Articles.php:42 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Connect.php:17 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 +#: ../../Zotlabs/Module/Filestorage.php:53 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Menu.php:91 +#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Webpages.php:39 +msgid "Requested profile is not available." +msgstr "" + +#: ../../include/channel.php:1411 ../../Zotlabs/Module/Profiles.php:728 +msgid "Change profile photo" +msgstr "" + +#: ../../include/channel.php:1418 ../../include/nav.php:113 +#: ../../Zotlabs/Module/Profiles.php:830 +msgid "Edit Profiles" +msgstr "" + +#: ../../include/channel.php:1418 ../../include/channel.php:1422 +#: ../../include/menu.php:118 ../../Zotlabs/Lib/Apps.php:558 +#: ../../Zotlabs/Lib/ThreadItem.php:147 +#: ../../Zotlabs/Module/Admin/Profs.php:175 +#: ../../Zotlabs/Module/Article_edit.php:99 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Connections.php:298 +#: ../../Zotlabs/Module/Connections.php:336 +#: ../../Zotlabs/Module/Connections.php:356 +#: ../../Zotlabs/Module/Editblock.php:114 +#: ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Editwebpage.php:142 ../../Zotlabs/Module/Group.php:252 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Menu.php:175 +#: ../../Zotlabs/Module/Oauth.php:173 ../../Zotlabs/Module/Oauth2.php:194 +#: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Module/Thing.php:266 +#: ../../Zotlabs/Module/Webpages.php:255 ../../Zotlabs/Module/Wiki.php:211 +#: ../../Zotlabs/Module/Wiki.php:384 ../../Zotlabs/Storage/Browser.php:296 +#: ../../Zotlabs/Widget/Cdav.php:126 ../../Zotlabs/Widget/Cdav.php:162 +msgid "Edit" +msgstr "" + +#: ../../include/channel.php:1419 +msgid "Create New Profile" +msgstr "" + +#: ../../include/channel.php:1422 ../../include/nav.php:115 +msgid "Edit Profile" +msgstr "" + +#: ../../include/channel.php:1437 ../../Zotlabs/Module/Profiles.php:820 +msgid "Profile Image" +msgstr "" + +#: ../../include/channel.php:1440 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/channel.php:1441 ../../Zotlabs/Module/Profiles.php:725 +#: ../../Zotlabs/Module/Profiles.php:824 +msgid "Edit visibility" +msgstr "" + +#: ../../include/channel.php:1498 ../../include/connections.php:110 +#: ../../include/conversation.php:1058 ../../Zotlabs/Module/Directory.php:342 +#: ../../Zotlabs/Module/Suggest.php:71 ../../Zotlabs/Widget/Follow.php:32 +#: ../../Zotlabs/Widget/Suggestions.php:46 +msgid "Connect" +msgstr "" + +#: ../../include/channel.php:1513 ../../include/event.php:61 +#: ../../include/event.php:93 ../../Zotlabs/Module/Directory.php:328 +msgid "Location:" +msgstr "" + +#: ../../include/channel.php:1517 ../../include/channel.php:1645 +msgid "Gender:" +msgstr "" + +#: ../../include/channel.php:1518 ../../include/channel.php:1689 +msgid "Status:" +msgstr "" + +#: ../../include/channel.php:1519 ../../include/channel.php:1713 +msgid "Homepage:" +msgstr "" + +#: ../../include/channel.php:1520 +msgid "Online Now" +msgstr "" + +#: ../../include/channel.php:1573 +msgid "Change your profile photo" +msgstr "" + +#: ../../include/channel.php:1600 ../../include/selectors.php:60 +#: ../../include/selectors.php:77 +msgid "Female" +msgstr "" + +#: ../../include/channel.php:1602 ../../include/selectors.php:60 +#: ../../include/selectors.php:77 +msgid "Male" +msgstr "" + +#: ../../include/channel.php:1604 +msgid "Trans" +msgstr "" + +#: ../../include/channel.php:1606 ../../include/selectors.php:60 +msgid "Neuter" +msgstr "" + +#: ../../include/channel.php:1608 ../../include/selectors.php:60 +msgid "Non-specific" +msgstr "" + +#: ../../include/channel.php:1643 ../../Zotlabs/Module/Settings/Channel.php:499 +msgid "Full Name:" +msgstr "" + +#: ../../include/channel.php:1650 +msgid "Like this channel" +msgstr "" + +#: ../../include/channel.php:1661 ../../include/conversation.php:1702 +#: ../../include/taxonomy.php:659 ../../Zotlabs/Lib/ThreadItem.php:235 +#: ../../Zotlabs/Module/Photos.php:1177 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/channel.php:1674 +msgid "j F, Y" +msgstr "" + +#: ../../include/channel.php:1675 +msgid "j F" +msgstr "" + +#: ../../include/channel.php:1682 +msgid "Birthday:" +msgstr "" + +#: ../../include/channel.php:1686 ../../Zotlabs/Module/Directory.php:323 +msgid "Age:" +msgstr "" + +#: ../../include/channel.php:1695 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: ../../include/channel.php:1707 +msgid "Tags:" +msgstr "" + +#: ../../include/channel.php:1711 +msgid "Sexual Preference:" +msgstr "" + +#: ../../include/channel.php:1715 ../../Zotlabs/Module/Directory.php:339 +msgid "Hometown:" +msgstr "" + +#: ../../include/channel.php:1717 +msgid "Political Views:" +msgstr "" + +#: ../../include/channel.php:1719 +msgid "Religion:" +msgstr "" + +#: ../../include/channel.php:1721 ../../Zotlabs/Module/Directory.php:341 +msgid "About:" +msgstr "" + +#: ../../include/channel.php:1723 +msgid "Hobbies/Interests:" +msgstr "" + +#: ../../include/channel.php:1725 +msgid "Likes:" +msgstr "" + +#: ../../include/channel.php:1727 +msgid "Dislikes:" +msgstr "" + +#: ../../include/channel.php:1729 +msgid "Contact information and Social Networks:" +msgstr "" + +#: ../../include/channel.php:1731 +msgid "My other channels:" +msgstr "" + +#: ../../include/channel.php:1733 +msgid "Musical interests:" +msgstr "" + +#: ../../include/channel.php:1735 +msgid "Books, literature:" +msgstr "" + +#: ../../include/channel.php:1737 +msgid "Television:" +msgstr "" + +#: ../../include/channel.php:1739 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: ../../include/channel.php:1741 +msgid "Love/Romance:" +msgstr "" + +#: ../../include/channel.php:1743 +msgid "Work/employment:" +msgstr "" + +#: ../../include/channel.php:1745 +msgid "School/education:" +msgstr "" + +#: ../../include/channel.php:1766 ../../Zotlabs/Lib/Apps.php:361 +#: ../../Zotlabs/Module/Profperm.php:113 +msgid "Profile" +msgstr "" + +#: ../../include/channel.php:1768 +msgid "Like this thing" +msgstr "" + +#: ../../include/channel.php:1769 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Events.php:692 +msgid "Export" +msgstr "" + +#: ../../include/channel.php:2207 ../../Zotlabs/Module/Cover_photo.php:301 +msgid "cover photo" +msgstr "" + +#: ../../include/channel.php:2476 ../../Zotlabs/Module/Rmagic.php:94 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "" + +#: ../../include/channel.php:2477 ../../Zotlabs/Module/Rmagic.php:95 +msgid "Authenticate" +msgstr "" + +#: ../../include/channel.php:2632 ../../Zotlabs/Module/Admin/Accounts.php:91 +#, php-format +msgid "Account '%s' deleted" +msgstr "" + +#: ../../include/connections.php:133 +msgid "New window" +msgstr "" + +#: ../../include/connections.php:134 +msgid "Open the selected location in a different window or browser tab" +msgstr "" + +#: ../../include/connections.php:696 ../../include/event.php:1325 +#: ../../Zotlabs/Module/Cdav.php:1251 ../../Zotlabs/Module/Connedit.php:932 +#: ../../Zotlabs/Module/Profiles.php:792 +msgid "Mobile" +msgstr "" + +#: ../../include/connections.php:697 ../../include/event.php:1326 +#: ../../Zotlabs/Module/Cdav.php:1252 ../../Zotlabs/Module/Connedit.php:933 +#: ../../Zotlabs/Module/Profiles.php:793 +msgid "Home" +msgstr "" + +#: ../../include/connections.php:698 ../../include/event.php:1327 +msgid "Home, Voice" +msgstr "" + +#: ../../include/connections.php:699 ../../include/event.php:1328 +msgid "Home, Fax" +msgstr "" + +#: ../../include/connections.php:700 ../../include/event.php:1329 +#: ../../Zotlabs/Module/Cdav.php:1253 ../../Zotlabs/Module/Connedit.php:934 +#: ../../Zotlabs/Module/Profiles.php:794 +msgid "Work" +msgstr "" + +#: ../../include/connections.php:701 ../../include/event.php:1330 +msgid "Work, Voice" +msgstr "" + +#: ../../include/connections.php:702 ../../include/event.php:1331 +msgid "Work, Fax" +msgstr "" + +#: ../../include/connections.php:703 ../../include/connections.php:710 +#: ../../include/event.php:1332 ../../include/event.php:1339 +#: ../../include/selectors.php:60 ../../include/selectors.php:77 +#: ../../include/selectors.php:115 ../../include/selectors.php:151 +#: ../../Zotlabs/Access/PermissionRoles.php:306 +#: ../../Zotlabs/Module/Cdav.php:1254 ../../Zotlabs/Module/Connedit.php:935 +#: ../../Zotlabs/Module/Profiles.php:795 +msgid "Other" +msgstr "" + +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:16 ../../Zotlabs/Module/Admin/Site.php:293 +msgid "Advanced" +msgstr "" + +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: ../../include/contact_widgets.php:23 +#: ../../Zotlabs/Module/Connections.php:355 +#: ../../Zotlabs/Module/Directory.php:405 +#: ../../Zotlabs/Module/Directory.php:410 +msgid "Find" +msgstr "" + +#: ../../include/contact_widgets.php:24 ../../Zotlabs/Module/Directory.php:409 +#: ../../Zotlabs/Module/Suggest.php:79 +msgid "Channel Suggestions" +msgstr "" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "" + +#: ../../include/contact_widgets.php:53 ../../include/features.php:325 +#: ../../Zotlabs/Widget/Activity_filter.php:137 +#: ../../Zotlabs/Widget/Filer.php:28 +msgid "Saved Folders" +msgstr "" + +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:99 +#: ../../include/contact_widgets.php:142 ../../include/contact_widgets.php:187 +#: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 +msgid "Everything" +msgstr "" + +#: ../../include/contact_widgets.php:96 ../../include/contact_widgets.php:139 +#: ../../include/contact_widgets.php:184 ../../include/taxonomy.php:409 +#: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511 +#: ../../include/taxonomy.php:532 ../../Zotlabs/Widget/Appcategories.php:43 +msgid "Categories" +msgstr "" + +#: ../../include/contact_widgets.php:218 +msgid "Common Connections" +msgstr "" + +#: ../../include/contact_widgets.php:222 +#, php-format +msgid "View all %d common connections" +msgstr "" + +#: ../../include/conversation.php:116 ../../include/text.php:2104 +#: ../../Zotlabs/Lib/Activity.php:2002 ../../Zotlabs/Module/Like.php:392 +#: ../../Zotlabs/Module/Subthread.php:112 ../../Zotlabs/Module/Tagger.php:69 +msgid "photo" +msgstr "" + +#: ../../include/conversation.php:119 ../../include/event.php:1169 +#: ../../include/text.php:2107 ../../Zotlabs/Module/Events.php:260 +#: ../../Zotlabs/Module/Like.php:394 ../../Zotlabs/Module/Tagger.php:73 +msgid "event" +msgstr "" + +#: ../../include/conversation.php:122 ../../Zotlabs/Module/Like.php:123 +msgid "channel" +msgstr "" + +#: ../../include/conversation.php:144 ../../include/text.php:2110 +#: ../../Zotlabs/Lib/Activity.php:2002 ../../Zotlabs/Module/Like.php:392 +#: ../../Zotlabs/Module/Subthread.php:112 +msgid "status" +msgstr "" + +#: ../../include/conversation.php:146 ../../include/text.php:2112 +#: ../../Zotlabs/Module/Tagger.php:79 +msgid "comment" +msgstr "" + +#: ../../include/conversation.php:160 ../../Zotlabs/Lib/Activity.php:2037 +#: ../../Zotlabs/Module/Like.php:447 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: ../../include/conversation.php:163 ../../Zotlabs/Lib/Activity.php:2039 +#: ../../Zotlabs/Module/Like.php:449 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + +#: ../../include/conversation.php:169 +#, php-format +msgid "likes %1$s's %2$s" +msgstr "" + +#: ../../include/conversation.php:172 +#, php-format +msgid "doesn't like %1$s's %2$s" +msgstr "" + +#: ../../include/conversation.php:212 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "" + +#: ../../include/conversation.php:247 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:251 ../../include/text.php:1176 +#: ../../include/text.php:1180 +msgid "poked" +msgstr "" + +#: ../../include/conversation.php:268 ../../Zotlabs/Module/Mood.php:76 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "" + +#: ../../include/conversation.php:483 ../../Zotlabs/Lib/ThreadItem.php:468 +msgid "This is an unsaved preview" +msgstr "" + +#: ../../include/conversation.php:619 ../../Zotlabs/Module/Photos.php:1154 +msgctxt "title" +msgid "Likes" +msgstr "" + +#: ../../include/conversation.php:619 ../../Zotlabs/Module/Photos.php:1154 +msgctxt "title" +msgid "Dislikes" +msgstr "" + +#: ../../include/conversation.php:620 ../../Zotlabs/Module/Photos.php:1155 +msgctxt "title" +msgid "Agree" +msgstr "" + +#: ../../include/conversation.php:620 ../../Zotlabs/Module/Photos.php:1155 +msgctxt "title" +msgid "Disagree" +msgstr "" + +#: ../../include/conversation.php:620 ../../Zotlabs/Module/Photos.php:1155 +msgctxt "title" +msgid "Abstain" +msgstr "" + +#: ../../include/conversation.php:621 ../../Zotlabs/Module/Photos.php:1156 +msgctxt "title" +msgid "Attending" +msgstr "" + +#: ../../include/conversation.php:621 ../../Zotlabs/Module/Photos.php:1156 +msgctxt "title" +msgid "Not attending" +msgstr "" + +#: ../../include/conversation.php:621 ../../Zotlabs/Module/Photos.php:1156 +msgctxt "title" +msgid "Might attend" +msgstr "" + +#: ../../include/conversation.php:690 ../../Zotlabs/Lib/ThreadItem.php:177 +msgid "Select" +msgstr "" + +#: ../../include/conversation.php:691 ../../include/conversation.php:736 +#: ../../Zotlabs/Lib/Apps.php:559 ../../Zotlabs/Lib/ThreadItem.php:167 +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Profs.php:176 +#: ../../Zotlabs/Module/Article_edit.php:129 +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Cdav.php:966 +#: ../../Zotlabs/Module/Cdav.php:1259 ../../Zotlabs/Module/Connections.php:306 +#: ../../Zotlabs/Module/Connedit.php:668 ../../Zotlabs/Module/Connedit.php:940 +#: ../../Zotlabs/Module/Editblock.php:139 +#: ../../Zotlabs/Module/Editlayout.php:138 +#: ../../Zotlabs/Module/Editwebpage.php:167 ../../Zotlabs/Module/Oauth.php:174 +#: ../../Zotlabs/Module/Oauth2.php:195 ../../Zotlabs/Module/Card_edit.php:129 +#: ../../Zotlabs/Module/Photos.php:1220 ../../Zotlabs/Module/Profiles.php:800 +#: ../../Zotlabs/Module/Thing.php:267 ../../Zotlabs/Module/Webpages.php:257 +#: ../../Zotlabs/Storage/Browser.php:297 +msgid "Delete" +msgstr "" + +#: ../../include/conversation.php:695 ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "Toggle Star Status" +msgstr "" + +#: ../../include/conversation.php:700 ../../Zotlabs/Lib/ThreadItem.php:102 +msgid "Private Message" +msgstr "" + +#: ../../include/conversation.php:707 ../../Zotlabs/Lib/ThreadItem.php:277 +msgid "Message signature validated" +msgstr "" + +#: ../../include/conversation.php:708 ../../Zotlabs/Lib/ThreadItem.php:278 +msgid "Message signature incorrect" +msgstr "" + +#: ../../include/conversation.php:735 +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Connections.php:320 +msgid "Approve" +msgstr "" + +#: ../../include/conversation.php:739 +#, php-format +msgid "View %s's profile @ %s" +msgstr "" + +#: ../../include/conversation.php:759 +msgid "Categories:" +msgstr "" + +#: ../../include/conversation.php:760 +msgid "Filed under:" +msgstr "" + +#: ../../include/conversation.php:766 ../../Zotlabs/Lib/ThreadItem.php:402 +#, php-format +msgid "from %s" +msgstr "" + +#: ../../include/conversation.php:769 ../../Zotlabs/Lib/ThreadItem.php:405 +#, php-format +msgid "last edited: %s" +msgstr "" + +#: ../../include/conversation.php:770 ../../Zotlabs/Lib/ThreadItem.php:406 +#, php-format +msgid "Expires: %s" +msgstr "" + +#: ../../include/conversation.php:785 +msgid "View in context" +msgstr "" + +#: ../../include/conversation.php:787 ../../Zotlabs/Lib/ThreadItem.php:469 +#: ../../Zotlabs/Module/Photos.php:1118 +msgid "Please wait" +msgstr "" + +#: ../../include/conversation.php:886 +msgid "remove" +msgstr "" + +#: ../../include/conversation.php:890 +msgid "Loading..." +msgstr "" + +#: ../../include/conversation.php:891 ../../Zotlabs/Lib/ThreadItem.php:290 +msgid "Conversation Tools" +msgstr "" + +#: ../../include/conversation.php:892 +msgid "Delete Selected Items" +msgstr "" + +#: ../../include/conversation.php:935 +msgid "View Source" +msgstr "" + +#: ../../include/conversation.php:945 +msgid "Follow Thread" +msgstr "" + +#: ../../include/conversation.php:954 +msgid "Unfollow Thread" +msgstr "" + +#: ../../include/conversation.php:1038 ../../include/nav.php:110 +#: ../../Zotlabs/Lib/Apps.php:343 ../../Zotlabs/Module/Connedit.php:608 +msgid "View Profile" +msgstr "" + +#: ../../include/conversation.php:1048 ../../Zotlabs/Module/Connedit.php:629 +msgid "Recent Activity" +msgstr "" + +#: ../../include/conversation.php:1068 +msgid "Edit Connection" +msgstr "" + +#: ../../include/conversation.php:1078 +msgid "Message" +msgstr "" + +#: ../../include/conversation.php:1088 ../../Zotlabs/Module/Pubsites.php:35 +#: ../../Zotlabs/Module/Ratings.php:97 +msgid "Ratings" +msgstr "" + +#: ../../include/conversation.php:1098 ../../Zotlabs/Lib/Apps.php:350 +#: ../../Zotlabs/Module/Poke.php:199 +msgid "Poke" +msgstr "" + +#: ../../include/conversation.php:1166 ../../Zotlabs/Lib/Activity.php:1053 +#: ../../Zotlabs/Lib/Apps.php:1115 ../../Zotlabs/Lib/Apps.php:1199 +#: ../../Zotlabs/Module/Cdav.php:826 ../../Zotlabs/Module/Cdav.php:827 +#: ../../Zotlabs/Module/Cdav.php:834 ../../Zotlabs/Module/Embedphotos.php:154 +#: ../../Zotlabs/Module/Photos.php:832 ../../Zotlabs/Module/Photos.php:1296 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Album.php:84 +#: ../../Zotlabs/Widget/Portfolio.php:95 +msgid "Unknown" +msgstr "" + +#: ../../include/conversation.php:1212 +#, php-format +msgid "%s likes this." +msgstr "" + +#: ../../include/conversation.php:1212 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: ../../include/conversation.php:1216 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1218 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1224 +msgid "and" +msgstr "" + +#: ../../include/conversation.php:1227 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1228 +#, php-format +msgid "%s like this." +msgstr "" + +#: ../../include/conversation.php:1228 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: ../../include/conversation.php:1285 +msgid "Set your location" +msgstr "" + +#: ../../include/conversation.php:1286 +msgid "Clear browser location" +msgstr "" + +#: ../../include/conversation.php:1298 +#: ../../Zotlabs/Module/Article_edit.php:101 ../../Zotlabs/Module/Chat.php:222 +#: ../../Zotlabs/Module/Editblock.php:116 +#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 +#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 +msgid "Insert web link" +msgstr "" + +#: ../../include/conversation.php:1302 +msgid "Embed (existing) photo from your photo albums" +msgstr "" + +#: ../../include/conversation.php:1337 ../../Zotlabs/Module/Chat.php:220 +#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Mail.php:362 +msgid "Please enter a link URL:" +msgstr "" + +#: ../../include/conversation.php:1338 +msgid "Tag term:" +msgstr "" + +#: ../../include/conversation.php:1339 +msgid "Where are you right now?" +msgstr "" + +#: ../../include/conversation.php:1342 ../../Zotlabs/Module/Cover_photo.php:427 +#: ../../Zotlabs/Module/Profile_photo.php:467 ../../Zotlabs/Module/Wiki.php:403 +msgid "Choose images to embed" +msgstr "" + +#: ../../include/conversation.php:1343 ../../Zotlabs/Module/Cover_photo.php:428 +#: ../../Zotlabs/Module/Profile_photo.php:468 ../../Zotlabs/Module/Wiki.php:404 +msgid "Choose an album" +msgstr "" + +#: ../../include/conversation.php:1344 +msgid "Choose a different album..." +msgstr "" + +#: ../../include/conversation.php:1345 ../../Zotlabs/Module/Cover_photo.php:430 +#: ../../Zotlabs/Module/Profile_photo.php:470 ../../Zotlabs/Module/Wiki.php:406 +msgid "Error getting album list" +msgstr "" + +#: ../../include/conversation.php:1346 ../../Zotlabs/Module/Cover_photo.php:431 +#: ../../Zotlabs/Module/Profile_photo.php:471 ../../Zotlabs/Module/Wiki.php:407 +msgid "Error getting photo link" +msgstr "" + +#: ../../include/conversation.php:1347 ../../Zotlabs/Module/Cover_photo.php:432 +#: ../../Zotlabs/Module/Profile_photo.php:472 ../../Zotlabs/Module/Wiki.php:408 +msgid "Error getting album" +msgstr "" + +#: ../../include/conversation.php:1348 +msgid "Comments enabled" +msgstr "" + +#: ../../include/conversation.php:1349 +msgid "Comments disabled" +msgstr "" + +#: ../../include/conversation.php:1359 ../../Zotlabs/Lib/ThreadItem.php:805 +#: ../../Zotlabs/Module/Events.php:480 ../../Zotlabs/Module/Photos.php:1139 +#: ../../Zotlabs/Module/Webpages.php:262 +msgid "Preview" +msgstr "" + +#: ../../include/conversation.php:1392 ../../Zotlabs/Module/Blocks.php:161 +#: ../../Zotlabs/Module/Layouts.php:194 ../../Zotlabs/Module/Photos.php:1117 +#: ../../Zotlabs/Module/Webpages.php:256 ../../Zotlabs/Module/Wiki.php:301 +#: ../../Zotlabs/Widget/Cdav.php:124 +msgid "Share" +msgstr "" + +#: ../../include/conversation.php:1401 +msgid "Page link name" +msgstr "" + +#: ../../include/conversation.php:1404 +msgid "Post as" +msgstr "" + +#: ../../include/conversation.php:1406 ../../Zotlabs/Lib/ThreadItem.php:796 +msgid "Bold" +msgstr "" + +#: ../../include/conversation.php:1407 ../../Zotlabs/Lib/ThreadItem.php:797 +msgid "Italic" +msgstr "" + +#: ../../include/conversation.php:1408 ../../Zotlabs/Lib/ThreadItem.php:798 +msgid "Underline" +msgstr "" + +#: ../../include/conversation.php:1409 ../../Zotlabs/Lib/ThreadItem.php:799 +msgid "Quote" +msgstr "" + +#: ../../include/conversation.php:1410 ../../Zotlabs/Lib/ThreadItem.php:800 +msgid "Code" +msgstr "" + +#: ../../include/conversation.php:1411 ../../Zotlabs/Lib/ThreadItem.php:802 +msgid "Attach/Upload file" +msgstr "" + +#: ../../include/conversation.php:1414 ../../Zotlabs/Module/Wiki.php:400 +msgid "Embed an image from your albums" +msgstr "" + +#: ../../include/conversation.php:1415 ../../include/conversation.php:1464 +#: ../../Zotlabs/Module/Admin/Addons.php:426 +#: ../../Zotlabs/Module/Article_edit.php:131 ../../Zotlabs/Module/Cdav.php:968 +#: ../../Zotlabs/Module/Cdav.php:1260 ../../Zotlabs/Module/Connedit.php:941 +#: ../../Zotlabs/Module/Cover_photo.php:425 +#: ../../Zotlabs/Module/Editblock.php:141 +#: ../../Zotlabs/Module/Editlayout.php:140 +#: ../../Zotlabs/Module/Editpost.php:109 +#: ../../Zotlabs/Module/Editwebpage.php:169 +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Oauth.php:112 +#: ../../Zotlabs/Module/Oauth.php:138 ../../Zotlabs/Module/Oauth2.php:117 +#: ../../Zotlabs/Module/Oauth2.php:145 ../../Zotlabs/Module/Card_edit.php:131 +#: ../../Zotlabs/Module/Profiles.php:801 +#: ../../Zotlabs/Module/Profile_photo.php:465 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:368 +#: ../../Zotlabs/Module/Wiki.php:401 +msgid "Cancel" +msgstr "" + +#: ../../include/conversation.php:1416 ../../include/conversation.php:1463 +#: ../../Zotlabs/Module/Cover_photo.php:426 +#: ../../Zotlabs/Module/Profile_photo.php:466 ../../Zotlabs/Module/Wiki.php:402 +msgid "OK" +msgstr "" + +#: ../../include/conversation.php:1418 +msgid "Toggle voting" +msgstr "" + +#: ../../include/conversation.php:1421 +msgid "Disable comments" +msgstr "" + +#: ../../include/conversation.php:1422 +msgid "Toggle comments" +msgstr "" + +#: ../../include/conversation.php:1427 +#: ../../Zotlabs/Module/Article_edit.php:117 +#: ../../Zotlabs/Module/Editblock.php:129 +#: ../../Zotlabs/Module/Card_edit.php:117 ../../Zotlabs/Module/Photos.php:713 +#: ../../Zotlabs/Module/Photos.php:1083 +msgid "Title (optional)" +msgstr "" + +#: ../../include/conversation.php:1430 +msgid "Categories (optional, comma-separated list)" +msgstr "" + +#: ../../include/conversation.php:1431 ../../Zotlabs/Module/Events.php:481 +msgid "Permission settings" +msgstr "" + +#: ../../include/conversation.php:1453 +msgid "Other networks and post services" +msgstr "" + +#: ../../include/conversation.php:1456 ../../Zotlabs/Module/Mail.php:292 +#: ../../Zotlabs/Module/Mail.php:434 +msgid "Set expiration date" +msgstr "" + +#: ../../include/conversation.php:1459 +msgid "Set publish date" +msgstr "" + +#: ../../include/conversation.php:1461 ../../Zotlabs/Lib/ThreadItem.php:809 +#: ../../Zotlabs/Module/Chat.php:221 ../../Zotlabs/Module/Mail.php:294 +#: ../../Zotlabs/Module/Mail.php:436 +msgid "Encrypt text" +msgstr "" + +#: ../../include/conversation.php:1705 ../../Zotlabs/Lib/ThreadItem.php:240 +#: ../../Zotlabs/Module/Photos.php:1182 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1708 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1711 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1714 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1717 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1720 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1723 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:58 ../../Zotlabs/Module/Profiles.php:736 +#: ../../Zotlabs/Widget/Newmember.php:51 +msgid "Miscellaneous" +msgstr "" + +#: ../../include/datetime.php:140 +msgid "Birthday" +msgstr "" + +#: ../../include/datetime.php:140 +msgid "Age: " +msgstr "" + +#: ../../include/datetime.php:140 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: ../../include/datetime.php:211 ../../Zotlabs/Module/Appman.php:143 +#: ../../Zotlabs/Module/Appman.php:144 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Profiles.php:745 +#: ../../Zotlabs/Module/Profiles.php:749 +msgid "Required" +msgstr "" + +#: ../../include/datetime.php:244 +msgid "less than a second ago" +msgstr "" + +#: ../../include/datetime.php:262 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "" + +#: ../../include/datetime.php:273 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:276 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:279 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:282 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:285 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:288 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:291 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:520 +#, php-format +msgid "%1$s's birthday" +msgstr "" + +#: ../../include/datetime.php:521 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "" + +#: ../../include/dir_fns.php:141 ../../Zotlabs/Lib/Libzotdir.php:160 +msgid "Directory Options" +msgstr "" + +#: ../../include/dir_fns.php:143 ../../Zotlabs/Lib/Libzotdir.php:162 +msgid "Safe Mode" +msgstr "" + +#: ../../include/dir_fns.php:144 ../../Zotlabs/Lib/Libzotdir.php:163 +msgid "Public Forums Only" +msgstr "" + +#: ../../include/dir_fns.php:145 ../../Zotlabs/Lib/Libzotdir.php:165 +msgid "This Website Only" +msgstr "" + +#: ../../include/event.php:31 ../../include/event.php:78 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: ../../include/event.php:39 ../../include/event.php:82 +msgid "Starts:" +msgstr "" + +#: ../../include/event.php:49 ../../include/event.php:86 +msgid "Finishes:" +msgstr "" + +#: ../../include/event.php:1023 +msgid "This event has been added to your calendar." +msgstr "" + +#: ../../include/event.php:1244 +msgid "Not specified" +msgstr "" + +#: ../../include/event.php:1245 +msgid "Needs Action" +msgstr "" + +#: ../../include/event.php:1246 +msgid "Completed" +msgstr "" + +#: ../../include/event.php:1247 +msgid "In Process" +msgstr "" + +#: ../../include/event.php:1248 +msgid "Cancelled" +msgstr "" + +#: ../../include/features.php:55 ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:36 +msgid "Off" +msgstr "" + +#: ../../include/features.php:55 ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:36 +msgid "On" +msgstr "" + +#: ../../include/features.php:82 ../../Zotlabs/Lib/Apps.php:366 +msgid "CalDAV" +msgstr "" + +#: ../../include/features.php:86 ../../include/features.php:273 +msgid "Start calendar week on Monday" +msgstr "" + +#: ../../include/features.php:87 ../../include/features.php:274 +msgid "Default is Sunday" +msgstr "" + +#: ../../include/features.php:96 ../../Zotlabs/Lib/Apps.php:342 +msgid "Channel Home" +msgstr "" + +#: ../../include/features.php:100 +msgid "Search by Date" +msgstr "" + +#: ../../include/features.php:101 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: ../../include/features.php:108 +msgid "Tag Cloud" +msgstr "" + +#: ../../include/features.php:109 +msgid "Provide a personal tag cloud on your channel page" +msgstr "" + +#: ../../include/features.php:116 ../../include/features.php:365 +msgid "Use blog/list mode" +msgstr "" + +#: ../../include/features.php:117 ../../include/features.php:366 +msgid "Comments will be displayed separately" +msgstr "" + +#: ../../include/features.php:125 ../../include/text.php:991 +#: ../../Zotlabs/Lib/Apps.php:332 ../../Zotlabs/Module/Connections.php:348 +msgid "Connections" +msgstr "" + +#: ../../include/features.php:129 +msgid "Connection Filtering" +msgstr "" + +#: ../../include/features.php:130 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "" + +#: ../../include/features.php:138 +msgid "Conversation" +msgstr "" + +#: ../../include/features.php:142 +msgid "Community Tagging" +msgstr "" + +#: ../../include/features.php:143 +msgid "Ability to tag existing posts" +msgstr "" + +#: ../../include/features.php:150 +msgid "Emoji Reactions" +msgstr "" + +#: ../../include/features.php:151 +msgid "Add emoji reaction ability to posts" +msgstr "" + +#: ../../include/features.php:158 +msgid "Dislike Posts" +msgstr "" + +#: ../../include/features.php:159 +msgid "Ability to dislike posts/comments" +msgstr "" + +#: ../../include/features.php:166 +msgid "Star Posts" +msgstr "" + +#: ../../include/features.php:167 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: ../../include/features.php:176 ../../Zotlabs/Lib/Apps.php:346 +msgid "Directory" +msgstr "" + +#: ../../include/features.php:180 +msgid "Advanced Directory Search" +msgstr "" + +#: ../../include/features.php:181 +msgid "Allows creation of complex directory search queries" +msgstr "" + +#: ../../include/features.php:190 +msgid "Editor" +msgstr "" + +#: ../../include/features.php:194 +msgid "Post Categories" +msgstr "" + +#: ../../include/features.php:195 +msgid "Add categories to your posts" +msgstr "" + +#: ../../include/features.php:203 +msgid "Large Photos" +msgstr "" + +#: ../../include/features.php:204 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "" + +#: ../../include/features.php:211 +msgid "Even More Encryption" +msgstr "" + +#: ../../include/features.php:212 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "" + +#: ../../include/features.php:219 +msgid "Enable Voting Tools" +msgstr "" + +#: ../../include/features.php:220 +msgid "Provide a class of post which others can vote on" +msgstr "" + +#: ../../include/features.php:227 +msgid "Disable Comments" +msgstr "" + +#: ../../include/features.php:228 +msgid "Provide the option to disable comments for a post" +msgstr "" + +#: ../../include/features.php:235 +msgid "Delayed Posting" +msgstr "" + +#: ../../include/features.php:236 +msgid "Allow posts to be published at a later date" +msgstr "" + +#: ../../include/features.php:243 +msgid "Content Expiration" +msgstr "" + +#: ../../include/features.php:244 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "" + +#: ../../include/features.php:251 +msgid "Suppress Duplicate Posts/Comments" +msgstr "" + +#: ../../include/features.php:252 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "" + +#: ../../include/features.php:259 +msgid "Auto-save drafts of posts and comments" +msgstr "" + +#: ../../include/features.php:260 +msgid "" +"Automatically saves post and comment drafts in local browser storage to help " +"prevent accidental loss of compositions" +msgstr "" + +#: ../../include/features.php:269 ../../Zotlabs/Lib/Apps.php:345 +msgid "Events" +msgstr "" + +#: ../../include/features.php:281 +msgid "Smart Birthdays" +msgstr "" + +#: ../../include/features.php:282 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "" + +#: ../../include/features.php:289 +msgid "Event Timezone Selection" +msgstr "" + +#: ../../include/features.php:290 +msgid "Allow event creation in timezones other than your own." +msgstr "" + +#: ../../include/features.php:299 +msgid "Manage" +msgstr "" + +#: ../../include/features.php:303 +msgid "Navigation Channel Select" +msgstr "" + +#: ../../include/features.php:304 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "" + +#: ../../include/features.php:313 ../../Zotlabs/Module/Connections.php:310 +msgid "Network" +msgstr "" + +#: ../../include/features.php:317 ../../Zotlabs/Widget/Savedsearch.php:83 +msgid "Saved Searches" +msgstr "" + +#: ../../include/features.php:318 +msgid "Save search terms for re-use" +msgstr "" + +#: ../../include/features.php:326 +msgid "Ability to file posts under folders" +msgstr "" + +#: ../../include/features.php:333 +msgid "Alternate Stream Order" +msgstr "" + +#: ../../include/features.php:334 +msgid "" +"Ability to order the stream by last post date, last comment date or " +"unthreaded activities" +msgstr "" + +#: ../../include/features.php:341 +msgid "Contact Filter" +msgstr "" + +#: ../../include/features.php:342 +msgid "Ability to display only posts of a selected contact" +msgstr "" + +#: ../../include/features.php:349 +msgid "Forum Filter" +msgstr "" + +#: ../../include/features.php:350 +msgid "Ability to display only posts of a specific forum" +msgstr "" + +#: ../../include/features.php:357 +msgid "Personal Posts Filter" +msgstr "" + +#: ../../include/features.php:358 +msgid "Ability to display only posts that you've interacted on" +msgstr "" + +#: ../../include/features.php:375 ../../include/nav.php:446 +#: ../../Zotlabs/Lib/Apps.php:344 ../../Zotlabs/Module/Fbrowser.php:29 +msgid "Photos" +msgstr "" + +#: ../../include/features.php:379 +msgid "Photo Location" +msgstr "" + +#: ../../include/features.php:380 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "" + +#: ../../include/features.php:389 ../../Zotlabs/Lib/Apps.php:362 +msgid "Profiles" +msgstr "" + +#: ../../include/features.php:393 +msgid "Advanced Profiles" +msgstr "" + +#: ../../include/features.php:394 +msgid "Additional profile sections and selections" +msgstr "" + +#: ../../include/features.php:401 +msgid "Profile Import/Export" +msgstr "" + +#: ../../include/features.php:402 +msgid "Save and load profile details across sites/channels" +msgstr "" + +#: ../../include/features.php:409 +msgid "Multiple Profiles" +msgstr "" + +#: ../../include/features.php:410 +msgid "Ability to create multiple profiles" +msgstr "" + +#: ../../include/feedutils.php:858 ../../include/text.php:1504 +msgid "unknown" +msgstr "" + +#: ../../include/follow.php:37 +msgid "Channel is blocked on this site." +msgstr "" + +#: ../../include/follow.php:42 +msgid "Channel location missing." +msgstr "" + +#: ../../include/follow.php:84 +msgid "Response from remote channel was incomplete." +msgstr "" + +#: ../../include/follow.php:96 +msgid "Premium channel - please visit:" +msgstr "" + +#: ../../include/follow.php:110 +msgid "Channel was deleted and no longer exists." +msgstr "" + +#: ../../include/follow.php:166 +msgid "Remote channel or protocol unavailable." +msgstr "" + +#: ../../include/follow.php:189 +msgid "Channel discovery failed." +msgstr "" + +#: ../../include/follow.php:201 +msgid "Protocol disabled." +msgstr "" + +#: ../../include/follow.php:212 +msgid "Cannot connect to yourself." +msgstr "" + +#: ../../include/group.php:22 ../../Zotlabs/Lib/Group.php:28 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "" + +#: ../../include/group.php:264 ../../Zotlabs/Lib/Group.php:270 +msgid "Add new connections to this privacy group" +msgstr "" + +#: ../../include/group.php:298 ../../Zotlabs/Lib/Group.php:302 +msgid "edit" +msgstr "" + +#: ../../include/group.php:320 ../../include/nav.php:99 +#: ../../Zotlabs/Lib/Apps.php:363 ../../Zotlabs/Lib/Group.php:324 +#: ../../Zotlabs/Module/Group.php:141 ../../Zotlabs/Module/Group.php:153 +#: ../../Zotlabs/Widget/Activity_filter.php:41 +msgid "Privacy Groups" +msgstr "" + +#: ../../include/group.php:321 ../../Zotlabs/Lib/Group.php:325 +msgid "Edit group" +msgstr "" + +#: ../../include/group.php:322 ../../Zotlabs/Lib/Group.php:326 +msgid "Add privacy group" +msgstr "" + +#: ../../include/group.php:323 ../../Zotlabs/Lib/Group.php:327 +msgid "Channels not in any privacy group" +msgstr "" + +#: ../../include/group.php:325 ../../Zotlabs/Lib/Group.php:329 +#: ../../Zotlabs/Widget/Savedsearch.php:84 +msgid "add" +msgstr "" + +#: ../../include/help.php:80 +msgid "Help:" +msgstr "" + +#: ../../include/help.php:117 ../../include/help.php:125 +#: ../../include/nav.php:172 ../../include/nav.php:322 +#: ../../Zotlabs/Lib/Apps.php:347 ../../Zotlabs/Module/Layouts.php:186 +msgid "Help" +msgstr "" + +#: ../../include/help.php:129 +msgid "Not Found" +msgstr "" + +#: ../../include/help.php:132 ../../Zotlabs/Lib/NativeWikiPage.php:521 +#: ../../Zotlabs/Module/Block.php:77 ../../Zotlabs/Module/Display.php:140 +#: ../../Zotlabs/Module/Display.php:157 ../../Zotlabs/Module/Display.php:174 +#: ../../Zotlabs/Module/Display.php:180 ../../Zotlabs/Module/Page.php:136 +#: ../../Zotlabs/Web/Router.php:185 +msgid "Page not found." +msgstr "" + +#: ../../include/import.php:26 +msgid "Unable to import a removed channel." +msgstr "" + +#: ../../include/import.php:52 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "" + +#: ../../include/import.php:73 +msgid "Unable to create a unique channel address. Import failed." +msgstr "" + +#: ../../include/import.php:117 +msgid "Cloned channel not found. Import failed." +msgstr "" + +#: ../../include/items.php:416 ../../Zotlabs/Module/Cloud.php:126 +#: ../../Zotlabs/Module/Group.php:98 ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Like.php:301 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:82 ../../Zotlabs/Module/Profperm.php:28 +#: ../../Zotlabs/Module/Share.php:71 ../../Zotlabs/Module/Subthread.php:86 +#: ../../Zotlabs/Web/WebServer.php:122 +msgid "Permission denied" +msgstr "" + +#: ../../include/items.php:965 ../../include/items.php:1025 +msgid "(Unknown)" +msgstr "" + +#: ../../include/items.php:1213 +msgid "Visible to anybody on the internet." +msgstr "" + +#: ../../include/items.php:1215 +msgid "Visible to you only." +msgstr "" + +#: ../../include/items.php:1217 +msgid "Visible to anybody in this network." +msgstr "" + +#: ../../include/items.php:1219 +msgid "Visible to anybody authenticated." +msgstr "" + +#: ../../include/items.php:1221 +#, php-format +msgid "Visible to anybody on %s." +msgstr "" + +#: ../../include/items.php:1223 +msgid "Visible to all connections." +msgstr "" + +#: ../../include/items.php:1225 +msgid "Visible to approved connections." +msgstr "" + +#: ../../include/items.php:1227 +msgid "Visible to specific connections." +msgstr "" + +#: ../../include/items.php:3713 ../../Zotlabs/Module/Admin/Addons.php:259 +#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Admin.php:62 +#: ../../Zotlabs/Module/Display.php:45 ../../Zotlabs/Module/Display.php:455 +#: ../../Zotlabs/Module/Filestorage.php:26 ../../Zotlabs/Module/Thing.php:94 +#: ../../Zotlabs/Module/Viewsrc.php:25 +msgid "Item not found." +msgstr "" + +#: ../../include/items.php:4295 ../../Zotlabs/Module/Group.php:61 +#: ../../Zotlabs/Module/Group.php:213 +msgid "Privacy group not found." +msgstr "" + +#: ../../include/items.php:4311 +msgid "Privacy group is empty." +msgstr "" + +#: ../../include/items.php:4318 +#, php-format +msgid "Privacy group: %s" +msgstr "" + +#: ../../include/items.php:4328 ../../Zotlabs/Module/Connedit.php:867 +#, php-format +msgid "Connection: %s" +msgstr "" + +#: ../../include/items.php:4330 +msgid "Connection not found." +msgstr "" + +#: ../../include/items.php:4672 ../../Zotlabs/Module/Cover_photo.php:294 +msgid "female" +msgstr "" + +#: ../../include/items.php:4673 ../../Zotlabs/Module/Cover_photo.php:295 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "" + +#: ../../include/items.php:4674 ../../Zotlabs/Module/Cover_photo.php:296 +msgid "male" +msgstr "" + +#: ../../include/items.php:4675 ../../Zotlabs/Module/Cover_photo.php:297 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "" + +#: ../../include/items.php:4677 ../../Zotlabs/Module/Cover_photo.php:299 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "" + +#: ../../include/items.php:4679 +msgid "profile photo" +msgstr "" + +#: ../../include/items.php:4871 +#, php-format +msgid "[Edited %s]" +msgstr "" + +#: ../../include/items.php:4871 +msgctxt "edit_activity" +msgid "Post" +msgstr "" + +#: ../../include/items.php:4871 +msgctxt "edit_activity" +msgid "Comment" +msgstr "" + +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "" + +#: ../../include/js_strings.php:6 ../../Zotlabs/Lib/ThreadItem.php:794 +#: ../../Zotlabs/Module/Photos.php:1137 ../../Zotlabs/Module/Photos.php:1256 +msgid "Comment" +msgstr "" + +#: ../../include/js_strings.php:7 ../../Zotlabs/Lib/ThreadItem.php:501 +#, php-format +msgid "%s show all" +msgstr "" + +#: ../../include/js_strings.php:8 +#, php-format +msgid "%s show less" +msgstr "" + +#: ../../include/js_strings.php:9 +#, php-format +msgid "%s expand" +msgstr "" + +#: ../../include/js_strings.php:10 +#, php-format +msgid "%s collapse" +msgstr "" + +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "" + +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "" + +#: ../../include/js_strings.php:13 +msgid "everybody" +msgstr "" + +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "" + +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "" + +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "" + +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "" + +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "" + +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "" + +#: ../../include/js_strings.php:20 ../../Zotlabs/Module/Connedit.php:887 +#: ../../Zotlabs/Module/Rate.php:155 +msgid "Rating" +msgstr "" + +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "" + +#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:94 +#: ../../Zotlabs/Lib/ThreadItem.php:795 +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Account_edit.php:73 +#: ../../Zotlabs/Module/Admin/Addons.php:441 +#: ../../Zotlabs/Module/Admin/Channels.php:147 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Profs.php:178 +#: ../../Zotlabs/Module/Admin/Security.php:112 +#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../Zotlabs/Module/Affinity.php:87 ../../Zotlabs/Module/Appman.php:155 +#: ../../Zotlabs/Module/Cal.php:344 ../../Zotlabs/Module/Chat.php:211 +#: ../../Zotlabs/Module/Chat.php:250 ../../Zotlabs/Module/Connect.php:124 +#: ../../Zotlabs/Module/Connedit.php:904 ../../Zotlabs/Module/Defperms.php:265 +#: ../../Zotlabs/Module/Editpost.php:85 +#: ../../Zotlabs/Module/Email_validation.php:40 +#: ../../Zotlabs/Module/Events.php:495 ../../Zotlabs/Module/Filestorage.php:203 +#: ../../Zotlabs/Module/Group.php:150 ../../Zotlabs/Module/Group.php:166 +#: ../../Zotlabs/Module/Import.php:646 +#: ../../Zotlabs/Module/Import_items.php:129 +#: ../../Zotlabs/Module/Invite.php:168 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:431 ../../Zotlabs/Module/Mitem.php:259 +#: ../../Zotlabs/Module/Mood.php:158 ../../Zotlabs/Module/Oauth.php:111 +#: ../../Zotlabs/Module/Oauth2.php:116 ../../Zotlabs/Module/Pconfig.php:116 +#: ../../Zotlabs/Module/Pdledit.php:107 ../../Zotlabs/Module/Permcats.php:128 +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1138 +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Module/Poke.php:217 +#: ../../Zotlabs/Module/Profiles.php:723 ../../Zotlabs/Module/Rate.php:166 +#: ../../Zotlabs/Module/Settings/Account.php:103 +#: ../../Zotlabs/Module/Settings/Calendar.php:41 +#: ../../Zotlabs/Module/Settings/Channel.php:493 +#: ../../Zotlabs/Module/Settings/Channel_home.php:89 +#: ../../Zotlabs/Module/Settings/Connections.php:41 +#: ../../Zotlabs/Module/Settings/Conversation.php:48 +#: ../../Zotlabs/Module/Settings/Directory.php:41 +#: ../../Zotlabs/Module/Settings/Display.php:189 +#: ../../Zotlabs/Module/Settings/Editor.php:41 +#: ../../Zotlabs/Module/Settings/Events.php:41 +#: ../../Zotlabs/Module/Settings/Features.php:46 +#: ../../Zotlabs/Module/Settings/Manage.php:41 +#: ../../Zotlabs/Module/Settings/Network.php:61 +#: ../../Zotlabs/Module/Settings/Photos.php:41 +#: ../../Zotlabs/Module/Settings/Profiles.php:50 +#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +#: ../../Zotlabs/Module/Sources.php:125 ../../Zotlabs/Module/Sources.php:162 +#: ../../Zotlabs/Module/Thing.php:326 ../../Zotlabs/Module/Thing.php:379 +#: ../../Zotlabs/Module/Tokens.php:188 ../../Zotlabs/Module/Wiki.php:215 +#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Widget/Eventstools.php:16 +#: ../../Zotlabs/Widget/Wiki_pages.php:42 +#: ../../Zotlabs/Widget/Wiki_pages.php:99 +msgid "Submit" +msgstr "" + +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "" + +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "" + +#: ../../include/js_strings.php:25 ../../Zotlabs/Module/Cdav.php:940 +#: ../../Zotlabs/Module/Events.php:477 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:509 ../../Zotlabs/Module/Profiles.php:734 +#: ../../Zotlabs/Module/Pubsites.php:52 +msgid "Location" +msgstr "" + +#: ../../include/js_strings.php:26 +msgid "lovely" +msgstr "" + +#: ../../include/js_strings.php:27 +msgid "wonderful" +msgstr "" + +#: ../../include/js_strings.php:28 +msgid "fantastic" +msgstr "" + +#: ../../include/js_strings.php:29 +msgid "great" +msgstr "" + +#: ../../include/js_strings.php:30 +msgid "" +"Your chosen nickname was either already taken or not valid. Please use our " +"suggestion (" +msgstr "" + +#: ../../include/js_strings.php:31 +msgid ") or enter a new one." +msgstr "" + +#: ../../include/js_strings.php:32 +msgid "Thank you, this nickname is valid." +msgstr "" + +#: ../../include/js_strings.php:33 +msgid "A channel name is required." +msgstr "" + +#: ../../include/js_strings.php:34 +msgid "This is a " +msgstr "" + +#: ../../include/js_strings.php:35 +msgid " channel name" +msgstr "" + +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d minutes" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:42 +#, php-format +msgid "about %d hours" +msgid_plural "about %d hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:43 +#, php-format +msgid "%d days" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:44 +#, php-format +msgid "%d months" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:45 +#, php-format +msgid "%d years" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:50 +msgid "timeago.prefixAgo" +msgstr "" + +#: ../../include/js_strings.php:51 +msgid "timeago.prefixFromNow" +msgstr "" + +#: ../../include/js_strings.php:52 +msgid "timeago.suffixAgo" +msgstr "" + +#: ../../include/js_strings.php:53 +msgid "timeago.suffixFromNow" +msgstr "" + +#: ../../include/js_strings.php:56 +msgid "less than a minute" +msgstr "" + +#: ../../include/js_strings.php:57 +msgid "about a minute" +msgstr "" + +#: ../../include/js_strings.php:59 +msgid "about an hour" +msgstr "" + +#: ../../include/js_strings.php:61 +msgid "a day" +msgstr "" + +#: ../../include/js_strings.php:63 +msgid "about a month" +msgstr "" + +#: ../../include/js_strings.php:65 +msgid "about a year" +msgstr "" + +#: ../../include/js_strings.php:67 +msgid " " +msgstr "" + +#: ../../include/js_strings.php:68 +msgid "timeago.numbers" +msgstr "" + +#: ../../include/js_strings.php:70 ../../include/text.php:1428 +msgid "January" +msgstr "" + +#: ../../include/js_strings.php:71 ../../include/text.php:1428 +msgid "February" +msgstr "" + +#: ../../include/js_strings.php:72 ../../include/text.php:1428 +msgid "March" +msgstr "" + +#: ../../include/js_strings.php:73 ../../include/text.php:1428 +msgid "April" +msgstr "" + +#: ../../include/js_strings.php:74 +msgctxt "long" +msgid "May" +msgstr "" + +#: ../../include/js_strings.php:75 ../../include/text.php:1428 +msgid "June" +msgstr "" + +#: ../../include/js_strings.php:76 ../../include/text.php:1428 +msgid "July" +msgstr "" + +#: ../../include/js_strings.php:77 ../../include/text.php:1428 +msgid "August" +msgstr "" + +#: ../../include/js_strings.php:78 ../../include/text.php:1428 +msgid "September" +msgstr "" + +#: ../../include/js_strings.php:79 ../../include/text.php:1428 +msgid "October" +msgstr "" + +#: ../../include/js_strings.php:80 ../../include/text.php:1428 +msgid "November" +msgstr "" + +#: ../../include/js_strings.php:81 ../../include/text.php:1428 +msgid "December" +msgstr "" + +#: ../../include/js_strings.php:82 +msgid "Jan" +msgstr "" + +#: ../../include/js_strings.php:83 +msgid "Feb" +msgstr "" + +#: ../../include/js_strings.php:84 +msgid "Mar" +msgstr "" + +#: ../../include/js_strings.php:85 +msgid "Apr" +msgstr "" + +#: ../../include/js_strings.php:86 +msgctxt "short" +msgid "May" +msgstr "" + +#: ../../include/js_strings.php:87 +msgid "Jun" +msgstr "" + +#: ../../include/js_strings.php:88 +msgid "Jul" +msgstr "" + +#: ../../include/js_strings.php:89 +msgid "Aug" +msgstr "" + +#: ../../include/js_strings.php:90 +msgid "Sep" +msgstr "" + +#: ../../include/js_strings.php:91 +msgid "Oct" +msgstr "" + +#: ../../include/js_strings.php:92 +msgid "Nov" +msgstr "" + +#: ../../include/js_strings.php:93 +msgid "Dec" +msgstr "" + +#: ../../include/js_strings.php:94 ../../include/text.php:1424 +msgid "Sunday" +msgstr "" + +#: ../../include/js_strings.php:95 ../../include/text.php:1424 +msgid "Monday" +msgstr "" + +#: ../../include/js_strings.php:96 ../../include/text.php:1424 +msgid "Tuesday" +msgstr "" + +#: ../../include/js_strings.php:97 ../../include/text.php:1424 +msgid "Wednesday" +msgstr "" + +#: ../../include/js_strings.php:98 ../../include/text.php:1424 +msgid "Thursday" +msgstr "" + +#: ../../include/js_strings.php:99 ../../include/text.php:1424 +msgid "Friday" +msgstr "" + +#: ../../include/js_strings.php:100 ../../include/text.php:1424 +msgid "Saturday" +msgstr "" + +#: ../../include/js_strings.php:101 +msgid "Sun" +msgstr "" + +#: ../../include/js_strings.php:102 +msgid "Mon" +msgstr "" + +#: ../../include/js_strings.php:103 +msgid "Tue" +msgstr "" + +#: ../../include/js_strings.php:104 +msgid "Wed" +msgstr "" + +#: ../../include/js_strings.php:105 +msgid "Thu" +msgstr "" + +#: ../../include/js_strings.php:106 +msgid "Fri" +msgstr "" + +#: ../../include/js_strings.php:107 +msgid "Sat" +msgstr "" + +#: ../../include/js_strings.php:108 +msgctxt "calendar" +msgid "today" +msgstr "" + +#: ../../include/js_strings.php:109 +msgctxt "calendar" +msgid "month" +msgstr "" + +#: ../../include/js_strings.php:110 +msgctxt "calendar" +msgid "week" +msgstr "" + +#: ../../include/js_strings.php:111 +msgctxt "calendar" +msgid "day" +msgstr "" + +#: ../../include/js_strings.php:112 +msgctxt "calendar" +msgid "All day" +msgstr "" + +#: ../../include/language.php:423 ../../include/text.php:1948 +msgid "default" +msgstr "" + +#: ../../include/language.php:436 +msgid "Select an alternate language" +msgstr "" + +#: ../../include/message.php:13 ../../include/text.php:1778 +msgid "Download binary/encrypted content" +msgstr "" + +#: ../../include/message.php:41 +msgid "Unable to determine sender." +msgstr "" + +#: ../../include/message.php:80 +msgid "No recipient provided." +msgstr "" + +#: ../../include/message.php:85 +msgid "[no subject]" +msgstr "" + +#: ../../include/message.php:215 +msgid "Stored post could not be verified." +msgstr "" + +#: ../../include/nav.php:90 +msgid "Remote authentication" +msgstr "" + +#: ../../include/nav.php:90 +msgid "Click to authenticate to your home hub" +msgstr "" + +#: ../../include/nav.php:96 ../../Zotlabs/Lib/Apps.php:336 +#: ../../Zotlabs/Module/Manage.php:170 +msgid "Channel Manager" +msgstr "" + +#: ../../include/nav.php:96 +msgid "Manage your channels" +msgstr "" + +#: ../../include/nav.php:99 +msgid "Manage your privacy groups" +msgstr "" + +#: ../../include/nav.php:101 ../../Zotlabs/Lib/Apps.php:338 +#: ../../Zotlabs/Module/Admin/Addons.php:344 +#: ../../Zotlabs/Module/Admin/Themes.php:125 +#: ../../Zotlabs/Widget/Newmember.php:53 +#: ../../Zotlabs/Widget/Settings_menu.php:61 +msgid "Settings" +msgstr "" + +#: ../../include/nav.php:101 +msgid "Account/Channel Settings" +msgstr "" + +#: ../../include/nav.php:107 ../../include/nav.php:136 +msgid "End this session" +msgstr "" + +#: ../../include/nav.php:110 +msgid "Your profile page" +msgstr "" + +#: ../../include/nav.php:113 +msgid "Manage/Edit profiles" +msgstr "" + +#: ../../include/nav.php:115 ../../Zotlabs/Widget/Newmember.php:35 +msgid "Edit your profile" +msgstr "" + +#: ../../include/nav.php:122 ../../include/nav.php:126 +msgid "Sign in" +msgstr "" + +#: ../../include/nav.php:153 +msgid "Take me home" +msgstr "" + +#: ../../include/nav.php:155 +msgid "Log me out of this site" +msgstr "" + +#: ../../include/nav.php:160 +msgid "Create an account" +msgstr "" + +#: ../../include/nav.php:172 +msgid "Help and documentation" +msgstr "" + +#: ../../include/nav.php:186 +msgid "Search site @name, !forum, #tag, ?docs, content" +msgstr "" + +#: ../../include/nav.php:192 ../../Zotlabs/Widget/Admin.php:55 +msgid "Admin" +msgstr "" + +#: ../../include/nav.php:192 +msgid "Site Setup and Configuration" +msgstr "" + +#: ../../include/nav.php:326 ../../Zotlabs/Module/Connedit.php:869 +#: ../../Zotlabs/Module/Defperms.php:256 +#: ../../Zotlabs/Module/New_channel.php:157 +#: ../../Zotlabs/Module/New_channel.php:164 +#: ../../Zotlabs/Widget/Notifications.php:162 +msgid "Loading" +msgstr "" + +#: ../../include/nav.php:332 +msgid "@name, !forum, #tag, ?doc, content" +msgstr "" + +#: ../../include/nav.php:333 +msgid "Please wait..." +msgstr "" + +#: ../../include/nav.php:339 +msgid "Add Apps" +msgstr "" + +#: ../../include/nav.php:340 +msgid "Arrange Apps" +msgstr "" + +#: ../../include/nav.php:341 +msgid "Toggle System Apps" +msgstr "" + +#: ../../include/nav.php:423 ../../Zotlabs/Module/Admin/Channels.php:154 +msgid "Channel" +msgstr "" + +#: ../../include/nav.php:426 +msgid "Status Messages and Posts" +msgstr "" + +#: ../../include/nav.php:436 ../../Zotlabs/Module/Help.php:80 +msgid "About" +msgstr "" + +#: ../../include/nav.php:439 +msgid "Profile Details" +msgstr "" + +#: ../../include/nav.php:449 ../../include/photos.php:669 +msgid "Photo Albums" +msgstr "" + +#: ../../include/nav.php:454 ../../Zotlabs/Lib/Apps.php:339 +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Storage/Browser.php:278 +msgid "Files" +msgstr "" + +#: ../../include/nav.php:457 +msgid "Files and Storage" +msgstr "" + +#: ../../include/nav.php:465 ../../include/nav.php:468 +#: ../../Zotlabs/Storage/Browser.php:140 +msgid "Calendar" +msgstr "" + +#: ../../include/nav.php:479 ../../include/nav.php:482 +#: ../../Zotlabs/Lib/Apps.php:329 ../../Zotlabs/Widget/Chatroom_list.php:16 +msgid "Chatrooms" +msgstr "" + +#: ../../include/nav.php:492 ../../Zotlabs/Lib/Apps.php:328 +msgid "Bookmarks" +msgstr "" + +#: ../../include/nav.php:495 +msgid "Saved Bookmarks" +msgstr "" + +#: ../../include/nav.php:503 ../../Zotlabs/Lib/Apps.php:325 +#: ../../Zotlabs/Module/Cards.php:207 +msgid "Cards" +msgstr "" + +#: ../../include/nav.php:506 +msgid "View Cards" +msgstr "" + +#: ../../include/nav.php:514 ../../Zotlabs/Lib/Apps.php:324 +#: ../../Zotlabs/Module/Articles.php:222 +msgid "Articles" +msgstr "" + +#: ../../include/nav.php:517 +msgid "View Articles" +msgstr "" + +#: ../../include/nav.php:526 ../../Zotlabs/Lib/Apps.php:340 +#: ../../Zotlabs/Module/Webpages.php:252 +msgid "Webpages" +msgstr "" + +#: ../../include/nav.php:529 +msgid "View Webpages" +msgstr "" + +#: ../../include/nav.php:538 ../../Zotlabs/Module/Wiki.php:206 +#: ../../Zotlabs/Widget/Wiki_list.php:15 +msgid "Wikis" +msgstr "" + +#: ../../include/nav.php:541 ../../Zotlabs/Lib/Apps.php:341 +msgid "Wiki" +msgstr "" + +#: ../../include/network.php:1725 ../../include/network.php:1726 +msgid "Friendica" +msgstr "" + +#: ../../include/network.php:1727 +msgid "OStatus" +msgstr "" + +#: ../../include/network.php:1728 +msgid "GNU-Social" +msgstr "" + +#: ../../include/network.php:1729 +msgid "RSS/Atom" +msgstr "" + +#: ../../include/network.php:1730 ../../Zotlabs/Lib/Activity.php:1848 +#: ../../Zotlabs/Lib/Activity.php:2046 +msgid "ActivityPub" +msgstr "" + +#: ../../include/network.php:1731 ../../Zotlabs/Module/Admin/Accounts.php:171 +#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../Zotlabs/Module/Cdav.php:1246 ../../Zotlabs/Module/Connedit.php:927 +#: ../../Zotlabs/Module/Profiles.php:787 +msgid "Email" +msgstr "" + +#: ../../include/network.php:1732 +msgid "Diaspora" +msgstr "" + +#: ../../include/network.php:1733 +msgid "Facebook" +msgstr "" + +#: ../../include/network.php:1734 +msgid "Zot" +msgstr "" + +#: ../../include/network.php:1735 +msgid "LinkedIn" +msgstr "" + +#: ../../include/network.php:1736 +msgid "XMPP/IM" +msgstr "" + +#: ../../include/network.php:1737 +msgid "MySpace" +msgstr "" + +#: ../../include/oembed.php:226 +msgid "View PDF" +msgstr "" + +#: ../../include/oembed.php:356 +msgid " by " +msgstr "" + +#: ../../include/oembed.php:357 +msgid " on " +msgstr "" + +#: ../../include/oembed.php:386 +msgid "Embedded content" +msgstr "" + +#: ../../include/oembed.php:395 +msgid "Embedding disabled" +msgstr "" + +#: ../../include/photo/photo_driver.php:367 +#: ../../Zotlabs/Module/Profile_photo.php:120 +#: ../../Zotlabs/Module/Profile_photo.php:248 +msgid "Profile Photos" +msgstr "" + +#: ../../include/photos.php:151 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "" + +#: ../../include/photos.php:162 +msgid "Image file is empty." +msgstr "" + +#: ../../include/photos.php:196 ../../Zotlabs/Module/Cover_photo.php:230 +#: ../../Zotlabs/Module/Profile_photo.php:225 +msgid "Unable to process image" +msgstr "" + +#: ../../include/photos.php:327 +msgid "Photo storage failed." +msgstr "" + +#: ../../include/photos.php:376 +msgid "a new photo" +msgstr "" + +#: ../../include/photos.php:380 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "" + +#: ../../include/photos.php:670 ../../Zotlabs/Module/Photos.php:1389 +#: ../../Zotlabs/Module/Photos.php:1402 ../../Zotlabs/Module/Photos.php:1403 +msgid "Recent Photos" +msgstr "" + +#: ../../include/photos.php:674 +msgid "Upload New Photos" +msgstr "" + +#: ../../include/security.php:607 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + +#: ../../include/selectors.php:18 +msgid "Profile to assign new connections" +msgstr "" + +#: ../../include/selectors.php:41 +msgid "Frequently" +msgstr "" + +#: ../../include/selectors.php:42 +msgid "Hourly" +msgstr "" + +#: ../../include/selectors.php:43 +msgid "Twice daily" +msgstr "" + +#: ../../include/selectors.php:44 +msgid "Daily" +msgstr "" + +#: ../../include/selectors.php:45 +msgid "Weekly" +msgstr "" + +#: ../../include/selectors.php:46 +msgid "Monthly" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Currently Male" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Currently Female" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Mostly Male" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Mostly Female" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Transgender" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Intersex" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Transsexual" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Hermaphrodite" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Undecided" +msgstr "" + +#: ../../include/selectors.php:96 ../../include/selectors.php:115 +msgid "Males" +msgstr "" + +#: ../../include/selectors.php:96 ../../include/selectors.php:115 +msgid "Females" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Gay" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Lesbian" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "No Preference" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Bisexual" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Autosexual" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Abstinent" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Virgin" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Deviant" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Fetish" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Oodles" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Nonsexual" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Single" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Lonely" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Available" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Unavailable" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Has crush" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Infatuated" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Dating" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Unfaithful" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Sex Addict" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Friends/Benefits" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Casual" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Engaged" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Married" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Imaginarily married" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Partners" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Cohabiting" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Common law" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Happy" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Not looking" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Swinger" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Betrayed" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Separated" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Unstable" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Divorced" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Imaginarily divorced" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Widowed" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Uncertain" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "It's complicated" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Don't care" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Ask me" +msgstr "" + +#: ../../include/taxonomy.php:320 +msgid "Trending" +msgstr "" + +#: ../../include/taxonomy.php:320 ../../include/taxonomy.php:449 +#: ../../include/taxonomy.php:470 ../../Zotlabs/Widget/Tagcloud.php:22 +msgid "Tags" +msgstr "" + +#: ../../include/taxonomy.php:550 +msgid "Keywords" +msgstr "" + +#: ../../include/taxonomy.php:571 +msgid "have" +msgstr "" + +#: ../../include/taxonomy.php:571 +msgid "has" +msgstr "" + +#: ../../include/taxonomy.php:572 +msgid "want" +msgstr "" + +#: ../../include/taxonomy.php:572 +msgid "wants" +msgstr "" + +#: ../../include/taxonomy.php:573 ../../Zotlabs/Lib/ThreadItem.php:306 +msgid "like" +msgstr "" + +#: ../../include/taxonomy.php:573 +msgid "likes" +msgstr "" + +#: ../../include/taxonomy.php:574 ../../Zotlabs/Lib/ThreadItem.php:307 +msgid "dislike" +msgstr "" + +#: ../../include/taxonomy.php:574 +msgid "dislikes" +msgstr "" + +#: ../../include/text.php:501 +msgid "prev" +msgstr "" + +#: ../../include/text.php:503 +msgid "first" +msgstr "" + +#: ../../include/text.php:532 +msgid "last" +msgstr "" + +#: ../../include/text.php:535 +msgid "next" +msgstr "" + +#: ../../include/text.php:553 +msgid "older" +msgstr "" + +#: ../../include/text.php:555 +msgid "newer" +msgstr "" + +#: ../../include/text.php:979 +msgid "No connections" +msgstr "" + +#: ../../include/text.php:1011 +#, php-format +msgid "View all %s connections" +msgstr "" + +#: ../../include/text.php:1073 +#, php-format +msgid "Network: %s" +msgstr "" + +#: ../../include/text.php:1085 ../../include/text.php:1097 +#: ../../Zotlabs/Module/Admin/Profs.php:94 +#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Module/Rbmark.php:32 ../../Zotlabs/Module/Rbmark.php:104 +#: ../../Zotlabs/Widget/Notes.php:23 +msgid "Save" +msgstr "" + +#: ../../include/text.php:1176 ../../include/text.php:1180 +msgid "poke" +msgstr "" + +#: ../../include/text.php:1181 +msgid "ping" +msgstr "" + +#: ../../include/text.php:1181 +msgid "pinged" +msgstr "" + +#: ../../include/text.php:1182 +msgid "prod" +msgstr "" + +#: ../../include/text.php:1182 +msgid "prodded" +msgstr "" + +#: ../../include/text.php:1183 +msgid "slap" +msgstr "" + +#: ../../include/text.php:1183 +msgid "slapped" +msgstr "" + +#: ../../include/text.php:1184 +msgid "finger" +msgstr "" + +#: ../../include/text.php:1184 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:1185 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:1185 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:1208 +msgid "happy" +msgstr "" + +#: ../../include/text.php:1209 +msgid "sad" +msgstr "" + +#: ../../include/text.php:1210 +msgid "mellow" +msgstr "" + +#: ../../include/text.php:1211 +msgid "tired" +msgstr "" + +#: ../../include/text.php:1212 +msgid "perky" +msgstr "" + +#: ../../include/text.php:1213 +msgid "angry" +msgstr "" + +#: ../../include/text.php:1214 +msgid "stupefied" +msgstr "" + +#: ../../include/text.php:1215 +msgid "puzzled" +msgstr "" + +#: ../../include/text.php:1216 +msgid "interested" +msgstr "" + +#: ../../include/text.php:1217 +msgid "bitter" +msgstr "" + +#: ../../include/text.php:1218 +msgid "cheerful" +msgstr "" + +#: ../../include/text.php:1219 +msgid "alive" +msgstr "" + +#: ../../include/text.php:1220 +msgid "annoyed" +msgstr "" + +#: ../../include/text.php:1221 +msgid "anxious" +msgstr "" + +#: ../../include/text.php:1222 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:1223 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:1224 +msgid "frustrated" +msgstr "" + +#: ../../include/text.php:1225 +msgid "depressed" +msgstr "" + +#: ../../include/text.php:1226 +msgid "motivated" +msgstr "" + +#: ../../include/text.php:1227 +msgid "relaxed" +msgstr "" + +#: ../../include/text.php:1228 +msgid "surprised" +msgstr "" + +#: ../../include/text.php:1428 +msgid "May" +msgstr "" + +#: ../../include/text.php:1502 +msgid "Unknown Attachment" +msgstr "" + +#: ../../include/text.php:1504 ../../Zotlabs/Module/Sharedwithme.php:106 +#: ../../Zotlabs/Storage/Browser.php:293 +msgid "Size" +msgstr "" + +#: ../../include/text.php:1540 +msgid "remove category" +msgstr "" + +#: ../../include/text.php:1614 +msgid "remove from file" +msgstr "" + +#: ../../include/text.php:1926 ../../Zotlabs/Module/Cal.php:314 +#: ../../Zotlabs/Module/Events.php:663 +msgid "Link to Source" +msgstr "" + +#: ../../include/text.php:1956 +msgid "Page layout" +msgstr "" + +#: ../../include/text.php:1956 +msgid "You can create your own with the layouts tool" +msgstr "" + +#: ../../include/text.php:1966 ../../Zotlabs/Module/Wiki.php:217 +#: ../../Zotlabs/Module/Wiki.php:371 ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 +msgid "BBcode" +msgstr "" + +#: ../../include/text.php:1967 +msgid "HTML" +msgstr "" + +#: ../../include/text.php:1968 ../../Zotlabs/Module/Wiki.php:217 +#: ../../Zotlabs/Module/Wiki.php:371 ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 +msgid "Markdown" +msgstr "" + +#: ../../include/text.php:1969 ../../Zotlabs/Module/Wiki.php:217 +#: ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 +msgid "Text" +msgstr "" + +#: ../../include/text.php:1970 +msgid "Comanche Layout" +msgstr "" + +#: ../../include/text.php:1975 +msgid "PHP" +msgstr "" + +#: ../../include/text.php:1984 +msgid "Page content type" +msgstr "" + +#: ../../include/text.php:2117 +msgid "activity" +msgstr "" + +#: ../../include/text.php:2218 +msgid "a-z, 0-9, -, and _ only" +msgstr "" + +#: ../../include/text.php:2544 +msgid "Design Tools" +msgstr "" + +#: ../../include/text.php:2547 ../../Zotlabs/Module/Blocks.php:154 +msgid "Blocks" +msgstr "" + +#: ../../include/text.php:2548 ../../Zotlabs/Module/Menu.php:170 +msgid "Menus" +msgstr "" + +#: ../../include/text.php:2549 ../../Zotlabs/Module/Layouts.php:184 +msgid "Layouts" +msgstr "" + +#: ../../include/text.php:2550 +msgid "Pages" +msgstr "" + +#: ../../include/text.php:2562 ../../Zotlabs/Module/Cal.php:343 +msgid "Import" +msgstr "" + +#: ../../include/text.php:2563 +msgid "Import website..." +msgstr "" + +#: ../../include/text.php:2564 +msgid "Select folder to import" +msgstr "" + +#: ../../include/text.php:2565 +msgid "Import from a zipped folder:" +msgstr "" + +#: ../../include/text.php:2566 +msgid "Import from cloud files:" +msgstr "" + +#: ../../include/text.php:2567 +msgid "/cloud/channel/path/to/folder" +msgstr "" + +#: ../../include/text.php:2568 +msgid "Enter path to website files" +msgstr "" + +#: ../../include/text.php:2569 +msgid "Select folder" +msgstr "" + +#: ../../include/text.php:2570 +msgid "Export website..." +msgstr "" + +#: ../../include/text.php:2571 +msgid "Export to a zip file" +msgstr "" + +#: ../../include/text.php:2572 +msgid "website.zip" +msgstr "" + +#: ../../include/text.php:2573 +msgid "Enter a name for the zip file." +msgstr "" + +#: ../../include/text.php:2574 +msgid "Export to cloud files" +msgstr "" + +#: ../../include/text.php:2575 +msgid "/path/to/export/folder" +msgstr "" + +#: ../../include/text.php:2576 +msgid "Enter a path to a cloud files destination." +msgstr "" + +#: ../../include/text.php:2577 +msgid "Specify folder" +msgstr "" + +#: ../../include/text.php:2939 ../../Zotlabs/Storage/Browser.php:131 +msgid "Collection" +msgstr "" + +#: ../../include/text.php:3208 ../../view/theme/redbasic/php/config.php:15 +#: ../../Zotlabs/Module/Admin/Site.php:187 +msgid "Default" +msgstr "" + +#: ../../include/zid.php:363 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + +#: ../../include/zot.php:775 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:802 ../../Zotlabs/Lib/Libzot.php:652 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:2595 ../../Zotlabs/Lib/Libsync.php:733 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + +#: ../../include/zot.php:4292 +msgid "invalid target signature" +msgstr "" + +#: ../../util/nconfig.php:34 +msgid "Source channel not found." +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:16 +#: ../../view/theme/redbasic/php/config.php:19 +msgid "Focus (Hubzilla default)" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:98 +msgid "Theme settings" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Narrow navbar" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:100 +msgid "Navigation bar background color" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:101 +msgid "Navigation bar icon color " +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Navigation bar active icon color " +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Link color" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Set font-color for banner" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Set the background color" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Set the background image" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Set the background color of items" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Set the background color of comments" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Set font-size for the entire application" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Examples: 1rem, 100%, 16px" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Set font-color for posts and comments" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Set radius of corners" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Example: 4px" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Set shadow depth of photos" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:113 +msgid "Set maximum width of content region in pixel" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:113 +msgid "Leave empty for default width" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set size of conversation author photo" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:115 +msgid "Set size of followup author photos" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:116 +msgid "Show advanced settings" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:283 +msgid "Social Networking" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:284 +msgid "Social - Federation" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:285 +msgid "Social - Mostly Public" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:286 +msgid "Social - Restricted" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:287 +msgid "Social - Private" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:290 +msgid "Community Forum" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:291 +msgid "Forum - Mostly Public" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:292 +msgid "Forum - Restricted" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:293 +msgid "Forum - Private" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:296 +msgid "Feed Republish" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:297 +msgid "Feed - Mostly Public" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:298 +msgid "Feed - Restricted" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:301 +msgid "Special Purpose" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:302 +msgid "Special - Celebrity/Soapbox" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:303 +msgid "Special - Group Repository" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:307 +msgid "Custom/Expert Mode" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:56 +msgid "Can view my channel stream and posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:57 +msgid "Can send me their channel stream and posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:58 +msgid "Can view my default channel profile" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:59 +msgid "Can view my connections" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:60 +msgid "Can view my file storage and photos" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:61 +msgid "Can upload/modify my file storage and photos" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:62 +msgid "Can view my channel webpages" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:63 +msgid "Can view my wiki pages" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:64 +msgid "Can create/edit my channel webpages" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:65 +msgid "Can write to my wiki pages" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:66 +msgid "Can post on my channel (wall) page" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:67 +msgid "Can comment on or like my posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:68 +msgid "Can send me private mail messages" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:69 +msgid "Can like/dislike profiles and profile things" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:70 +msgid "Can forward to all my channel connections via ! mentions in posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:71 +msgid "Can chat with me" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:72 +msgid "Can source my public posts in derived channels" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:73 +msgid "Can administer my channel" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1500 +#, php-format +msgid "Likes %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1503 +#, php-format +msgid "Doesn't like %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1506 +#, php-format +msgid "Will attend %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1509 +#, php-format +msgid "Will not attend %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1512 +#, php-format +msgid "May attend %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1515 ../../Zotlabs/Module/Share.php:103 +#, php-format +msgid "🔁 Repeated %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:322 +msgid "Apps" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:323 +msgid "Affinity Tool" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:326 +msgid "Site Admin" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:327 +msgid "Report Bug" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:330 +msgid "Content Filter" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:331 +msgid "Content Import" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:333 +msgid "Remote Diagnostics" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:334 +msgid "Suggest Channels" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:337 +msgid "Stream" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:348 +msgid "Mail" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:349 ../../Zotlabs/Module/Mood.php:154 +msgid "Mood" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:351 +msgid "Chat" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:353 +msgid "Probe" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:354 +msgid "Suggest" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:355 +msgid "Random Channel" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:356 +msgid "Invite" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:357 ../../Zotlabs/Widget/Admin.php:26 +msgid "Features" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:358 +msgid "Language" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:359 +msgid "Post" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:360 +msgid "Profile Photo" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:364 +msgid "Notifications" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:365 +msgid "Order Apps" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:367 +msgid "CardDAV" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:368 ../../Zotlabs/Module/Sources.php:107 +msgid "Channel Sources" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:369 +msgid "Guest Access" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:370 ../../Zotlabs/Widget/Notes.php:21 +msgid "Notes" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:371 +msgid "OAuth Apps Manager" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:372 +msgid "OAuth2 Apps Manager" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:373 +msgid "PDL Editor" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:374 ../../Zotlabs/Module/Permcats.php:112 +msgid "Permission Categories" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:375 +msgid "Premium Channel" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:376 ../../Zotlabs/Module/Pubstream.php:109 +#: ../../Zotlabs/Widget/Notifications.php:142 +msgid "Public Stream" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:377 +msgid "My Chatrooms" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:378 +msgid "Channel Export" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:537 ../../Zotlabs/Module/Admin/Addons.php:456 +#: ../../Zotlabs/Module/Cdav.php:1258 ../../Zotlabs/Module/Connedit.php:939 +#: ../../Zotlabs/Module/Oauth.php:53 ../../Zotlabs/Module/Oauth.php:137 +#: ../../Zotlabs/Module/Oauth2.php:58 ../../Zotlabs/Module/Oauth2.php:144 +#: ../../Zotlabs/Module/Profiles.php:799 +msgid "Update" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:537 ../../Zotlabs/Module/Admin/Addons.php:425 +msgid "Install" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:555 +msgid "Purchase" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:560 +msgid "Undelete" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:569 +msgid "Add to app-tray" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:570 +msgid "Remove from app-tray" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:571 +msgid "Pin to navbar" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:572 +msgid "Unpin from navbar" +msgstr "" + +#: ../../Zotlabs/Lib/Chatroom.php:23 +msgid "Missing room name" +msgstr "" + +#: ../../Zotlabs/Lib/Chatroom.php:32 +msgid "Duplicate room name" +msgstr "" + +#: ../../Zotlabs/Lib/Chatroom.php:82 ../../Zotlabs/Lib/Chatroom.php:90 +msgid "Invalid room specifier." +msgstr "" + +#: ../../Zotlabs/Lib/Chatroom.php:122 +msgid "Room not found." +msgstr "" + +#: ../../Zotlabs/Lib/Chatroom.php:143 +msgid "Room is full" +msgstr "" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:83 +#, php-format +msgid "Update Error at %s" +msgstr "" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:89 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:60 +msgid "$Projectname Notification" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:61 +msgid "$projectname" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:63 +msgid "Thank You," +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:65 +#, php-format +msgid "%s Administrator" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:66 +#, php-format +msgid "This email was sent by %1$s at %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:66 ../../Zotlabs/Module/Home.php:72 +#: ../../Zotlabs/Module/Home.php:80 +msgid "$Projectname" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:67 +#, php-format +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:68 +#, php-format +msgid "To stop receiving these messages, please adjust your %s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:68 +#: ../../Zotlabs/Module/Settings/Channel.php:545 +msgid "Notification Settings" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:123 +#, php-format +msgid "%s " +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:127 +#, php-format +msgid "[$Projectname:Notify] New mail received at %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:129 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:130 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:130 +msgid "a private message" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:131 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:144 +msgid "commented on" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:155 +msgid "liked" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:158 +msgid "disliked" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:201 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:209 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:218 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:233 +#, php-format +msgid "%1$s commented on an item/conversation you have been following." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:317 +#: ../../Zotlabs/Lib/Enotify.php:333 ../../Zotlabs/Lib/Enotify.php:358 +#: ../../Zotlabs/Lib/Enotify.php:375 ../../Zotlabs/Lib/Enotify.php:388 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 +#, php-format +msgid "Please visit %s to approve or reject this comment." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:299 +#, php-format +msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:313 +#, php-format +msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:314 +#, php-format +msgid "%1$s liked an item/conversation you created." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:325 +#, php-format +msgid "[$Projectname:Notify] %s posted to your profile wall" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:327 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:329 +#, php-format +msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:352 +#, php-format +msgid "[$Projectname:Notify] %s tagged you" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:353 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:354 +#, php-format +msgid "%1$s [zrl=%2$s]tagged you[/zrl]." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:365 +#, php-format +msgid "[$Projectname:Notify] %1$s poked you" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:366 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:367 +#, php-format +msgid "%1$s [zrl=%2$s]poked you[/zrl]." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:382 +#, php-format +msgid "[$Projectname:Notify] %s tagged your post" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:383 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:384 +#, php-format +msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:395 +msgid "[$Projectname:Notify] Introduction received" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:396 +#, php-format +msgid "You've received an new connection request from '%1$s' at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:397 +#, php-format +msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:400 ../../Zotlabs/Lib/Enotify.php:418 +#, php-format +msgid "You may visit their profile at %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:402 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:409 +msgid "[$Projectname:Notify] Friend suggestion received" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:410 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:411 +#, php-format +msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:416 +msgid "Name:" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:417 +msgid "Photo:" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:420 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:640 +msgid "[$Projectname:Notify]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:808 +msgid "created a new post" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:809 +#, php-format +msgid "commented on %s's post" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:816 +#, php-format +msgid "edited a post dated %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:820 +#, php-format +msgid "edited a comment dated %s" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWiki.php:143 +msgid "Wiki updated successfully" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWiki.php:197 +msgid "Wiki files deleted successfully" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:42 +#: ../../Zotlabs/Lib/NativeWikiPage.php:94 +msgid "(No Title)" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:109 +msgid "Wiki page create failed." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:122 +msgid "Wiki not found." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:133 +msgid "Destination name already exists" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:166 +#: ../../Zotlabs/Lib/NativeWikiPage.php:362 +msgid "Page not found" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:197 +msgid "Error reading page content" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:353 +#: ../../Zotlabs/Lib/NativeWikiPage.php:402 +#: ../../Zotlabs/Lib/NativeWikiPage.php:469 +#: ../../Zotlabs/Lib/NativeWikiPage.php:510 +msgid "Error reading wiki" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:390 +msgid "Page update failed." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:424 +msgid "Nothing deleted" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:490 +msgid "Compare: object not found." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:496 +msgid "Page updated" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:499 +msgid "Untitled" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:505 +msgid "Wiki resource_id required for git commit" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:561 +#: ../../Zotlabs/Module/Admin/Channels.php:159 +#: ../../Zotlabs/Module/Cdav.php:1242 ../../Zotlabs/Module/Chat.php:259 +#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Group.php:154 +#: ../../Zotlabs/Module/Oauth.php:113 ../../Zotlabs/Module/Oauth.php:139 +#: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 +#: ../../Zotlabs/Module/Sharedwithme.php:104 ../../Zotlabs/Module/Wiki.php:218 +#: ../../Zotlabs/Storage/Browser.php:291 +#: ../../Zotlabs/Widget/Wiki_page_history.php:22 +msgid "Name" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:562 +#: ../../Zotlabs/Widget/Wiki_page_history.php:23 +msgctxt "wiki_history" +msgid "Message" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:563 +#: ../../Zotlabs/Widget/Wiki_page_history.php:24 +msgid "Date" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:564 ../../Zotlabs/Module/Wiki.php:367 +#: ../../Zotlabs/Widget/Wiki_page_history.php:25 +msgid "Revert" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:565 +#: ../../Zotlabs/Widget/Wiki_page_history.php:26 +msgid "Compare" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:82 +msgctxt "permcat" +msgid "default" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:133 +msgctxt "permcat" +msgid "follower" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:137 +msgctxt "permcat" +msgid "contributor" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:141 +msgctxt "permcat" +msgid "publisher" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Public" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +msgid "Anybody in the $Projectname network" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +#, php-format +msgid "Any account on %s" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Any of my connections" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Only connections I specifically allow" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:114 +msgid "Any connections including those who haven't yet been approved" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:150 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:151 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "This is your default setting for who can view your connections" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for the audience of your webpages" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:10 +msgid "0. Beginner/Basic" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:11 +msgid "1. Novice - not skilled but willing to learn" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:12 +msgid "2. Intermediate - somewhat comfortable" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:13 +msgid "3. Advanced - very comfortable" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:14 +msgid "4. Expert - I can write computer code" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:15 +msgid "5. Wizard - I probably know more than you do" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:129 +msgid "Privacy conflict. Discretion advised." +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:171 ../../Zotlabs/Storage/Browser.php:286 +msgid "Admin Delete" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Module/Filer.php:54 +msgid "Save to Folder" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:202 +msgid "I will attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:202 +msgid "I will not attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:202 +msgid "I might attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:212 +msgid "I agree" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:212 +msgid "I disagree" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:212 +msgid "I abstain" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:231 ../../Zotlabs/Lib/ThreadItem.php:243 +#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Photos.php:1185 +msgid "View all" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:286 +msgid "Add Tag" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:306 ../../Zotlabs/Module/Photos.php:1115 +msgid "I like this (toggle)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:307 ../../Zotlabs/Module/Photos.php:1116 +msgid "I don't like this (toggle)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:317 +msgid "Share This" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:317 +msgid "share" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:327 +msgid "Delivery Report" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:347 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Lib/ThreadItem.php:381 ../../Zotlabs/Lib/ThreadItem.php:382 +#, php-format +msgid "View %s's profile - %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:385 +msgid "to" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:386 +msgid "via" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:387 +msgid "Wall-to-Wall" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:388 +msgid "via Wall-To-Wall:" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:414 +msgid "Attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:415 +msgid "Attendance Options" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:416 +msgid "Vote" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:417 +msgid "Voting Options" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:439 +msgid "Save Bookmarks" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:440 +msgid "Add to Calendar" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:450 +#: ../../Zotlabs/Module/Notifications.php:60 +msgid "Mark all seen" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:457 ../../Zotlabs/Module/Photos.php:1310 +msgctxt "noun" +msgid "Likes" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:458 ../../Zotlabs/Module/Photos.php:1311 +msgctxt "noun" +msgid "Dislikes" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:792 ../../Zotlabs/Module/Photos.php:1135 +#: ../../Zotlabs/Module/Photos.php:1254 +msgid "This is you" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:801 +msgid "Image" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:803 +msgid "Insert Link" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:804 +msgid "Video" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:814 +msgid "Your full name (required)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:815 +msgid "Your email address (required)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:816 +msgid "Your website URL (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Achievements.php:38 +msgid "Some blurb about what to do when you're new here" +msgstr "" + +#: ../../Zotlabs/Module/Acl.php:360 +msgid "network" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:37 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:44 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:80 +msgid "Account not found" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:99 +#, php-format +msgid "Account '%s' blocked" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:107 +#, php-format +msgid "Account '%s' unblocked" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Addons.php:341 +#: ../../Zotlabs/Module/Admin/Addons.php:439 +#: ../../Zotlabs/Module/Admin/Channels.php:145 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Security.php:92 +#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +#: ../../Zotlabs/Module/Admin/Themes.php:156 ../../Zotlabs/Module/Admin.php:138 +msgid "Administration" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Accounts.php:180 +#: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 +msgid "Accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +#: ../../Zotlabs/Module/Admin/Channels.php:148 +msgid "select all" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Registrations waiting for confirm" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "Request date" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +msgid "No registrations." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Authorize.php:33 +msgid "Deny" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:636 +msgid "Block" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:177 +#: ../../Zotlabs/Module/Connedit.php:636 +msgid "Unblock" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:182 +msgid "ID" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:184 +msgid "All Channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Register date" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Last login" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Expires" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:188 +msgid "Service Class" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:190 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " +"on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:191 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:29 +#, php-format +msgid "Password changed for account %d." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:46 +msgid "Account settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:61 +msgid "Account not found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:68 +msgid "Account Edit" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:69 +msgid "New Password" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:70 +msgid "New Password again" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:71 +msgid "Account language (for emails)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 +msgid "Service class" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:289 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:294 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:310 +#: ../../Zotlabs/Module/Admin/Themes.php:95 +msgid "Disable" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:313 +#: ../../Zotlabs/Module/Admin/Themes.php:97 +msgid "Enable" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:342 +#: ../../Zotlabs/Module/Admin/Addons.php:440 ../../Zotlabs/Widget/Admin.php:27 +msgid "Addons" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:343 +#: ../../Zotlabs/Module/Admin/Themes.php:124 +msgid "Toggle" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:351 +#: ../../Zotlabs/Module/Admin/Themes.php:134 +msgid "Author: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:352 +#: ../../Zotlabs/Module/Admin/Themes.php:135 +msgid "Maintainer: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:353 +msgid "Minimum project version: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:354 +msgid "Maximum project version: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:355 +msgid "Minimum PHP version: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:356 +msgid "Compatible Server Roles: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:357 +msgid "Requires: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:358 +#: ../../Zotlabs/Module/Admin/Addons.php:445 +msgid "Disabled - version incompatibility" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:414 +msgid "Enter the public git repository URL of the addon repo." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:415 +msgid "Addon repo git URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:416 +msgid "Custom repo name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:416 +msgid "(optional)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:417 +msgid "Download Addon Repo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:424 +msgid "Install new repo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:448 +msgid "Manage Repos" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:449 +msgid "Installed Addon Repositories" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:450 +msgid "Install a New Addon Repository" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:457 +msgid "Switch branch" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:458 +#: ../../Zotlabs/Module/Cover_photo.php:421 +#: ../../Zotlabs/Module/Photos.php:1035 ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:31 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:40 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:46 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:65 +msgid "Channel not found" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:75 +#, php-format +msgid "Channel '%s' deleted" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' censored" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:146 +#: ../../Zotlabs/Module/Admin.php:114 ../../Zotlabs/Widget/Admin.php:24 +msgid "Channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:150 +msgid "Censor" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:151 +msgid "Uncensor" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "Allow Code" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:153 +msgid "Disallow Code" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:158 +msgid "UID" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:160 +#: ../../Zotlabs/Module/Cdav.php:1249 ../../Zotlabs/Module/Connedit.php:930 +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Profiles.php:790 +msgid "Address" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:163 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:31 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:34 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:38 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:41 +#, php-format +msgid "Update function %s could not be found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:67 +msgid "No failed updates." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 +#: ../../Zotlabs/Widget/Admin.php:58 +msgid "Logs" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "New Profile Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "Field nickname" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "System name of field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:91 +#: ../../Zotlabs/Module/Admin/Profs.php:111 +msgid "Input type" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Field Name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Label on profile pages" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Help text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Additional info (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:103 +msgid "Field definition not found" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:109 +msgid "Edit Profile Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:168 ../../Zotlabs/Widget/Admin.php:30 +msgid "Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:169 +msgid "Basic Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "Advanced Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "(In addition to basic fields)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:172 +msgid "All available fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:173 +msgid "Custom Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:177 +msgid "Create Custom Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:35 +msgid "Queue Statistics" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Total Entries" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Priority" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Destination URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Mark hub permanently offline" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Empty queue for this hub" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Last known contact" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:83 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:86 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:87 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" +"
https://vimeo.com/
https://soundcloud.com/
" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:88 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:93 ../../Zotlabs/Widget/Admin.php:25 +msgid "Security" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block public" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Provide a cloud root directory" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"The cloud root directory lists all channel names which provide public files" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Show total disk space available to cloud uploads" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Set \"Transport Security\" HTTP header" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Allowed email domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:101 +msgid "Not allowed email domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:101 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:102 +msgid "Allow communications only from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:102 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:103 +msgid "Block communications from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:104 +msgid "Allow communications only from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:104 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:105 +msgid "Block communications from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:106 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:107 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:107 +msgid "One site per line. By default embedded content is filtered." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:108 +msgid "Block embedded HTML from these domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:161 +msgid "Site settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:198 +#: ../../Zotlabs/Module/Settings/Display.php:119 +#, php-format +msgid "%s - (Incompatible)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:205 +msgid "mobile" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:207 +msgid "experimental" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:209 +msgid "unsupported" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:256 +msgid "Yes - with approval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:262 +msgid "My site is not a public server" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:263 +msgid "My site has paid access only" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:264 +msgid "My site has free access only" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:265 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Default permission role for new accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "" +"This role will be used for the first channel created after registration." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:288 ../../Zotlabs/Widget/Admin.php:22 +msgid "Site" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:290 +#: ../../Zotlabs/Module/Register.php:273 +msgid "Registration" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "File upload" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:292 +msgid "Policies" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "Site name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Banner/Logo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Unfiltered HTML/CSS/JS is allowed" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "Administrator Information" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:301 ../../Zotlabs/Module/Siteinfo.php:24 +msgid "Site Information" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "" +"Publicly visible description of this site. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "System language" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "System theme" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Allow Feeds as Connections" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "(Heavy system resource usage)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:307 +msgid "Maximum image size" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:307 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Does this site allow new member registration?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "Invitation only" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Minimum age" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Minimum age (in years) for who may register on this site." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Which best describes the types of account offered by this hub?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "This is displayed on the public server site list." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "Register text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Site homepage to show visitors (default: login box)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "" +"example: 'pubstream' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "Preserve site homepage URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:316 +msgid "Accounts abandoned after x days" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:316 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "Allowed friend domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "Verify Email Addresses" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "Force publish" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "Import Public Streams" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "Site only Public Streams" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "" +"Allow access to public content originating only from this site if Imported " +"Public Streams are disabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:322 +msgid "Allow anybody on the internet to access the Public streams" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:322 +msgid "" +"Disable to require authentication before viewing. Warning: this content is " +"unmoderated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "Only import Public stream posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Connedit.php:892 ../../Zotlabs/Module/Connedit.php:893 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "Do not import Public stream posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "Login on Homepage" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "Enable context help" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "" +"Display contextual help for the current page when the help button is pressed." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "Reply-to email address for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "Sender (From) email address for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:332 +msgid "Name of email sender for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "Directory Server URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "Default directory server" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:336 +msgid "Proxy user" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:337 +msgid "Proxy URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:338 +msgid "Network timeout" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:338 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:339 +msgid "Delivery interval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:339 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "Deliveries per process" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust " +"if necessary to tune system performance. Recommend: 1-5." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:341 +msgid "Queue Threshold" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:341 +msgid "" +"Always defer immediate delivery if queue contains more than this number of " +"entries." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:342 +msgid "Poll interval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:342 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "Path to ImageMagick convert program" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "" +"If set, use this program to generate photo thumbnails for huge images ( > " +"4000 pixels in either dimension), otherwise memory exhaustion may occur. " +"Example: /usr/bin/convert" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "Allow SVG thumbnails in file browser" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "WARNING: SVG images may contain malicious code." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "Maximum Load Average" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:346 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:346 +msgid "0 for no expiration of imported content" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "" +"Do not expire any posts which have comments less than this many days ago" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:349 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:349 +#, php-format +msgid "Create this page first. Default is %s/register" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Page to display after creating a new channel" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Default: profiles" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:352 +msgid "Optional: site location" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:352 +msgid "Region or country" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:26 +msgid "Theme settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:61 +msgid "No themes found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:116 +msgid "Screenshot" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:123 +#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 +msgid "Themes" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:162 +msgid "[Experimental]" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:163 +msgid "[Unsupported]" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:97 +msgid "Blocked accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:98 +msgid "Expired accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:99 +msgid "Expiring accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:120 +msgid "Message queues" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:134 +msgid "Your software should be updated" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:139 +msgid "Summary" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Registered accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:143 +msgid "Pending registrations" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:144 +msgid "Registered channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Active addons" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Version" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Repository version (master)" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Repository version (dev)" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:35 +msgid "Affinity Tool settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:47 +msgid "" +"This app presents a slider control in your connection editor and also on " +"your network page. The slider represents your degree of friendship " +"(affinity) with each connection. It allows you to zoom in or out and display " +"conversations from only your closest friends or everybody in your stream." +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:52 +msgid "Affinity Tool App" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:52 ../../Zotlabs/Module/Articles.php:51 +#: ../../Zotlabs/Module/Bookmarks.php:78 ../../Zotlabs/Module/Cards.php:51 +#: ../../Zotlabs/Module/Cdav.php:854 ../../Zotlabs/Module/Cdav.php:863 +#: ../../Zotlabs/Module/Chat.php:102 ../../Zotlabs/Module/Connect.php:104 +#: ../../Zotlabs/Module/Defperms.php:189 ../../Zotlabs/Module/Group.php:106 +#: ../../Zotlabs/Module/Invite.php:110 ../../Zotlabs/Module/Lang.php:17 +#: ../../Zotlabs/Module/Mood.php:134 ../../Zotlabs/Module/Notes.php:56 +#: ../../Zotlabs/Module/Oauth.php:100 ../../Zotlabs/Module/Oauth2.php:106 +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Permcats.php:62 +#: ../../Zotlabs/Module/Poke.php:165 ../../Zotlabs/Module/Probe.php:18 +#: ../../Zotlabs/Module/Pubstream.php:20 ../../Zotlabs/Module/Randprof.php:29 +#: ../../Zotlabs/Module/Sources.php:88 ../../Zotlabs/Module/Suggest.php:40 +#: ../../Zotlabs/Module/Tokens.php:99 ../../Zotlabs/Module/Uexport.php:61 +#: ../../Zotlabs/Module/Webpages.php:48 ../../Zotlabs/Module/Wiki.php:52 +msgid "Not Installed" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:57 +msgid "" +"The numbers below represent the minimum and maximum slider default positions " +"for your network/stream page as a percentage." +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:64 +msgid "Default maximum affinity level" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:64 +msgid "0-99 default 99" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:70 +msgid "Default minimum affinity level" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:70 +msgid "0-99 - default 0" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:76 +msgid "Persistent affinity levels" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:76 +msgid "" +"If disabled the max and min levels will be reset to default after page reload" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:84 +msgid "Affinity Tool Settings" +msgstr "" + +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 +msgid "Authorize application connection" +msgstr "" + +#: ../../Zotlabs/Module/Api.php:75 +msgid "Return to your app and insert this Security Code:" +msgstr "" + +#: ../../Zotlabs/Module/Api.php:85 +msgid "Please login to continue." +msgstr "" + +#: ../../Zotlabs/Module/Api.php:97 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 +msgid "App installed." +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:49 +msgid "Malformed app." +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:132 +msgid "Embed code" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:138 +msgid "Edit App" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:138 +msgid "Create App" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:143 +msgid "Name of app" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:144 +msgid "Location (URL) of app" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:145 ../../Zotlabs/Module/Cdav.php:939 +#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:146 +msgid "Photo icon URL" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:146 +msgid "80 x 80 pixels - optional" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:147 +msgid "Categories (optional, comma separated list)" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:148 +msgid "Version ID" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:149 +msgid "Price of app" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:150 +msgid "Location (URL) to purchase app" +msgstr "" + +#: ../../Zotlabs/Module/Apporder.php:47 +msgid "Change Order of Pinned Navbar Apps" +msgstr "" + +#: ../../Zotlabs/Module/Apporder.php:47 +msgid "Change Order of App Tray Apps" +msgstr "" + +#: ../../Zotlabs/Module/Apporder.php:48 +msgid "" +"Use arrows to move the corresponding app left (top) or right (bottom) in the " +"navbar" +msgstr "" + +#: ../../Zotlabs/Module/Apporder.php:48 +msgid "Use arrows to move the corresponding app up or down in the app tray" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:50 ../../Zotlabs/Widget/Appstore.php:14 +msgid "Available Apps" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:50 +msgid "Installed Apps" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:53 +msgid "Manage Apps" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:54 +msgid "Create Custom App" +msgstr "" + +#: ../../Zotlabs/Module/Articles.php:51 +msgid "Articles App" +msgstr "" + +#: ../../Zotlabs/Module/Articles.php:52 +msgid "Create interactive articles" +msgstr "" + +#: ../../Zotlabs/Module/Articles.php:115 +msgid "Add Article" +msgstr "" + +#: ../../Zotlabs/Module/Articles.php:116 ../../Zotlabs/Module/Blocks.php:159 +#: ../../Zotlabs/Module/Cards.php:113 ../../Zotlabs/Module/Cdav.php:1257 +#: ../../Zotlabs/Module/Connedit.php:938 ../../Zotlabs/Module/Layouts.php:185 +#: ../../Zotlabs/Module/Menu.php:181 ../../Zotlabs/Module/New_channel.php:189 +#: ../../Zotlabs/Module/Profiles.php:798 ../../Zotlabs/Module/Webpages.php:254 +#: ../../Zotlabs/Storage/Browser.php:282 ../../Zotlabs/Storage/Browser.php:396 +#: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 +msgid "Create" +msgstr "" + +#: ../../Zotlabs/Module/Article_edit.php:17 +#: ../../Zotlabs/Module/Article_edit.php:33 +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 ../../Zotlabs/Module/Editpost.php:24 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Card_edit.php:17 ../../Zotlabs/Module/Card_edit.php:33 +msgid "Item not found" +msgstr "" + +#: ../../Zotlabs/Module/Article_edit.php:44 ../../Zotlabs/Module/Block.php:41 +#: ../../Zotlabs/Module/Cal.php:63 ../../Zotlabs/Module/Chanview.php:96 +#: ../../Zotlabs/Module/Card_edit.php:44 ../../Zotlabs/Module/Page.php:75 +#: ../../Zotlabs/Module/Wall_upload.php:31 +msgid "Channel not found." +msgstr "" + +#: ../../Zotlabs/Module/Article_edit.php:128 +msgid "Edit Article" +msgstr "" + +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:17 +msgid "Unknown App" +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:29 +msgid "Authorize" +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:30 +#, php-format +msgid "Do you authorize the app %s to access your channel data?" +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:32 +msgid "Allow" +msgstr "" + +#: ../../Zotlabs/Module/Block.php:29 ../../Zotlabs/Module/Page.php:39 +msgid "Invalid item." +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:113 +msgid "Block Name" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Menu.php:177 ../../Zotlabs/Module/Webpages.php:266 +msgid "Created" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:192 +#: ../../Zotlabs/Module/Menu.php:178 ../../Zotlabs/Module/Webpages.php:267 +msgid "Edited" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:695 +#: ../../Zotlabs/Module/Layouts.php:198 ../../Zotlabs/Module/Pubsites.php:60 +#: ../../Zotlabs/Module/Webpages.php:261 ../../Zotlabs/Module/Wiki.php:213 +#: ../../Zotlabs/Module/Wiki.php:409 +msgid "View" +msgstr "" + +#: ../../Zotlabs/Module/Bookmarks.php:62 +msgid "Bookmark added" +msgstr "" + +#: ../../Zotlabs/Module/Bookmarks.php:78 +msgid "Bookmarks App" +msgstr "" + +#: ../../Zotlabs/Module/Bookmarks.php:79 +msgid "Bookmark links from posts and manage them" +msgstr "" + +#: ../../Zotlabs/Module/Bookmarks.php:92 +msgid "My Bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Bookmarks.php:103 +msgid "My Connections Bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:70 +msgid "Permissions denied." +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:264 ../../Zotlabs/Module/Events.php:607 +msgid "l, F j" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:689 +msgid "Edit Event" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:689 +msgid "Create Event" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Cal.php:345 +#: ../../Zotlabs/Module/Cdav.php:948 ../../Zotlabs/Module/Events.php:690 +#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Photos.php:986 +msgid "Previous" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:339 ../../Zotlabs/Module/Cal.php:346 +#: ../../Zotlabs/Module/Cdav.php:949 ../../Zotlabs/Module/Events.php:691 +#: ../../Zotlabs/Module/Events.php:700 ../../Zotlabs/Module/Photos.php:995 +#: ../../Zotlabs/Module/Setup.php:260 +msgid "Next" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:347 ../../Zotlabs/Module/Cdav.php:950 +#: ../../Zotlabs/Module/Events.php:701 +msgid "Today" +msgstr "" + +#: ../../Zotlabs/Module/Cards.php:51 +msgid "Cards App" +msgstr "" + +#: ../../Zotlabs/Module/Cards.php:52 +msgid "Create personal planning cards" +msgstr "" + +#: ../../Zotlabs/Module/Cards.php:112 +msgid "Add Card" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:825 +msgid "INVALID EVENT DISMISSED!" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:826 +msgid "Summary: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:827 +msgid "Date: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:828 ../../Zotlabs/Module/Cdav.php:835 +msgid "Reason: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:833 +msgid "INVALID CARD DISMISSED!" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:834 +msgid "Name: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:854 +msgid "CalDAV App" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:855 +msgid "CalDAV capable calendar" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:863 +msgid "CardDAV App" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:864 +msgid "CalDAV capable addressbook" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:936 ../../Zotlabs/Module/Events.php:462 +msgid "Event title" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:937 ../../Zotlabs/Module/Events.php:468 +msgid "Start date and time" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:938 +msgid "End date and time" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:951 ../../Zotlabs/Module/Events.php:696 +msgid "Month" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:952 ../../Zotlabs/Module/Events.php:697 +msgid "Week" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:953 ../../Zotlabs/Module/Events.php:698 +msgid "Day" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:954 +msgid "List month" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:955 +msgid "List week" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:956 +msgid "List day" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:963 +msgid "More" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:964 +msgid "Less" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:965 +msgid "Select calendar" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:967 +msgid "Delete all" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:969 +msgid "Sorry! Editing of recurrent events is not yet implemented." +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1243 ../../Zotlabs/Module/Connedit.php:924 +msgid "Organisation" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1244 ../../Zotlabs/Module/Connedit.php:925 +msgid "Title" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1245 ../../Zotlabs/Module/Connedit.php:926 +#: ../../Zotlabs/Module/Profiles.php:786 +msgid "Phone" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1247 ../../Zotlabs/Module/Connedit.php:928 +#: ../../Zotlabs/Module/Profiles.php:788 +msgid "Instant messenger" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1248 ../../Zotlabs/Module/Connedit.php:929 +#: ../../Zotlabs/Module/Profiles.php:789 +msgid "Website" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1250 ../../Zotlabs/Module/Connedit.php:931 +#: ../../Zotlabs/Module/Profiles.php:791 +msgid "Note" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1255 ../../Zotlabs/Module/Connedit.php:936 +#: ../../Zotlabs/Module/Profiles.php:796 +msgid "Add Contact" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1256 ../../Zotlabs/Module/Connedit.php:937 +#: ../../Zotlabs/Module/Profiles.php:797 +msgid "Add Field" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1261 ../../Zotlabs/Module/Connedit.php:942 +msgid "P.O. Box" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1262 ../../Zotlabs/Module/Connedit.php:943 +msgid "Additional" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1263 ../../Zotlabs/Module/Connedit.php:944 +msgid "Street" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1264 ../../Zotlabs/Module/Connedit.php:945 +msgid "Locality" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1265 ../../Zotlabs/Module/Connedit.php:946 +msgid "Region" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1266 ../../Zotlabs/Module/Connedit.php:947 +msgid "ZIP Code" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1267 ../../Zotlabs/Module/Connedit.php:948 +#: ../../Zotlabs/Module/Profiles.php:757 +msgid "Country" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1314 +msgid "Default Calendar" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1324 +msgid "Default Addressbook" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:35 +msgid "" +"Channel name changes are not allowed within 48 hours of changing the account " +"password." +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:77 +msgid "Change channel nickname/address" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:78 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "WARNING: " +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "Any/all connections on other networks will be lost!" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:79 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "Please enter your password for verification:" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:80 +msgid "New channel address" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:81 +msgid "Rename Channel" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:41 ../../Zotlabs/Module/Chat.php:31 +#: ../../Zotlabs/Module/Ochannel.php:32 +msgid "You must be logged in to see this page." +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:98 ../../Zotlabs/Module/Hcard.php:37 +#: ../../Zotlabs/Module/Profile.php:45 +msgid "Posts and comments" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:105 ../../Zotlabs/Module/Hcard.php:44 +#: ../../Zotlabs/Module/Profile.php:52 +msgid "Only posts" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:165 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:182 ../../Zotlabs/Module/Network.php:173 +msgid "Search Results For:" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:217 ../../Zotlabs/Module/Display.php:80 +#: ../../Zotlabs/Module/Hq.php:134 ../../Zotlabs/Module/Network.php:203 +#: ../../Zotlabs/Module/Pubstream.php:94 +msgid "Reset form" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:476 ../../Zotlabs/Module/Display.php:378 +msgid "" +"You must enable javascript for your browser to be able to view this content." +msgstr "" + +#: ../../Zotlabs/Module/Chanview.php:139 +msgid "toggle full screen mode" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:102 +msgid "Chatrooms App" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:103 +msgid "Access Controlled Chatrooms" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:196 +msgid "Room not found" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:212 +msgid "Leave Room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:213 +msgid "Delete Room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:214 +msgid "I am away right now" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:215 +msgid "I am online" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:217 +msgid "Bookmark this room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:240 +msgid "New Chatroom" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:241 +msgid "Chatroom name" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:242 +msgid "Expiration of chats (minutes)" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:258 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:263 +msgid "No chatrooms available" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:264 ../../Zotlabs/Module/Manage.php:145 +#: ../../Zotlabs/Module/Profiles.php:831 ../../Zotlabs/Module/Wiki.php:214 +msgid "Create New" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:267 +msgid "Expiration" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:268 +msgid "min" +msgstr "" + +#: ../../Zotlabs/Module/Chatsvc.php:131 +msgid "Away" +msgstr "" + +#: ../../Zotlabs/Module/Chatsvc.php:136 +msgid "Online" +msgstr "" + +#: ../../Zotlabs/Module/Cloud.php:123 +msgid "Not found" +msgstr "" + +#: ../../Zotlabs/Module/Cloud.php:129 +msgid "Please refresh page" +msgstr "" + +#: ../../Zotlabs/Module/Cloud.php:132 +msgid "Unknown error" +msgstr "" + +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "" + +#: ../../Zotlabs/Module/Common.php:45 +msgid "No connections in common." +msgstr "" + +#: ../../Zotlabs/Module/Common.php:65 +msgid "View Common Connections" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:73 ../../Zotlabs/Module/Connect.php:135 +msgid "Continue" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:104 +msgid "Premium Channel App" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:105 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:116 +msgid "Premium Channel Setup" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:118 +msgid "Enable premium channel connection restrictions" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:119 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:121 ../../Zotlabs/Module/Connect.php:141 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:122 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:123 ../../Zotlabs/Module/Connect.php:144 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:132 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:140 +msgid "Restricted or Premium Channel" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:58 +#: ../../Zotlabs/Module/Connections.php:115 +#: ../../Zotlabs/Module/Connections.php:273 +msgid "Active" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:63 +#: ../../Zotlabs/Module/Connections.php:181 +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Blocked" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:68 +#: ../../Zotlabs/Module/Connections.php:188 +#: ../../Zotlabs/Module/Connections.php:277 +msgid "Ignored" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:73 +#: ../../Zotlabs/Module/Connections.php:202 +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Hidden" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:78 +#: ../../Zotlabs/Module/Connections.php:195 +msgid "Archived/Unreachable" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:83 +#: ../../Zotlabs/Module/Connections.php:92 ../../Zotlabs/Module/Menu.php:179 +#: ../../Zotlabs/Module/Notifications.php:50 +msgid "New" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:97 +#: ../../Zotlabs/Module/Connections.php:111 +#: ../../Zotlabs/Module/Connedit.php:727 ../../Zotlabs/Widget/Affinity.php:34 +msgid "All" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:157 +msgid "Active Connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:160 +msgid "Show active connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:164 +#: ../../Zotlabs/Widget/Notifications.php:84 +msgid "New Connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:167 +msgid "Show pending (new) connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:184 +msgid "Only show blocked connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:191 +msgid "Only show ignored connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:198 +msgid "Only show archived/unreachable connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:205 +msgid "Only show hidden connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:217 +#: ../../Zotlabs/Module/Profperm.php:140 +msgid "All Connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:220 +msgid "Show all connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Pending approval" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:275 +msgid "Archived" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:279 +msgid "Not connected at this location" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:296 +#, php-format +msgid "%1$s [%2$s]" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:297 +msgid "Edit connection" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:299 +msgid "Delete connection" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Channel address" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:313 +msgid "Call" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:315 +msgid "Status" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:317 +msgid "Connected" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:319 +msgid "Approve connection" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:321 +msgid "Ignore connection" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:322 +#: ../../Zotlabs/Module/Connedit.php:644 +msgid "Ignore" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:323 +msgid "Recent activity" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:353 +msgid "Search your connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:354 +msgid "Connections search" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:81 ../../Zotlabs/Module/Defperms.php:67 +msgid "Could not access contact record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:112 +msgid "Could not locate selected profile." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:312 +msgid "is now connected to" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:437 +msgid "Could not access address book record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:485 ../../Zotlabs/Module/Connedit.php:489 +msgid "Refresh failed - channel is currently unavailable." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:504 ../../Zotlabs/Module/Connedit.php:513 +#: ../../Zotlabs/Module/Connedit.php:522 ../../Zotlabs/Module/Connedit.php:531 +#: ../../Zotlabs/Module/Connedit.php:544 +msgid "Unable to set address book parameters." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Connection has been removed." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:611 +#, php-format +msgid "View %s's profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:615 +msgid "Refresh Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:618 +msgid "Fetch updated permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "Refresh Photo" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:625 +msgid "Fetch updated photo" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:632 +msgid "View recent posts and comments" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:639 +msgid "Block (or Unblock) all communications with this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:640 +msgid "This connection is blocked!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:644 +msgid "Unignore" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:647 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:648 +msgid "This connection is ignored!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:652 +msgid "Unarchive" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:652 +msgid "Archive" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:655 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:656 +msgid "This connection is archived!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:660 +msgid "Unhide" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:660 +msgid "Hide" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:663 +msgid "Hide or Unhide this connection from your other connections" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:664 +msgid "This connection is hidden!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:671 +msgid "Delete this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:679 +msgid "Fetch Vcard" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:682 +msgid "Fetch electronic calling card for this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:693 +msgid "Open Individual Permissions section by default" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:716 +msgid "Affinity" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:719 +msgid "Open Set Affinity section by default" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:723 ../../Zotlabs/Widget/Affinity.php:30 +msgid "Me" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:724 ../../Zotlabs/Widget/Affinity.php:31 +msgid "Family" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:726 ../../Zotlabs/Widget/Affinity.php:33 +msgid "Acquaintances" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:756 +msgid "Filter" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Open Custom Filter section by default" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:796 +msgid "Approve this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:796 +msgid "Accept connection to allow communication" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:801 +msgid "Set Affinity" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:804 +msgid "Set Profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:807 +msgid "Set Affinity & Profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:855 +msgid "This connection is unreachable from this location." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:856 +msgid "This connection may be unreachable from other channel locations." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:858 +msgid "Location independence is not supported by their network." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:864 +msgid "" +"This connection is unreachable from this location. Location independence is " +"not supported by their network." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:867 ../../Zotlabs/Module/Defperms.php:254 +msgid "Connection Default Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:868 ../../Zotlabs/Module/Defperms.php:255 +msgid "Apply these permissions automatically" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:868 +msgid "Connection requests will be approved without your interaction" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:869 ../../Zotlabs/Module/Defperms.php:256 +msgid "Permission role" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Defperms.php:257 +msgid "Add permission role" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:877 +msgid "This connection's primary address is" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:878 +msgid "Available locations:" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:883 ../../Zotlabs/Module/Defperms.php:261 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:884 +msgid "Connection Tools" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:886 +msgid "Slide to adjust your degree of friendship" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:888 +msgid "Slide to adjust your rating" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:889 ../../Zotlabs/Module/Connedit.php:894 +msgid "Optionally explain your rating" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:891 +msgid "Custom Filter" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:892 +msgid "Only import posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:893 +msgid "Do not import posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:895 +msgid "This information is public!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:900 +msgid "Connection Pending Approval" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:903 ../../Zotlabs/Module/Defperms.php:264 +#: ../../Zotlabs/Module/Permcats.php:123 ../../Zotlabs/Module/Tokens.php:183 +msgid "inherited" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:905 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:907 ../../Zotlabs/Module/Tokens.php:180 +msgid "Their Settings" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:908 ../../Zotlabs/Module/Defperms.php:266 +#: ../../Zotlabs/Module/Permcats.php:121 ../../Zotlabs/Module/Tokens.php:181 +msgid "My Settings" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Defperms.php:269 +#: ../../Zotlabs/Module/Permcats.php:126 ../../Zotlabs/Module/Tokens.php:186 +msgid "Individual Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:911 ../../Zotlabs/Module/Permcats.php:127 +#: ../../Zotlabs/Module/Tokens.php:187 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can not change those settings here." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:912 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can change those settings here but they wont have " +"any impact unless the inherited setting changes." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:913 +msgid "Last update:" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:921 +msgid "Details" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:80 +#: ../../Zotlabs/Module/Profile_photo.php:66 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:191 +#: ../../Zotlabs/Module/Cover_photo.php:243 +msgid "Cover Photos" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:214 +#: ../../Zotlabs/Module/Profile_photo.php:142 +msgid "Image resize failed." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:254 +#: ../../Zotlabs/Module/Profile_photo.php:260 +msgid "Image upload failed." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:271 +#: ../../Zotlabs/Module/Profile_photo.php:279 +msgid "Unable to process image." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:364 +#: ../../Zotlabs/Module/Cover_photo.php:379 +#: ../../Zotlabs/Module/Profile_photo.php:343 +#: ../../Zotlabs/Module/Profile_photo.php:390 +msgid "Photo not available." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:415 +msgid "Your cover photo may be visible to anybody on the internet" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:417 +#: ../../Zotlabs/Module/Profile_photo.php:456 +msgid "Upload File:" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:418 +#: ../../Zotlabs/Module/Profile_photo.php:457 +msgid "Select a profile:" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:419 +msgid "Change Cover Photo" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:420 +#: ../../Zotlabs/Module/Embedphotos.php:166 ../../Zotlabs/Module/Photos.php:727 +#: ../../Zotlabs/Module/Profile_photo.php:459 +#: ../../Zotlabs/Storage/Browser.php:398 ../../Zotlabs/Widget/Album.php:97 +#: ../../Zotlabs/Widget/Cdav.php:133 ../../Zotlabs/Widget/Cdav.php:169 +#: ../../Zotlabs/Widget/Portfolio.php:110 +msgid "Upload" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:423 +#: ../../Zotlabs/Module/Cover_photo.php:424 +#: ../../Zotlabs/Module/Profile_photo.php:463 +#: ../../Zotlabs/Module/Profile_photo.php:464 +msgid "Use a photo from your albums" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:429 +#: ../../Zotlabs/Module/Profile_photo.php:469 ../../Zotlabs/Module/Wiki.php:405 +msgid "Choose a different album" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:435 +#: ../../Zotlabs/Module/Profile_photo.php:474 +msgid "Select existing photo" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:452 +#: ../../Zotlabs/Module/Profile_photo.php:493 +msgid "Crop Image" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:453 +#: ../../Zotlabs/Module/Profile_photo.php:494 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:455 +#: ../../Zotlabs/Module/Profile_photo.php:496 +msgid "Done Editing" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:111 +#: ../../Zotlabs/Module/Settings/Channel.php:266 +msgid "Settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:189 +msgid "Default Permissions App" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:190 +msgid "Set custom default permissions for new connections" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:255 +#: ../../Zotlabs/Module/Settings/Channel.php:470 +msgid "" +"If enabled, connection requests will be approved without your interaction" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:262 +msgid "Automatic approval settings" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:270 +msgid "" +"Some individual permissions may have been preset or locked based on your " +"channel type and privacy settings." +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:67 ../../Zotlabs/Module/Directory.php:72 +#: ../../Zotlabs/Module/Display.php:29 ../../Zotlabs/Module/Photos.php:558 +#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:110 +msgid "No default suggestions were found." +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:259 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Directory.php:270 +msgid "Gender: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:272 +msgid "Status: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:274 +msgid "Homepage: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Description:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:343 +msgid "Public Forum:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:346 +msgid "Keywords: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:349 +msgid "Don't suggest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:351 +msgid "Common connections (estimated):" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:400 +msgid "Global Directory" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:400 +msgid "Local Directory" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:406 +msgid "Finding:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:411 +msgid "next page" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:411 +msgid "previous page" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:412 +msgid "Sort options" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:413 +msgid "Alphabetic" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:414 +msgid "Reverse Alphabetic" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:415 +msgid "Newest to Oldest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:416 +msgid "Oldest to Newest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:433 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" +msgstr "" + +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "" + +#: ../../Zotlabs/Module/Display.php:396 +msgid "Article" +msgstr "" + +#: ../../Zotlabs/Module/Display.php:448 +msgid "Item has been removed." +msgstr "" + +#: ../../Zotlabs/Module/Editblock.php:138 +msgid "Edit Block" +msgstr "" + +#: ../../Zotlabs/Module/Editlayout.php:128 ../../Zotlabs/Module/Layouts.php:129 +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Name" +msgstr "" + +#: ../../Zotlabs/Module/Editlayout.php:129 ../../Zotlabs/Module/Layouts.php:132 +msgid "Layout Description (Optional)" +msgstr "" + +#: ../../Zotlabs/Module/Editlayout.php:137 +msgid "Edit Layout" +msgstr "" + +#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 +msgid "Item is not editable" +msgstr "" + +#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:144 +msgid "Edit post" +msgstr "" + +#: ../../Zotlabs/Module/Editwebpage.php:139 +msgid "Page link" +msgstr "" + +#: ../../Zotlabs/Module/Editwebpage.php:166 +msgid "Edit Webpage" +msgstr "" + +#: ../../Zotlabs/Module/Email_resend.php:12 +#: ../../Zotlabs/Module/Email_validation.php:24 +msgid "Token verification failed." +msgstr "" + +#: ../../Zotlabs/Module/Email_resend.php:30 +msgid "Email verification resent" +msgstr "" + +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:36 +msgid "Email Verification Required" +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:37 +#, php-format +msgid "" +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:38 +msgid "Resend Email" +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:41 +msgid "Validation token" +msgstr "" + +#: ../../Zotlabs/Module/Embedphotos.php:148 ../../Zotlabs/Module/Photos.php:826 +#: ../../Zotlabs/Module/Photos.php:1374 ../../Zotlabs/Widget/Album.php:78 +#: ../../Zotlabs/Widget/Portfolio.php:87 +msgid "View Photo" +msgstr "" + +#: ../../Zotlabs/Module/Embedphotos.php:164 ../../Zotlabs/Module/Photos.php:857 +#: ../../Zotlabs/Widget/Album.php:95 ../../Zotlabs/Widget/Portfolio.php:108 +msgid "Edit Album" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "" + +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "" + +#: ../../Zotlabs/Module/Events.php:110 +msgid "Event can not end before it has started." +msgstr "" + +#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 +#: ../../Zotlabs/Module/Events.php:143 +msgid "Unable to generate preview." +msgstr "" + +#: ../../Zotlabs/Module/Events.php:119 +msgid "Event title and start time are required." +msgstr "" + +#: ../../Zotlabs/Module/Events.php:141 ../../Zotlabs/Module/Events.php:265 +msgid "Event not found." +msgstr "" + +#: ../../Zotlabs/Module/Events.php:462 +msgid "Edit event title" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:464 +msgid "Categories (comma-separated list)" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:465 +msgid "Edit Category" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:465 +msgid "Category" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:468 +msgid "Edit start date and time" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Events.php:472 +msgid "Finish date and time are not known or not relevant" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:471 +msgid "Edit finish date and time" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:471 +msgid "Finish date and time" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Module/Events.php:474 +msgid "Adjust for viewer timezone" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:473 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "" + +#: ../../Zotlabs/Module/Events.php:475 +msgid "Edit Description" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:477 +msgid "Edit Location" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:491 +msgid "Timezone:" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:496 +msgid "Advanced Options" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:635 +msgid "Edit event" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:637 +msgid "Delete event" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:670 +msgid "calendar" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:732 +msgid "Event removed" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:735 +msgid "Failed to remove event" +msgstr "" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Enter a folder name" +msgstr "" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "or select an existing folder (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:152 +msgid "Permission Denied." +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:185 +msgid "Edit file permissions" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:197 +msgid "Set/edit permissions" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:198 +msgid "Include all files and sub folders" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:199 +msgid "Return to file list" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:201 +msgid "Copy/paste this code to attach file to a post" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:202 +msgid "Copy/paste this URL to link file from a web page" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:204 +msgid "Share this file" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:205 +msgid "Show URL to this file" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:206 +#: ../../Zotlabs/Storage/Browser.php:411 +msgid "Show in your contacts shared folder" +msgstr "" + +#: ../../Zotlabs/Module/Follow.php:36 +msgid "Connection added." +msgstr "" + +#: ../../Zotlabs/Module/Go.php:21 +msgid "This page is available only to site members" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:27 +msgid "Welcome" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:29 +msgid "What would you like to do?" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:31 +msgid "" +"Please bookmark this page if you would like to return to it in the future" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:35 +msgid "Upload a profile photo" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:36 +msgid "Upload a cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:37 +msgid "Edit your default profile" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:41 +msgid "View friend suggestions" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:39 +msgid "View the channel directory" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:40 +msgid "View/edit your channel settings" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:41 +msgid "View the site or project documentation" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:42 +msgid "Visit your channel homepage" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:43 +msgid "" +"View your connections and/or add somebody whose address you already know" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:44 +msgid "" +"View your personal stream (this may be empty until you add some connections)" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:52 +msgid "View the public stream. Warning: this content is not moderated" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:45 +msgid "Privacy group created." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:48 +msgid "Could not create privacy group." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:80 +msgid "Privacy group updated." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:106 +msgid "Privacy Groups App" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:107 +msgid "Management of privacy groups" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:142 +msgid "Add Group" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:146 +msgid "Privacy group name" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:147 ../../Zotlabs/Module/Group.php:256 +msgid "Members are visible to other channels" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:155 ../../Zotlabs/Module/Help.php:81 +msgid "Members" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:182 +msgid "Privacy group removed." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:185 +msgid "Unable to remove privacy group." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:251 +#, php-format +msgid "Privacy Group: %s" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:253 +msgid "Privacy group name: " +msgstr "" + +#: ../../Zotlabs/Module/Group.php:258 +msgid "Delete Group" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:269 +msgid "Group members" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:271 +msgid "Not in this group" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:303 +msgid "Click a channel to toggle membership" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:23 +msgid "Documentation Search" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:82 +msgid "Administrators" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:83 +msgid "Developers" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:84 +msgid "Tutorials" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:95 +msgid "$Projectname Documentation" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:96 +msgid "Contents" +msgstr "" + +#: ../../Zotlabs/Module/Home.php:90 +#, php-format +msgid "Welcome to %s" +msgstr "" + +#: ../../Zotlabs/Module/Hq.php:140 +msgid "Welcome to Hubzilla!" +msgstr "" + +#: ../../Zotlabs/Module/Hq.php:140 +msgid "You have got no unseen posts..." +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:185 +#, php-format +msgid "%s element installed" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:188 +#, php-format +msgid "%s element installation failed" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:68 ../../Zotlabs/Module/Import_items.php:48 +msgid "Nothing to import." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:83 ../../Zotlabs/Module/Import.php:99 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Unable to download data from old server" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:106 ../../Zotlabs/Module/Import_items.php:77 +msgid "Imported file is empty." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:157 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:184 +msgid "No channel. Import failed." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:594 +msgid "Import completed." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:622 +msgid "You must be logged in to use this feature." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:627 +msgid "Import Channel" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:628 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:629 +#: ../../Zotlabs/Module/Import_items.php:127 +msgid "File to Upload" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:630 +msgid "Or provide the old server/hub details" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:632 +msgid "Your old identity address (xyz@example.com)" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:633 +msgid "Your old login email address" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:634 +msgid "Your old login password" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:635 +msgid "Import a few months of posts if possible (limited by available memory" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:637 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:639 +msgid "Make this hub my primary location" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:640 +msgid "Move this channel (disable all previous locations)" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:641 +msgid "Use this channel nickname instead of the one provided" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:641 +msgid "" +"Leave blank to keep your existing channel nickname. You will be randomly " +"assigned a similar nickname if either name is already allocated on this site." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:643 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:93 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:108 +msgid "Import completed" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:125 +msgid "Import Items" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:126 +msgid "Use this form to import existing posts and content from an export file." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:37 +msgid "Total invitation limit exceeded." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:61 +#, php-format +msgid "%s : Not a valid email address." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:75 +msgid "Please join us on $Projectname" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:85 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:90 +#, php-format +msgid "%s : Message delivery failed." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:94 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Invite.php:110 +msgid "Invite App" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:111 +msgid "Send email invitations to join this network" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:124 +msgid "You have no more invitations available" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:155 +msgid "Send invitations" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:156 +msgid "Enter email addresses, one per line:" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:157 ../../Zotlabs/Module/Mail.php:285 +msgid "Your message:" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:158 +msgid "Please join my community on $Projectname." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:160 +msgid "You will need to supply this invitation code:" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:161 +msgid "1. Register at any $Projectname location (they are all inter-connected)" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:163 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:164 +msgid "or visit" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:166 +msgid "3. Click [Connect]" +msgstr "" + +#: ../../Zotlabs/Module/Item.php:362 +msgid "Unable to locate original post." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:649 +msgid "Empty post discarded." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1058 +msgid "Duplicate post suppressed." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1203 +msgid "System error. Post not saved." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1239 +msgid "Your comment is awaiting approval." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1356 +msgid "Unable to obtain post information from database." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1363 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1370 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "" + +#: ../../Zotlabs/Module/Lang.php:17 +msgid "Language App" +msgstr "" + +#: ../../Zotlabs/Module/Lang.php:18 +msgid "Change UI language" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:186 +msgid "Comanche page description language help" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:190 +msgid "Layout Description" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:195 +msgid "Download PDL file" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:56 +msgid "Like/Dislike" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:61 +msgid "This action is restricted to members." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:62 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:111 ../../Zotlabs/Module/Like.php:137 +#: ../../Zotlabs/Module/Like.php:175 +msgid "Invalid request." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:152 +msgid "thing" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:198 +msgid "Channel unavailable." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:246 +msgid "Previous action reversed." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:451 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:453 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:455 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:457 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:459 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:461 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:572 +msgid "Action completed." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:573 +msgid "Thank you." +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary " +"location." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:176 +msgid "Drop" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing " +"your channel." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 +#, php-format +msgid "Site Member (%s)" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:68 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your password has been reset as requested." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Your new password is" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "Save or copy your new password - and then" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "click here to login" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:96 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:117 +#, php-format +msgid "Your password has changed at %s" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Forgot your Password?" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:131 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:132 +msgid "Email Address" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:133 ../../Zotlabs/Module/Pdledit.php:77 +msgid "Reset" +msgstr "" + +#: ../../Zotlabs/Module/Magic.php:76 +msgid "Hub not found." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:73 +msgid "Unable to lookup recipient." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:80 +msgid "Unable to communicate with requested channel." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:87 +msgid "Cannot verify requested channel." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:105 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:160 +msgid "Messages" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:173 +msgid "message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:214 +msgid "Message recalled." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:227 +msgid "Conversation removed." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:270 +msgid "Requested channel is not in this network" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:278 +msgid "Send Private Message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 +msgid "To:" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 +msgid "Subject:" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 +msgid "Attach file" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:289 +msgid "Send" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:393 +msgid "Delete message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:394 +msgid "Delivery report" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:395 +msgid "Recall message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:397 +msgid "Message has been recalled." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:414 +msgid "Delete Conversation" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:416 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:420 +msgid "Send Reply" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:425 +#, php-format +msgid "Your message for %s (%s):" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:138 ../../Zotlabs/Module/New_channel.php:147 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:145 +msgid "Create a new channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:171 +msgid "Current Channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:173 +msgid "Switch to one of your channels by selecting it." +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:174 +msgid "Default Channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Make Default" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:178 +#, php-format +msgid "%d new messages" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:179 +#, php-format +msgid "%d new introductions" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:181 +msgid "Delegated Channel" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:67 +msgid "Unable to update menu." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:78 +msgid "Unable to create menu." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:160 ../../Zotlabs/Module/Menu.php:173 +msgid "Menu Name" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:160 +msgid "Unique name (not visible on webpage) - required" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:161 ../../Zotlabs/Module/Menu.php:174 +msgid "Menu Title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:161 +msgid "Visible on webpage - leave empty for no title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:162 +msgid "Allow Bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 +msgid "Menu may be used to store saved bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:224 +msgid "Submit and proceed" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:180 +msgid "Bookmarks allowed" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:182 +msgid "Delete this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:183 ../../Zotlabs/Module/Menu.php:218 +msgid "Edit menu contents" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:184 +msgid "Edit this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:200 +msgid "Menu could not be deleted." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:208 ../../Zotlabs/Module/Mitem.php:31 +msgid "Menu not found." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:213 +msgid "Edit Menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:217 +msgid "Add or remove entries to this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:219 +msgid "Menu name" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:219 +msgid "Must be unique, only seen by you" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:220 +msgid "Menu title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:220 +msgid "Menu title as seen by others" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:221 +msgid "Allow bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:231 ../../Zotlabs/Module/Mitem.php:134 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:63 +msgid "Unable to create element." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:87 +msgid "Unable to update menu element." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:103 +msgid "Unable to add menu element." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:167 ../../Zotlabs/Module/Mitem.php:246 +msgid "Menu Item Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:168 ../../Zotlabs/Module/Mitem.php:247 +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "(click to open/close)" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:174 ../../Zotlabs/Module/Mitem.php:191 +msgid "Link Name" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:175 ../../Zotlabs/Module/Mitem.php:255 +msgid "Link or Submenu Target" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:175 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:256 +msgid "Use magic-auth if available" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:257 +msgid "Open link in new window" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 +msgid "Order in list" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 +msgid "Higher numbers will sink to bottom of listing" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Submit and finish" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Submit and continue" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Menu:" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:192 +msgid "Link Target" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:195 +msgid "Edit menu" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:198 +msgid "Edit element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:199 +msgid "Drop element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:200 +msgid "New element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:201 +msgid "Edit this menu container" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Add menu element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:203 +msgid "Delete this menu item" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:204 +msgid "Edit this menu item" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:222 +msgid "Menu item not found." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:235 +msgid "Menu item deleted." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:237 +msgid "Menu item could not be deleted." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:244 +msgid "Edit Menu Element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:254 +msgid "Link text" +msgstr "" + +#: ../../Zotlabs/Module/Moderate.php:65 +msgid "Comment approved" +msgstr "" + +#: ../../Zotlabs/Module/Moderate.php:69 +msgid "Comment deleted" +msgstr "" + +#: ../../Zotlabs/Module/Mood.php:134 +msgid "Mood App" +msgstr "" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Module/Mood.php:155 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:109 +msgid "No such group" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:158 +msgid "No such channel" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:242 +msgid "Privacy group is empty" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:252 +msgid "Privacy group: " +msgstr "" + +#: ../../Zotlabs/Module/Network.php:325 +msgid "Invalid channel." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:159 +msgid "Your real name is recommended." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:160 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\"" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:165 +msgid "" +"This will be used to create a unique network address (like an email address)." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:167 +msgid "Allowed characters are a-z 0-9, - and _" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:175 +msgid "Channel name" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:177 +#: ../../Zotlabs/Module/Register.php:260 +msgid "Choose a short nickname" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:178 +#: ../../Zotlabs/Module/Register.php:261 +#: ../../Zotlabs/Module/Settings/Channel.php:535 +msgid "Channel role and privacy" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:178 +msgid "" +"Select a channel permission role compatible with your usage needs and " +"privacy requirements." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:178 +#: ../../Zotlabs/Module/Register.php:261 +msgid "Read more about channel permission roles" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:181 +msgid "Create a Channel" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:182 +msgid "" +"A channel is a unique network identity. It can represent a person (social " +"network profile), a forum (group), a business or celebrity page, a newsfeed, " +"and many other things." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:183 +msgid "" +"or import an existing channel from another location." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:188 +msgid "Validate" +msgstr "" + +#: ../../Zotlabs/Module/Notes.php:56 +msgid "Notes App" +msgstr "" + +#: ../../Zotlabs/Module/Notes.php:57 +msgid "A simple notes app with a widget (note: notes are not encrypted)" +msgstr "" + +#: ../../Zotlabs/Module/Notifications.php:55 ../../Zotlabs/Module/Notify.php:61 +msgid "No more system notifications." +msgstr "" + +#: ../../Zotlabs/Module/Notifications.php:59 ../../Zotlabs/Module/Notify.php:65 +msgid "System Notifications" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:45 +msgid "Name is required" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:49 +msgid "Key and Secret are required" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:100 +msgid "OAuth Apps Manager App" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:101 +msgid "OAuth authentication tokens for mobile and remote apps" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:110 ../../Zotlabs/Module/Oauth.php:136 +#: ../../Zotlabs/Module/Oauth.php:172 ../../Zotlabs/Module/Oauth2.php:143 +#: ../../Zotlabs/Module/Oauth2.php:193 +msgid "Add application" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:113 ../../Zotlabs/Module/Oauth2.php:118 +#: ../../Zotlabs/Module/Oauth2.php:146 +msgid "Name of application" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:140 +msgid "Consumer Key" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:115 +#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:115 ../../Zotlabs/Module/Oauth.php:141 +#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 +msgid "Consumer Secret" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:116 ../../Zotlabs/Module/Oauth.php:142 +#: ../../Zotlabs/Module/Oauth2.php:120 ../../Zotlabs/Module/Oauth2.php:148 +msgid "Redirect" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:116 ../../Zotlabs/Module/Oauth2.php:120 +#: ../../Zotlabs/Module/Oauth2.php:148 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Oauth.php:143 +msgid "Icon url" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Sources.php:123 +#: ../../Zotlabs/Module/Sources.php:158 +msgid "Optional" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:128 +msgid "Application not found." +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:171 +msgid "Connected OAuth Apps" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:175 ../../Zotlabs/Module/Oauth2.php:196 +msgid "Client key starts with" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:176 ../../Zotlabs/Module/Oauth2.php:197 +msgid "No name" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:177 ../../Zotlabs/Module/Oauth2.php:198 +msgid "Remove authorization" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:54 +msgid "Name and Secret are required" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:106 +msgid "OAuth2 Apps Manager App" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:107 +msgid "OAuth2 authenticatication tokens for mobile and remote apps" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:115 +msgid "Add OAuth2 application" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:121 ../../Zotlabs/Module/Oauth2.php:149 +msgid "Grant Types" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:121 ../../Zotlabs/Module/Oauth2.php:122 +msgid "leave blank unless your application sepcifically requires this" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:122 ../../Zotlabs/Module/Oauth2.php:150 +msgid "Authorization scope" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:134 +msgid "OAuth2 Application not found." +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:149 ../../Zotlabs/Module/Oauth2.php:150 +msgid "leave blank unless your application specifically requires this" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:192 +msgid "Connected OAuth2 Apps" +msgstr "" + +#: ../../Zotlabs/Module/Card_edit.php:128 +msgid "Edit Card" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:59 +msgid "Invalid message" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:93 +msgid "no results" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "channel sync processed" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:111 +msgid "queued" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:115 +msgid "posted" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:119 +msgid "accepted for delivery" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "updated" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "update ignored" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:129 +msgid "permission denied" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:133 +msgid "recipient not found" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:136 +msgid "mail recalled" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:139 +msgid "duplicate mail received" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:142 +msgid "mail delivered" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:162 +#, php-format +msgid "Delivery report for %1$s" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:166 ../../Zotlabs/Widget/Wiki_pages.php:41 +#: ../../Zotlabs/Widget/Wiki_pages.php:98 +msgid "Options" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:167 +msgid "Redeliver" +msgstr "" + +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "" + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "" + +#: ../../Zotlabs/Module/Page.php:173 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " +"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "" + +#: ../../Zotlabs/Module/Pconfig.php:32 ../../Zotlabs/Module/Pconfig.php:68 +msgid "This setting requires special processing and editing has been blocked." +msgstr "" + +#: ../../Zotlabs/Module/Pconfig.php:57 +msgid "Configuration Editor" +msgstr "" + +#: ../../Zotlabs/Module/Pconfig.php:58 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please " +"leave this page unless you are comfortable with and knowledgeable about how " +"to correctly use this feature." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:26 +msgid "Layout updated." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:42 +msgid "PDL Editor App" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:43 +msgid "Provides the ability to edit system page layouts" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:56 ../../Zotlabs/Module/Pdledit.php:99 +msgid "Edit System Page Description" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:77 +msgid "(modified)" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:94 +msgid "Layout not found." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:100 +msgid "Module Name:" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:101 +msgid "Layout Help" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:102 +msgid "Edit another layout" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:103 +msgid "System layout" +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:28 +msgid "Permission category name is required." +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:47 +msgid "Permission category saved." +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:62 +msgid "Permission Categories App" +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:63 +msgid "Create custom connection permission limits" +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:79 +msgid "" +"Use this form to create permission rules for various classes of people or " +"connections." +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:120 +msgid "Permission category name" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:78 +msgid "Page owner information could not be retrieved." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:113 +msgid "Album not found." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:103 +msgid "Delete Album" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1098 +msgid "Delete Photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:569 +msgid "No photos selected" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:618 +msgid "Access to this item is restricted." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:661 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:664 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:706 +msgid "Upload Photos" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:710 +msgid "Enter an album name" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:711 +msgid "or select an existing album (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:712 +msgid "Create a status post for this upload" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:714 +msgid "Description (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:800 +msgid "Show Newest First" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:802 +msgid "Show Oldest First" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:859 ../../Zotlabs/Module/Photos.php:1405 +msgid "Add Photos" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:907 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:909 +msgid "Photo not available" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:967 +msgid "Use as profile photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:968 +msgid "Use as cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:975 +msgid "Private Photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:990 +msgid "View Full Size" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1072 +msgid "Edit photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1074 +msgid "Rotate CW (right)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1075 +msgid "Rotate CCW (left)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1078 +msgid "Move photo to album" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1079 +msgid "Enter a new album name" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1080 +msgid "or select an existing one (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1085 +msgid "Add a Tag" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1093 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1096 +msgid "Flag as adult in album view" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1288 +msgid "Photo Tools" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1297 +msgid "In This Photo:" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1302 +msgid "Map" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:338 +msgid "sent you a private message" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:394 +msgid "added your channel" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:419 +msgid "requires approval" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:429 +msgid "g A l F d" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:447 +msgid "[today]" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:457 +msgid "posted an event" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:491 +msgid "shared a file with you" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:673 +msgid "Private forum" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:673 +msgid "Public forum" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:165 +msgid "Poke App" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:166 +msgid "Poke somebody in your addressbook" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:200 +msgid "Poke somebody" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:203 +msgid "Poke/Prod" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:204 +msgid "Poke, prod or do other things to somebody" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:211 +msgid "Recipient" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:212 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:215 ../../Zotlabs/Module/Poke.php:216 +msgid "Make this post private" +msgstr "" + +#: ../../Zotlabs/Module/Probe.php:18 +msgid "Remote Diagnostics App" +msgstr "" + +#: ../../Zotlabs/Module/Probe.php:19 +msgid "Perform diagnostics on remote channels" +msgstr "" + +#: ../../Zotlabs/Module/Profile.php:93 +msgid "vcard" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 +#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 +msgid "Profile not found." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 +msgid "Profile-" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 +msgid "New profile created." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:111 +msgid "Profile unavailable to clone." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:146 +msgid "Profile unavailable to export." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:252 +msgid "Profile Name is required." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:459 +msgid "Marital Status" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:463 +msgid "Romantic Partner" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:772 +msgid "Likes" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:773 +msgid "Dislikes" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:780 +msgid "Work/Employment" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:478 +msgid "Religion" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:482 +msgid "Political Views" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:486 +msgid "Gender" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:490 +msgid "Sexual Preference" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:494 +msgid "Homepage" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:498 +msgid "Interests" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:594 +msgid "Profile updated." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:678 +msgid "Hide your connections list from viewers of this profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:722 +msgid "Edit Profile Details" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:724 +msgid "View this profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Profile Tools" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Change cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:729 +msgid "Create a new profile using these settings" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Clone this profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Delete this profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Add profile things" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Personal" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Relationship" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Import profile from file" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Export profile to file" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Your gender" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Marital status" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Sexual preference" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "Profile name" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "This is your default profile." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:749 +msgid "Your full name" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:750 +msgid "Title/Description" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:753 +msgid "Street address" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:754 +msgid "Locality/City" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:755 +msgid "Region/State" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:756 +msgid "Postal/Zip code" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:762 +msgid "Who (if applicable)" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:762 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:763 +msgid "Since (date)" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:766 +msgid "Tell us about yourself" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:767 +msgid "Homepage URL" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:768 +msgid "Hometown" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:769 +msgid "Political views" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:770 +msgid "Religious views" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Keywords used in directory listings" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Example: fishing photography software" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:774 +msgid "Musical interests" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:775 +msgid "Books, literature" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:776 +msgid "Television" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:777 +msgid "Film/Dance/Culture/Entertainment" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Hobbies/Interests" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:779 +msgid "Love/Romance" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:781 +msgid "School/Education" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:782 +msgid "Contact information and social networks" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:783 +msgid "My other channels" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:785 +msgid "Communications" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:218 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:454 +msgid "" +"Your default profile photo is visible to anybody on the internet. Profile " +"photos for alternate profiles will inherit the permissions of the profile" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:454 +msgid "" +"Your profile photo is visible to anybody on the internet and may be " +"distributed to other websites." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:458 +msgid "Use Photo for Profile" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:458 +msgid "Change Profile Photo" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:459 +msgid "Use" +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:111 +msgid "Profile Visibility Editor" +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Click on a contact to add or remove." +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:124 +msgid "Visible To" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 +msgid "Public Hubs" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:49 +msgid "Rate" +msgstr "" + +#: ../../Zotlabs/Module/Pubstream.php:20 +msgid "Public Stream App" +msgstr "" + +#: ../../Zotlabs/Module/Pubstream.php:21 +msgid "The unmoderated public stream of this hub" +msgstr "" + +#: ../../Zotlabs/Module/Randprof.php:29 +msgid "Random Channel App" +msgstr "" + +#: ../../Zotlabs/Module/Randprof.php:30 +msgid "Visit a random channel in the $Projectname network" +msgstr "" + +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "" + +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "" + +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "" + +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "" + +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "" + +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "" + +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "" + +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "" + +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "" + +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "" + +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:132 +msgid "Registration successful. Continue to create your first channel..." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:135 +msgid "" +"Registration successful. Please check your email for validation instructions." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:142 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:145 +msgid "Your registration can not be processed." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:192 +msgid "Registration on this hub is disabled." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:201 +msgid "Registration on this hub is by approval only." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:202 ../../Zotlabs/Module/Register.php:211 +msgid "Register at another affiliated hub." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:210 +msgid "Registration on this hub is by invitation only." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:221 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:236 ../../Zotlabs/Module/Siteinfo.php:28 +msgid "Terms of Service" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:242 +#, php-format +msgid "I accept the %s for this website" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:249 +#, php-format +msgid "I am over %s years of age and accept the %s for this website" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:254 +msgid "Your email address" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:255 +msgid "Choose a password" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:256 +msgid "Please re-enter your password" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:257 +msgid "Please enter your invitation code" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:258 +msgid "Your Name" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:258 +msgid "Real names are preferred." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:260 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address e." +"g. nickname%s" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:261 +msgid "" +"Select a channel permission role for your usage needs and privacy " +"requirements." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:262 +msgid "no" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:262 +msgid "yes" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:290 +msgid "" +"This site requires email verification. After completing this form, please " +"check your email for further instructions." +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This action is permanent and can not be undone!" +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings/Account.php:105 +msgid "Remove Account" +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:594 +msgid "Remove Channel" +msgstr "" + +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "Authentication failed." +msgstr "" + +#: ../../Zotlabs/Module/Search.php:230 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: ../../Zotlabs/Module/Search.php:232 +#, php-format +msgid "Search results for: %s" +msgstr "" + +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:19 +msgid "Not valid email." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:22 +msgid "Protected email address. Cannot change to that email." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:31 +msgid "System failure storing new email. Please try again." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:48 +msgid "Password verification failed." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:55 +msgid "Passwords do not match. Password unchanged." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:59 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:73 +msgid "Password changed." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:75 +msgid "Password update failed. Please try again." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:99 +msgid "Account Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:100 +msgid "Current Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:101 +msgid "Enter New Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:102 +msgid "Confirm New Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:102 +msgid "Leave password fields blank unless changing" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:104 +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Email Address:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Remove this account including all its channels" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Calendar.php:39 +msgid "CalDAV Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:327 +msgid "Nobody except yourself" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:328 +msgid "Only those you specifically allow" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:329 +msgid "Approved connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:330 +msgid "Any connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:331 +msgid "Anybody on this website" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:332 +msgid "Anybody in this network" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:333 +msgid "Anybody authenticated" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:334 +msgid "Anybody on the internet" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:409 +msgid "Publish your default profile in the network directory" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:414 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:418 +msgid "or" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:427 +msgid "Your channel address is" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:430 +msgid "Your files/photos are accessible via WebDAV at" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:470 +msgid "Automatic membership approval" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:491 +msgid "Channel Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:498 +msgid "Basic Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:501 +msgid "Your Timezone:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:502 +msgid "Default Post Location:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:502 +msgid "Geographical location to display on your posts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Use Browser Location:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "Adult Content" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "Security and Privacy Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:509 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Hide my online presence" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Prevents displaying in your profile that you are online" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "Simple Privacy Settings:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:514 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:515 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:516 +msgid "Private - default private, never open or public" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:517 +msgid "Blocked - default blocked to/from everybody" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "Allow others to tag your posts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Channel Permission Limits" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "Expire other channel content after this many days" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "0 or blank to use the website limit." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:523 +#, php-format +msgid "This website expires after %d days." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "This website does not expire imported content." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "The website limit takes precedence if lower than your limit." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:524 +msgid "Maximum Friend Requests/Day:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:524 +msgid "May reduce spam activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Default Privacy Group" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:527 +msgid "Use my default audience setting for the type of object published" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:536 +msgid "Default permissions category" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:542 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:542 +msgid "Useful to reduce spamming" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "By default post a status message when:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:547 +msgid "accepting a friend request" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:548 +msgid "joining a forum/community" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:549 +msgid "making an interesting profile change" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:550 +msgid "Send a notification email when:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:551 +msgid "You receive a connection request" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:552 +msgid "Your connections are confirmed" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:553 +msgid "Someone writes on your profile wall" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:554 +msgid "Someone writes a followup comment" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:555 +msgid "You receive a private message" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:556 +msgid "You receive a friend suggestion" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:557 +msgid "You are tagged in a post" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:558 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:560 +msgid "Someone likes your post/comment" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:563 +msgid "Show visual notifications including:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:565 +msgid "Unseen stream activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:566 +msgid "Unseen channel activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:567 +msgid "Unseen private messages" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:567 +#: ../../Zotlabs/Module/Settings/Channel.php:572 +#: ../../Zotlabs/Module/Settings/Channel.php:573 +#: ../../Zotlabs/Module/Settings/Channel.php:574 +msgid "Recommended" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:568 +msgid "Upcoming events" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:569 +msgid "Events today" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:570 +msgid "Upcoming birthdays" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:570 +msgid "Not available in all themes" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:571 +msgid "System (personal) notifications" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:572 +msgid "System info messages" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:573 +msgid "System critical alerts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:574 +msgid "New connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:575 +msgid "System Registrations" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:576 +msgid "Unseen shared files" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:577 +msgid "Unseen public stream activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:578 +msgid "Unseen likes and dislikes" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:579 +msgid "Unseen forum posts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:580 +msgid "Email notification hub (hostname)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:580 +#, php-format +msgid "" +"If your channel is mirrored to multiple hubs, set this to your preferred " +"location. This will prevent duplicate email notifications. Example: %s" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:581 +msgid "Show new wall posts, private messages and connections under Notices" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:583 +msgid "Notify me of events this many days in advance" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:583 +msgid "Must be greater than 0" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:588 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:589 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:591 +msgid "Miscellaneous Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:592 +msgid "Default photo upload folder" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:592 +#: ../../Zotlabs/Module/Settings/Channel.php:593 +msgid "%Y - current year, %m - current month" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:593 +msgid "Default file upload folder" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:595 +msgid "Remove this channel." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel_home.php:44 +#: ../../Zotlabs/Module/Settings/Network.php:41 +msgid "Max height of content (in pixels)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel_home.php:46 +#: ../../Zotlabs/Module/Settings/Network.php:43 +msgid "Click to expand content exceeding this height" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel_home.php:59 +msgid "Personal menu to display in your channel pages" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel_home.php:86 +msgid "Channel Home Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Connections.php:39 +msgid "Connections Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Conversation.php:22 +msgid "Settings saved." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Conversation.php:24 +msgid "Settings saved. Reload page please." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Conversation.php:46 +msgid "Conversation Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Directory.php:39 +msgid "Directory Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:128 +#, php-format +msgid "%s - (Experimental)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:184 +msgid "Display Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:185 +msgid "Theme Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:186 +msgid "Custom Theme Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:187 +msgid "Content Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:193 +msgid "Display Theme:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:194 +msgid "Select scheme" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "Preload images before rendering the page" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "" +"The subjective page load time will be longer but the page will be ready when " +"displayed" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:197 +msgid "Enable user zoom on mobile devices" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Update browser every xx seconds" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Minimum of 10 seconds, no maximum" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Maximum number of conversations to load at any time:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Maximum of 100 items" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:200 +msgid "Show emoticons (smilies) as images" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Provide channel menu in navigation bar" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Default: channel menu located in app menu" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Manual conversation updates" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Default is on, turning this off may increase screen jumping" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Link post titles to source" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +#: ../../Zotlabs/Widget/Newmember.php:75 +msgid "New Member Links" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Display new member quick links menu" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Editor.php:39 +msgid "Editor Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Events.php:39 +msgid "Events Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:24 +msgid "No feature settings configured" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:33 +msgid "Addon Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:34 +msgid "Please save/submit changes to any panel before opening another." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Features.php:43 +msgid "Additional Features" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Manage.php:39 +msgid "Channel Manager Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:58 +msgid "Stream Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Photos.php:39 +msgid "Photos Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Profiles.php:47 +msgid "Profiles Settings" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:167 +msgid "$Projectname Server - Setup" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:171 +msgid "Could not connect to database." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:175 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:182 +msgid "Could not create table." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:188 +msgid "Your site database has been installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:194 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:195 ../../Zotlabs/Module/Setup.php:259 +#: ../../Zotlabs/Module/Setup.php:766 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:256 +msgid "System check" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:261 +msgid "Check again" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:282 +msgid "Database connection" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:283 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:284 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:285 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:289 +msgid "Database Server Name" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:289 +msgid "Default is 127.0.0.1" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:290 +msgid "Database Port" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:290 +msgid "Communication port number - use 0 for default" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:291 +msgid "Database Login Name" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:292 +msgid "Database Login Password" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:293 +msgid "Database Name" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database Type" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:296 ../../Zotlabs/Module/Setup.php:336 +msgid "Site administrator email address" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:296 ../../Zotlabs/Module/Setup.php:336 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:297 ../../Zotlabs/Module/Setup.php:338 +msgid "Website URL" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:297 ../../Zotlabs/Module/Setup.php:338 +msgid "Please use SSL (https) URL if available." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:340 +msgid "Please select a default timezone for your website" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:325 +msgid "Site settings" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:379 +msgid "PHP version 7.1 or greater is required." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:380 +msgid "PHP version" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:396 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:397 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:401 +msgid "PHP executable path" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:401 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:406 +msgid "Command line PHP" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:416 +msgid "" +"Unable to check command line PHP, as shell_exec() is disabled. This is " +"required." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:420 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:421 +msgid "This is required for message delivery to work." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:424 +msgid "PHP register_argc_argv" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:444 +msgid "" +"This is not sufficient to upload larger images or files. You should be able " +"to upload at least 4 MB at once." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:446 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to " +"upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:452 +msgid "You can adjust these settings in the server php.ini file." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:454 +msgid "PHP upload limits" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:477 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:478 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:481 +msgid "Generate encryption keys" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:498 +msgid "libCurl PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:499 +msgid "GD graphics PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:500 +msgid "OpenSSL PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:501 +msgid "PDO database PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:502 +msgid "mb_string PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:503 +msgid "xml PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:504 +msgid "zip PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:508 ../../Zotlabs/Module/Setup.php:510 +msgid "Apache mod_rewrite module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:508 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:514 ../../Zotlabs/Module/Setup.php:517 +msgid "exec" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:514 +msgid "" +"Error: exec is required but is either not installed or has been disabled in " +"php.ini" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:520 ../../Zotlabs/Module/Setup.php:523 +msgid "shell_exec" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:520 +msgid "" +"Error: shell_exec is required but is either not installed or has been " +"disabled in php.ini" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:528 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:532 +msgid "" +"Error: GD PHP module with JPEG support or ImageMagick graphics library " +"required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:536 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:542 +msgid "" +"Error: PDO database PHP module missing a driver for either mysql or pgsql." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:547 +msgid "Error: PDO database PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:551 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:555 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:559 +msgid "Error: zip PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:578 ../../Zotlabs/Module/Setup.php:587 +msgid ".htconfig.php is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:583 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:584 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:585 +msgid "Please see install/INSTALL.txt for additional information." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:601 +msgid "" +"This software uses the Smarty3 template engine to render its web views. " +"Smarty3 compiles templates to PHP to speed up rendering." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:602 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:603 ../../Zotlabs/Module/Setup.php:624 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:604 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:607 +#, php-format +msgid "%s is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:623 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the top level " +"web folder" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:627 +msgid "store is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:659 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:660 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:661 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:662 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:663 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:664 +msgid "" +"Providers are available that issue free certificates which are browser-valid." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:665 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:667 +msgid "SSL certificate validation" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:673 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:676 +msgid "Url rewrite is working" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:689 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:718 +msgid "Errors encountered creating database tables." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:764 +msgid "

What next?

" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:765 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgstr "" + +#: ../../Zotlabs/Module/Share.php:119 +msgid "Post repeated" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Files: shared with me" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:105 +msgid "NEW" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:107 +#: ../../Zotlabs/Storage/Browser.php:294 +msgid "Last Modified" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:108 +msgid "Remove all files" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:109 +msgid "Remove this file" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:21 +msgid "About this site" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:22 +msgid "Site Name" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:26 +msgid "Administrator" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:29 +msgid "Software and Project information" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:30 +msgid "This site is powered by $Projectname" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:31 +msgid "" +"Federated and decentralised networking and identity services provided by Zot" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Additional federated transport protocols:" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:36 +#, php-format +msgid "Version %s" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:37 +msgid "Project homepage" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:38 +msgid "Developer homepage" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:41 +msgid "Failed to create source. No channel selected." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:57 +msgid "Source created." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:70 +msgid "Source updated." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:88 +msgid "Sources App" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:89 +msgid "Automatically import channel content from other channels or feeds" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:101 +msgid "*" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:108 +msgid "Manage remote sources of content for your channel." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:119 +msgid "New Source" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:120 ../../Zotlabs/Module/Sources.php:154 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 +msgid "Only import content with these words (one per line)" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 +msgid "Leave blank to import all public content" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:161 +msgid "Channel Name" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +msgid "Resend posts with this channel as author" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +msgid "Copyrights may apply" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:144 ../../Zotlabs/Module/Sources.php:174 +msgid "Source not found." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:151 +msgid "Edit Source" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:152 +msgid "Delete Source" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:182 +msgid "Source removed" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:184 +msgid "Unable to remove source." +msgstr "" + +#: ../../Zotlabs/Module/Subthread.php:143 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Subthread.php:145 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Suggest.php:40 +msgid "Suggest Channels App" +msgstr "" + +#: ../../Zotlabs/Module/Suggest.php:41 +msgid "" +"Suggestions for channels in the $Projectname network you might be interested " +"in" +msgstr "" + +#: ../../Zotlabs/Module/Suggest.php:54 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: ../../Zotlabs/Module/Suggest.php:73 ../../Zotlabs/Widget/Suggestions.php:48 +msgid "Ignore/Hide" +msgstr "" + +#: ../../Zotlabs/Module/Tagger.php:48 +msgid "Post not found." +msgstr "" + +#: ../../Zotlabs/Module/Tagger.php:119 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "" + +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "" + +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:120 +msgid "Thing updated" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:172 +msgid "Object store: failed" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:176 +msgid "Thing added" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:202 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:265 +msgid "Show Thing" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:272 +msgid "item not found." +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:305 +msgid "Edit Thing" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:364 +msgid "Select a profile" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 +msgid "Post an activity" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 +msgid "Only sends to viewers of the applicable profile" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 +msgid "Name of thing e.g. something" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:370 +msgid "URL of thing (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:371 +msgid "URL for photo of thing (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:362 +msgid "Add Thing to your Profile" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:39 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:45 +msgid "Name and Password are required." +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:85 +msgid "Token saved." +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:99 +msgid "Guest Access App" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:100 +msgid "Create access tokens so that non-members can access private content" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:133 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:135 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:170 +msgid "Guest Access Tokens" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:177 +msgid "Login Name" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:178 +msgid "Login Password" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:179 +msgid "Expires (yyyy-mm-dd)" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:61 +msgid "Channel Export App" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "Export your channel" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:72 ../../Zotlabs/Module/Uexport.php:73 +msgid "Export Channel" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:74 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:75 +msgid "Export Content" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:76 +msgid "" +"Export your channel information and recent content to a JSON backup that can " +"be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for " +"this download to begin." +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:78 +msgid "Export your posts from a given year." +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:80 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:81 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:82 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:83 +#, php-format +msgid "" +"These content files may be imported or restored by visiting " +"%2$s on any site containing your channel. For best results please import " +"or restore these in date order (oldest first)." +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:83 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:113 +msgid "View Connections" +msgstr "" + +#: ../../Zotlabs/Module/Viewsrc.php:43 +msgid "item" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:48 +msgid "Webpages App" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:49 +msgid "Provide managed web pages on your channel" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:69 +msgid "Import Webpage Elements" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:70 +msgid "Import selected" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:93 +msgid "Export Webpage Elements" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:94 +msgid "Export selected" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:263 +msgid "Actions" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:264 +msgid "Page Link" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:265 +msgid "Page Title" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:295 +msgid "Invalid file type." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:307 +msgid "Error opening zip file" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:318 +msgid "Invalid folder path." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:345 +msgid "No webpage elements detected." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:420 +msgid "Import complete." +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:35 +msgid "Profile Unavailable." +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:52 +msgid "Wiki App" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:53 +msgid "Provide a wiki for your channel" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:77 +msgid "Invalid channel" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:133 +msgid "Error retrieving wiki" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:140 +msgid "Error creating zip file export folder" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:191 +msgid "Error downloading wiki: " +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:212 +msgid "Download" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:216 +msgid "Wiki name" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:217 +msgid "Content type" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:219 ../../Zotlabs/Storage/Browser.php:292 +msgid "Type" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:220 +msgid "Any type" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:227 +msgid "Lock content type" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:228 +msgid "Create a status post for this wiki" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:229 +msgid "Edit Wiki Name" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:274 +msgid "Wiki not found" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:300 +msgid "Rename page" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:321 +msgid "Error retrieving page content" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:329 ../../Zotlabs/Module/Wiki.php:331 +msgid "New page" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:366 +msgid "Revision Comparison" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:374 +msgid "Short description of your changes (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:384 +msgid "Source" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:394 +msgid "New page name" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:399 +msgid "Embed image from photo albums" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:410 +msgid "History" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:488 +msgid "Error creating wiki. Invalid name." +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:495 +msgid "A wiki with this name already exists." +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:508 +msgid "Wiki created, but error creating Home page." +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:515 +msgid "Error creating wiki" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:539 +msgid "Error updating wiki. Invalid name." +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:559 +msgid "Error updating wiki" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:574 +msgid "Wiki delete permission denied." +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:584 +msgid "Error deleting wiki" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:617 +msgid "New page created" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:739 +msgid "Cannot delete Home" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:803 +msgid "Current Revision" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:803 +msgid "Selected Revision" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:853 +msgid "You must be authenticated." +msgstr "" + +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "" + +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:295 +msgid "parent" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:134 +msgid "Principal" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:137 +msgid "Addressbook" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:143 +msgid "Schedule Inbox" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:146 +msgid "Schedule Outbox" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:279 +msgid "Total" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:281 +msgid "Shared" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:283 +msgid "Add Files" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:367 +#, php-format +msgid "You are using %1$s of your available file storage." +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:372 +#, php-format +msgid "You are using %1$s of %2$s available file storage. (%3$s%)" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:383 +msgid "WARNING:" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:395 +msgid "Create new folder" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:397 +msgid "Upload file" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:410 +msgid "Drop files here to immediately upload" +msgstr "" + +#: ../../Zotlabs/Widget/Activity.php:50 +msgctxt "widget" +msgid "Activity" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:36 +#, php-format +msgid "Show posts related to the %s privacy group" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:45 +msgid "Show my privacy groups" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:66 +msgid "Show posts to this forum" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:73 +#: ../../Zotlabs/Widget/Forums.php:100 +#: ../../Zotlabs/Widget/Notifications.php:119 +#: ../../Zotlabs/Widget/Notifications.php:120 +msgid "Forums" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:77 +msgid "Show forums" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:91 +msgid "Starred Posts" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:95 +msgid "Show posts that I have starred" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:106 +msgid "Personal Posts" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:110 +msgid "Show posts that mention or involve me" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:131 +#, php-format +msgid "Show posts that I have filed to %s" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:141 +msgid "Show filed post categories" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:155 +msgid "Panel search" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:165 +msgid "Filter by name" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:180 +msgid "Remove active filter" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:196 +msgid "Stream Filters" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:90 +msgid "Commented Date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:94 +msgid "Order by last commented date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:97 +msgid "Posted Date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:101 +msgid "Order by last posted date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:104 +msgid "Date Unthreaded" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:108 +msgid "Order unthreaded by date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:123 +msgid "Stream Order" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 +msgid "Member registrations waiting for confirmation" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:29 +msgid "Inspect queue" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:31 +msgid "DB updates" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:56 +msgid "Addon Features" +msgstr "" + +#: ../../Zotlabs/Widget/Affinity.php:54 +msgid "Refresh" +msgstr "" + +#: ../../Zotlabs/Widget/Appstore.php:11 +msgid "App Collections" +msgstr "" + +#: ../../Zotlabs/Widget/Appstore.php:13 +msgid "Installed apps" +msgstr "" + +#: ../../Zotlabs/Widget/Archive.php:43 +msgid "Archives" +msgstr "" + +#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 +msgid "Bookmarked Chatrooms" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:37 +msgid "Select Channel" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:42 +msgid "Read-write" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:43 +msgid "Read-only" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:117 +msgid "My Calendars" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:119 +msgid "Shared Calendars" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:123 +msgid "Share this calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:125 +msgid "Calendar name and color" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:127 +msgid "Create new calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:129 +msgid "Calendar Name" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:130 +msgid "Calendar Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:131 +msgid "Import calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:132 +msgid "Select a calendar to import to" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:159 +msgid "Addressbooks" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:161 +msgid "Addressbook name" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:163 +msgid "Create new addressbook" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:164 +msgid "Addressbook Name" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:166 +msgid "Addressbook Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:167 +msgid "Import addressbook" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:168 +msgid "Select an addressbook to import to" +msgstr "" + +#: ../../Zotlabs/Widget/Chatroom_list.php:20 +msgid "Overview" +msgstr "" + +#: ../../Zotlabs/Widget/Chatroom_members.php:11 +msgid "Chat Members" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:17 +msgid "Received Messages" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:21 +msgid "Sent Messages" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:25 +msgid "Conversations" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:37 +msgid "No messages." +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:57 +msgid "Delete conversation" +msgstr "" + +#: ../../Zotlabs/Widget/Cover_photo.php:65 +msgid "Click to show more" +msgstr "" + +#: ../../Zotlabs/Widget/Eventstools.php:13 +msgid "Events Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Eventstools.php:14 +msgid "Export Calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Eventstools.php:15 +msgid "Import Calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:22 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:29 +msgid "Add New Connection" +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:30 +msgid "Enter channel address" +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:31 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "" + +#: ../../Zotlabs/Widget/Hq_controls.php:14 +msgid "HQ Control Panel" +msgstr "" + +#: ../../Zotlabs/Widget/Hq_controls.php:17 +msgid "Create a new post" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:13 +msgid "Private Mail Menu" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:15 +msgid "Combined View" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:20 +msgid "Inbox" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:25 +msgid "Outbox" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:30 +msgid "New Message" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:31 +msgid "Profile Creation" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:33 +msgid "Upload profile photo" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:34 +msgid "Upload cover photo" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:38 +msgid "Find and Connect with others" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:40 +msgid "View the directory" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:42 +msgid "Manage your connections" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:45 +msgid "Communicate" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:47 +msgid "View your channel homepage" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:48 +msgid "View your network stream" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:54 +msgid "Documentation" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:57 +msgid "Missing Features?" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:59 +msgid "Pin apps to navigation bar" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:60 +msgid "Install more apps" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:71 +msgid "View public stream" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:16 +msgid "New Network Activity" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:17 +msgid "New Network Activity Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:20 +msgid "View your network activity" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:23 +msgid "Mark all notifications read" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:26 +#: ../../Zotlabs/Widget/Notifications.php:45 +#: ../../Zotlabs/Widget/Notifications.php:152 +msgid "Show new posts only" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:122 +#: ../../Zotlabs/Widget/Notifications.php:153 +msgid "Filter by name or address" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:35 +msgid "New Home Activity" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:36 +msgid "New Home Activity Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:39 +msgid "View your home activity" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:42 +#: ../../Zotlabs/Widget/Notifications.php:149 +msgid "Mark all notifications seen" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:54 +msgid "New Mails" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:55 +msgid "New Mails Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:58 +msgid "View your private mails" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:61 +msgid "Mark all messages seen" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:69 +msgid "New Events" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:70 +msgid "New Events Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:73 +msgid "View events" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:76 +msgid "Mark all events seen" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:85 +msgid "New Connections Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:88 +msgid "View all connections" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:96 +msgid "New Files" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:97 +msgid "New Files Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:104 +#: ../../Zotlabs/Widget/Notifications.php:105 +msgid "Notices" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:108 +msgid "View all notices" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:111 +msgid "Mark all notices seen" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:132 +msgid "New Registrations" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:133 +msgid "New Registrations Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:143 +msgid "Public Stream Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:146 +msgid "View the public stream" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:161 +msgid "Sorry, you have got no notifications at the moment" +msgstr "" + +#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 +msgid "photo/image" +msgstr "" + +#: ../../Zotlabs/Widget/Rating.php:51 +msgid "Rating Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 +msgid "Rate Me" +msgstr "" + +#: ../../Zotlabs/Widget/Rating.php:60 +msgid "View Ratings" +msgstr "" + +#: ../../Zotlabs/Widget/Savedsearch.php:75 +msgid "Remove term" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:32 +msgid "Account settings" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:38 +msgid "Channel settings" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:46 +msgid "Display settings" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:53 +msgid "Manage locations" +msgstr "" + +#: ../../Zotlabs/Widget/Suggestedchats.php:32 +msgid "Suggested Chatrooms" +msgstr "" + +#: ../../Zotlabs/Widget/Suggestions.php:53 +msgid "Suggestions" +msgstr "" + +#: ../../Zotlabs/Widget/Suggestions.php:54 +msgid "See more..." +msgstr "" + +#: ../../Zotlabs/Widget/Tasklist.php:23 +msgid "Tasks" +msgstr "" + +#: ../../Zotlabs/Widget/Wiki_pages.php:34 +#: ../../Zotlabs/Widget/Wiki_pages.php:91 +msgid "Add new page" +msgstr "" + +#: ../../Zotlabs/Widget/Wiki_pages.php:85 +msgid "Wiki Pages" +msgstr "" + +#: ../../Zotlabs/Widget/Wiki_pages.php:96 +msgid "Page name" +msgstr "" + +#: ../../Zotlabs/Zot/Auth.php:152 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." +msgstr "" + +#: ../../Zotlabs/Zot/Auth.php:264 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "" diff --git a/view/ja/hstrings.php b/view/ja/hstrings.php index af3b271f4..dea8dba64 100644 --- a/view/ja/hstrings.php +++ b/view/ja/hstrings.php @@ -1,1084 +1,770 @@ = 2 && $n % 10 <= 4 && ($n % 100 < 12 || $n % 100 > 14) ? 1 : 2)); - } -} -App::$rtl = 0; -App::$strings["Source channel not found."] = "ソースチャンネルがみつかりません。"; -App::$strings["lonely"] = ""; -App::$strings["drunk"] = ""; -App::$strings["horny"] = ""; -App::$strings["stoned"] = ""; -App::$strings["fucked up"] = ""; -App::$strings["clusterfucked"] = ""; -App::$strings["crazy"] = ""; -App::$strings["hurt"] = ""; -App::$strings["sleepy"] = ""; -App::$strings["grumpy"] = ""; -App::$strings["high"] = ""; -App::$strings["semi-conscious"] = ""; -App::$strings["in love"] = ""; -App::$strings["in lust"] = ""; -App::$strings["naked"] = ""; -App::$strings["stinky"] = ""; -App::$strings["sweaty"] = ""; -App::$strings["bleeding out"] = ""; -App::$strings["victorious"] = ""; -App::$strings["defeated"] = ""; -App::$strings["envious"] = ""; -App::$strings["jealous"] = ""; -App::$strings["Post to Dreamwidth"] = ""; -App::$strings["Enable Dreamwidth Post Plugin"] = ""; -App::$strings["No"] = "No"; -App::$strings["Yes"] = "Yes"; -App::$strings["Dreamwidth username"] = ""; -App::$strings["Dreamwidth password"] = ""; -App::$strings["Post to Dreamwidth by default"] = ""; -App::$strings["Dreamwidth Post Settings"] = ""; -App::$strings["Submit"] = "送信"; -App::$strings["Markdown"] = "まーくだうん"; -App::$strings["Use markdown for editing posts"] = "ポストの編集にMarkdownを使用する"; -App::$strings["You're welcome."] = "ようこそ!"; -App::$strings["Ah shucks..."] = ""; -App::$strings["Don't mention it."] = "これにメンションしないで"; -App::$strings["<blush>"] = ""; -App::$strings["Send test email"] = "テストメールを送信"; -App::$strings["No recipients found."] = ""; -App::$strings["Mail sent."] = "メールを送信しました。"; -App::$strings["Sending of mail failed."] = "メールの送信に失敗しました。"; -App::$strings["Mail Test"] = "メールテスト"; -App::$strings["Message subject"] = "メッセージのタイトル"; -App::$strings["Project Servers and Resources"] = "プロジェクトサーバーとリソース"; -App::$strings["Project Creator and Tech Lead"] = ""; -App::$strings["Admin, developer, directorymin, support bloke"] = ""; -App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = ""; -App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = "Redmatrix/hubzillaプロジェクトは寄付によって成り立っています"; -App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - you do.)"] = "企業の資金や広告はありません。また、個人情報を収集して販売することはありません。 (私たちはあなたの個人情報を管理していません。)"; -App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "分散化、Web ID、およびプライバシーに関する当社の革新的な作業を支援します。"; -App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "あなたの寄付はサーバーとサービスを稼働させ続け、革新的な新機能と継続的な開発を提供するのにも役立ちます。"; -App::$strings["Donate"] = "寄付"; -App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "1回限りの寄付で支援するプロジェクト、開発者、または公共の拠点を選択してください"; -App::$strings["Donate Now"] = "今寄付する"; -App::$strings["Or become a project sponsor (Hubzilla Project only)"] = "またはプロジェクトのスポンサーになる(Hubzillaプロジェクトのみ)"; -App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "あなたが私たちのスポンサーリストにあなたのファーストネームまたはフルネーム(あるいはニックネーム)を載せて欲しいかどうかも明記してください。"; -App::$strings["Sponsor"] = "スポンサー"; -App::$strings["Special thanks to: "] = "スペシャルサンクス : "; -App::$strings["Currently blocked"] = "現在のブロック"; -App::$strings["No channels currently blocked"] = "現在ブロックしているチャンネルはありません。"; -App::$strings["Remove"] = "削除"; -App::$strings["Superblock Settings"] = "Superblockの設定"; -App::$strings["Block Completely"] = "完璧にブロック"; -App::$strings["superblock settings updated"] = "Superblockの設定は更新されました。"; -App::$strings["XMPP settings updated."] = "XMPPの設定は更新されました。"; -App::$strings["Enable Chat"] = "チャットの有効化"; -App::$strings["Individual credentials"] = "アクセス権限の設定"; -App::$strings["Jabber BOSH server"] = ""; -App::$strings["XMPP Settings"] = "XMPPの設定"; -App::$strings["Save Settings"] = "設定の保存"; -App::$strings["Jabber BOSH host"] = ""; -App::$strings["Use central userbase"] = ""; -App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = ""; -App::$strings["Settings updated."] = "設定は更新されました"; -App::$strings["Send email to all members"] = "全てのメンバーにメールを送信する"; -App::$strings["%s Administrator"] = "%sのアドミン"; -App::$strings["%1\$d of %2\$d messages sent."] = "%"; -App::$strings["Send email to all hub members."] = "hubの全てのメンバーへメールを送信しました。"; -App::$strings["Sender Email address"] = "送信者のメールアドレス"; -App::$strings["Test mode (only send to hub administrator)"] = "テストモード (hubのアドミンにのみ送信されます)"; -App::$strings["Report Bug"] = "バグ報告"; -App::$strings["Post to Insanejournal"] = ""; -App::$strings["Enable InsaneJournal Post Plugin"] = ""; -App::$strings["InsaneJournal username"] = ""; -App::$strings["InsaneJournal password"] = ""; -App::$strings["Post to InsaneJournal by default"] = ""; -App::$strings["InsaneJournal Post Settings"] = ""; -App::$strings["Insane Journal Settings saved."] = ""; -App::$strings["Hubzilla Directory Stats"] = "Hubzilla ディレクトリ ステータス"; -App::$strings["Total Hubs"] = "全てのhub"; -App::$strings["Hubzilla Hubs"] = ""; -App::$strings["Friendica Hubs"] = ""; -App::$strings["Diaspora Pods"] = ""; -App::$strings["Hubzilla Channels"] = "Hubzillaチャンネル"; -App::$strings["Friendica Channels"] = "Friendicaチャンネル"; -App::$strings["Diaspora Channels"] = "Diasporaチャンネル"; -App::$strings["Aged 35 and above"] = "年齢 : 35歳やそれ以上"; -App::$strings["Aged 34 and under"] = "年齢 : 34歳やそれ以下"; -App::$strings["Average Age"] = "平均年齢"; -App::$strings["Known Chatrooms"] = "既知のチャットルーム"; -App::$strings["Known Tags"] = "既知のタグ"; -App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = ""; -App::$strings["Invalid game."] = ""; -App::$strings["You are not a player in this game."] = "あなたはこのゲームのプレーヤーではありません。"; -App::$strings["You must be a local channel to create a game."] = "あなたがゲームを作成するためにはローカルチャンネルに移動する必要があります。"; -App::$strings["You must select one opponent that is not yourself."] = "相手を選んでください。"; -App::$strings["Random color chosen."] = "ランダムにカラーを選択しました。"; -App::$strings["Error creating new game."] = "ゲーム作成のエラーです"; -App::$strings["Requested channel is not available."] = "リクエストされたチャンネルは存在しません。"; -App::$strings["You must select a local channel /chess/channelname"] = "ローカルチャンネルを選択する必要があります /chess/channelname"; -App::$strings["You must be logged in to see this page."] = "このページを表示するにはログインする必要があります。"; -App::$strings["Enable notifications"] = "通知の有効化"; -App::$strings["Planets Settings updated."] = "Planetsの設定は適用されました。"; -App::$strings["Enable Planets Plugin"] = "Planetsプラグインの有効化"; -App::$strings["Planets Settings"] = "Planetsの設定"; -App::$strings["Post to Libertree"] = ""; -App::$strings["Enable Libertree Post Plugin"] = "Libertreeプラグインの有効化"; -App::$strings["Libertree API token"] = ""; -App::$strings["Libertree site URL"] = ""; -App::$strings["Post to Libertree by default"] = ""; -App::$strings["Libertree Post Settings"] = ""; -App::$strings["Libertree Settings saved."] = ""; -App::$strings["Only authenticate automatically to sites of your friends"] = ""; -App::$strings["By default you are automatically authenticated anywhere in the network"] = "通常はあなたは自動的にどのネットワークでも認証されます。"; -App::$strings["Authchoose Settings"] = ""; -App::$strings["Atuhchoose Settings updated."] = ""; -App::$strings["Logfile archive directory"] = ""; -App::$strings["Directory to store rotated logs"] = ""; -App::$strings["Logfile size in bytes before rotating"] = ""; -App::$strings["Number of logfiles to retain"] = ""; -App::$strings["QR code"] = "QRコード"; -App::$strings["QR Generator"] = ""; -App::$strings["Enter some text"] = "テキストを入力"; -App::$strings["text to include in all outgoing posts from this site"] = ""; -App::$strings["file"] = "ファイル"; -App::$strings["Permission denied"] = "権限がありません"; -App::$strings["Redmatrix File Storage Import"] = ""; -App::$strings["This will import all your Redmatrix cloud files to this channel."] = "チャンネルにRedmatrixのクラウドファイルをインポートします。"; -App::$strings["Redmatrix Server base URL"] = "RedmatrixサーバーのURL"; -App::$strings["Redmatrix Login Username"] = "Redmatrixログイン名"; -App::$strings["Redmatrix Login Password"] = "Redmatrixパスワード"; -App::$strings["Deactivate the feature"] = ""; -App::$strings["Hide the button and show the smilies directly."] = ""; -App::$strings["Smileybutton Settings"] = ""; -App::$strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Этот плагин просматривает публикации для слов / текста, которые вы указываете ниже, и сворачивает любой контент, содержащий эти ключевые слова, поэтому он не отображается в неподходящее время, например, сексуальные инсинуации, которые могут быть неправильными в настройке работы. Например, мы рекомендуем отмечать любой контент, содержащий наготу, тегом #NSFW. Этот фильтр также способен реагировать на любое другое указанное вами слово / текст и может использоваться в качестве фильтра содержимого общего назначения."; -App::$strings["Enable Content filter"] = "コンテンツフィルターの有効化"; -App::$strings["Comma separated list of keywords to hide"] = "隠したいキーワードコンテンツをコンマで仕切ってください。"; -App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = ""; -App::$strings["Not Safe For Work Settings"] = "NSFW設定"; -App::$strings["General Purpose Content Filter"] = ""; -App::$strings["NSFW Settings saved."] = "NSFW設定は保存されました。"; -App::$strings["Possible adult content"] = ""; -App::$strings["%s - view"] = "%s - 表示"; -App::$strings["Flattr this!"] = ""; -App::$strings["Flattr widget settings updated."] = ""; -App::$strings["Flattr user"] = ""; -App::$strings["URL of the Thing to flattr"] = ""; -App::$strings["If empty channel URL is used"] = ""; -App::$strings["Title of the Thing to flattr"] = ""; -App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = ""; -App::$strings["Static or dynamic flattr button"] = ""; -App::$strings["static"] = ""; -App::$strings["dynamic"] = ""; -App::$strings["Alignment of the widget"] = ""; -App::$strings["left"] = ""; -App::$strings["right"] = ""; -App::$strings["Enable Flattr widget"] = ""; -App::$strings["Flattr Widget Settings"] = ""; -App::$strings["Permission denied."] = "権限がありません。"; -App::$strings["You are now authenticated to pumpio."] = "pumpioに接続されました。"; -App::$strings["return to the featured settings page"] = ""; -App::$strings["Post to Pump.io"] = "Pump.ioへ投稿"; -App::$strings["Pump.io servername"] = "Pump.ioのサーバー名"; -App::$strings["Without \"http://\" or \"https://\""] = ""; -App::$strings["Pump.io username"] = "Pump.ioユーザー名"; -App::$strings["Without the servername"] = "サーバー名以外"; -App::$strings["You are not authenticated to pumpio"] = "Pump.ioと認証されました。"; -App::$strings["(Re-)Authenticate your pump.io connection"] = "Pump.ioと再認証されました。"; -App::$strings["Enable pump.io Post Plugin"] = "Pump.io投稿プラグインを有効化"; -App::$strings["Post to pump.io by default"] = "Pump.ioへの投稿をデフォルトにする"; -App::$strings["Should posts be public"] = "パブリックへ投稿"; -App::$strings["Mirror all public posts"] = "全てのパブリック投稿をミラーする"; -App::$strings["Pump.io Post Settings"] = "Pump.io投稿設定"; -App::$strings["PumpIO Settings saved."] = "Pump.ioの設定を保存しました"; -App::$strings["Save Bookmarks"] = "ブックマークに保存する"; -App::$strings["Status:"] = "配偶者:"; -App::$strings["Activate addon"] = "アドオンのアクティベート"; -App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = ""; -App::$strings["Jabber username"] = ""; -App::$strings["Jabber server"] = "Jabberサーバー"; -App::$strings["Jabber BOSH host URL"] = ""; -App::$strings["Jabber password"] = "Jabberパスワード"; -App::$strings["Encrypt Jabber password with Hubzilla password"] = ""; -App::$strings["Recommended"] = "オンを推奨"; -App::$strings["Hubzilla password"] = ""; -App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = ""; -App::$strings["Purge internal list of jabber addresses of contacts"] = ""; -App::$strings["Configuration Help"] = "設定のヘルプ"; -App::$strings["Add Contact"] = "コンタクトの追加"; -App::$strings["Jappix Mini Settings"] = "Jappix Miniの設定"; -App::$strings["Post to LiveJournal"] = "LiveJournalへの投稿"; -App::$strings["Enable LiveJournal Post Plugin"] = "LiveJournalの有効化"; -App::$strings["LiveJournal username"] = "LiveJournalユーザー名"; -App::$strings["LiveJournal password"] = "LiveJournalパスワード"; -App::$strings["Post to LiveJournal by default"] = "デフォルトでLiveJournalへ投稿"; -App::$strings["LiveJournal Post Settings"] = "LiveJournal投稿設定"; -App::$strings["LiveJournal Settings saved."] = "LiveJournal設定は保存されました。"; -App::$strings["Errors encountered deleting database table "] = ""; -App::$strings["Submit Settings"] = "設定の適用"; -App::$strings["Drop tables when uninstalling?"] = "アンインストール時にデータベーステーブルをDropしますか?"; -App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "チェックしていた場合、アンインストール時にデータベースが削除されます。"; -App::$strings["Mapbox Access Token"] = "Mapboxアクセストークン"; -App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = "MapBoxアクセストークンを登録していた場合、OpenStreetMapサーバーにMapBoxを乗せて表示されます(翻訳不定)"; -App::$strings["Rendezvous"] = ""; -App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "このアイデンティティはあなたがいない間に他のメンバーによって削除されました。\"New identity\"を押すかページをリフレッシュして新しいアイデンティティを登録してください。同じ名前を使用できるかもしれません。"; -App::$strings["Welcome to Rendezvous!"] = "Rendezvousへようこそ!"; -App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "あなたの名前を入力してRendezvousに参加しましょう!位置情報の共有を開始するにはGPSへのアクセスをサイトに許可してください。 位置情報が認識されると、赤いドットが出現して他のユーザーもあなたの位置を確認できるようになります。"; -App::$strings["Let's meet here"] = "ここで会おう!"; -App::$strings["Name"] = "名前"; -App::$strings["Description"] = "説明"; -App::$strings["New marker"] = "新しいマーカー"; -App::$strings["Edit marker"] = "マーカーの編集"; -App::$strings["New identity"] = ""; -App::$strings["Delete marker"] = "マーカーの編集"; -App::$strings["Delete member"] = "メンバーの削除"; -App::$strings["Edit proximity alert"] = "接近アラートの編集"; -App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = "接近アラートはメンバーが指定した半径の内側に入った時に発動します。

半径を入力してください(0なら無効になります):"; -App::$strings["distance"] = "距離"; -App::$strings["Proximity alert distance (meters)"] = "アラートが発動する距離(メートル)"; -App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = "接近アラートはあなたが指定したマーカーの指定した半径の内側に入った時に発動します。

半径を入力してください(0なら無効になります):"; -App::$strings["Marker proximity alert"] = "マーカー接近アラート"; -App::$strings["Reminder note"] = "リマインダーメモ"; -App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "メモを入力するとあなたが指定範囲に接近した時にメモが表示されます。"; -App::$strings["Add new rendezvous"] = "新しいRendezvousを追加"; -App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "新しいRadezvousを作成しグループの仲間と位置情報を交換します。リンクを共有することで他のユーザーが見ることができます。マップにマーカー等を設置することもできます。"; -App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "まだRendezvousを作成していません。ボタンを押してRandezvousを作成しましょう!"; -App::$strings["Errors encountered creating database tables."] = ""; -App::$strings["View Larger"] = "大きく見る"; -App::$strings["Tile Server URL"] = ""; -App::$strings["A list of public tile servers"] = ""; -App::$strings["Nominatim (reverse geocoding) Server URL"] = ""; -App::$strings["A list of Nominatim servers"] = ""; -App::$strings["Default zoom"] = ""; -App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "デフォルトのズームレベルです。(1:ワールド 18:最大)"; -App::$strings["Include marker on map"] = "マップにマーカーを含める"; -App::$strings["Include a marker on the map."] = "マップにマーカーを含める"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "指定したOpenIDでログイン中に問題が発生しました。 IDの正しいつづりを確認してください。"; -App::$strings["The error message was:"] = "エラーメッセージ:"; -App::$strings["OpenID protocol error. No ID returned."] = "OpenIDプロトコルのエラーです。IDがreturnしませんでした。"; -App::$strings["Welcome %s. Remote authentication successful."] = "ようこそ、%s. リモートログインは成功しました。"; -App::$strings["Login failed."] = "ログインに失敗しました。"; -App::$strings["First Name"] = "名"; -App::$strings["Last Name"] = "姓"; -App::$strings["Nickname"] = "ニックネーム"; -App::$strings["Full Name"] = "フルネーム"; -App::$strings["Email"] = "Eメール"; -App::$strings["Profile Photo"] = "プロファイル画像"; -App::$strings["Profile Photo 16px"] = "プロファイル画像 16px"; -App::$strings["Profile Photo 32px"] = "プロファイル画像 32px"; -App::$strings["Profile Photo 48px"] = "プロファイル画像 48px"; -App::$strings["Profile Photo 64px"] = "プロファイル画像 64px"; -App::$strings["Profile Photo 80px"] = "プロファイル画像 80px"; -App::$strings["Profile Photo 128px"] = "プロファイル画像 128px"; -App::$strings["Timezone"] = "タイムゾーン"; -App::$strings["Homepage URL"] = "ホームページのURL"; -App::$strings["Language"] = "言語"; -App::$strings["Birth Year"] = "誕生年"; -App::$strings["Birth Month"] = "誕生月"; -App::$strings["Birth Day"] = "誕生日"; -App::$strings["Birthdate"] = "誕生日"; -App::$strings["Gender"] = "性別"; -App::$strings["Male"] = "男性"; -App::$strings["Female"] = "女性"; -App::$strings["Your Webbie:"] = ""; -App::$strings["Fontsize (px):"] = "フォントサイズ (px):"; -App::$strings["Link:"] = "リンク:"; -App::$strings["Like us on Hubzilla"] = ""; -App::$strings["Embed:"] = ""; -App::$strings["Extended Identity Sharing"] = "拡張アイデンティティ共有"; -App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "アイデンティティを全てのウェブサイトとインターネットで共有します。オフにすると、アイデンティティは \$Projectname のサイトでのみ表示されます。"; -App::$strings["An account has been created for you."] = "あなたによってアカウントが作成されました。"; -App::$strings["Authentication successful but rejected: account creation is disabled."] = "認証は通りましたがアクセスは拒否されました: アカウント作成が無効になっています。"; -App::$strings["Post to Twitter"] = "Twitterへ投稿"; -App::$strings["Twitter settings updated."] = "Twitter設定は更新されました。"; -App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Twitterへのアクセスに使うコンシューマーキーがありません。管理者に報告してください。"; -App::$strings["At this Hubzilla instance the Twitter plugin 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."] = "このhubzillaインスタンスではTwitterプラグインが有効になっていますが、あなたのアカウントは接続されていません。下のボタンをクリックしてTwitterのPINを取得しコピーして貼り付けてください。"; -App::$strings["Log in with Twitter"] = "Twitterにログイン"; -App::$strings["Copy the PIN from Twitter here"] = ""; -App::$strings["Currently connected to: "] = "接続中:"; -App::$strings["Note: Due 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."] = "注:プライバシー設定のため(不明な閲覧者からプロフィールの詳細を非表示にしますか?)、Twitterへの公開投稿に含まれる可能性のあるリンクをクリックすると、訪問者に空白のページが表示されます。 あなたのプロフィールへのアクセスは制限されています。"; -App::$strings["Allow posting to Twitter"] = "Twitterへ投稿"; -App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "チェックを入れておくと、パブリックな投稿がデフォルトでTwitterに投稿するようになります。"; -App::$strings["Twitter post length"] = "Twitterに投稿する長さ"; -App::$strings["Maximum tweet length"] = "最大の長さ"; -App::$strings["Send public postings to Twitter by default"] = "デフォルトでTwitterに投稿する"; -App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "チェックを入れておくと、パブリックな投稿がデフォルトでTwitterに投稿するようになります。"; -App::$strings["Clear OAuth configuration"] = "OAuth設定を閉じる"; -App::$strings["Twitter Post Settings"] = ""; -App::$strings["Consumer Key"] = "コンシューマーキー"; -App::$strings["Consumer Secret"] = "シークレットキー"; -App::$strings["Flag Adult Photos"] = "アダルト投稿フラグを使用する"; -App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "投稿する画像が\"不適切な画像\"として伏せられるようになります。"; -App::$strings["Unknown"] = ""; -App::$strings["ActivityPub"] = ""; -App::$strings["photo"] = "画像"; -App::$strings["status"] = "投稿"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$sが%2\$sの%3\$sにいいね!しました。"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s わるいね! %2\$s %3\$s"; -App::$strings["ActivityPub Protocol Settings updated."] = "ActivityPubプロトコル設定は更新されました。"; -App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Activity pub プロトコルはNomadic Identityをサポートしていません。チャンネルのクローン先からは投稿の表示をすることはできなくなっています。"; -App::$strings["Enable the ActivityPub protocol for this channel"] = "このチャンネルでActivity pubを有効化する"; -App::$strings["Deliver to ActivityPub recipients in privacy groups"] = "Activitypubユーザーの含まれるプライバシーグループの範囲選択時でも送信する"; -App::$strings["May result in a large number of mentions and expose all the members of your privacy group"] = "投稿は大量のメンション、ダイレクトメッセージで構成されることになるはずです。"; -App::$strings["Send multi-media HTML articles"] = "Multi-media HTML articlesを送信する"; -App::$strings["Not supported by some microblog services such as Mastodon"] = "Mastodonのようないくつかのマイクロブログサービスはこの機能をサポートしていません。"; -App::$strings["ActivityPub Protocol Settings"] = "ActivityPubの設定"; -App::$strings["No username found in import file."] = "インポートファイルにユーザー名がありません。"; -App::$strings["Unable to create a unique channel address. Import failed."] = "ユニークなチャンネルアドレスの作成に失敗しました。インポートに失敗しました。"; -App::$strings["Import completed."] = "インポートが完了しました。"; -App::$strings["\$projectname"] = ""; -App::$strings["Diaspora Protocol Settings updated."] = "Diasporaプロトコル設定は更新されました。"; -App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Diasporaは他鯖送信に対応しておりません。他のhubからは表示できない可能性があります。"; -App::$strings["Enable the Diaspora protocol for this channel"] = "このチャンネルにDiasporaプロコルを有効化する"; -App::$strings["Allow any Diaspora member to comment on your public posts"] = "どんなDisporaメンバーにもコメントを許可する"; -App::$strings["Prevent your hashtags from being redirected to other sites"] = "ハッシュタグが他のサイトにリダイレクトされないようにする"; -App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Diasporaの存在しない署名で出版物やコメントに署名して送る"; -App::$strings["Followed hashtags (comma separated, do not include the #)"] = "ハッシュタグをフォローする(コンマで仕切り、#は含まないで)"; -App::$strings["Diaspora Protocol Settings"] = "Diasporaプロトコル設定"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$sにアテンドしています"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$sにアテンドしていません"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$sにアテンドするかもしれません"; -App::$strings["System defaults:"] = "システムデフォルト:"; -App::$strings["Preferred Clipart IDs"] = ""; -App::$strings["List of preferred clipart ids. These will be shown first."] = ""; -App::$strings["Default Search Term"] = ""; -App::$strings["The default search term. These will be shown second."] = ""; -App::$strings["Return After"] = ""; -App::$strings["Page to load after image selection."] = ""; -App::$strings["View Profile"] = "ユーザー情報"; -App::$strings["Edit Profile"] = "Edit Profile"; -App::$strings["Profile List"] = "プロファイルリスト"; -App::$strings["Order of Preferred"] = ""; -App::$strings["Sort order of preferred clipart ids."] = ""; -App::$strings["Newest first"] = ""; -App::$strings["As entered"] = ""; -App::$strings["Order of other"] = ""; -App::$strings["Sort order of other clipart ids."] = ""; -App::$strings["Most downloaded first"] = ""; -App::$strings["Most liked first"] = ""; -App::$strings["Preferred IDs Message"] = ""; -App::$strings["Message to display above preferred results."] = "上記の結果の上に合致するメッセージ"; -App::$strings["Uploaded by: "] = "アップロード者:"; -App::$strings["Drawn by: "] = "執筆者:"; -App::$strings["Use this image"] = "この画像を使用"; -App::$strings["Or select from a free OpenClipart.org image:"] = "又はOpenClipart.orgのフリー画像を使用する。"; -App::$strings["Search Term"] = ""; -App::$strings["Unknown error. Please try again later."] = "原因不明のエラーです。後でやり直してください。"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "もし写真の変更後に反映されていない場合はキャッシュを削除してページを再読み込みしてみてください。"; -App::$strings["Profile photo updated successfully."] = "プロファイル画像のアップロードに成功しました。"; -App::$strings["Edit your profile and change settings."] = "プロファイルの編集と設定の変更"; -App::$strings["Click here to see activity from your connections."] = "クリックしてコネクションからのアクティビティを表示"; -App::$strings["Click here to see your channel home."] = "クリックしてチャンネルのホームを表示"; -App::$strings["You can access your private messages from here."] = "ここからプライベートメッセージを表示できます。"; -App::$strings["Create new events here."] = "ここから新しいイベントを作成できます。"; -App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = "新しいコネクションの許可や権限の変更ができます。また、コネクションのグループ分けをすることができます。"; -App::$strings["System notifications will arrive here"] = "届いた通知はここに表示されます。"; -App::$strings["Search for content and users"] = "コンテンツやユーザーを検索する"; -App::$strings["Browse for new contacts"] = "新しいコンタクトを表示する"; -App::$strings["Launch installed apps"] = "インストール済みのアプリを起動する"; -App::$strings["Looking for help? Click here."] = "ヘルプを見るにはここをクリック"; -App::$strings["New events have occurred in your network. Click here to see what has happened!"] = "新しいイベントが貴方のネットワークで発生しました!ここをクリックして何が起きてるのか確認しましょう!"; -App::$strings["You have received a new private message. Click here to see from who!"] = "プライベートメッセージを取得しました!ここをクリックして表示しましょう!"; -App::$strings["There are events this week. Click here too see which!"] = "この一週間のイベントです。クリックして詳細を確認しましょう!"; -App::$strings["You have received a new introduction. Click here to see who!"] = "新しいフォロー要求がありました!クリックして確認しましょう!"; -App::$strings["There is a new system notification. Click here to see what has happened!"] = "新しいシステム通知です!クリックして確認しましょう!"; -App::$strings["Click here to share text, images, videos and sound."] = "ここをクリックしてテキストや画像、映像や音声を共有できます。"; -App::$strings["You can write an optional title for your update (good for long posts)."] = "任意でタイトルを書くことができます(より長い投稿に有効です)。"; -App::$strings["Entering some categories here makes it easier to find your post later."] = "カテゴリーを作成して簡単に投稿を整理することができます。"; -App::$strings["Share photos, links, location, etc."] = "画像、リンク、位置情報等を共有する"; -App::$strings["Only want to share content for a while? Make it expire at a certain date."] = "一定期間しか共有したくない?投稿に期限を設けましょう!"; -App::$strings["You can password protect content."] = "パスワードで投稿をプロテクトすることができます。"; -App::$strings["Choose who you share with."] = "誰と共有するか選んでください。"; -App::$strings["Click here when you are done."] = "終了した時にクリックしてください。"; -App::$strings["Adjust from which channels posts should be displayed."] = ""; -App::$strings["Only show posts from channels in the specified privacy group."] = "プライバシーグループの中での投稿のみを表示する"; -App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = "ハッシュタグを使用して投稿を簡単に見つけられるようになります。 (キーワードの前にハッシュタグ\"#\"を付けてください)。"; -App::$strings["Easily find posts in given category."] = "カテゴリーを設定して簡単に投稿を発見できるようにする"; -App::$strings["Easily find posts by date."] = "日付で投稿を発見できるようにする"; -App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = ""; -App::$strings["Here you see channels you have connected to."] = "あなたがコネクトしているチャンネルを見ることができます。"; -App::$strings["Save your search so you can repeat it at a later date."] = "あなたの検索履歴を保存しリピートすることができます。"; -App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = ""; -App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = ""; -App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

You can also advance by pressing the return key"] = " -Hubzillaへようこそ!ウェルカムツアーを開始しませんか?

これはいつでも一時停止できるしページを再読み込みしてから再開することもできます。

You can also advance by pressing the return key"; -App::$strings["Some setting"] = ""; -App::$strings["A setting"] = ""; -App::$strings["Skeleton Settings"] = ""; -App::$strings["Show Upload Limits"] = "アップロードリミットを見る"; -App::$strings["Hubzilla configured maximum size: "] = "hubzillaは最大サイズに変更されました :"; -App::$strings["PHP upload_max_filesize: "] = ""; -App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = ""; -App::$strings["GNU-Social Protocol Settings updated."] = "GNU Socialプロトコル設定はアップデートされました。"; -App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "GNU Socialプロトコルはhubzillaのクローン機能をサポートしていません。他のhubからはこのアカウントの投稿は表示できない可能性があります。"; -App::$strings["Enable the GNU-Social protocol for this channel"] = "このチャンネルでGNU Socialプロトコルを有効化する"; -App::$strings["GNU-Social Protocol Settings"] = "GNU Socialプロトコル設定"; -App::$strings["Follow"] = "フォロー"; -App::$strings["%1\$s is now following %2\$s"] = "%1\$sは%2\$sをフォローしています。"; -App::$strings["Gallery"] = "ギャラリー"; -App::$strings["Photo Gallery"] = "フォトギャラリー"; -App::$strings["Page to load after login"] = "ページはログインの後に表示されます。"; -App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = "例: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (空白でデフォルトのネットワークページ)."; -App::$strings["Startpage Settings"] = "スタートページ設定"; -App::$strings["Message to display on every page on this server"] = " -"; -App::$strings["Pageheader Settings"] = "ページヘッダー設定"; -App::$strings["pageheader Settings saved."] = "ページヘッダー設定は保存されました。"; -App::$strings["Three Dimensional Tic-Tac-Toe"] = "三次元Tic-Tac-Toe"; -App::$strings["3D Tic-Tac-Toe"] = ""; -App::$strings["New game"] = "新しいゲーム"; -App::$strings["New game with handicap"] = "ハンデありでニューゲーム"; -App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "3次元Tic-Tac-Toeは伝統的なゲームです。ちょっとカスタマイズされていることを除いて、ね。"; -App::$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."] = " -"; -App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "ハンデありのゲームは二段目の中央が封じられています。なぜなら先手のユーザーがそこを抑えると圧倒的に有利になってしまうからです。"; -App::$strings["You go first..."] = "お先にどうぞ...."; -App::$strings["I'm going first this time..."] = "先に行かせてもらいます。"; -App::$strings["You won!"] = "あなたの勝ちだ!"; -App::$strings["\"Cat\" game!"] = " -"; -App::$strings["I won!"] = "私の勝ちだ!"; -App::$strings["Fuzzloc Settings updated."] = ""; -App::$strings["Fuzzloc allows you to blur your precise location if your channel uses browser location mapping."] = ""; -App::$strings["Enable Fuzzloc Plugin"] = ""; -App::$strings["Minimum offset in meters"] = ""; -App::$strings["Maximum offset in meters"] = ""; -App::$strings["Fuzzloc Settings"] = ""; -App::$strings["Post to Friendica"] = "Friendicaへ投稿する"; -App::$strings["rtof Settings saved."] = "rtof設定は保存されました"; -App::$strings["Allow posting to Friendica"] = "Friendicaへの投稿を許可する"; -App::$strings["Send public postings to Friendica by default"] = ""; -App::$strings["Friendica API Path"] = ""; -App::$strings["https://{sitename}/api"] = ""; -App::$strings["Friendica login name"] = ""; -App::$strings["Friendica password"] = ""; -App::$strings["Hubzilla to Friendica Post Settings"] = ""; -App::$strings["Post to GNU social"] = "GNU Socialへ投稿する"; -App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = "サイト管理者へ連絡してください。
このAPI URLは存在しません。"; -App::$strings["We could not contact the GNU social API with the Path you entered."] = "Нам не удалось установить контакт с GNU Social API по введённому вами пути"; -App::$strings["GNU social settings updated."] = "Настройки GNU Social обновлены."; -App::$strings["Globally Available GNU social OAuthKeys"] = "Глобально доступные ключи OAuthKeys GNU Social"; -App::$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)."] = "Существуют предварительно настроенные пары ключей OAuth для некоторых доступных серверов GNU social. Если вы используете один из них, используйте эти учетные данные.
Если вы не хотите подключаться к какому-либо другому серверу GNU social (см. ниже)."; -App::$strings["Provide your own OAuth Credentials"] = ""; -App::$strings["No consumer key pair for GNU social found. Register your Hubzilla 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 Hubzilla installation at your favourite GNU social installation."] = "
"; -App::$strings["OAuth Consumer Key"] = "Ключ клиента OAuth"; -App::$strings["OAuth Consumer Secret"] = "Пароль клиента OAuth"; -App::$strings["Base API Path"] = "Основной путь к API"; -App::$strings["Remember the trailing /"] = "Запомнить закрывающий /"; -App::$strings["GNU social application name"] = "Имя приложения GNU social"; -App::$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."] = "Чтобы подключиться к вашей учетной записи GNU social нажмите кнопку ниже для получения кода безопасности из GNU social, который вы должны скопировать в поле ввода ниже и отправить форму. Только ваши общедоступные сообщения будут опубликованы в GNU social."; -App::$strings["Log in with GNU social"] = "Войти с GNU social"; -App::$strings["Copy the security code from GNU social here"] = "Скопируйте код безопасности GNU social здесь"; -App::$strings["Cancel Connection Process"] = "Отменить процесс подключения"; -App::$strings["Current GNU social API is"] = "Текущий GNU social API"; -App::$strings["Cancel GNU social Connection"] = "Отменить подключение с GNU social"; -App::$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."] = "Замечание: Из-за настроек конфиденциальности (скрыть данные своего профиля от неизвестных зрителей?) cсылка, потенциально включенная в общедоступные публикации, переданные в GNU social, приведет посетителя к пустой странице, информирующей его о том, что доступ к вашему профилю был ограничен."; -App::$strings["Allow posting to GNU social"] = "Разрешить публиковать в GNU social"; -App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи GNU social"; -App::$strings["Post to GNU social by default"] = "Публиковать в GNU social по умолчанию"; -App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи GNU social по умолчанию"; -App::$strings["GNU social Post Settings"] = ""; -App::$strings["Site name"] = "Название сайта"; -App::$strings["API URL"] = ""; -App::$strings["Application name"] = "Название приложения"; -App::$strings["Enable Rainbowtag"] = "Включить Rainbowtag"; -App::$strings["Rainbowtag Settings"] = "Настройки Rainbowtag"; -App::$strings["Rainbowtag Settings saved."] = "Настройки Rainbowtag сохранены."; -App::$strings["Friendica Photo Album Import"] = "Импортировать альбом фотографий Friendica"; -App::$strings["This will import all your Friendica photo albums to this Red channel."] = "Это позволит импортировать все ваши альбомы фотографий Friendica в этот канал."; -App::$strings["Friendica Server base URL"] = "Базовый URL сервера Friendica"; -App::$strings["Friendica Login Username"] = "Имя пользователя для входа Friendica"; -App::$strings["Friendica Login Password"] = "Пароль для входа Firendica"; -App::$strings["This website is tracked using the Piwik analytics tool."] = "Этот сайт отслеживается с помощью инструментов аналитики Piwik."; -App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Если вы не хотите, чтобы ваши визиты регистрировались таким образом, вы можете отключить cookie с тем, чтобы Piwik не отслеживал дальнейшие посещения сайта."; -App::$strings["Piwik Base URL"] = "Базовый URL Piwik"; -App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Абсолютный путь к вашей установке Piwik (без типа протокола, с начальным слэшем)"; -App::$strings["Site ID"] = "ID сайта"; -App::$strings["Show opt-out cookie link?"] = "Показывать ссылку на отказ от использования cookies?"; -App::$strings["Asynchronous tracking"] = "Асинхронное отслеживание"; -App::$strings["Enable frontend JavaScript error tracking"] = "Включить отслеживание ошибок JavaScript на фронтенде."; -App::$strings["This feature requires Piwik >= 2.2.0"] = "Эта функция требует версию Piwik >= 2.2.0"; -App::$strings["Photos imported"] = "Фотографии импортированы"; -App::$strings["Redmatrix Photo Album Import"] = "Импортировать альбом фотографий Redmatrix"; -App::$strings["This will import all your Redmatrix photo albums to this channel."] = "Это позволит импортировать все ваши альбомы фотографий Redmatrix в этот канал."; -App::$strings["Import just this album"] = "Импортировать только этот альбом"; -App::$strings["Leave blank to import all albums"] = "Оставьте пустым для импорта всех альбомов"; -App::$strings["Maximum count to import"] = "Максимальное количество для импорта"; -App::$strings["0 or blank to import all available"] = "0 или пусто для импорта всех доступных"; -App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Искать %1\$s (%2\$s)"; -App::$strings["__ctx:opensearch__ \$Projectname"] = ""; -App::$strings["\$Projectname"] = ""; -App::$strings["Search \$Projectname"] = "Поиск \$Projectname"; -App::$strings["Recent Channel/Profile Viewers"] = ""; -App::$strings["This plugin/addon has not been configured."] = "このプラグイン/アドオンは設定されていません。"; -App::$strings["Please visit the Visage settings on %s"] = "%sのVisage Settingsに行ってください。"; -App::$strings["your feature settings page"] = "あなたのfeature設定ページ"; -App::$strings["No entries."] = ""; -App::$strings["Enable Visage Visitor Logging"] = ""; -App::$strings["Visage Settings"] = ""; -App::$strings["Error: order mismatch. Please try again."] = "Ошибка: несоответствие заказа. Пожалуйста, попробуйте ещё раз"; -App::$strings["Manual payments are not enabled."] = "Ручные платежи не подключены."; -App::$strings["Order not found."] = "Заказ не найден."; -App::$strings["Finished"] = "Завершено"; -App::$strings["Invalid channel"] = "Недействительный канал"; -App::$strings["[cart] Item Added"] = "[cart] Элемент добавлен"; -App::$strings["Order already checked out."] = "Заказ уже проверен."; -App::$strings["Enable Shopping Cart"] = "Включить корзину"; -App::$strings["Enable Test Catalog"] = "Включить тестовый каталог"; -App::$strings["Enable Manual Payments"] = "Включить ручные платежи"; -App::$strings["Base Merchant Currency"] = "Основная торговая валюта"; -App::$strings["Cart - Base Settings"] = "Корзина - Основные настройки"; -App::$strings["Shop"] = "Магазин"; -App::$strings["Profile Unavailable."] = "Профиль недоступен."; -App::$strings["Order Not Found"] = "Заказ не найден"; -App::$strings["You must be logged into the Grid to shop."] = "Вы должны быть в сети для доступа к магазину"; -App::$strings["Cart Not Enabled (profile: "] = "Корзина не подключена (профиль:"; -App::$strings["Access denied."] = "Доступ запрещён."; -App::$strings["No Order Found"] = "Нет найденных заказов"; -App::$strings["An unknown error has occurred Please start again."] = "Произошла неизвестная ошибка. Пожалуйста, начните снова."; -App::$strings["Invalid Payment Type. Please start again."] = "Недействительный тип платежа. Пожалуйста, начните снова."; -App::$strings["Order not found"] = "Заказ не найден"; -App::$strings["Enable Paypal Button Module"] = "Включить модуль кнопки Paypal"; -App::$strings["Use Production Key"] = "Использовать ключ Production"; -App::$strings["Paypal Sandbox Client Key"] = "Ключ клиента Paypal Sandbox"; -App::$strings["Paypal Sandbox Secret Key"] = "Секретный ключ Paypal Sandbox"; -App::$strings["Paypal Production Client Key"] = "Ключ клиента Paypal Production"; -App::$strings["Paypal Production Secret Key"] = "Секретный ключ Paypal Production"; -App::$strings["Cart - Paypal Addon"] = "Корзина - Paypal плагин"; -App::$strings["Paypal button payments are not enabled."] = "Кнопка Paypal для платежей не включена."; -App::$strings["Paypal button payments are not properly configured. Please choose another payment option."] = "Кнопка Paypal для платежей настроена неправильно. Пожалуйста, используйте другой вариант оплаты."; -App::$strings["Enable Hubzilla Services Module"] = "Включить модуль сервиса Hubzilla"; -App::$strings["Cart - Hubzilla Services Addon"] = "Корзина - плагин сервиса Hubzilla"; -App::$strings["New Sku"] = "Новый код"; -App::$strings["Cannot save edits to locked item."] = "Невозможно сохранить изменения заблокированной позиции."; -App::$strings["SKU not found."] = "Код не найден."; -App::$strings["Invalid Activation Directive."] = "Недействительная директива активации."; -App::$strings["Invalid Deactivation Directive."] = "Недействительная директива деактивации"; -App::$strings["Add to this privacy group"] = "Добавить в эту группу безопасности"; -App::$strings["Set user service class"] = "Установить класс обслуживания пользователя"; -App::$strings["You must be using a local account to purchase this service."] = "Вы должны использовать локальную учётноую запись для покупки этого сервиса."; -App::$strings["Changes Locked"] = "Изменения заблокированы"; -App::$strings["Item available for purchase."] = "Позиция доступна для приобретения."; -App::$strings["Price"] = "Цена"; -App::$strings["Add buyer to privacy group"] = "Добавить покупателя в группу безопасности"; -App::$strings["Add buyer as connection"] = "Добавить покупателя как контакт"; -App::$strings["Set Service Class"] = "Установить класс обслуживания"; -App::$strings["Access Denied."] = "Доступ запрещён."; -App::$strings["Access Denied"] = "Доступ запрещён"; -App::$strings["Invalid Item"] = "Недействительный элемент"; -App::$strings["Nsabait Settings updated."] = "Настройки Nsabait обновлены"; -App::$strings["Enable NSAbait Plugin"] = "Включить плагин NSAbait"; -App::$strings["NSAbait Settings"] = "Настройки Nsabait"; -App::$strings["Hubzilla File Storage Import"] = "Импорт файлового хранилища Hubzilla"; -App::$strings["This will import all your cloud files from another server."] = "Это позволит импортировать все ваши файлы с другого сервера."; -App::$strings["Hubzilla Server base URL"] = "Базовый URL сервера Hubzilla"; -App::$strings["Since modified date yyyy-mm-dd"] = "Начиная с даты изменений yyyy-mm-dd"; -App::$strings["Until modified date yyyy-mm-dd"] = "Заканчивая датой изменений yyyy-mm-dd"; -App::$strings["Federate"] = ""; -App::$strings["nofed Settings saved."] = "Настройки nofed сохранены."; -App::$strings["Allow Federation Toggle"] = "Разрешить переключение федерации"; -App::$strings["Federate posts by default"] = "Разрешить федерацию публикаций по умолчанию"; -App::$strings["NoFed Settings"] = "Настройки NoFed"; -App::$strings["generic profile image"] = "Стандартное изображение профиля"; -App::$strings["random geometric pattern"] = "Случайный геометрический рисунок"; -App::$strings["monster face"] = "Лицо чудовища"; -App::$strings["computer generated face"] = "Сгенерированное компьютером лицо"; -App::$strings["retro arcade style face"] = "Лицо в стиле старой аркадной игры"; -App::$strings["Hub default profile photo"] = "Фотография профиля по умолчанию"; -App::$strings["Information"] = "Информация"; -App::$strings["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."] = "Плагин Libravatar также установлен. Пожалуйста, отключите плагин Libravatar или этот плагин Gravatar. Если Плагин Libravatar ничего не найдёт, он вернётся в Gravatar."; -App::$strings["Default avatar image"] = "Изображение аватара по умолчанию"; -App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "Выберите изображения аватар по умолчанию если ничего не было найдено в Gravatar (см. README)."; -App::$strings["Rating of images"] = "Оценки изображений"; -App::$strings["Select the appropriate avatar rating for your site. See README"] = "Выберите подходящую оценку аватара для вашего сайта (см. README)."; -App::$strings["Gravatar settings updated."] = "Настройки Gravatar обновлены."; -App::$strings["Post to Red"] = "Опубликовать в Red"; -App::$strings["Channel is required."] = "チャンネルが必要です。"; -App::$strings["Invalid channel."] = "Недействительный канал."; -App::$strings["redred Settings saved."] = "Настройки RedRed сохранены."; -App::$strings["Allow posting to another Hubzilla Channel"] = ""; -App::$strings["Send public postings to Hubzilla channel by default"] = ""; -App::$strings["Hubzilla API Path"] = ""; -App::$strings["Hubzilla login name"] = ""; -App::$strings["Hubzilla channel name"] = ""; -App::$strings["Hubzilla Crosspost Settings"] = ""; -App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = ""; -App::$strings["Chord names start with a root note (A-G) and may include sharps (#) and flats (b). This software will parse most of the standard naming conventions such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements."] = ""; -App::$strings["Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."] = "Примеры действительных включают A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."; -App::$strings["Guitar Chords"] = "ギターコード"; -App::$strings["The complete online chord dictionary"] = "Полный онлайн словарь аккордов"; -App::$strings["Tuning"] = "Настройка"; -App::$strings["Chord name: example: Em7"] = "Наименование аккорда - example: Em7"; -App::$strings["Show for left handed stringing"] = "Показывать струны для левшей"; -App::$strings["Quick Reference"] = "Быстрая ссылка"; -App::$strings["New registration"] = "Новая регистрация"; -App::$strings["%s : Message delivery failed."] = "%s : Доставка сообщения не удалась."; -App::$strings["Message sent to %s. New account registration: %s"] = "Сообщение отправлено в %s. Регистрация нового аккаунта: %s"; -App::$strings["Channels to auto connect"] = ""; -App::$strings["Comma separated list"] = ""; -App::$strings["Popular Channels"] = ""; -App::$strings["IRC Settings"] = ""; -App::$strings["IRC settings saved."] = ""; -App::$strings["IRC Chatroom"] = "Чат IRC"; -App::$strings["bitchslap"] = "дать леща"; -App::$strings["bitchslapped"] = "получил леща"; -App::$strings["shag"] = "вздрючить"; -App::$strings["shagged"] = "вздрюченный"; -App::$strings["patent"] = ""; -App::$strings["patented"] = ""; -App::$strings["hug"] = "обнять"; -App::$strings["hugged"] = "обнятый"; -App::$strings["murder"] = "убить"; -App::$strings["murdered"] = "убитый"; -App::$strings["worship"] = "почитать"; -App::$strings["worshipped"] = "почитаемый"; -App::$strings["kiss"] = "целовать"; -App::$strings["kissed"] = "поцелованный"; -App::$strings["tempt"] = "искушать"; -App::$strings["tempted"] = "искушённый"; -App::$strings["raise eyebrows at"] = "поднять брови"; -App::$strings["raised their eyebrows at"] = "поднял брови"; -App::$strings["insult"] = "оскорбить"; -App::$strings["insulted"] = "оскорблённый"; -App::$strings["praise"] = "хвалить"; -App::$strings["praised"] = "похваленный"; -App::$strings["be dubious of"] = "усомниться"; -App::$strings["was dubious of"] = "усомнился"; -App::$strings["eat"] = "есть"; -App::$strings["ate"] = "съел"; -App::$strings["giggle and fawn at"] = ""; -App::$strings["giggled and fawned at"] = ""; -App::$strings["doubt"] = "сомневаться"; -App::$strings["doubted"] = "сомневался"; -App::$strings["glare"] = ""; -App::$strings["glared at"] = ""; -App::$strings["fuck"] = "трахнуть"; -App::$strings["fucked"] = "трахнул"; -App::$strings["bonk"] = ""; -App::$strings["bonked"] = ""; -App::$strings["declare undying love for"] = "признаться в любви к"; -App::$strings["declared undying love for"] = "признался в любви к"; -App::$strings["Post to WordPress"] = "Опубликовать в WordPress"; -App::$strings["Enable WordPress Post Plugin"] = "Включить плагин публикаций WordPress"; -App::$strings["WordPress username"] = "Имя пользователя WordPress"; -App::$strings["WordPress password"] = "Пароль WordPress"; -App::$strings["WordPress API URL"] = "URL API WordPress"; -App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "Обычно https://your-blog.tld/xmlrpc.php"; -App::$strings["WordPress blogid"] = ""; -App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "Для многопользовательских сайтов, таких, как wordpress.com. В противном случае оставьте пустым"; -App::$strings["Post to WordPress by default"] = "Публиковать в WordPress по умолчанию"; -App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Пересылать комментарии (требуется плагин hubzilla_wp)"; -App::$strings["WordPress Post Settings"] = "Настройки публикации в WordPress"; -App::$strings["Wordpress Settings saved."] = "Настройки WordPress сохранены."; -App::$strings["Who likes me?"] = "Кому я нравлюсь?"; -App::$strings["Your account on %s will expire in a few days."] = "Ваш аккаунт на %s перестанет работать через несколько дней."; -App::$strings["Your $Productname test account is about to expire."] = "Срок действия пробного аккаунта в $Productname близок к окончанию."; -App::$strings["Create an account to access services and applications"] = "Создайте аккаунт для доступа к службам и приложениям"; -App::$strings["Register"] = "登録"; -App::$strings["Logout"] = "ログアウト"; -App::$strings["Login"] = "ログイン"; -App::$strings["Stream"] = "ストリーム"; -App::$strings["Remote Authentication"] = "リモートログインをする"; -App::$strings["Login/Email"] = "ログイン / email"; -App::$strings["Password"] = "パスワード"; -App::$strings["Remember me"] = "ログイン情報を記憶する"; -App::$strings["Forgot your password?"] = "パスワードを忘れましたか?"; -App::$strings["Password Reset"] = "パスワードのリセット"; -App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Ошибка SSL/TLS веб-сайта для %s"; -App::$strings["Website SSL certificate is not valid. Please correct."] = "SSL/TLS сертификат веб-сайт недействителен. Исправьте это."; -App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Задания Cron не запущены на %s"; -App::$strings["Cron/Scheduled tasks not running."] = "Задания Cron / планировщика не запущены."; +; +App::$strings["Create an account to access services and applications"] = ""; +App::$strings["Register"] = ""; +App::$strings["Logout"] = ""; +App::$strings["Login"] = ""; +App::$strings["Remote Authentication"] = ""; +App::$strings["Login/Email"] = ""; +App::$strings["Password"] = ""; +App::$strings["Remember me"] = ""; +App::$strings["No"] = ""; +App::$strings["Yes"] = ""; +App::$strings["Forgot your password?"] = ""; +App::$strings["Password Reset"] = ""; +App::$strings["[\$Projectname] Website SSL error for %s"] = ""; +App::$strings["Website SSL certificate is not valid. Please correct."] = ""; +App::$strings["[\$Projectname] Cron tasks not running on %s"] = ""; +App::$strings["Cron/Scheduled tasks not running."] = ""; App::$strings["never"] = ""; -App::$strings["Default"] = "デフォルト"; -App::$strings["Focus (Hubzilla default)"] = ""; -App::$strings["Theme settings"] = "テーマ設定"; -App::$strings["Narrow navbar"] = ""; -App::$strings["Navigation bar background color"] = ""; -App::$strings["Navigation bar icon color "] = ""; -App::$strings["Navigation bar active icon color "] = ""; -App::$strings["Link color"] = ""; -App::$strings["Set font-color for banner"] = ""; -App::$strings["Set the background color"] = ""; -App::$strings["Set the background image"] = ""; -App::$strings["Set the background color of items"] = ""; -App::$strings["Set the background color of comments"] = ""; -App::$strings["Set font-size for the entire application"] = ""; -App::$strings["Examples: 1rem, 100%, 16px"] = ""; -App::$strings["Set font-color for posts and comments"] = ""; -App::$strings["Set radius of corners"] = ""; -App::$strings["Example: 4px"] = ""; -App::$strings["Set shadow depth of photos"] = ""; -App::$strings["Set maximum width of content region in pixel"] = ""; -App::$strings["Leave empty for default width"] = ""; -App::$strings["Set size of conversation author photo"] = ""; -App::$strings["Set size of followup author photos"] = ""; -App::$strings["Image/photo"] = "イメージ / 画像"; -App::$strings["Encrypted content"] = "暗号化済みコンテンツ"; -App::$strings["Install %1\$s element %2\$s"] = "%1\$sエレメント%2\$sをインストールする"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "この投稿にはインストール可能な要素%sが含まれています。ただし、このサイトにインストールする権限がありません。"; -App::$strings["webpage"] = "ウェブページ"; -App::$strings["layout"] = "レイアウト"; -App::$strings["block"] = "ブロック"; -App::$strings["menu"] = "メニュー"; -App::$strings["card"] = "カード"; -App::$strings["article"] = "記事"; -App::$strings["post"] = "この投稿"; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$sが%3\$sに%2\$sをしました。"; -App::$strings["Click to open/close"] = ""; -App::$strings["spoiler"] = ""; -App::$strings["View article"] = "記事を見る"; -App::$strings["View summary"] = "概略へ戻る"; -App::$strings["Different viewers will see this text differently"] = "他のユーザーにはこのテキストは違って見えます。"; -App::$strings["$1 wrote:"] = "$1が書きました:"; -App::$strings["Not a valid email address"] = "無効なメールアドレスです。"; -App::$strings["Your email domain is not among those allowed on this site"] = "このメールアドレスにはこのサイトで許可されていないドメインが使用されています。"; -App::$strings["Your email address is already registered at this site."] = "このメールアドレスは既に使用されています。"; -App::$strings["An invitation is required."] = "招待状が必要です。"; -App::$strings["Invitation could not be verified."] = "招待状は利用できませんでした。"; -App::$strings["Please enter the required information."] = "必須情報を確認してください。"; -App::$strings["Failed to store account information."] = "アカウント情報を保存できませんでした。"; +App::$strings["Not a valid email address"] = ""; +App::$strings["Your email domain is not among those allowed on this site"] = ""; +App::$strings["Your email address is already registered at this site."] = ""; +App::$strings["An invitation is required."] = ""; +App::$strings["Invitation could not be verified."] = ""; +App::$strings["Please enter the required information."] = ""; +App::$strings["Failed to store account information."] = ""; App::$strings["Registration confirmation for %s"] = ""; App::$strings["Registration request at %s"] = ""; -App::$strings["your registration password"] = "あなたの登録パスワード"; -App::$strings["Registration details for %s"] = "%sの登録状況"; -App::$strings["Account approved."] = "アカウントが承認されました。"; -App::$strings["Registration revoked for %s"] = "%sによって登録は取り消されました。"; -App::$strings["Click here to upgrade."] = "ここをクリックしてアップグレード"; -App::$strings["This action exceeds the limits set by your subscription plan."] = "このアクションは、購読プランで設定されている制限を超えています。"; -App::$strings["This action is not available under your subscription plan."] = "Это действие невозможно из-за ограничений в вашем плане."; -App::$strings["Delegation session ended."] = "Делегированная сессия завершена."; -App::$strings["Logged out."] = "ログアウトしました。"; -App::$strings["Email validation is incomplete. Please check your email."] = "Eメール認証は完了していません。メールをチェックしてください。"; -App::$strings["Failed authentication"] = "登録に失敗しました。"; -App::$strings["event"] = "イベント"; -App::$strings["channel"] = "チャンネル"; -App::$strings["comment"] = "コメント"; -App::$strings["likes %1\$s's %2\$s"] = "%1\$sの %2\$sをいいね!しました。"; -App::$strings["doesn't like %1\$s's %2\$s"] = "%1\$sの %2\$sをわるいね!しました。"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$sは%2\$sにコネクトしました。"; -App::$strings["%1\$s poked %2\$s"] = "%1\$sは%2\$sをpokeしました。"; +App::$strings["your registration password"] = ""; +App::$strings["Registration details for %s"] = ""; +App::$strings["Account approved."] = ""; +App::$strings["Registration revoked for %s"] = ""; +App::$strings["Click here to upgrade."] = ""; +App::$strings["This action exceeds the limits set by your subscription plan."] = ""; +App::$strings["This action is not available under your subscription plan."] = ""; +App::$strings["Visible to your default audience"] = ""; +App::$strings["__ctx:acl__ Profile"] = ""; +App::$strings["Only me"] = ""; +App::$strings["Who can see this?"] = ""; +App::$strings["Custom selection"] = ""; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = ""; +App::$strings["Show"] = ""; +App::$strings["Don't show"] = ""; +App::$strings["Search"] = ""; +App::$strings["Permissions"] = ""; +App::$strings["Close"] = ""; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = ""; +App::$strings[" and "] = ""; +App::$strings["public profile"] = ""; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = ""; +App::$strings["Visit %1\$s's %2\$s"] = ""; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; +App::$strings["Permission denied."] = ""; +App::$strings["Item was not found."] = ""; +App::$strings["Unknown error."] = ""; +App::$strings["No source file."] = ""; +App::$strings["Cannot locate file to replace"] = ""; +App::$strings["Cannot locate file to revise/update"] = ""; +App::$strings["File exceeds size limit of %d"] = ""; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = ""; +App::$strings["File upload failed. Possible system limit or action terminated."] = ""; +App::$strings["Stored file could not be verified. Upload failed."] = ""; +App::$strings["Path not available."] = ""; +App::$strings["Empty pathname"] = ""; +App::$strings["duplicate filename or path"] = ""; +App::$strings["Path not found."] = ""; +App::$strings["mkdir failed."] = ""; +App::$strings["database storage failed."] = ""; +App::$strings["Empty path"] = ""; +App::$strings["Delegation session ended."] = ""; +App::$strings["Logged out."] = ""; +App::$strings["Email validation is incomplete. Please check your email."] = ""; +App::$strings["Failed authentication"] = ""; +App::$strings["Login failed."] = ""; +App::$strings["Image/photo"] = ""; +App::$strings["Encrypted content"] = ""; +App::$strings["Install %1\$s element %2\$s"] = ""; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = ""; +App::$strings["webpage"] = ""; +App::$strings["layout"] = ""; +App::$strings["block"] = ""; +App::$strings["menu"] = ""; +App::$strings["card"] = ""; +App::$strings["article"] = ""; +App::$strings["post"] = ""; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = ""; +App::$strings["Click to open/close"] = ""; +App::$strings["spoiler"] = ""; +App::$strings["View article"] = ""; +App::$strings["View summary"] = ""; +App::$strings["Different viewers will see this text differently"] = ""; +App::$strings["$1 wrote:"] = ""; +App::$strings["%1\$s's bookmarks"] = ""; +App::$strings["Unable to obtain identity information from database"] = ""; +App::$strings["Empty name"] = ""; +App::$strings["Name too long"] = ""; +App::$strings["No account identifier"] = ""; +App::$strings["Nickname is required."] = ""; +App::$strings["Reserved nickname. Please choose another."] = ""; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = ""; +App::$strings["Unable to retrieve created identity"] = ""; +App::$strings["Default Profile"] = ""; +App::$strings["Friends"] = ""; +App::$strings["Unable to retrieve modified identity"] = ""; +App::$strings["Requested channel is not available."] = ""; +App::$strings["Requested profile is not available."] = ""; +App::$strings["Change profile photo"] = ""; +App::$strings["Edit Profiles"] = ""; +App::$strings["Edit"] = ""; +App::$strings["Create New Profile"] = ""; +App::$strings["Edit Profile"] = ""; +App::$strings["Profile Image"] = ""; +App::$strings["Visible to everybody"] = ""; +App::$strings["Edit visibility"] = ""; +App::$strings["Connect"] = ""; +App::$strings["Location:"] = ""; +App::$strings["Gender:"] = ""; +App::$strings["Status:"] = ""; +App::$strings["Homepage:"] = ""; +App::$strings["Online Now"] = ""; +App::$strings["Change your profile photo"] = ""; +App::$strings["Female"] = ""; +App::$strings["Male"] = ""; +App::$strings["Trans"] = ""; +App::$strings["Neuter"] = ""; +App::$strings["Non-specific"] = ""; +App::$strings["Full Name:"] = ""; +App::$strings["Like this channel"] = ""; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "", + 1 => "", +); +App::$strings["j F, Y"] = ""; +App::$strings["j F"] = ""; +App::$strings["Birthday:"] = ""; +App::$strings["Age:"] = ""; +App::$strings["for %1\$d %2\$s"] = ""; +App::$strings["Tags:"] = ""; +App::$strings["Sexual Preference:"] = ""; +App::$strings["Hometown:"] = ""; +App::$strings["Political Views:"] = ""; +App::$strings["Religion:"] = ""; +App::$strings["About:"] = ""; +App::$strings["Hobbies/Interests:"] = ""; +App::$strings["Likes:"] = ""; +App::$strings["Dislikes:"] = ""; +App::$strings["Contact information and Social Networks:"] = ""; +App::$strings["My other channels:"] = ""; +App::$strings["Musical interests:"] = ""; +App::$strings["Books, literature:"] = ""; +App::$strings["Television:"] = ""; +App::$strings["Film/dance/culture/entertainment:"] = ""; +App::$strings["Love/Romance:"] = ""; +App::$strings["Work/employment:"] = ""; +App::$strings["School/education:"] = ""; +App::$strings["Profile"] = ""; +App::$strings["Like this thing"] = ""; +App::$strings["Export"] = ""; +App::$strings["cover photo"] = ""; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = ""; +App::$strings["Authenticate"] = ""; +App::$strings["Account '%s' deleted"] = ""; +App::$strings["New window"] = ""; +App::$strings["Open the selected location in a different window or browser tab"] = ""; +App::$strings["Mobile"] = ""; +App::$strings["Home"] = ""; +App::$strings["Home, Voice"] = ""; +App::$strings["Home, Fax"] = ""; +App::$strings["Work"] = ""; +App::$strings["Work, Voice"] = ""; +App::$strings["Work, Fax"] = ""; +App::$strings["Other"] = ""; +App::$strings["%d invitation available"] = array( + 0 => "", + 1 => "", +); +App::$strings["Advanced"] = ""; +App::$strings["Find Channels"] = ""; +App::$strings["Enter name or interest"] = ""; +App::$strings["Connect/Follow"] = ""; +App::$strings["Examples: Robert Morgenstein, Fishing"] = ""; +App::$strings["Find"] = ""; +App::$strings["Channel Suggestions"] = ""; +App::$strings["Random Profile"] = ""; +App::$strings["Invite Friends"] = ""; +App::$strings["Advanced example: name=fred and country=iceland"] = ""; +App::$strings["Saved Folders"] = ""; +App::$strings["Everything"] = ""; +App::$strings["Categories"] = ""; +App::$strings["Common Connections"] = ""; +App::$strings["View all %d common connections"] = ""; +App::$strings["photo"] = ""; +App::$strings["event"] = ""; +App::$strings["channel"] = ""; +App::$strings["status"] = ""; +App::$strings["comment"] = ""; +App::$strings["%1\$s likes %2\$s's %3\$s"] = ""; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = ""; +App::$strings["likes %1\$s's %2\$s"] = ""; +App::$strings["doesn't like %1\$s's %2\$s"] = ""; +App::$strings["%1\$s is now connected with %2\$s"] = ""; +App::$strings["%1\$s poked %2\$s"] = ""; App::$strings["poked"] = ""; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s は %2\$s"; -App::$strings["This is an unsaved preview"] = "これはセーブされていないプレビューです。"; -App::$strings["__ctx:title__ Likes"] = "いいね!"; -App::$strings["__ctx:title__ Dislikes"] = "わるいね!"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = ""; +App::$strings["This is an unsaved preview"] = ""; +App::$strings["__ctx:title__ Likes"] = ""; +App::$strings["__ctx:title__ Dislikes"] = ""; App::$strings["__ctx:title__ Agree"] = ""; App::$strings["__ctx:title__ Disagree"] = ""; -App::$strings["__ctx:title__ Abstain"] = "欠席"; -App::$strings["__ctx:title__ Attending"] = "出席"; -App::$strings["__ctx:title__ Not attending"] = "出席しない"; -App::$strings["__ctx:title__ Might attend"] = "出席するかも"; -App::$strings["Select"] = "選択"; -App::$strings["Delete"] = "削除"; -App::$strings["Toggle Star Status"] = "ホシをつける"; -App::$strings["Private Message"] = "プライベートメッセージ"; -App::$strings["Message signature validated"] = "メッセージ署名が検証されました"; -App::$strings["Message signature incorrect"] = "メッセージ署名が正しくありません"; -App::$strings["Approve"] = "許可"; -App::$strings["View %s's profile @ %s"] = "%sのプロファイルを見る%s"; -App::$strings["Categories:"] = "カテゴリー:"; +App::$strings["__ctx:title__ Abstain"] = ""; +App::$strings["__ctx:title__ Attending"] = ""; +App::$strings["__ctx:title__ Not attending"] = ""; +App::$strings["__ctx:title__ Might attend"] = ""; +App::$strings["Select"] = ""; +App::$strings["Delete"] = ""; +App::$strings["Toggle Star Status"] = ""; +App::$strings["Private Message"] = ""; +App::$strings["Message signature validated"] = ""; +App::$strings["Message signature incorrect"] = ""; +App::$strings["Approve"] = ""; +App::$strings["View %s's profile @ %s"] = ""; +App::$strings["Categories:"] = ""; App::$strings["Filed under:"] = ""; -App::$strings["from %s"] = "via %s"; -App::$strings["last edited: %s"] = "最終更新: %s"; -App::$strings["Expires: %s"] = "期限: %s"; -App::$strings["View in context"] = "さらに表示..."; -App::$strings["Please wait"] = "お待ちください"; -App::$strings["remove"] = "削除"; -App::$strings["Loading..."] = "読み込み中....."; -App::$strings["Delete Selected Items"] = "選択した項目を削除"; -App::$strings["View Source"] = "ソースコードを見る"; -App::$strings["Follow Thread"] = "スレッドをフォローする"; -App::$strings["Unfollow Thread"] = "スレッドのフォローを解除"; -App::$strings["Recent Activity"] = "サーバーに届いているアクティビティ"; -App::$strings["Connect"] = "フォロー"; -App::$strings["Edit Connection"] = "コネクションの編集"; -App::$strings["Message"] = "メッセージ"; -App::$strings["Ratings"] = "レーティング"; +App::$strings["from %s"] = ""; +App::$strings["last edited: %s"] = ""; +App::$strings["Expires: %s"] = ""; +App::$strings["View in context"] = ""; +App::$strings["Please wait"] = ""; +App::$strings["remove"] = ""; +App::$strings["Loading..."] = ""; +App::$strings["Conversation Tools"] = ""; +App::$strings["Delete Selected Items"] = ""; +App::$strings["View Source"] = ""; +App::$strings["Follow Thread"] = ""; +App::$strings["Unfollow Thread"] = ""; +App::$strings["View Profile"] = ""; +App::$strings["Recent Activity"] = ""; +App::$strings["Edit Connection"] = ""; +App::$strings["Message"] = ""; +App::$strings["Ratings"] = ""; App::$strings["Poke"] = ""; -App::$strings["%s likes this."] = "%s人がいいね!"; -App::$strings["%s doesn't like this."] = "%s人がわるいね!"; -App::$strings["%2\$d people like this."] = "%2\$d人がいいね!しました。"; -App::$strings["%2\$d people don't like this."] = "%2\$d人がわるいね!しました。"; -App::$strings["and"] = "と"; -App::$strings[", and %d other people"] = array( - 0 => ", и ещё %d человеку", - 1 => ", и ещё %d человекам", - 2 => ", и ещё %d человекам", +App::$strings["Unknown"] = ""; +App::$strings["%s likes this."] = ""; +App::$strings["%s doesn't like this."] = ""; +App::$strings["%2\$d people like this."] = array( + 0 => "", + 1 => "", ); -App::$strings["%s like this."] = "%sがいいね!しました。"; -App::$strings["%s don't like this."] = "%sがわるいね!しました。"; -App::$strings["Set your location"] = "位置情報"; -App::$strings["Clear browser location"] = "ブラウザの位置情報を削除"; -App::$strings["Insert web link"] = "リンクの挿入"; -App::$strings["Embed (existing) photo from your photo albums"] = "アルバムから画像を選択"; -App::$strings["Please enter a link URL:"] = "URLを入力してください : "; -App::$strings["Tag term:"] = "タグの入力:"; -App::$strings["Where are you right now?"] = "位置情報を入力してください : "; -App::$strings["Choose images to embed"] = "画像を選択してください。"; -App::$strings["Choose an album"] = "アルバムを選択してください。"; -App::$strings["Choose a different album..."] = "アルバム選択に戻る"; -App::$strings["Error getting album list"] = "アルバムリストの取得に失敗しました..."; -App::$strings["Error getting photo link"] = "画像リンクの取得に失敗しました..."; -App::$strings["Error getting album"] = "アルバムの取得に失敗しました..."; -App::$strings["Comments enabled"] = "コメントは有効です。"; -App::$strings["Comments disabled"] = "コメントは無効です。"; -App::$strings["Preview"] = "プレビュー"; -App::$strings["Share"] = "投稿"; -App::$strings["Page link name"] = "ページリンク名"; -App::$strings["Post as"] = "投稿先"; -App::$strings["Bold"] = "太字"; -App::$strings["Italic"] = "斜体"; -App::$strings["Underline"] = "下線"; -App::$strings["Quote"] = "引用"; -App::$strings["Code"] = "プログラム"; -App::$strings["Attach/Upload file"] = "ファイルのアップロード"; -App::$strings["Embed an image from your albums"] = "アルバムから画像を選択"; -App::$strings["Cancel"] = "キャンセル"; +App::$strings["%2\$d people don't like this."] = array( + 0 => "", + 1 => "", +); +App::$strings["and"] = ""; +App::$strings[", and %d other people"] = array( + 0 => "", + 1 => "", +); +App::$strings["%s like this."] = ""; +App::$strings["%s don't like this."] = ""; +App::$strings["Set your location"] = ""; +App::$strings["Clear browser location"] = ""; +App::$strings["Insert web link"] = ""; +App::$strings["Embed (existing) photo from your photo albums"] = ""; +App::$strings["Please enter a link URL:"] = ""; +App::$strings["Tag term:"] = ""; +App::$strings["Where are you right now?"] = ""; +App::$strings["Choose images to embed"] = ""; +App::$strings["Choose an album"] = ""; +App::$strings["Choose a different album..."] = ""; +App::$strings["Error getting album list"] = ""; +App::$strings["Error getting photo link"] = ""; +App::$strings["Error getting album"] = ""; +App::$strings["Comments enabled"] = ""; +App::$strings["Comments disabled"] = ""; +App::$strings["Preview"] = ""; +App::$strings["Share"] = ""; +App::$strings["Page link name"] = ""; +App::$strings["Post as"] = ""; +App::$strings["Bold"] = ""; +App::$strings["Italic"] = ""; +App::$strings["Underline"] = ""; +App::$strings["Quote"] = ""; +App::$strings["Code"] = ""; +App::$strings["Attach/Upload file"] = ""; +App::$strings["Embed an image from your albums"] = ""; +App::$strings["Cancel"] = ""; App::$strings["OK"] = ""; -App::$strings["Toggle voting"] = "投票"; -App::$strings["Disable comments"] = "コメントの無効化(zot範囲内のみ)"; -App::$strings["Toggle comments"] = "コメント許可の切り変え"; -App::$strings["Title (optional)"] = "タイトル (任意)"; -App::$strings["Categories (optional, comma-separated list)"] = "カテゴリ指定 (任意、カンマで追加)"; -App::$strings["Permission settings"] = "投稿の表示範囲の設定"; -App::$strings["Other networks and post services"] = "他のネットワーク送信サービス"; -App::$strings["Set expiration date"] = "時限性投稿作成"; -App::$strings["Set publish date"] = "投稿作成予約"; -App::$strings["Encrypt text"] = "暗号化テキスト"; -App::$strings["Commented Order"] = "コメント順"; -App::$strings["Sort by Comment Date"] = "コメント順で並べる"; -App::$strings["Posted Order"] = "投稿順"; -App::$strings["Sort by Post Date"] = "投稿の作成日時で並べる"; -App::$strings["Personal"] = "基本情報"; -App::$strings["Posts that mention or involve you"] = "あなたへのメンション付き投稿を作成しました。"; -App::$strings["New"] = ""; -App::$strings["Activity Stream - by date"] = "アクティビティストリーム - 日付順"; -App::$strings["Starred"] = "ホシつけ済み"; -App::$strings["Favourite Posts"] = "ホシをつけた投稿"; -App::$strings["Spam"] = "スパム"; -App::$strings["Posts flagged as SPAM"] = "投稿にスパムフラグを建てる"; -App::$strings["Channel"] = "チャンネル"; -App::$strings["Status Messages and Posts"] = "メッセージや投稿のステータス"; -App::$strings["About"] = ""; -App::$strings["Profile Details"] = "プロファイルの詳細"; -App::$strings["Photos"] = "写真"; -App::$strings["Photo Albums"] = "フォトアルバム"; -App::$strings["Files"] = "ファイル"; -App::$strings["Files and Storage"] = "ファイルとストレージ"; -App::$strings["Events"] = "イベント"; -App::$strings["Chatrooms"] = "チャットルーム"; -App::$strings["Bookmarks"] = "ブックマーク"; -App::$strings["Saved Bookmarks"] = "保存済みのブックマーク"; -App::$strings["Cards"] = "カード"; -App::$strings["View Cards"] = "カードを見る"; -App::$strings["articles"] = "記事"; -App::$strings["View Articles"] = "記事を見る"; -App::$strings["Webpages"] = "Webページ"; -App::$strings["View Webpages"] = "Webページを見る"; -App::$strings["Wikis"] = ""; -App::$strings["Wiki"] = ""; -App::$strings["__ctx:noun__ Like"] = "いいね!"; -App::$strings["__ctx:noun__ Dislike"] = "わるいね!"; +App::$strings["Toggle voting"] = ""; +App::$strings["Disable comments"] = ""; +App::$strings["Toggle comments"] = ""; +App::$strings["Title (optional)"] = ""; +App::$strings["Categories (optional, comma-separated list)"] = ""; +App::$strings["Permission settings"] = ""; +App::$strings["Other networks and post services"] = ""; +App::$strings["Set expiration date"] = ""; +App::$strings["Set publish date"] = ""; +App::$strings["Encrypt text"] = ""; +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "", + 1 => "", +); App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Посетит", - 1 => "Посетят", - 2 => "Посетят", + 0 => "", + 1 => "", ); App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Не посетит", - 1 => "Не посетят", - 2 => "Не посетят", + 0 => "", + 1 => "", ); App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Не решил", - 1 => "Не решили", - 2 => "Не решили", + 0 => "", + 1 => "", ); App::$strings["__ctx:noun__ Agree"] = array( - 0 => "Согласен", - 1 => "Согласны", - 2 => "Согласны", + 0 => "", + 1 => "", ); App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Не согласен", - 1 => "Не согласны", - 2 => "Не согласны", + 0 => "", + 1 => "", ); App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "Воздержался", - 1 => "Воздержались", - 2 => "Воздержались", + 0 => "", + 1 => "", ); -App::$strings["Invalid data packet"] = "Неверный пакет данных"; -App::$strings["Unable to verify channel signature"] = "Невозможно проверить подпись канала"; -App::$strings["Unable to verify site signature for %s"] = "Невозможно проверить подпись сайта %s"; -App::$strings["invalid target signature"] = "недопустимая целевая подпись"; +App::$strings["Miscellaneous"] = ""; +App::$strings["Birthday"] = ""; +App::$strings["Age: "] = ""; +App::$strings["YYYY-MM-DD or MM-DD"] = ""; +App::$strings["Required"] = ""; +App::$strings["less than a second ago"] = ""; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = ""; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "", + 1 => "", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "", + 1 => "", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "", + 1 => "", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "", + 1 => "", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "", + 1 => "", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "", + 1 => "", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "", + 1 => "", +); +App::$strings["%1\$s's birthday"] = ""; +App::$strings["Happy Birthday %1\$s"] = ""; +App::$strings["Directory Options"] = ""; +App::$strings["Safe Mode"] = ""; +App::$strings["Public Forums Only"] = ""; +App::$strings["This Website Only"] = ""; App::$strings["l F d, Y \\@ g:i A"] = ""; -App::$strings["Starts:"] = "開始:"; -App::$strings["Finishes:"] = "終了:"; -App::$strings["Location:"] = "ロケーション"; -App::$strings["This event has been added to your calendar."] = "このイベントは貴方のカレンダーに追加されました。"; -App::$strings["Not specified"] = "Не указано"; -App::$strings["Needs Action"] = "Требует действия"; -App::$strings["Completed"] = "Завершено"; -App::$strings["In Process"] = "В процессе"; -App::$strings["Cancelled"] = "Отменено"; -App::$strings["Mobile"] = "携帯"; -App::$strings["Home"] = "家"; -App::$strings["Home, Voice"] = "Дом, голос"; -App::$strings["Home, Fax"] = "Дом, факс"; -App::$strings["Work"] = "仕事場"; -App::$strings["Work, Voice"] = "Работа, голос"; -App::$strings["Work, Fax"] = "Работа, факс"; -App::$strings["Other"] = "その他"; -App::$strings["Item was not found."] = "Элемент не найден."; -App::$strings["Unknown error."] = "Неизвестная ошибка."; -App::$strings["No source file."] = "Нет исходного файла."; -App::$strings["Cannot locate file to replace"] = "Не удается найти файл для замены"; -App::$strings["Cannot locate file to revise/update"] = "Не удается найти файл для пересмотра / обновления"; -App::$strings["File exceeds size limit of %d"] = "Файл превышает предельный размер %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Вы достигли предела %1$.0f Мбайт для хранения вложений."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Загрузка файла не удалась. Возможно система перегружена или попытка прекращена."; -App::$strings["Stored file could not be verified. Upload failed."] = "Файл для сохранения не может быть проверен. Загрузка не удалась."; -App::$strings["Path not available."] = "Путь недоступен."; -App::$strings["Empty pathname"] = "Пустое имя пути"; -App::$strings["duplicate filename or path"] = "дублирующееся имя файла или пути"; -App::$strings["Path not found."] = "Путь не найден."; -App::$strings["mkdir failed."] = "mkdir не удался"; -App::$strings["database storage failed."] = "ошибка при записи базы данных."; -App::$strings["Empty path"] = "Пустое имя пути"; -App::$strings["unknown"] = "неизвестный"; -App::$strings["%1\$s's bookmarks"] = "%1\$s"; -App::$strings["Directory Options"] = "ディレクトリオプション"; -App::$strings["Safe Mode"] = "セーフモード"; -App::$strings["Public Forums Only"] = "フォーラムのみ"; -App::$strings["This Website Only"] = "このサーバーのみ"; -App::$strings["view full size"] = "посмотреть в полный размер"; +App::$strings["Starts:"] = ""; +App::$strings["Finishes:"] = ""; +App::$strings["This event has been added to your calendar."] = ""; +App::$strings["Not specified"] = ""; +App::$strings["Needs Action"] = ""; +App::$strings["Completed"] = ""; +App::$strings["In Process"] = ""; +App::$strings["Cancelled"] = ""; +App::$strings["Off"] = ""; +App::$strings["On"] = ""; +App::$strings["CalDAV"] = ""; +App::$strings["Start calendar week on Monday"] = ""; +App::$strings["Default is Sunday"] = ""; +App::$strings["Channel Home"] = ""; +App::$strings["Search by Date"] = ""; +App::$strings["Ability to select posts by date ranges"] = ""; +App::$strings["Tag Cloud"] = ""; +App::$strings["Provide a personal tag cloud on your channel page"] = ""; +App::$strings["Use blog/list mode"] = ""; +App::$strings["Comments will be displayed separately"] = ""; +App::$strings["Connections"] = ""; +App::$strings["Connection Filtering"] = ""; +App::$strings["Filter incoming posts from connections based on keywords/content"] = ""; +App::$strings["Conversation"] = ""; +App::$strings["Community Tagging"] = ""; +App::$strings["Ability to tag existing posts"] = ""; +App::$strings["Emoji Reactions"] = ""; +App::$strings["Add emoji reaction ability to posts"] = ""; +App::$strings["Dislike Posts"] = ""; +App::$strings["Ability to dislike posts/comments"] = ""; +App::$strings["Star Posts"] = ""; +App::$strings["Ability to mark special posts with a star indicator"] = ""; +App::$strings["Directory"] = ""; +App::$strings["Advanced Directory Search"] = ""; +App::$strings["Allows creation of complex directory search queries"] = ""; +App::$strings["Editor"] = ""; +App::$strings["Post Categories"] = ""; +App::$strings["Add categories to your posts"] = ""; +App::$strings["Large Photos"] = ""; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = ""; +App::$strings["Even More Encryption"] = ""; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = ""; +App::$strings["Enable Voting Tools"] = ""; +App::$strings["Provide a class of post which others can vote on"] = ""; +App::$strings["Disable Comments"] = ""; +App::$strings["Provide the option to disable comments for a post"] = ""; +App::$strings["Delayed Posting"] = ""; +App::$strings["Allow posts to be published at a later date"] = ""; +App::$strings["Content Expiration"] = ""; +App::$strings["Remove posts/comments and/or private messages at a future time"] = ""; +App::$strings["Suppress Duplicate Posts/Comments"] = ""; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = ""; +App::$strings["Auto-save drafts of posts and comments"] = ""; +App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = ""; +App::$strings["Events"] = ""; +App::$strings["Smart Birthdays"] = ""; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = ""; +App::$strings["Event Timezone Selection"] = ""; +App::$strings["Allow event creation in timezones other than your own."] = ""; +App::$strings["Manage"] = ""; +App::$strings["Navigation Channel Select"] = ""; +App::$strings["Change channels directly from within the navigation dropdown menu"] = ""; +App::$strings["Network"] = ""; +App::$strings["Saved Searches"] = ""; +App::$strings["Save search terms for re-use"] = ""; +App::$strings["Ability to file posts under folders"] = ""; +App::$strings["Alternate Stream Order"] = ""; +App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = ""; +App::$strings["Contact Filter"] = ""; +App::$strings["Ability to display only posts of a selected contact"] = ""; +App::$strings["Forum Filter"] = ""; +App::$strings["Ability to display only posts of a specific forum"] = ""; +App::$strings["Personal Posts Filter"] = ""; +App::$strings["Ability to display only posts that you've interacted on"] = ""; +App::$strings["Photos"] = ""; +App::$strings["Photo Location"] = ""; +App::$strings["If location data is available on uploaded photos, link this to a map."] = ""; +App::$strings["Profiles"] = ""; +App::$strings["Advanced Profiles"] = ""; +App::$strings["Additional profile sections and selections"] = ""; +App::$strings["Profile Import/Export"] = ""; +App::$strings["Save and load profile details across sites/channels"] = ""; +App::$strings["Multiple Profiles"] = ""; +App::$strings["Ability to create multiple profiles"] = ""; +App::$strings["unknown"] = ""; +App::$strings["Channel is blocked on this site."] = ""; +App::$strings["Channel location missing."] = ""; +App::$strings["Response from remote channel was incomplete."] = ""; +App::$strings["Premium channel - please visit:"] = ""; +App::$strings["Channel was deleted and no longer exists."] = ""; +App::$strings["Remote channel or protocol unavailable."] = ""; +App::$strings["Channel discovery failed."] = ""; +App::$strings["Protocol disabled."] = ""; +App::$strings["Cannot connect to yourself."] = ""; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = ""; +App::$strings["Add new connections to this privacy group"] = ""; +App::$strings["edit"] = ""; +App::$strings["Privacy Groups"] = ""; +App::$strings["Edit group"] = ""; +App::$strings["Add privacy group"] = ""; +App::$strings["Channels not in any privacy group"] = ""; +App::$strings["add"] = ""; +App::$strings["Help:"] = ""; +App::$strings["Help"] = ""; +App::$strings["Not Found"] = ""; +App::$strings["Page not found."] = ""; +App::$strings["Unable to import a removed channel."] = ""; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = ""; +App::$strings["Unable to create a unique channel address. Import failed."] = ""; +App::$strings["Cloned channel not found. Import failed."] = ""; +App::$strings["Permission denied"] = ""; +App::$strings["(Unknown)"] = ""; +App::$strings["Visible to anybody on the internet."] = ""; +App::$strings["Visible to you only."] = ""; +App::$strings["Visible to anybody in this network."] = ""; +App::$strings["Visible to anybody authenticated."] = ""; +App::$strings["Visible to anybody on %s."] = ""; +App::$strings["Visible to all connections."] = ""; +App::$strings["Visible to approved connections."] = ""; +App::$strings["Visible to specific connections."] = ""; +App::$strings["Item not found."] = ""; +App::$strings["Privacy group not found."] = ""; +App::$strings["Privacy group is empty."] = ""; +App::$strings["Privacy group: %s"] = ""; +App::$strings["Connection: %s"] = ""; +App::$strings["Connection not found."] = ""; +App::$strings["female"] = ""; +App::$strings["%1\$s updated her %2\$s"] = ""; +App::$strings["male"] = ""; +App::$strings["%1\$s updated his %2\$s"] = ""; +App::$strings["%1\$s updated their %2\$s"] = ""; +App::$strings["profile photo"] = ""; +App::$strings["[Edited %s]"] = ""; +App::$strings["__ctx:edit_activity__ Post"] = ""; +App::$strings["__ctx:edit_activity__ Comment"] = ""; +App::$strings["Delete this item?"] = ""; +App::$strings["Comment"] = ""; +App::$strings["%s show all"] = ""; +App::$strings["%s show less"] = ""; +App::$strings["%s expand"] = ""; +App::$strings["%s collapse"] = ""; +App::$strings["Password too short"] = ""; +App::$strings["Passwords do not match"] = ""; +App::$strings["everybody"] = ""; +App::$strings["Secret Passphrase"] = ""; +App::$strings["Passphrase hint"] = ""; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = ""; +App::$strings["close all"] = ""; +App::$strings["Nothing new here"] = ""; +App::$strings["Rate This Channel (this is public)"] = ""; +App::$strings["Rating"] = ""; +App::$strings["Describe (optional)"] = ""; +App::$strings["Submit"] = ""; +App::$strings["Please enter a link URL"] = ""; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = ""; +App::$strings["Location"] = ""; +App::$strings["lovely"] = ""; +App::$strings["wonderful"] = ""; +App::$strings["fantastic"] = ""; +App::$strings["great"] = ""; +App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = ""; +App::$strings[") or enter a new one."] = ""; +App::$strings["Thank you, this nickname is valid."] = ""; +App::$strings["A channel name is required."] = ""; +App::$strings["This is a "] = ""; +App::$strings[" channel name"] = ""; +App::$strings["%d minutes"] = array( + 0 => "", + 1 => "", +); +App::$strings["about %d hours"] = array( + 0 => "", + 1 => "", +); +App::$strings["%d days"] = array( + 0 => "", + 1 => "", +); +App::$strings["%d months"] = array( + 0 => "", + 1 => "", +); +App::$strings["%d years"] = array( + 0 => "", + 1 => "", +); +App::$strings["timeago.prefixAgo"] = ""; +App::$strings["timeago.prefixFromNow"] = ""; +App::$strings["timeago.suffixAgo"] = ""; +App::$strings["timeago.suffixFromNow"] = ""; +App::$strings["less than a minute"] = ""; +App::$strings["about a minute"] = ""; +App::$strings["about an hour"] = ""; +App::$strings["a day"] = ""; +App::$strings["about a month"] = ""; +App::$strings["about a year"] = ""; +App::$strings[" "] = ""; +App::$strings["timeago.numbers"] = ""; +App::$strings["January"] = ""; +App::$strings["February"] = ""; +App::$strings["March"] = ""; +App::$strings["April"] = ""; +App::$strings["__ctx:long__ May"] = ""; +App::$strings["June"] = ""; +App::$strings["July"] = ""; +App::$strings["August"] = ""; +App::$strings["September"] = ""; +App::$strings["October"] = ""; +App::$strings["November"] = ""; +App::$strings["December"] = ""; +App::$strings["Jan"] = ""; +App::$strings["Feb"] = ""; +App::$strings["Mar"] = ""; +App::$strings["Apr"] = ""; +App::$strings["__ctx:short__ May"] = ""; +App::$strings["Jun"] = ""; +App::$strings["Jul"] = ""; +App::$strings["Aug"] = ""; +App::$strings["Sep"] = ""; +App::$strings["Oct"] = ""; +App::$strings["Nov"] = ""; +App::$strings["Dec"] = ""; +App::$strings["Sunday"] = ""; +App::$strings["Monday"] = ""; +App::$strings["Tuesday"] = ""; +App::$strings["Wednesday"] = ""; +App::$strings["Thursday"] = ""; +App::$strings["Friday"] = ""; +App::$strings["Saturday"] = ""; +App::$strings["Sun"] = ""; +App::$strings["Mon"] = ""; +App::$strings["Tue"] = ""; +App::$strings["Wed"] = ""; +App::$strings["Thu"] = ""; +App::$strings["Fri"] = ""; +App::$strings["Sat"] = ""; +App::$strings["__ctx:calendar__ today"] = ""; +App::$strings["__ctx:calendar__ month"] = ""; +App::$strings["__ctx:calendar__ week"] = ""; +App::$strings["__ctx:calendar__ day"] = ""; +App::$strings["__ctx:calendar__ All day"] = ""; +App::$strings["default"] = ""; +App::$strings["Select an alternate language"] = ""; +App::$strings["Download binary/encrypted content"] = ""; +App::$strings["Unable to determine sender."] = ""; +App::$strings["No recipient provided."] = ""; +App::$strings["[no subject]"] = ""; +App::$strings["Stored post could not be verified."] = ""; +App::$strings["Remote authentication"] = ""; +App::$strings["Click to authenticate to your home hub"] = ""; +App::$strings["Channel Manager"] = ""; +App::$strings["Manage your channels"] = ""; +App::$strings["Manage your privacy groups"] = ""; +App::$strings["Settings"] = ""; +App::$strings["Account/Channel Settings"] = ""; +App::$strings["End this session"] = ""; +App::$strings["Your profile page"] = ""; +App::$strings["Manage/Edit profiles"] = ""; +App::$strings["Edit your profile"] = ""; +App::$strings["Sign in"] = ""; +App::$strings["Take me home"] = ""; +App::$strings["Log me out of this site"] = ""; +App::$strings["Create an account"] = ""; +App::$strings["Help and documentation"] = ""; +App::$strings["Search site @name, !forum, #tag, ?docs, content"] = ""; +App::$strings["Admin"] = ""; +App::$strings["Site Setup and Configuration"] = ""; +App::$strings["Loading"] = ""; +App::$strings["@name, !forum, #tag, ?doc, content"] = ""; +App::$strings["Please wait..."] = ""; +App::$strings["Add Apps"] = ""; +App::$strings["Arrange Apps"] = ""; +App::$strings["Toggle System Apps"] = ""; +App::$strings["Channel"] = ""; +App::$strings["Status Messages and Posts"] = ""; +App::$strings["About"] = ""; +App::$strings["Profile Details"] = ""; +App::$strings["Photo Albums"] = ""; +App::$strings["Files"] = ""; +App::$strings["Files and Storage"] = ""; +App::$strings["Calendar"] = ""; +App::$strings["Chatrooms"] = ""; +App::$strings["Bookmarks"] = ""; +App::$strings["Saved Bookmarks"] = ""; +App::$strings["Cards"] = ""; +App::$strings["View Cards"] = ""; +App::$strings["Articles"] = ""; +App::$strings["View Articles"] = ""; +App::$strings["Webpages"] = ""; +App::$strings["View Webpages"] = ""; +App::$strings["Wikis"] = ""; +App::$strings["Wiki"] = ""; App::$strings["Friendica"] = ""; App::$strings["OStatus"] = ""; -App::$strings["GNU-Social"] = "GNU social"; +App::$strings["GNU-Social"] = ""; App::$strings["RSS/Atom"] = ""; +App::$strings["ActivityPub"] = ""; +App::$strings["Email"] = ""; App::$strings["Diaspora"] = ""; App::$strings["Facebook"] = ""; App::$strings["Zot"] = ""; App::$strings["LinkedIn"] = ""; App::$strings["XMPP/IM"] = ""; App::$strings["MySpace"] = ""; -App::$strings[" and "] = " と "; -App::$strings["public profile"] = "パブリックプロファイル"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s изменил %2\$s на “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "%1\$sの%2\$sを訪れる"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s обновлено %2\$s, изменено %3\$s."; -App::$strings["Remote authentication"] = "Удаленная аутентификация"; -App::$strings["Click to authenticate to your home hub"] = "Нажмите, чтобы аутентифицировать себя на домашнем узле"; -App::$strings["Channel Manager"] = "チャンネルの管理"; -App::$strings["Manage your channels"] = "Управление вашими каналами"; -App::$strings["Privacy Groups"] = "プライバシーグループ"; -App::$strings["Manage your privacy groups"] = "Управление вашим группами безопасности"; -App::$strings["Settings"] = "チャンネルの設定"; -App::$strings["Account/Channel Settings"] = "アカウント/チャンネルの設定"; -App::$strings["End this session"] = "このセッションの終了"; -App::$strings["Your profile page"] = "プロファイルページ"; -App::$strings["Edit Profiles"] = "ユーザー情報の編集"; -App::$strings["Manage/Edit profiles"] = "プロファイルの管理/編集"; -App::$strings["Edit your profile"] = "プロフィールを編集する"; -App::$strings["Sign in"] = "ログイン"; -App::$strings["Take me home"] = "自分のホームに戻る"; -App::$strings["Log me out of this site"] = "Выйти с этого сайта"; -App::$strings["Create an account"] = "アカウント作成"; -App::$strings["Help"] = "ヘルプ"; -App::$strings["Help and documentation"] = "ヘルプとドキュメント"; -App::$strings["Search"] = "検索"; -App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "@ユーザー, !フォーラム, #タグ, ?docs, contentsで検索"; -App::$strings["Admin"] = "管理画面"; -App::$strings["Site Setup and Configuration"] = "サイト設定"; -App::$strings["Loading"] = "読み込み"; -App::$strings["@name, !forum, #tag, ?doc, content"] = ""; -App::$strings["Please wait..."] = "お待ちください ..."; -App::$strings["Add Apps"] = "アプリの追加"; -App::$strings["Arrange Apps"] = "アプリの並び換え"; -App::$strings["Toggle System Apps"] = "システムアプリを表示する"; -App::$strings["Calendar"] = "カレンダー"; -App::$strings["Articles"] = "記事"; -App::$strings["Help:"] = "ヘルプ:"; -App::$strings["Not Found"] = ""; -App::$strings["Page not found."] = ""; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Удаленная группа с этим названием была восстановлена. Существующие разрешения пункт могут применяться к этой группе и к её будущих участников. Если это не то, чего вы хотели, пожалуйста, создайте другую группу с другим именем."; -App::$strings["Add new connections to this privacy group"] = "新しいコネクションをこのプライバシーグループに追加する"; -App::$strings["edit"] = "編集"; -App::$strings["Edit group"] = "グループの編集"; -App::$strings["Add privacy group"] = "プライバシーグループの追加"; -App::$strings["Channels not in any privacy group"] = "Каналы не включены ни в одну группу безопасности"; -App::$strings["add"] = "追加"; -App::$strings["Unable to import a removed channel."] = "削除されたチャンネルをインポートできませんでした。"; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "重複したアイデンティティはインポートできません。この作業は失敗しました。"; -App::$strings["Cloned channel not found. Import failed."] = "クローンチャンネルは存在しません。インポートは失敗しました。"; -App::$strings["Profile Photos"] = "プロファイル画像"; -App::$strings["Trending"] = "トレンド"; -App::$strings["Tags"] = "タグ"; -App::$strings["Categories"] = "カテゴリー"; -App::$strings["Keywords"] = "キーワード"; +App::$strings["View PDF"] = ""; +App::$strings[" by "] = ""; +App::$strings[" on "] = ""; +App::$strings["Embedded content"] = ""; +App::$strings["Embedding disabled"] = ""; +App::$strings["Profile Photos"] = ""; +App::$strings["Image exceeds website size limit of %lu bytes"] = ""; +App::$strings["Image file is empty."] = ""; +App::$strings["Unable to process image"] = ""; +App::$strings["Photo storage failed."] = ""; +App::$strings["a new photo"] = ""; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = ""; +App::$strings["Recent Photos"] = ""; +App::$strings["Upload New Photos"] = ""; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; +App::$strings["Profile to assign new connections"] = ""; +App::$strings["Frequently"] = ""; +App::$strings["Hourly"] = ""; +App::$strings["Twice daily"] = ""; +App::$strings["Daily"] = ""; +App::$strings["Weekly"] = ""; +App::$strings["Monthly"] = ""; +App::$strings["Currently Male"] = ""; +App::$strings["Currently Female"] = ""; +App::$strings["Mostly Male"] = ""; +App::$strings["Mostly Female"] = ""; +App::$strings["Transgender"] = ""; +App::$strings["Intersex"] = ""; +App::$strings["Transsexual"] = ""; +App::$strings["Hermaphrodite"] = ""; +App::$strings["Undecided"] = ""; +App::$strings["Males"] = ""; +App::$strings["Females"] = ""; +App::$strings["Gay"] = ""; +App::$strings["Lesbian"] = ""; +App::$strings["No Preference"] = ""; +App::$strings["Bisexual"] = ""; +App::$strings["Autosexual"] = ""; +App::$strings["Abstinent"] = ""; +App::$strings["Virgin"] = ""; +App::$strings["Deviant"] = ""; +App::$strings["Fetish"] = ""; +App::$strings["Oodles"] = ""; +App::$strings["Nonsexual"] = ""; +App::$strings["Single"] = ""; +App::$strings["Lonely"] = ""; +App::$strings["Available"] = ""; +App::$strings["Unavailable"] = ""; +App::$strings["Has crush"] = ""; +App::$strings["Infatuated"] = ""; +App::$strings["Dating"] = ""; +App::$strings["Unfaithful"] = ""; +App::$strings["Sex Addict"] = ""; +App::$strings["Friends/Benefits"] = ""; +App::$strings["Casual"] = ""; +App::$strings["Engaged"] = ""; +App::$strings["Married"] = ""; +App::$strings["Imaginarily married"] = ""; +App::$strings["Partners"] = ""; +App::$strings["Cohabiting"] = ""; +App::$strings["Common law"] = ""; +App::$strings["Happy"] = ""; +App::$strings["Not looking"] = ""; +App::$strings["Swinger"] = ""; +App::$strings["Betrayed"] = ""; +App::$strings["Separated"] = ""; +App::$strings["Unstable"] = ""; +App::$strings["Divorced"] = ""; +App::$strings["Imaginarily divorced"] = ""; +App::$strings["Widowed"] = ""; +App::$strings["Uncertain"] = ""; +App::$strings["It's complicated"] = ""; +App::$strings["Don't care"] = ""; +App::$strings["Ask me"] = ""; +App::$strings["Trending"] = ""; +App::$strings["Tags"] = ""; +App::$strings["Keywords"] = ""; App::$strings["have"] = ""; App::$strings["has"] = ""; App::$strings["want"] = ""; App::$strings["wants"] = ""; -App::$strings["like"] = "いいね!"; -App::$strings["likes"] = "いいね!"; -App::$strings["dislike"] = "わるいね!"; -App::$strings["dislikes"] = "わるいね!"; -App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = ""; -App::$strings["default"] = "デフォルト"; -App::$strings["Select an alternate language"] = "言語を選択してください。"; -App::$strings["Channel is blocked on this site."] = "チャンネルはこのサイトでブロックされています。"; -App::$strings["Channel location missing."] = "チャンネルロケーションが不明です。"; -App::$strings["Response from remote channel was incomplete."] = "Ответ удаленного канала неполный."; -App::$strings["Premium channel - please visit:"] = "プレミアムチャンネル - 見てください:"; -App::$strings["Channel was deleted and no longer exists."] = "Канал удален и больше не существует."; -App::$strings["Remote channel or protocol unavailable."] = "Удалённый канал или протокол недоступен."; -App::$strings["Channel discovery failed."] = "Не удалось обнаружить канал."; -App::$strings["Protocol disabled."] = "Протокол отключен."; -App::$strings["Cannot connect to yourself."] = "Нельзя подключиться к самому себе."; -App::$strings["Visible to your default audience"] = "デフォルトのユーザーに表示"; -App::$strings["__ctx:acl__ Profile"] = "プロファイル"; -App::$strings["Only me"] = "自分だけ"; -App::$strings["Who can see this?"] = "投稿範囲 : "; -App::$strings["Custom selection"] = "カスタマイズ"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = " -\"表示\"で表示されます。\"非表示\"は\"表示\"よりも優先されます。"; -App::$strings["Show"] = "表示"; -App::$strings["Don't show"] = "非表示"; -App::$strings["Permissions"] = "表示範囲設定"; -App::$strings["Close"] = "閉じる"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "投稿範囲は %s 投稿後に %s 変更することはできません。ここで設定した人のみがこの投稿を観覧でいるようになります。"; -App::$strings["Miscellaneous"] = "その他"; -App::$strings["Birthday"] = "誕生日"; -App::$strings["Age: "] = "年齢:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD или MM-DD"; -App::$strings["Required"] = "必須"; -App::$strings["less than a second ago"] = "一秒未満"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d%2\$s前"; -App::$strings["__ctx:relative_date__ year"] = "年"; -App::$strings["__ctx:relative_date__ month"] = "月"; -App::$strings["__ctx:relative_date__ week"] = "週"; -App::$strings["__ctx:relative_date__ day"] = "日"; -App::$strings["__ctx:relative_date__ hour"] = "時間"; -App::$strings["__ctx:relative_date__ minute"] = "分"; -App::$strings["__ctx:relative_date__ second"] = "秒"; -App::$strings["%1\$s's birthday"] = "%1\$sの誕生日"; -App::$strings["Happy Birthday %1\$s"] = "はっぴばーすでぇーでぃあ%1\$s!!!"; -App::$strings["Cannot locate DNS info for database server '%s'"] = ""; -App::$strings["prev"] = "前へ"; -App::$strings["first"] = "最初"; -App::$strings["last"] = "最後"; -App::$strings["next"] = "次へ"; -App::$strings["older"] = "古い"; -App::$strings["newer"] = "新しい"; -App::$strings["No connections"] = "コネクション無し"; -App::$strings["Connections"] = "コネクション"; -App::$strings["View all %s connections"] = "全ての%s件のコネクションを見る"; -App::$strings["Network: %s"] = "ネットワーク: %s"; -App::$strings["Save"] = "保存"; +App::$strings["like"] = ""; +App::$strings["likes"] = ""; +App::$strings["dislike"] = ""; +App::$strings["dislikes"] = ""; +App::$strings["prev"] = ""; +App::$strings["first"] = ""; +App::$strings["last"] = ""; +App::$strings["next"] = ""; +App::$strings["older"] = ""; +App::$strings["newer"] = ""; +App::$strings["No connections"] = ""; +App::$strings["View all %s connections"] = ""; +App::$strings["Network: %s"] = ""; +App::$strings["Save"] = ""; App::$strings["poke"] = ""; App::$strings["ping"] = ""; App::$strings["pinged"] = ""; @@ -1111,1325 +797,1665 @@ App::$strings["depressed"] = ""; App::$strings["motivated"] = ""; App::$strings["relaxed"] = ""; App::$strings["surprised"] = ""; -App::$strings["Monday"] = "月曜日"; -App::$strings["Tuesday"] = "火曜日"; -App::$strings["Wednesday"] = "水曜日"; -App::$strings["Thursday"] = "木曜日"; -App::$strings["Friday"] = "金曜日"; -App::$strings["Saturday"] = "土曜日"; -App::$strings["Sunday"] = "日曜日"; -App::$strings["January"] = "1月"; -App::$strings["February"] = "2月"; -App::$strings["March"] = "3月"; -App::$strings["April"] = "4月"; -App::$strings["May"] = "5月"; -App::$strings["June"] = "6月"; -App::$strings["July"] = "7月"; -App::$strings["August"] = "8月"; -App::$strings["September"] = "9月"; -App::$strings["October"] = "10月"; -App::$strings["November"] = "11月"; -App::$strings["December"] = "12月"; -App::$strings["Unknown Attachment"] = "未定義のファイル"; -App::$strings["Size"] = "サイズ"; -App::$strings["remove category"] = "カテゴリーの削除"; -App::$strings["remove from file"] = "ファイルからの削除"; -App::$strings["Download binary/encrypted content"] = "バイナリ/暗号化済みコンテンツをダウンロード"; -App::$strings["Link to Source"] = "投稿元のサイトへ移動"; -App::$strings["Page layout"] = "ページレイアウト"; -App::$strings["You can create your own with the layouts tool"] = "レイアウトツールで自分のレイアウトを作成することができます。"; +App::$strings["May"] = ""; +App::$strings["Unknown Attachment"] = ""; +App::$strings["Size"] = ""; +App::$strings["remove category"] = ""; +App::$strings["remove from file"] = ""; +App::$strings["Link to Source"] = ""; +App::$strings["Page layout"] = ""; +App::$strings["You can create your own with the layouts tool"] = ""; App::$strings["BBcode"] = ""; App::$strings["HTML"] = ""; -App::$strings["Text"] = "テキスト"; +App::$strings["Markdown"] = ""; +App::$strings["Text"] = ""; App::$strings["Comanche Layout"] = ""; App::$strings["PHP"] = ""; -App::$strings["Page content type"] = "ページの方式を選択"; -App::$strings["activity"] = "ホーム"; -App::$strings["a-z, 0-9, -, and _ only"] = "a-z, 0-9, -, _ のみ"; -App::$strings["Design Tools"] = "デザインツール"; -App::$strings["Blocks"] = "ブロック"; -App::$strings["Menus"] = "メニュー"; -App::$strings["Layouts"] = "レイアウト"; -App::$strings["Pages"] = "ページ"; -App::$strings["Import"] = "インポート"; -App::$strings["Import website..."] = "webサイトのインポート"; -App::$strings["Select folder to import"] = "フォルダーを選んでインポート"; -App::$strings["Import from a zipped folder:"] = "zipフォルダーからインポート:"; -App::$strings["Import from cloud files:"] = "クラウドファイルからインポート:"; +App::$strings["Page content type"] = ""; +App::$strings["activity"] = ""; +App::$strings["a-z, 0-9, -, and _ only"] = ""; +App::$strings["Design Tools"] = ""; +App::$strings["Blocks"] = ""; +App::$strings["Menus"] = ""; +App::$strings["Layouts"] = ""; +App::$strings["Pages"] = ""; +App::$strings["Import"] = ""; +App::$strings["Import website..."] = ""; +App::$strings["Select folder to import"] = ""; +App::$strings["Import from a zipped folder:"] = ""; +App::$strings["Import from cloud files:"] = ""; App::$strings["/cloud/channel/path/to/folder"] = ""; App::$strings["Enter path to website files"] = ""; -App::$strings["Select folder"] = "フォルダーの選択"; -App::$strings["Export website..."] = "webサイトをエクスポートする...."; -App::$strings["Export to a zip file"] = "zipファイルでエクスポートする"; +App::$strings["Select folder"] = ""; +App::$strings["Export website..."] = ""; +App::$strings["Export to a zip file"] = ""; App::$strings["website.zip"] = ""; -App::$strings["Enter a name for the zip file."] = "zipファイルの名前を入力"; -App::$strings["Export to cloud files"] = "クラウドへエクスポートする"; +App::$strings["Enter a name for the zip file."] = ""; +App::$strings["Export to cloud files"] = ""; App::$strings["/path/to/export/folder"] = ""; -App::$strings["Enter a path to a cloud files destination."] = "Введите путь к расположению сетевых файлов."; -App::$strings["Specify folder"] = "特別なフォルダー"; -App::$strings["Collection"] = "コレクション"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "セッションは長時間無操作だったため切断されました(3時間以上)。作業をするためには画面を再読み込みしてください。"; -App::$strings["Edit"] = "編集"; -App::$strings["(Unknown)"] = "(Неизвестный)"; -App::$strings["Visible to anybody on the internet."] = "ネット界の誰でも見ることができます。"; -App::$strings["Visible to you only."] = "貴方しか見ることはできません。"; -App::$strings["Visible to anybody in this network."] = "このネットワークの中の誰でも見ることができます。"; -App::$strings["Visible to anybody authenticated."] = "認証されたユーザーのみが見ることができます。"; -App::$strings["Visible to anybody on %s."] = ""; -App::$strings["Visible to all connections."] = "全てのコネクションに表示"; -App::$strings["Visible to approved connections."] = "許可済みのコネクションだけに表示"; -App::$strings["Visible to specific connections."] = "特定のコネクションにだけ表示"; -App::$strings["Item not found."] = "アイテムは存在しません。"; -App::$strings["Privacy group not found."] = "プライバシーグループはありません。"; -App::$strings["Privacy group is empty."] = "プライバシーグループは空です。"; -App::$strings["Privacy group: %s"] = "プライバシーグループ : %s"; -App::$strings["Connection: %s"] = "コネクション: %s"; -App::$strings["Connection not found."] = "コネクションがありません"; -App::$strings["female"] = "女性"; -App::$strings["%1\$s updated her %2\$s"] = "%1\$sが%2\$sをアップデートしました。"; -App::$strings["male"] = "男性"; -App::$strings["%1\$s updated his %2\$s"] = "%1\$sが%2\$sをアップデートしました。"; -App::$strings["%1\$s updated their %2\$s"] = "%1\$sが%2\$sをアップデートしました。"; -App::$strings["profile photo"] = "プロファイル画像"; -App::$strings["[Edited %s]"] = "[編集 %s]"; -App::$strings["__ctx:edit_activity__ Post"] = "投稿"; -App::$strings["__ctx:edit_activity__ Comment"] = "コメント"; -App::$strings["%d invitation available"] = ""; -App::$strings["Advanced"] = ""; -App::$strings["Find Channels"] = "友達を探す"; -App::$strings["Enter name or interest"] = "名前または興味を入力"; -App::$strings["Connect/Follow"] = "接続/フォロー"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Владимир Ильич, Революционер"; -App::$strings["Find"] = "検索"; -App::$strings["Channel Suggestions"] = "チャンネルの提案"; -App::$strings["Random Profile"] = "チャンネルガチャ"; -App::$strings["Invite Friends"] = "友人を招待しよう!"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Расширенный пример: name=ivan and country=russia"; -App::$strings["Saved Folders"] = "投稿のフォルダーへの保存"; -App::$strings["Everything"] = "全て"; -App::$strings["Common Connections"] = "Общие контакты"; -App::$strings["View all %d common connections"] = "%d件の全てのコネクションを表示"; -App::$strings["Unable to obtain identity information from database"] = "Невозможно получить идентификационную информацию из базы данных"; -App::$strings["Empty name"] = "空の名前"; -App::$strings["Name too long"] = "名前が長すぎます"; -App::$strings["No account identifier"] = ""; -App::$strings["Nickname is required."] = "ニックネームは必須です。"; -App::$strings["Reserved nickname. Please choose another."] = "このニックネームは利用済みです。他を利用してください。"; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "ニックネームが使用済みか、利用できない文字列が含まれています。"; -App::$strings["Unable to retrieve created identity"] = ""; -App::$strings["Default Profile"] = "デフォルトのプロファイル"; -App::$strings["Friends"] = ""; -App::$strings["Unable to retrieve modified identity"] = "Не удается найти изменённый идентификатор"; -App::$strings["Requested profile is not available."] = "要求されたプロファイルは利用できませんでした。"; -App::$strings["Change profile photo"] = "プロ画の変更"; -App::$strings["Create New Profile"] = "新しいプロファイルの作成"; -App::$strings["Profile Image"] = "プロファイルイメージ"; -App::$strings["Visible to everybody"] = "全員へ表示"; -App::$strings["Edit visibility"] = "表示範囲を指定する"; -App::$strings["Gender:"] = "性別:"; -App::$strings["Homepage:"] = "ホームページ:"; -App::$strings["Online Now"] = "オンライン"; -App::$strings["Change your profile photo"] = "プロファイル画像の変更"; -App::$strings["Trans"] = ""; -App::$strings["Neuter"] = ""; -App::$strings["Non-specific"] = ""; -App::$strings["Full Name:"] = "フルネーム:"; -App::$strings["Like this channel"] = "このチャンネルをいいね!する"; -App::$strings["j F, Y"] = ""; -App::$strings["j F"] = ""; -App::$strings["Birthday:"] = "誕生日:"; -App::$strings["Age:"] = "年齢:"; -App::$strings["for %1\$d %2\$s"] = "for %1\$d %2\$s"; -App::$strings["Tags:"] = "タグ:"; -App::$strings["Sexual Preference:"] = ""; -App::$strings["Hometown:"] = ""; -App::$strings["Political Views:"] = "政治関心:"; -App::$strings["Religion:"] = "信仰:"; -App::$strings["About:"] = ""; -App::$strings["Hobbies/Interests:"] = "趣味/興味:"; -App::$strings["Likes:"] = "好き:"; -App::$strings["Dislikes:"] = "嫌い:"; -App::$strings["Contact information and Social Networks:"] = "連絡先とソーシャルネットワーク:"; -App::$strings["My other channels:"] = "他のチャンネル:"; -App::$strings["Musical interests:"] = "好きな音楽:"; -App::$strings["Books, literature:"] = "好きな本やリテラチャー:"; -App::$strings["Television:"] = "好きなテレビ:"; -App::$strings["Film/dance/culture/entertainment:"] = "映画/ダンス/カルチャー/エンタメ:"; -App::$strings["Love/Romance:"] = "ラブ/ロマンス:"; -App::$strings["Work/employment:"] = "職 / 従業員:"; -App::$strings["School/education:"] = "学校 / 教育:"; -App::$strings["Profile"] = "プロファイル"; -App::$strings["Like this thing"] = "これにいいね!"; -App::$strings["Export"] = "エクスポート"; -App::$strings["cover photo"] = "カバー画像"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "あなたのチャンネルアドレスを入力してください(例: channel@example.com)"; -App::$strings["Authenticate"] = "認証"; -App::$strings["Account '%s' deleted"] = "アカウント'%s'は削除されました。"; -App::$strings["General Features"] = ""; -App::$strings["New Member Links"] = "初めての人へ"; -App::$strings["Display new member quick links menu"] = "新規さんのためにクイックメニューを表示します。"; -App::$strings["Advanced Profiles"] = ""; -App::$strings["Additional profile sections and selections"] = "追加のプロファイルを作成する"; -App::$strings["Profile Import/Export"] = "プロファイルのインポートとエクスポート"; -App::$strings["Save and load profile details across sites/channels"] = "サイトやチャンネルを越えてプロファイルを保存、読み込みする"; -App::$strings["Web Pages"] = ""; -App::$strings["Provide managed web pages on your channel"] = ""; -App::$strings["Provide a wiki for your channel"] = ""; -App::$strings["Private Notes"] = "プライバシーノート"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Включает инструмент для хранения заметок и напоминаний (прим.: не зашифровано)"; -App::$strings["Create personal planning cards"] = "Создать личные карточки планирования"; -App::$strings["Create interactive articles"] = "Создать интерактивные статьи"; -App::$strings["Navigation Channel Select"] = "ナビゲーションバーでのチャンネル切り換え"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "アカウント画像のメニューから簡単にチャンネルを切り換えができるようになります。"; -App::$strings["Photo Location"] = "画像の位置情報"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Если данные о местоположении доступны на загруженных фотографий, связать их с картой."; -App::$strings["Access Controlled Chatrooms"] = "チャットルームのアクセス権限"; -App::$strings["Provide chatrooms and chat services with access control."] = "Предоставлять чаты и их службы с контролем доступа."; -App::$strings["Smart Birthdays"] = "スマート誕生日"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "国境を越えた人も祝えるように誕生日の時間をそれぞれのタイムゾーンに依存せず固定する"; -App::$strings["Event Timezone Selection"] = "イベントタイムゾーンセレクション"; -App::$strings["Allow event creation in timezones other than your own."] = "自分以外のタイムゾーンでイベントの作成を許可する"; -App::$strings["Premium Channel"] = "プレミアムチャンネル"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Позволяет установить ограничения и условия для подключающихся к вашему каналу"; -App::$strings["Advanced Directory Search"] = ""; -App::$strings["Allows creation of complex directory search queries"] = "複雑なディレクトリ検索クエリの作成が可能になります"; -App::$strings["Advanced Theme and Layout Settings"] = "詳細なテーマ/レイアウト設定"; -App::$strings["Allows fine tuning of themes and page layouts"] = "Разрешает тонкую настройку тем и шаблонов страниц"; -App::$strings["Access Control and Permissions"] = "アクセスコントロールと権限"; -App::$strings["Enable management and selection of privacy groups"] = "Включить управление и выбор групп безопасности"; -App::$strings["Multiple Profiles"] = "複数のプロファイル"; -App::$strings["Ability to create multiple profiles"] = "プロファイルが一つだといつから錯覚していた....???"; -App::$strings["Permission Categories"] = "権限カテゴリー"; -App::$strings["Create custom connection permission limits"] = "Создать пользовательские ограничения на доступ к подключению"; -App::$strings["OAuth1 Clients"] = "Клиенты OAuth1"; -App::$strings["Manage OAuth1 authenticatication tokens for mobile and remote apps."] = "Управлять токенами аутентификации OAuth1 для мобильных и удалённых приложений."; -App::$strings["OAuth2 Clients"] = "Клиенты OAuth2"; -App::$strings["Manage OAuth2 authenticatication tokens for mobile and remote apps."] = "Управлять токенами аутентификации OAuth2 для мобильных и удалённых приложений."; -App::$strings["Access Tokens"] = "Токены доступа"; -App::$strings["Create access tokens so that non-members can access private content."] = "Создать токены доступа для доступа к приватному содержимому."; -App::$strings["Post Composition Features"] = "Функции создания публикаций"; -App::$strings["Large Photos"] = "大きい画像"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "1024px以上のサイズの大きいサムネイルを投稿に表示します。有効にしていない時は640pxの小さいサムネイルが表示されます。"; -App::$strings["Channel Sources"] = "チャンネルソース"; -App::$strings["Automatically import channel content from other channels or feeds"] = ""; -App::$strings["Even More Encryption"] = "暗号化"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = " -共通暗号化キーによるエンドツーエンドの暗号化処理のできるオプションです。"; -App::$strings["Enable Voting Tools"] = "投票ツール"; -App::$strings["Provide a class of post which others can vote on"] = "投稿に対して賛成反対の意思を選択できるボックスを追加できるようになるオプションです。"; -App::$strings["Disable Comments"] = "コメントの無効化"; -App::$strings["Provide the option to disable comments for a post"] = "投稿に対してコメントができなくなります(Activitypubやdiasporaユーザーには通用しないので気をつけてください)。"; -App::$strings["Delayed Posting"] = "投稿予約"; -App::$strings["Allow posts to be published at a later date"] = "投稿を指定時刻に自動的に投稿する予約をできるようにするオプションです。"; -App::$strings["Content Expiration"] = "時限性投稿"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "投稿/コメントを指定時刻に自動的に削除してくれるようにするオプションです。"; -App::$strings["Suppress Duplicate Posts/Comments"] = "投稿の連投阻止"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = " -同じ内容の投稿を連続でしようとした時に阻止してくれるようになります。"; -App::$strings["Auto-save drafts of posts and comments"] = "下書きの自動保存"; -App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = " -自動で書きかけの投稿を保存します。画面が復帰した時に入力欄に復元されるようになります。"; -App::$strings["Network and Stream Filtering"] = "ストリームフィルター"; -App::$strings["Search by Date"] = "日付で検索"; -App::$strings["Ability to select posts by date ranges"] = "日付範囲で投稿を選択できるようになります。"; -App::$strings["Saved Searches"] = "保存済みの検索ワード"; -App::$strings["Save search terms for re-use"] = "検索ワードを保存すると後で簡単に利用できるようになります。"; -App::$strings["Alternate Stream Order"] = "ストリームオーダー"; -App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = "ストリームオーダーではストリームを\"コメント更新順\"、\"投稿日時順\"、\"スレッドの分解\"で時系列に並び変えができるようになります。"; -App::$strings["Contact Filter"] = "コンタクトフィルター"; -App::$strings["Ability to display only posts of a selected contact"] = "入力欄に入力したユーザーのみの投稿を表示するフィルターです。"; -App::$strings["Forum Filter"] = "フォーラムフィルター"; -App::$strings["Ability to display only posts of a specific forum"] = "参加している特定フォーラムの投稿だけを表示するフィルターです。"; -App::$strings["Personal Posts Filter"] = "マイアクションフィルター"; -App::$strings["Ability to display only posts that you've interacted on"] = "自分の全ての行動を表示するフィルターです。他者の投稿へのコメント等も含まれます。"; -App::$strings["Affinity Tool"] = "友好深度フィルター(適語募集中)"; -App::$strings["Filter stream activity by depth of relationships"] = "フォロワーの親友度でフィルタリングをします。(日本語不完全)"; -App::$strings["Suggest Channels"] = "チャンネルの提案"; -App::$strings["Show friend and connection suggestions"] = "新たなフォローの候補を表示します。"; -App::$strings["Connection Filtering"] = "コネクションフィルタリング"; -App::$strings["Use blog/list mode"] = "ブログ/リストモード"; -App::$strings["Community Tagging"] = "第三者からのタグ付け"; -App::$strings["Max height of content (in pixels)"] = "コンテンツの高さ(ピクセル指定)"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "受信したポストをキーワードやコンテンツでフィルタリングする"; -App::$strings["Post/Comment Tools"] = "投稿/コメントツール"; -App::$strings["Comments will be displayed separately"] = "投稿一覧とコメントとを分割する"; -App::$strings["Ability to tag existing posts"] = "タグを追加でつけるためのボタン"; -App::$strings["Post Categories"] = "投稿カテゴリー"; -App::$strings["Add categories to your posts"] = "投稿にカテゴリーを追加する"; -App::$strings["Emoji Reactions"] = "絵文字リアクション"; -App::$strings["Add emoji reaction ability to posts"] = "絵文字一つでリアクションするための便利なボタン"; -App::$strings["Ability to file posts under folders"] = "投稿をフォルダーに保存して整理をすることができるようになります。"; -App::$strings["Dislike Posts"] = "わるいね!"; -App::$strings["Ability to dislike posts/comments"] = "投稿やコメントにわるいね!をするボタン"; -App::$strings["Star Posts"] = "ホシ付け"; -App::$strings["Ability to mark special posts with a star indicator"] = "目印のホシをつけるためのボタン"; -App::$strings["Tag Cloud"] = "タグクラウド"; -App::$strings["Provide a personal tag cloud on your channel page"] = "自分の投稿からタグクラウドを生成します。"; -App::$strings["Unable to determine sender."] = "Невозможно определить отправителя."; -App::$strings["No recipient provided."] = "Получатель не предоставлен."; -App::$strings["[no subject]"] = ""; -App::$strings["Stored post could not be verified."] = "Сохранённая публикация не может быть проверена."; -App::$strings["Frequently"] = "頻度"; -App::$strings["Hourly"] = "毎時"; -App::$strings["Twice daily"] = "隔日"; -App::$strings["Daily"] = "毎日"; -App::$strings["Weekly"] = "毎週"; -App::$strings["Monthly"] = "毎月"; -App::$strings["Currently Male"] = "今は男"; -App::$strings["Currently Female"] = "今は女"; -App::$strings["Mostly Male"] = "ほぼ男"; -App::$strings["Mostly Female"] = "ほぼ女"; -App::$strings["Transgender"] = "トランスジェンダー"; -App::$strings["Intersex"] = "インターセックス"; -App::$strings["Transsexual"] = "トランスセクシャル"; -App::$strings["Hermaphrodite"] = "半陰陽"; -App::$strings["Undecided"] = "未定義"; -App::$strings["Males"] = "男"; -App::$strings["Females"] = "女"; -App::$strings["Gay"] = "ゲイ"; -App::$strings["Lesbian"] = "レズ"; -App::$strings["No Preference"] = "性的指向無し"; -App::$strings["Bisexual"] = "バイセクシャル"; -App::$strings["Autosexual"] = "オートセクシャル"; -App::$strings["Abstinent"] = "禁欲"; -App::$strings["Virgin"] = "ヴァージン"; -App::$strings["Deviant"] = ""; -App::$strings["Fetish"] = ""; -App::$strings["Oodles"] = ""; -App::$strings["Nonsexual"] = ""; -App::$strings["Single"] = "独身"; -App::$strings["Lonely"] = "孤独"; -App::$strings["Available"] = ""; -App::$strings["Unavailable"] = ""; -App::$strings["Has crush"] = ""; -App::$strings["Infatuated"] = ""; -App::$strings["Dating"] = ""; -App::$strings["Unfaithful"] = ""; -App::$strings["Sex Addict"] = ""; -App::$strings["Friends/Benefits"] = ""; -App::$strings["Casual"] = ""; -App::$strings["Engaged"] = ""; -App::$strings["Married"] = "既婚"; -App::$strings["Imaginarily married"] = ""; -App::$strings["Partners"] = ""; -App::$strings["Cohabiting"] = ""; -App::$strings["Common law"] = ""; -App::$strings["Happy"] = ""; -App::$strings["Not looking"] = ""; -App::$strings["Swinger"] = ""; -App::$strings["Betrayed"] = ""; -App::$strings["Separated"] = "別居"; -App::$strings["Unstable"] = ""; -App::$strings["Divorced"] = ""; -App::$strings["Imaginarily divorced"] = "В воображаемом разводе"; -App::$strings["Widowed"] = ""; -App::$strings["Uncertain"] = "Неопределенный"; -App::$strings["It's complicated"] = ""; -App::$strings["Don't care"] = "Всё равно"; -App::$strings["Ask me"] = "聞いて"; -App::$strings["Delete this item?"] = "このアイテムを削除しますか?"; -App::$strings["Comment"] = "コメント"; -App::$strings["%s show all"] = "%s 全て表示する"; -App::$strings["%s show less"] = "%s 隠されてたものを隠す"; -App::$strings["%s expand"] = "%s 展開する"; -App::$strings["%s collapse"] = "%s 縮小する"; -App::$strings["Password too short"] = "パスワードが短かすぎます。"; -App::$strings["Passwords do not match"] = "パスワードが一致しません。"; -App::$strings["everybody"] = "だれでも"; -App::$strings["Secret Passphrase"] = "パスワード"; -App::$strings["Passphrase hint"] = "パスワードのヒント"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Уведомление: Права доступа изменились, но до сих пор не сохранены."; -App::$strings["close all"] = "з全て閉じる"; -App::$strings["Nothing new here"] = "新しいものはありません"; -App::$strings["Rate This Channel (this is public)"] = "Оценкa этoго канала (общедоступно)"; -App::$strings["Rating"] = "Оценка"; -App::$strings["Describe (optional)"] = "Охарактеризовать (необязательно)"; -App::$strings["Please enter a link URL"] = "URLを入力してください : "; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Есть несохраненные изменения. Вы уверены, что хотите покинуть эту страницу?"; -App::$strings["Location"] = "ロケーション"; -App::$strings["lovely"] = "かわいらしい"; -App::$strings["wonderful"] = "素晴しい"; -App::$strings["fantastic"] = "わくわくする"; -App::$strings["great"] = "いい"; -App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = "このニックネームは利用できません。こちら("; -App::$strings[") or enter a new one."] = ")はどうですか?このまま続行するか新しいニックネームを入力してください。"; -App::$strings["Thank you, this nickname is valid."] = "Спасибо, этот псевдоним может быть использован."; -App::$strings["A channel name is required."] = "チャンネル名は必須です。"; -App::$strings["This is a "] = "これは"; -App::$strings[" channel name"] = "チャンネル名だ!"; -App::$strings["timeago.prefixAgo"] = ""; -App::$strings["timeago.prefixFromNow"] = ""; -App::$strings["timeago.suffixAgo"] = "前"; -App::$strings["timeago.suffixFromNow"] = ""; -App::$strings["less than a minute"] = "ほんのちょっとすぐ"; -App::$strings["about a minute"] = "1分ぐらい"; -App::$strings["%d minutes"] = "%d分"; -App::$strings["about an hour"] = "約1時間"; -App::$strings["about %d hours"] = "約%d時間"; -App::$strings["a day"] = "1日"; -App::$strings["%d days"] = "%d日"; -App::$strings["about a month"] = "約1ヶ月"; -App::$strings["%d months"] = "%dヶ月"; -App::$strings["about a year"] = "約1年"; -App::$strings["%d years"] = "%d年"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = ""; -App::$strings["__ctx:long__ May"] = "5月"; -App::$strings["Jan"] = "1月"; -App::$strings["Feb"] = "2月"; -App::$strings["Mar"] = "3月"; -App::$strings["Apr"] = "4月"; -App::$strings["__ctx:short__ May"] = "5月"; -App::$strings["Jun"] = "6月"; -App::$strings["Jul"] = "7月"; -App::$strings["Aug"] = "8月"; -App::$strings["Sep"] = "9月"; -App::$strings["Oct"] = "10月"; -App::$strings["Nov"] = "11月"; -App::$strings["Dec"] = "12月"; -App::$strings["Sun"] = "日"; -App::$strings["Mon"] = "月"; -App::$strings["Tue"] = "火"; -App::$strings["Wed"] = "水"; -App::$strings["Thu"] = "木"; -App::$strings["Fri"] = "金"; -App::$strings["Sat"] = "土"; -App::$strings["__ctx:calendar__ today"] = "今日"; -App::$strings["__ctx:calendar__ month"] = "月"; -App::$strings["__ctx:calendar__ week"] = "週"; -App::$strings["__ctx:calendar__ day"] = "日"; -App::$strings["__ctx:calendar__ All day"] = "毎日"; -App::$strings["View PDF"] = "PDFで見る"; -App::$strings[" by "] = ""; -App::$strings[" on "] = ""; -App::$strings["Embedded content"] = "Встроенное содержимое"; -App::$strings["Embedding disabled"] = "Встраивание отключено"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Файл превышает предельный размер для сайта в %lu байт"; -App::$strings["Image file is empty."] = "Файл изображения пуст."; -App::$strings["Unable to process image"] = "Не удается обработать изображение"; -App::$strings["Photo storage failed."] = "Ошибка хранилища фотографий."; -App::$strings["a new photo"] = "новая фотография"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s опубликовал %2\$s в %3\$s"; -App::$strings["Recent Photos"] = "最近の画像"; -App::$strings["Upload New Photos"] = "Загрузить новые фотографии"; -App::$strings["New window"] = "Новое окно"; -App::$strings["Open the selected location in a different window or browser tab"] = "Открыть выбранное местоположение в другом окне или вкладке браузера"; -App::$strings["Wiki updated successfully"] = "Wiki успешно обновлена"; -App::$strings["Wiki files deleted successfully"] = "Wiki успешно удалена"; -App::$strings["0. Beginner/Basic"] = "Начинающий / Базовый"; -App::$strings["1. Novice - not skilled but willing to learn"] = "1. Новичок - не опытный, но желающий учиться"; -App::$strings["2. Intermediate - somewhat comfortable"] = "2. Промежуточный - более удобный"; -App::$strings["3. Advanced - very comfortable"] = "3. Продвинутый - очень удобный"; -App::$strings["4. Expert - I can write computer code"] = "4. Эксперт - я умею программировать"; -App::$strings["5. Wizard - I probably know more than you do"] = "5. Волшебник - возможно я знаю больше чем ты"; -App::$strings["Public"] = "一般公開"; -App::$strings["Anybody in the \$Projectname network"] = "Любому в сети \$Projectname"; -App::$strings["Any account on %s"] = "Любой аккаунт в %s"; -App::$strings["Any of my connections"] = "Любой из моих контактов"; -App::$strings["Only connections I specifically allow"] = "Только те контакты, кому я дам разрешение"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Любой аутентифицированный (может включать посетителей их других сетей)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Любые контакты включая те, которые вы ещё не одобрили"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Это настройка по умолчанию для аудитории ваших обычных потоков и публикаций"; -App::$strings["This is your default setting for who can view your default channel profile"] = "Это настройка по умолчанию для тех, кто может просматривать профиль вашего основного канала"; -App::$strings["This is your default setting for who can view your connections"] = "Это настройка по умолчанию для тех, кто может просматривать ваши контакты"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Это настройка по умолчанию для тех, кто может просматривать ваше хранилище файлов и фотографий"; -App::$strings["This is your default setting for the audience of your webpages"] = "Это настройка по умолчанию для аудитории ваших веб-страниц"; -App::$strings["Admin Delete"] = "管理者削除"; -App::$strings["Save to Folder"] = "フォルダに保存する"; -App::$strings["I will attend"] = "Я буду присутствовать"; -App::$strings["I will not attend"] = "Я не буду присутствовать"; -App::$strings["I might attend"] = "Я возможно буду присутствовать"; -App::$strings["I agree"] = "同意"; -App::$strings["I disagree"] = "反対"; -App::$strings["I abstain"] = "辞退"; -App::$strings["View all"] = "全て表示"; -App::$strings["Add Tag"] = "タグを追加する"; -App::$strings["I like this (toggle)"] = "いいね!する"; -App::$strings["I don't like this (toggle)"] = "わるいね!する"; -App::$strings["Share This"] = "再共有"; -App::$strings["share"] = ""; -App::$strings["Delivery Report"] = "投稿の転送状況"; -App::$strings["%d comment"] = "%d件のコメント"; -App::$strings["View %s's profile - %s"] = "%sのプロファイルを表示 - %s"; -App::$strings["to"] = ""; -App::$strings["via"] = ""; -App::$strings["Wall-to-Wall"] = "Стена-к-Стене"; -App::$strings["via Wall-To-Wall:"] = "через Стена-к-Стене:"; -App::$strings["Attend"] = "Посетить"; -App::$strings["Attendance Options"] = "Параметры посещаемости"; -App::$strings["Vote"] = "Голосовать"; -App::$strings["Voting Options"] = "Параметры голосования"; -App::$strings["Add to Calendar"] = "カレンダーに追加"; -App::$strings["Mark all seen"] = "全部既読する"; -App::$strings["__ctx:noun__ Likes"] = "__ctx:noun__ が'いいね!'をしました。"; -App::$strings["__ctx:noun__ Dislikes"] = "__ctx:noun__ が'わるいね!'をしました。"; -App::$strings["This is you"] = "This is you"; -App::$strings["Image"] = "画像の挿入"; -App::$strings["Insert Link"] = "リンクの挿入"; -App::$strings["Video"] = "ビデオ"; -App::$strings["Your full name (required)"] = "フルネーム(必須)"; -App::$strings["Your email address (required)"] = "Eメールアドレス(必須)"; -App::$strings["Your website URL (optional)"] = "URL(webサイト)"; -App::$strings["Apps"] = "アプリ"; -App::$strings["Site Admin"] = "管理画面"; -App::$strings["View Bookmarks"] = "ブックマークの表示"; -App::$strings["My Chatrooms"] = "チャット"; -App::$strings["Remote Diagnostics"] = ""; -App::$strings["Activity"] = "ホーム"; -App::$strings["Channel Home"] = "ユーザーの投稿"; -App::$strings["Directory"] = "ディレクトリ"; -App::$strings["Mail"] = "ダイレクトメッセージ"; -App::$strings["Mood"] = "Mood"; -App::$strings["Chat"] = "チャット"; -App::$strings["Probe"] = ""; -App::$strings["Suggest"] = "あなたへのおすすめ"; -App::$strings["Random Channel"] = "チャンネルガチャ"; -App::$strings["Invite"] = "招待する"; -App::$strings["Features"] = "Функции"; -App::$strings["Post"] = "投稿"; -App::$strings["Update"] = "更新"; -App::$strings["Install"] = "インストール"; -App::$strings["Purchase"] = "Купить"; -App::$strings["Undelete"] = "Восстановить"; -App::$strings["Add to app-tray"] = "app-trayに追加"; -App::$strings["Remove from app-tray"] = "app-trayから削除"; -App::$strings["Pin to navbar"] = "ナビバーに固定する"; -App::$strings["Unpin from navbar"] = "ナビバーのピンを外す"; -App::$strings["\$Projectname Notification"] = "\$Projectname通知"; -App::$strings["Thank You,"] = "ありがとう。"; -App::$strings["This email was sent by %1\$s at %2\$s."] = "このEmailは%1\$sから%2\$sへ送信されました。"; -App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "メッセージの受信を停止したい場合は、あなたの通知設定を調整してください。%s"; -App::$strings["To stop receiving these messages, please adjust your %s."] = "メッセージの受信を停止したい場合は、あなたの%sを調整してください。"; -App::$strings["Notification Settings"] = "通知設定"; -App::$strings["%s "] = ""; -App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Notify] Получено новое сообщение в %s"; -App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s отправил вам новое личное сообщение в %2\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s послал вам %2\$s."; -App::$strings["a private message"] = "личное сообщение"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Пожалуйста, посетите %s для просмотра и/или ответа на ваши личные сообщения."; -App::$strings["commented on"] = "コメント :"; -App::$strings["liked"] = "いいね!"; -App::$strings["disliked"] = "わるいね!"; -App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = ""; -App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = ""; -App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s%2\$s [zrl=%3\$s]あなたの %4\$s[/zrl]"; -App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Отмодерирован комментарий к беседе #%1\$d по %2\$s"; -App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Комментарий к беседе #%1\$d по %2\$s"; -App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$sがあなたがフォローしている投稿/コンテンツにコメントしました"; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Пожалуйста, посетите %s для просмотра и / или ответа в беседе."; -App::$strings["Please visit %s to approve or reject this comment."] = "Пожалуйста посетитет %s для одобрения и отклонения комментария."; -App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$sが[zrl=%2\$s]あなたの%3\$s[/zrl]をいいね!しました。"; -App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Беседа получила отметку \"нравится\" #%1\$d от %2\$s"; -App::$strings["%1\$s liked an item/conversation you created."] = "%1\$s нравится тема / беседа которую вы создали."; -App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Notify] %s сделал публикацию на стене вашего профиля"; -App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s сделал публикацию на стене вашего профиля в %2\$s"; -App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s опубликовал на [zrl=%2\$s]вашей стене[/zrl]"; -App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Notify] %sがタグ付けしました。"; -App::$strings["%1\$s tagged you at %2\$s"] = "%1\$sが%2\$sにタグ付けしました。"; -App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$s]タグ付けしました[/zrl]。"; -App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Notify] %1\$sがpokeしました。"; -App::$strings["%1\$s poked you at %2\$s"] = "%1\$sが%2\$sをpokeしました。"; -App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]がpokeしました[/zrl]。"; -App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Notify] %sがあなたの投稿にタグ付けしました。"; -App::$strings["%1\$s tagged your post at %2\$s"] = ""; -App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$sが[zrl=%2\$s]あなたの投稿[/zrl]にタグ付けしました。"; -App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Notify] Получено приглашение"; -App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Вы получили новый запрос контакта от '%1\$s' в %2\$s"; -App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Вы получили [zrl=%1\$s]новый запрос контакта[/zrl] от %2\$s."; -App::$strings["You may visit their profile at %s"] = "Вы можете увидеть его профиль по ссылке %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Пожалуйста, посетите %s, чтобы одобрить или отклонить запрос контакта."; -App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Notify] Получено предложение дружить"; -App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Вы получили предложение дружить от '%1\$s' в %2\$s"; -App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Вы получили [zrl=%1\$s]предложение дружить[/zrl] для %2\$s от %3\$s."; -App::$strings["Name:"] = "Имя:"; -App::$strings["Photo:"] = "Фото:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Пожалуйста, посетите %s, чтобы одобрить или отклонить предложение."; -App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Уведомление]"; -App::$strings["created a new post"] = "新しい投稿を作成しました。"; -App::$strings["commented on %s's post"] = "%sの投稿にコメントしました。"; -App::$strings["edited a post dated %s"] = "отредактировал публикацию датированную %s"; -App::$strings["edited a comment dated %s"] = "отредактировал комментарий датированный %s"; -App::$strings["(No Title)"] = "(нет заголовка)"; -App::$strings["Wiki page create failed."] = "Не удалось создать страницу Wiki."; -App::$strings["Wiki not found."] = "Wiki не найдена."; -App::$strings["Destination name already exists"] = "Имя назначения уже существует"; -App::$strings["Page not found"] = "Страница не найдена."; -App::$strings["Error reading page content"] = "Ошибка чтения содержимого страницы"; -App::$strings["Error reading wiki"] = "Ошибка чтения Wiki"; -App::$strings["Page update failed."] = "Не удалось обновить страницу."; -App::$strings["Nothing deleted"] = "Ничего не удалено"; -App::$strings["Compare: object not found."] = "Сравнение: объект не найден."; -App::$strings["Page updated"] = "Страница обновлена"; -App::$strings["Untitled"] = "Не озаглавлено"; -App::$strings["Wiki resource_id required for git commit"] = "Требуется resource_id Wiki для отправки в Git"; -App::$strings["__ctx:wiki_history__ Message"] = "Сообщение"; -App::$strings["__ctx:permcat__ default"] = "デフォルト"; -App::$strings["__ctx:permcat__ follower"] = "フォロワー"; -App::$strings["__ctx:permcat__ contributor"] = "コントリビューター"; -App::$strings["__ctx:permcat__ publisher"] = "パブリッシャー"; -App::$strings["Update Error at %s"] = "アップデートが%sでエラーしました"; -App::$strings["Update %s failed. See error logs."] = "%sのアップデートに失敗しました。エラーログを確認してください。"; -App::$strings["Missing room name"] = "[ルーム名が無い]"; -App::$strings["Duplicate room name"] = "[ルーム名の重複]"; -App::$strings["Invalid room specifier."] = ""; -App::$strings["Room not found."] = "ルームは存在しません。"; -App::$strings["Room is full"] = " ルームは満杯です。"; -App::$strings["Commented Date"] = "コメント更新順"; -App::$strings["Order by last commented date"] = "コメントが新しい順に投稿を並べる"; -App::$strings["Posted Date"] = "投稿日時順"; -App::$strings["Order by last posted date"] = "投稿日時が新しい順に投稿を並べる"; -App::$strings["Date Unthreaded"] = "スレッドの分解/Twitter風"; -App::$strings["Order unthreaded by date"] = "投稿コメント関係無しに時系列に並べる"; -App::$strings["Activity Order"] = "投稿の並び"; -App::$strings["Site"] = "サイト"; -App::$strings["Accounts"] = "アカウント"; -App::$strings["Member registrations waiting for confirmation"] = "メンバーが登録の許可を待っています"; -App::$strings["Channels"] = "チャンネル"; -App::$strings["Security"] = "セキュリティ"; -App::$strings["Addons"] = "アドオン"; -App::$strings["Themes"] = "テーマ"; -App::$strings["Inspect queue"] = "待機中のキュー"; -App::$strings["Profile Fields"] = "プロファイルの内容"; -App::$strings["DB updates"] = ""; -App::$strings["Logs"] = "ログ"; -App::$strings["Addon Features"] = "アドオンの設定"; -App::$strings["Tasks"] = "タスク"; -App::$strings["Ignore/Hide"] = "拒否/隠す"; -App::$strings["Suggestions"] = "知り合いかも?"; -App::$strings["See more..."] = "もっと見る"; -App::$strings["Received Messages"] = "メッセージを受信しました"; -App::$strings["Sent Messages"] = "メッセージを送信しました"; -App::$strings["Conversations"] = "会話"; -App::$strings["No messages."] = "メッセージはありません"; -App::$strings["Delete conversation"] = "会話を削除"; -App::$strings["Select Channel"] = "チャンネルの選択"; -App::$strings["Read-write"] = "読み書き"; -App::$strings["Read-only"] = "読む"; -App::$strings["My Calendars"] = "マイ カレンダー"; -App::$strings["Shared Calendars"] = "共有カレンダー"; -App::$strings["Share this calendar"] = "このカレンダーを共有する"; -App::$strings["Calendar name and color"] = "カレンダー名と色"; -App::$strings["Create new calendar"] = "新しいカレンダーを作成"; -App::$strings["Create"] = "作成"; -App::$strings["Calendar Name"] = "カレンダー名"; -App::$strings["Calendar Tools"] = "カレンダーツール"; -App::$strings["Import calendar"] = "カレンダーのインポート"; -App::$strings["Select a calendar to import to"] = "インポートするカレンダーを選択してください"; -App::$strings["Upload"] = "アップロード"; -App::$strings["Addressbooks"] = "アドレス帳"; -App::$strings["Addressbook name"] = "アドレス帳の名前"; -App::$strings["Create new addressbook"] = "新しいアドレス帳の作成"; -App::$strings["Addressbook Name"] = "アドレス帳の名前"; -App::$strings["Addressbook Tools"] = "アドレス帳ツール"; -App::$strings["Import addressbook"] = "アドレス帳のインポート"; -App::$strings["Select an addressbook to import to"] = "インポートするアドレス帳を選択してください"; -App::$strings["__ctx:widget__ Activity"] = "Активность"; -App::$strings["HQ Control Panel"] = "Панель управления HQ"; -App::$strings["Create a new post"] = "新規投稿の作成"; -App::$strings["Add new page"] = "新しいページの追加"; -App::$strings["Options"] = "オプション"; -App::$strings["Wiki Pages"] = "Wikiページ一覧"; -App::$strings["Page name"] = "ページの名前"; -App::$strings["Private Mail Menu"] = "プライベートメッセージメニュー"; -App::$strings["Combined View"] = "統合ビュー"; -App::$strings["Inbox"] = "受信ボックス"; -App::$strings["Outbox"] = "送信ボックス"; -App::$strings["New Message"] = "新規メッセージ"; -App::$strings["photo/image"] = "画像"; -App::$strings["Archives"] = "アーカイブ"; -App::$strings["Events Tools"] = "イベントツール"; -App::$strings["Export Calendar"] = "カレンダーのエクスポート"; -App::$strings["Import Calendar"] = "カレンダーのインポート"; -App::$strings["Wiki List"] = "Wikiリスト"; -App::$strings["Account settings"] = "アカウント設定"; -App::$strings["Channel settings"] = "チャンネルの設定"; -App::$strings["Additional features"] = ""; -App::$strings["Addon settings"] = "アドオンの設定"; -App::$strings["Display settings"] = "見た目の設定"; -App::$strings["Manage locations"] = "所在地の管理"; -App::$strings["Export channel"] = "チャンネルのエクスポート"; -App::$strings["OAuth1 apps"] = "OAuth1アプリケーション"; -App::$strings["OAuth2 apps"] = "OAuth2アプリケーション"; -App::$strings["Guest Access Tokens"] = "ゲスト アクセストゥークン"; -App::$strings["Connection Default Permissions"] = "規定のコネクション権限"; -App::$strings["Premium Channel Settings"] = "プレミアムチャンネル設定"; -App::$strings["View Photo"] = "画像を見る"; -App::$strings["Edit Album"] = "アルバムの編集"; -App::$strings["Public Hubs"] = ""; -App::$strings["Notes"] = "メモ"; -App::$strings["Overview"] = ""; -App::$strings["App Collections"] = "アプリ一覧"; -App::$strings["Available Apps"] = "利用可能なアプリ"; -App::$strings["Installed apps"] = "インストール済みアプリ"; -App::$strings["Bookmarked Chatrooms"] = "ブックマーク済みのチャットルーム"; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "У вас есть %1$.0f из %2$.0f разрешенных контактов."; -App::$strings["Add New Connection"] = "新しい接続の作成"; -App::$strings["Enter channel address"] = "チャンネルのurlを入力してください。"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "例 : harukin@plus.haruk.in https://plus.haruk.in/channel/harukin"; -App::$strings["Chat Members"] = "チャットメンバー"; -App::$strings["Suggested Chatrooms"] = "チャットルームの提案"; -App::$strings["Rating Tools"] = "評価ツール"; -App::$strings["Rate Me"] = "自分の評価"; -App::$strings["View Ratings"] = "評価を見る"; -App::$strings["Remove term"] = "Удалить термин"; -App::$strings["Me"] = ""; -App::$strings["Family"] = "Семья"; -App::$strings["Acquaintances"] = "Знакомые"; -App::$strings["All"] = "全部"; -App::$strings["Refresh"] = "更新"; -App::$strings["Personal Posts"] = "マイアクション"; -App::$strings["Show posts that mention or involve me"] = "自分がコメント、いいね!等をした投稿を表示する"; -App::$strings["Starred Posts"] = "ホシをつけた投稿"; -App::$strings["Show posts that I have starred"] = "ホシをつけた投稿を表示する"; -App::$strings["Show posts related to the %s privacy group"] = "プライバシーグループ\"%s\"の中の投稿を表示する"; -App::$strings["Show my privacy groups"] = "プライバシーグループを表示する"; -App::$strings["Show posts to this forum"] = "このフォーラムへの投稿を表示する"; -App::$strings["Forums"] = "フォーラム"; -App::$strings["Show forums"] = "フォーラムの表示"; -App::$strings["Show posts that I have filed to %s"] = "フォルダ'%s'に保存した投稿を表示"; -App::$strings["Show filed post categories"] = "保存した投稿"; -App::$strings["Panel search"] = "パネルサーチ"; -App::$strings["Filter by name"] = "特定文字列でフィルタリング"; -App::$strings["Remove active filter"] = "アクティビティフィルターの消去"; -App::$strings["Activity Filters"] = "アクティビティフィルター"; -App::$strings["Click to show more"] = "更に表示....."; -App::$strings["New Network Activity"] = "ホーム"; -App::$strings["New Network Activity Notifications"] = "ホームへの通知"; -App::$strings["View your network activity"] = "ホームを見る"; -App::$strings["Mark all notifications read"] = "全部既読にする"; -App::$strings["Show new posts only"] = "新しい投稿のみ表示する"; -App::$strings["New Home Activity"] = "自分への新しいアクティビティ"; -App::$strings["New Home Activity Notifications"] = "自分への新しいアクティビティ通知"; -App::$strings["View your home activity"] = "自分の投稿を見る"; -App::$strings["Mark all notifications seen"] = "全部既読にする"; -App::$strings["New Mails"] = "新しいダイレクトメッセージ"; -App::$strings["New Mails Notifications"] = "メッセージ通知"; -App::$strings["View your private mails"] = "メッセージを見る"; -App::$strings["Mark all messages seen"] = "全てのメッセージを既読にする"; -App::$strings["New Events"] = "新しいイベント"; -App::$strings["New Events Notifications"] = "新しいイベントの通知"; -App::$strings["View events"] = "イベントを見る"; -App::$strings["Mark all events seen"] = "全部既読にする"; -App::$strings["New Connections"] = "新規フォロー"; -App::$strings["New Connections Notifications"] = "新規フォローの通知"; -App::$strings["View all connections"] = "全てのコネクションを見る"; -App::$strings["New Files"] = "新しいファイル"; -App::$strings["New Files Notifications"] = "新しいファイルの通知"; -App::$strings["Notices"] = "通知"; -App::$strings["View all notices"] = "全ての通知を見る"; -App::$strings["Mark all notices seen"] = "全部既読にする"; -App::$strings["New Registrations"] = "新規登録"; -App::$strings["New Registrations Notifications"] = "新規登録の通知"; -App::$strings["Public Stream"] = "連合タイムライン"; -App::$strings["Public Stream Notifications"] = "連合タイムライン通知"; -App::$strings["View the public stream"] = "連合タイムラインを見る"; -App::$strings["Sorry, you have got no notifications at the moment"] = "申し訳ありませんが現在通知が取得できません。もう少しお待ちください。接続状況を確認して頂き、問題の無い場合は鯖主へご連絡ください。"; -App::$strings["Profile Creation"] = "プロフィールを作成しよう!"; -App::$strings["Upload profile photo"] = "プロ画をアップロードしよう!"; -App::$strings["Upload cover photo"] = "カバー画をアップロードしよう!"; -App::$strings["Find and Connect with others"] = "人を探してフォローしよう!"; -App::$strings["View the directory"] = "ディレクトリを見る"; -App::$strings["View friend suggestions"] = "フォローの提案を見る"; -App::$strings["Manage your connections"] = "自分のコネクションを管理する"; -App::$strings["Communicate"] = "さぁコミュニケーションだ!"; -App::$strings["View your channel homepage"] = "自分のチャンネルを見る"; -App::$strings["View your network stream"] = "自分のホームを見る"; -App::$strings["Documentation"] = "ドキュメント"; -App::$strings["View public stream"] = "連合タイムラインを見る"; -App::$strings["Social Networking"] = "一般的SNS用途"; -App::$strings["Social - Federation"] = "Social - 連合"; -App::$strings["Social - Mostly Public"] = "Social - 公開"; -App::$strings["Social - Restricted"] = "Social - 限定"; -App::$strings["Social - Private"] = "Social - 非公開"; -App::$strings["Community Forum"] = "コミュニティ / フォーラム"; -App::$strings["Forum - Mostly Public"] = "Forum - 公開"; -App::$strings["Forum - Restricted"] = "Forum - 限定"; -App::$strings["Forum - Private"] = "Forum - 非公開"; +App::$strings["Enter a path to a cloud files destination."] = ""; +App::$strings["Specify folder"] = ""; +App::$strings["Collection"] = ""; +App::$strings["Default"] = ""; +App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = ""; +App::$strings["Invalid data packet"] = ""; +App::$strings["Unable to verify channel signature"] = ""; +App::$strings["Unable to verify site signature for %s"] = ""; +App::$strings["invalid target signature"] = ""; +App::$strings["Source channel not found."] = ""; +App::$strings["Focus (Hubzilla default)"] = ""; +App::$strings["Theme settings"] = ""; +App::$strings["Narrow navbar"] = ""; +App::$strings["Navigation bar background color"] = ""; +App::$strings["Navigation bar icon color "] = ""; +App::$strings["Navigation bar active icon color "] = ""; +App::$strings["Link color"] = ""; +App::$strings["Set font-color for banner"] = ""; +App::$strings["Set the background color"] = ""; +App::$strings["Set the background image"] = ""; +App::$strings["Set the background color of items"] = ""; +App::$strings["Set the background color of comments"] = ""; +App::$strings["Set font-size for the entire application"] = ""; +App::$strings["Examples: 1rem, 100%, 16px"] = ""; +App::$strings["Set font-color for posts and comments"] = ""; +App::$strings["Set radius of corners"] = ""; +App::$strings["Example: 4px"] = ""; +App::$strings["Set shadow depth of photos"] = ""; +App::$strings["Set maximum width of content region in pixel"] = ""; +App::$strings["Leave empty for default width"] = ""; +App::$strings["Set size of conversation author photo"] = ""; +App::$strings["Set size of followup author photos"] = ""; +App::$strings["Show advanced settings"] = ""; +App::$strings["Social Networking"] = ""; +App::$strings["Social - Federation"] = ""; +App::$strings["Social - Mostly Public"] = ""; +App::$strings["Social - Restricted"] = ""; +App::$strings["Social - Private"] = ""; +App::$strings["Community Forum"] = ""; +App::$strings["Forum - Mostly Public"] = ""; +App::$strings["Forum - Restricted"] = ""; +App::$strings["Forum - Private"] = ""; App::$strings["Feed Republish"] = ""; -App::$strings["Feed - Mostly Public"] = "Feed - 公開"; -App::$strings["Feed - Restricted"] = "Feed - 限定"; +App::$strings["Feed - Mostly Public"] = ""; +App::$strings["Feed - Restricted"] = ""; App::$strings["Special Purpose"] = ""; App::$strings["Special - Celebrity/Soapbox"] = ""; App::$strings["Special - Group Repository"] = ""; -App::$strings["Custom/Expert Mode"] = "カスタム / エキスパートモード"; -App::$strings["Can view my channel stream and posts"] = "チャンネルストリームや投稿の表示"; -App::$strings["Can send me their channel stream and posts"] = "個人のチャンネルストリームへの投稿"; -App::$strings["Can view my default channel profile"] = "規定のチャンネルプロファイルの表示"; -App::$strings["Can view my connections"] = "コネクションの表示"; -App::$strings["Can view my file storage and photos"] = "ストレージや画像の表示"; -App::$strings["Can upload/modify my file storage and photos"] = "ストレージやアルバムへのアップロード"; -App::$strings["Can view my channel webpages"] = "チャンネルウェブページの表示"; -App::$strings["Can view my wiki pages"] = "ウィキページの表示"; -App::$strings["Can create/edit my channel webpages"] = "ウェブページの編集"; -App::$strings["Can write to my wiki pages"] = "wikiへの寄稿"; -App::$strings["Can post on my channel (wall) page"] = "チャンネルページへの寄稿"; -App::$strings["Can comment on or like my posts"] = "投稿へのコメントやいいね!"; -App::$strings["Can send me private mail messages"] = "プライベートメッセージ(DM)の送信"; -App::$strings["Can like/dislike profiles and profile things"] = "プロファイルやプロファイル項目へのいいね!/わるいね!"; -App::$strings["Can forward to all my channel connections via ! mentions in posts"] = "!マークでのメンション&投稿"; -App::$strings["Can chat with me"] = "チャット"; -App::$strings["Can source my public posts in derived channels"] = "送信された投稿のソースへのリンク"; -App::$strings["Can administer my channel"] = "自分のチャンネルの管理権限"; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = " -リモートログインに失敗しました。既にローカルでログインしています。ログアウトしてから再試行してください。"; -App::$strings["App installed."] = "アプリはインストール済みです。"; -App::$strings["Malformed app."] = "不正な形式のアプリ."; +App::$strings["Custom/Expert Mode"] = ""; +App::$strings["Can view my channel stream and posts"] = ""; +App::$strings["Can send me their channel stream and posts"] = ""; +App::$strings["Can view my default channel profile"] = ""; +App::$strings["Can view my connections"] = ""; +App::$strings["Can view my file storage and photos"] = ""; +App::$strings["Can upload/modify my file storage and photos"] = ""; +App::$strings["Can view my channel webpages"] = ""; +App::$strings["Can view my wiki pages"] = ""; +App::$strings["Can create/edit my channel webpages"] = ""; +App::$strings["Can write to my wiki pages"] = ""; +App::$strings["Can post on my channel (wall) page"] = ""; +App::$strings["Can comment on or like my posts"] = ""; +App::$strings["Can send me private mail messages"] = ""; +App::$strings["Can like/dislike profiles and profile things"] = ""; +App::$strings["Can forward to all my channel connections via ! mentions in posts"] = ""; +App::$strings["Can chat with me"] = ""; +App::$strings["Can source my public posts in derived channels"] = ""; +App::$strings["Can administer my channel"] = ""; +App::$strings["Likes %1\$s's %2\$s"] = ""; +App::$strings["Doesn't like %1\$s's %2\$s"] = ""; +App::$strings["Will attend %1\$s's %2\$s"] = ""; +App::$strings["Will not attend %1\$s's %2\$s"] = ""; +App::$strings["May attend %1\$s's %2\$s"] = ""; +App::$strings["🔁 Repeated %1\$s's %2\$s"] = ""; +App::$strings["Apps"] = ""; +App::$strings["Affinity Tool"] = ""; +App::$strings["Site Admin"] = ""; +App::$strings["Report Bug"] = ""; +App::$strings["Content Filter"] = ""; +App::$strings["Content Import"] = ""; +App::$strings["Remote Diagnostics"] = ""; +App::$strings["Suggest Channels"] = ""; +App::$strings["Stream"] = ""; +App::$strings["Mail"] = ""; +App::$strings["Mood"] = ""; +App::$strings["Chat"] = ""; +App::$strings["Probe"] = ""; +App::$strings["Suggest"] = ""; +App::$strings["Random Channel"] = ""; +App::$strings["Invite"] = ""; +App::$strings["Features"] = ""; +App::$strings["Language"] = ""; +App::$strings["Post"] = ""; +App::$strings["Profile Photo"] = ""; +App::$strings["Notifications"] = ""; +App::$strings["Order Apps"] = ""; +App::$strings["CardDAV"] = ""; +App::$strings["Channel Sources"] = ""; +App::$strings["Guest Access"] = ""; +App::$strings["Notes"] = ""; +App::$strings["OAuth Apps Manager"] = ""; +App::$strings["OAuth2 Apps Manager"] = ""; +App::$strings["PDL Editor"] = ""; +App::$strings["Permission Categories"] = ""; +App::$strings["Premium Channel"] = ""; +App::$strings["Public Stream"] = ""; +App::$strings["My Chatrooms"] = ""; +App::$strings["Channel Export"] = ""; +App::$strings["Update"] = ""; +App::$strings["Install"] = ""; +App::$strings["Purchase"] = ""; +App::$strings["Undelete"] = ""; +App::$strings["Add to app-tray"] = ""; +App::$strings["Remove from app-tray"] = ""; +App::$strings["Pin to navbar"] = ""; +App::$strings["Unpin from navbar"] = ""; +App::$strings["Missing room name"] = ""; +App::$strings["Duplicate room name"] = ""; +App::$strings["Invalid room specifier."] = ""; +App::$strings["Room not found."] = ""; +App::$strings["Room is full"] = ""; +App::$strings["Update Error at %s"] = ""; +App::$strings["Update %s failed. See error logs."] = ""; +App::$strings["\$Projectname Notification"] = ""; +App::$strings["\$projectname"] = ""; +App::$strings["Thank You,"] = ""; +App::$strings["%s Administrator"] = ""; +App::$strings["This email was sent by %1\$s at %2\$s."] = ""; +App::$strings["\$Projectname"] = ""; +App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = ""; +App::$strings["To stop receiving these messages, please adjust your %s."] = ""; +App::$strings["Notification Settings"] = ""; +App::$strings["%s "] = ""; +App::$strings["[\$Projectname:Notify] New mail received at %s"] = ""; +App::$strings["%1\$s sent you a new private message at %2\$s."] = ""; +App::$strings["%1\$s sent you %2\$s."] = ""; +App::$strings["a private message"] = ""; +App::$strings["Please visit %s to view and/or reply to your private messages."] = ""; +App::$strings["commented on"] = ""; +App::$strings["liked"] = ""; +App::$strings["disliked"] = ""; +App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = ""; +App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = ""; +App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = ""; +App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = ""; +App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; +App::$strings["%1\$s commented on an item/conversation you have been following."] = ""; +App::$strings["Please visit %s to view and/or reply to the conversation."] = ""; +App::$strings["Please visit %s to approve or reject this comment."] = ""; +App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = ""; +App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = ""; +App::$strings["%1\$s liked an item/conversation you created."] = ""; +App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = ""; +App::$strings["%1\$s posted to your profile wall at %2\$s"] = ""; +App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = ""; +App::$strings["[\$Projectname:Notify] %s tagged you"] = ""; +App::$strings["%1\$s tagged you at %2\$s"] = ""; +App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = ""; +App::$strings["[\$Projectname:Notify] %1\$s poked you"] = ""; +App::$strings["%1\$s poked you at %2\$s"] = ""; +App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = ""; +App::$strings["[\$Projectname:Notify] %s tagged your post"] = ""; +App::$strings["%1\$s tagged your post at %2\$s"] = ""; +App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = ""; +App::$strings["[\$Projectname:Notify] Introduction received"] = ""; +App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = ""; +App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = ""; +App::$strings["You may visit their profile at %s"] = ""; +App::$strings["Please visit %s to approve or reject the connection request."] = ""; +App::$strings["[\$Projectname:Notify] Friend suggestion received"] = ""; +App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = ""; +App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = ""; +App::$strings["Name:"] = ""; +App::$strings["Photo:"] = ""; +App::$strings["Please visit %s to approve or reject the suggestion."] = ""; +App::$strings["[\$Projectname:Notify]"] = ""; +App::$strings["created a new post"] = ""; +App::$strings["commented on %s's post"] = ""; +App::$strings["edited a post dated %s"] = ""; +App::$strings["edited a comment dated %s"] = ""; +App::$strings["Wiki updated successfully"] = ""; +App::$strings["Wiki files deleted successfully"] = ""; +App::$strings["(No Title)"] = ""; +App::$strings["Wiki page create failed."] = ""; +App::$strings["Wiki not found."] = ""; +App::$strings["Destination name already exists"] = ""; +App::$strings["Page not found"] = ""; +App::$strings["Error reading page content"] = ""; +App::$strings["Error reading wiki"] = ""; +App::$strings["Page update failed."] = ""; +App::$strings["Nothing deleted"] = ""; +App::$strings["Compare: object not found."] = ""; +App::$strings["Page updated"] = ""; +App::$strings["Untitled"] = ""; +App::$strings["Wiki resource_id required for git commit"] = ""; +App::$strings["Name"] = ""; +App::$strings["__ctx:wiki_history__ Message"] = ""; +App::$strings["Date"] = ""; +App::$strings["Revert"] = ""; +App::$strings["Compare"] = ""; +App::$strings["__ctx:permcat__ default"] = ""; +App::$strings["__ctx:permcat__ follower"] = ""; +App::$strings["__ctx:permcat__ contributor"] = ""; +App::$strings["__ctx:permcat__ publisher"] = ""; +App::$strings["Public"] = ""; +App::$strings["Anybody in the \$Projectname network"] = ""; +App::$strings["Any account on %s"] = ""; +App::$strings["Any of my connections"] = ""; +App::$strings["Only connections I specifically allow"] = ""; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = ""; +App::$strings["Any connections including those who haven't yet been approved"] = ""; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = ""; +App::$strings["This is your default setting for who can view your default channel profile"] = ""; +App::$strings["This is your default setting for who can view your connections"] = ""; +App::$strings["This is your default setting for who can view your file storage and photos"] = ""; +App::$strings["This is your default setting for the audience of your webpages"] = ""; +App::$strings["0. Beginner/Basic"] = ""; +App::$strings["1. Novice - not skilled but willing to learn"] = ""; +App::$strings["2. Intermediate - somewhat comfortable"] = ""; +App::$strings["3. Advanced - very comfortable"] = ""; +App::$strings["4. Expert - I can write computer code"] = ""; +App::$strings["5. Wizard - I probably know more than you do"] = ""; +App::$strings["Privacy conflict. Discretion advised."] = ""; +App::$strings["Admin Delete"] = ""; +App::$strings["Save to Folder"] = ""; +App::$strings["I will attend"] = ""; +App::$strings["I will not attend"] = ""; +App::$strings["I might attend"] = ""; +App::$strings["I agree"] = ""; +App::$strings["I disagree"] = ""; +App::$strings["I abstain"] = ""; +App::$strings["View all"] = ""; +App::$strings["Add Tag"] = ""; +App::$strings["I like this (toggle)"] = ""; +App::$strings["I don't like this (toggle)"] = ""; +App::$strings["Share This"] = ""; +App::$strings["share"] = ""; +App::$strings["Delivery Report"] = ""; +App::$strings["%d comment"] = array( + 0 => "", + 1 => "", +); +App::$strings["View %s's profile - %s"] = ""; +App::$strings["to"] = ""; +App::$strings["via"] = ""; +App::$strings["Wall-to-Wall"] = ""; +App::$strings["via Wall-To-Wall:"] = ""; +App::$strings["Attend"] = ""; +App::$strings["Attendance Options"] = ""; +App::$strings["Vote"] = ""; +App::$strings["Voting Options"] = ""; +App::$strings["Save Bookmarks"] = ""; +App::$strings["Add to Calendar"] = ""; +App::$strings["Mark all seen"] = ""; +App::$strings["__ctx:noun__ Likes"] = ""; +App::$strings["__ctx:noun__ Dislikes"] = ""; +App::$strings["This is you"] = ""; +App::$strings["Image"] = ""; +App::$strings["Insert Link"] = ""; +App::$strings["Video"] = ""; +App::$strings["Your full name (required)"] = ""; +App::$strings["Your email address (required)"] = ""; +App::$strings["Your website URL (optional)"] = ""; +App::$strings["Some blurb about what to do when you're new here"] = ""; +App::$strings["network"] = ""; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "", + 1 => "", +); +App::$strings["%s account deleted"] = array( + 0 => "", + 1 => "", +); +App::$strings["Account not found"] = ""; +App::$strings["Account '%s' blocked"] = ""; +App::$strings["Account '%s' unblocked"] = ""; +App::$strings["Administration"] = ""; +App::$strings["Accounts"] = ""; +App::$strings["select all"] = ""; +App::$strings["Registrations waiting for confirm"] = ""; +App::$strings["Request date"] = ""; +App::$strings["No registrations."] = ""; +App::$strings["Deny"] = ""; +App::$strings["Block"] = ""; +App::$strings["Unblock"] = ""; +App::$strings["ID"] = ""; +App::$strings["All Channels"] = ""; +App::$strings["Register date"] = ""; +App::$strings["Last login"] = ""; +App::$strings["Expires"] = ""; +App::$strings["Service Class"] = ""; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +App::$strings["Password changed for account %d."] = ""; +App::$strings["Account settings updated."] = ""; +App::$strings["Account not found."] = ""; +App::$strings["Account Edit"] = ""; +App::$strings["New Password"] = ""; +App::$strings["New Password again"] = ""; +App::$strings["Account language (for emails)"] = ""; +App::$strings["Service class"] = ""; +App::$strings["Plugin %s disabled."] = ""; +App::$strings["Plugin %s enabled."] = ""; +App::$strings["Disable"] = ""; +App::$strings["Enable"] = ""; +App::$strings["Addons"] = ""; +App::$strings["Toggle"] = ""; +App::$strings["Author: "] = ""; +App::$strings["Maintainer: "] = ""; +App::$strings["Minimum project version: "] = ""; +App::$strings["Maximum project version: "] = ""; +App::$strings["Minimum PHP version: "] = ""; +App::$strings["Compatible Server Roles: "] = ""; +App::$strings["Requires: "] = ""; +App::$strings["Disabled - version incompatibility"] = ""; +App::$strings["Enter the public git repository URL of the addon repo."] = ""; +App::$strings["Addon repo git URL"] = ""; +App::$strings["Custom repo name"] = ""; +App::$strings["(optional)"] = ""; +App::$strings["Download Addon Repo"] = ""; +App::$strings["Install new repo"] = ""; +App::$strings["Manage Repos"] = ""; +App::$strings["Installed Addon Repositories"] = ""; +App::$strings["Install a New Addon Repository"] = ""; +App::$strings["Switch branch"] = ""; +App::$strings["Remove"] = ""; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "", + 1 => "", +); +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "", + 1 => "", +); +App::$strings["%s channel deleted"] = array( + 0 => "", + 1 => "", +); +App::$strings["Channel not found"] = ""; +App::$strings["Channel '%s' deleted"] = ""; +App::$strings["Channel '%s' censored"] = ""; +App::$strings["Channel '%s' uncensored"] = ""; +App::$strings["Channel '%s' code allowed"] = ""; +App::$strings["Channel '%s' code disallowed"] = ""; +App::$strings["Channels"] = ""; +App::$strings["Censor"] = ""; +App::$strings["Uncensor"] = ""; +App::$strings["Allow Code"] = ""; +App::$strings["Disallow Code"] = ""; +App::$strings["UID"] = ""; +App::$strings["Address"] = ""; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +App::$strings["Update has been marked successful"] = ""; +App::$strings["Executing %s failed. Check system logs."] = ""; +App::$strings["Update %s was successfully applied."] = ""; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = ""; +App::$strings["Update function %s could not be found."] = ""; +App::$strings["Failed Updates"] = ""; +App::$strings["Mark success (if update was manually applied)"] = ""; +App::$strings["Attempt to execute this update step automatically"] = ""; +App::$strings["No failed updates."] = ""; +App::$strings["Lock feature %s"] = ""; +App::$strings["Manage Additional Features"] = ""; +App::$strings["Log settings updated."] = ""; +App::$strings["Logs"] = ""; +App::$strings["Clear"] = ""; +App::$strings["Debugging"] = ""; +App::$strings["Log file"] = ""; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = ""; +App::$strings["Log level"] = ""; +App::$strings["New Profile Field"] = ""; +App::$strings["Field nickname"] = ""; +App::$strings["System name of field"] = ""; +App::$strings["Input type"] = ""; +App::$strings["Field Name"] = ""; +App::$strings["Label on profile pages"] = ""; +App::$strings["Help text"] = ""; +App::$strings["Additional info (optional)"] = ""; +App::$strings["Field definition not found"] = ""; +App::$strings["Edit Profile Field"] = ""; +App::$strings["Profile Fields"] = ""; +App::$strings["Basic Profile Fields"] = ""; +App::$strings["Advanced Profile Fields"] = ""; +App::$strings["(In addition to basic fields)"] = ""; +App::$strings["All available fields"] = ""; +App::$strings["Custom Fields"] = ""; +App::$strings["Create Custom Field"] = ""; +App::$strings["Queue Statistics"] = ""; +App::$strings["Total Entries"] = ""; +App::$strings["Priority"] = ""; +App::$strings["Destination URL"] = ""; +App::$strings["Mark hub permanently offline"] = ""; +App::$strings["Empty queue for this hub"] = ""; +App::$strings["Last known contact"] = ""; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = ""; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = ""; +App::$strings["https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = ""; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = ""; +App::$strings["Security"] = ""; +App::$strings["Block public"] = ""; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = ""; +App::$strings["Provide a cloud root directory"] = ""; +App::$strings["The cloud root directory lists all channel names which provide public files"] = ""; +App::$strings["Show total disk space available to cloud uploads"] = ""; +App::$strings["Set \"Transport Security\" HTTP header"] = ""; +App::$strings["Set \"Content Security Policy\" HTTP header"] = ""; +App::$strings["Allowed email domains"] = ""; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; +App::$strings["Not allowed email domains"] = ""; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = ""; +App::$strings["Allow communications only from these sites"] = ""; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = ""; +App::$strings["Block communications from these sites"] = ""; +App::$strings["Allow communications only from these channels"] = ""; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = ""; +App::$strings["Block communications from these channels"] = ""; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = ""; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = ""; +App::$strings["One site per line. By default embedded content is filtered."] = ""; +App::$strings["Block embedded HTML from these domains"] = ""; +App::$strings["Site settings updated."] = ""; +App::$strings["%s - (Incompatible)"] = ""; +App::$strings["mobile"] = ""; +App::$strings["experimental"] = ""; +App::$strings["unsupported"] = ""; +App::$strings["Yes - with approval"] = ""; +App::$strings["My site is not a public server"] = ""; +App::$strings["My site has paid access only"] = ""; +App::$strings["My site has free access only"] = ""; +App::$strings["My site offers free accounts with optional paid upgrades"] = ""; +App::$strings["Default permission role for new accounts"] = ""; +App::$strings["This role will be used for the first channel created after registration."] = ""; +App::$strings["Site"] = ""; +App::$strings["Registration"] = ""; +App::$strings["File upload"] = ""; +App::$strings["Policies"] = ""; +App::$strings["Site name"] = ""; +App::$strings["Banner/Logo"] = ""; +App::$strings["Unfiltered HTML/CSS/JS is allowed"] = ""; +App::$strings["Administrator Information"] = ""; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = ""; +App::$strings["Site Information"] = ""; +App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = ""; +App::$strings["System language"] = ""; +App::$strings["System theme"] = ""; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; +App::$strings["Allow Feeds as Connections"] = ""; +App::$strings["(Heavy system resource usage)"] = ""; +App::$strings["Maximum image size"] = ""; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; +App::$strings["Does this site allow new member registration?"] = ""; +App::$strings["Invitation only"] = ""; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = ""; +App::$strings["Minimum age"] = ""; +App::$strings["Minimum age (in years) for who may register on this site."] = ""; +App::$strings["Which best describes the types of account offered by this hub?"] = ""; +App::$strings["This is displayed on the public server site list."] = ""; +App::$strings["Register text"] = ""; +App::$strings["Will be displayed prominently on the registration page."] = ""; +App::$strings["Site homepage to show visitors (default: login box)"] = ""; +App::$strings["example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = ""; +App::$strings["Preserve site homepage URL"] = ""; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = ""; +App::$strings["Accounts abandoned after x days"] = ""; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; +App::$strings["Allowed friend domains"] = ""; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; +App::$strings["Verify Email Addresses"] = ""; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = ""; +App::$strings["Force publish"] = ""; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = ""; +App::$strings["Import Public Streams"] = ""; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = ""; +App::$strings["Site only Public Streams"] = ""; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = ""; +App::$strings["Allow anybody on the internet to access the Public streams"] = ""; +App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = ""; +App::$strings["Only import Public stream posts with this text"] = ""; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = ""; +App::$strings["Do not import Public stream posts with this text"] = ""; +App::$strings["Login on Homepage"] = ""; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = ""; +App::$strings["Enable context help"] = ""; +App::$strings["Display contextual help for the current page when the help button is pressed."] = ""; +App::$strings["Reply-to email address for system generated email."] = ""; +App::$strings["Sender (From) email address for system generated email."] = ""; +App::$strings["Name of email sender for system generated email."] = ""; +App::$strings["Directory Server URL"] = ""; +App::$strings["Default directory server"] = ""; +App::$strings["Proxy user"] = ""; +App::$strings["Proxy URL"] = ""; +App::$strings["Network timeout"] = ""; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; +App::$strings["Delivery interval"] = ""; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; +App::$strings["Deliveries per process"] = ""; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = ""; +App::$strings["Queue Threshold"] = ""; +App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = ""; +App::$strings["Poll interval"] = ""; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; +App::$strings["Path to ImageMagick convert program"] = ""; +App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = ""; +App::$strings["Allow SVG thumbnails in file browser"] = ""; +App::$strings["WARNING: SVG images may contain malicious code."] = ""; +App::$strings["Maximum Load Average"] = ""; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; +App::$strings["Expiration period in days for imported (grid/network) content"] = ""; +App::$strings["0 for no expiration of imported content"] = ""; +App::$strings["Do not expire any posts which have comments less than this many days ago"] = ""; +App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = ""; +App::$strings["Create this page first. Default is %s/register"] = ""; +App::$strings["Page to display after creating a new channel"] = ""; +App::$strings["Default: profiles"] = ""; +App::$strings["Optional: site location"] = ""; +App::$strings["Region or country"] = ""; +App::$strings["Theme settings updated."] = ""; +App::$strings["No themes found."] = ""; +App::$strings["Screenshot"] = ""; +App::$strings["Themes"] = ""; +App::$strings["[Experimental]"] = ""; +App::$strings["[Unsupported]"] = ""; +App::$strings["Blocked accounts"] = ""; +App::$strings["Expired accounts"] = ""; +App::$strings["Expiring accounts"] = ""; +App::$strings["Message queues"] = ""; +App::$strings["Your software should be updated"] = ""; +App::$strings["Summary"] = ""; +App::$strings["Registered accounts"] = ""; +App::$strings["Pending registrations"] = ""; +App::$strings["Registered channels"] = ""; +App::$strings["Active addons"] = ""; +App::$strings["Version"] = ""; +App::$strings["Repository version (master)"] = ""; +App::$strings["Repository version (dev)"] = ""; +App::$strings["Affinity Tool settings updated."] = ""; +App::$strings["This app presents a slider control in your connection editor and also on your network page. The slider represents your degree of friendship (affinity) with each connection. It allows you to zoom in or out and display conversations from only your closest friends or everybody in your stream."] = ""; +App::$strings["Affinity Tool App"] = ""; +App::$strings["Not Installed"] = ""; +App::$strings["The numbers below represent the minimum and maximum slider default positions for your network/stream page as a percentage."] = ""; +App::$strings["Default maximum affinity level"] = ""; +App::$strings["0-99 default 99"] = ""; +App::$strings["Default minimum affinity level"] = ""; +App::$strings["0-99 - default 0"] = ""; +App::$strings["Persistent affinity levels"] = ""; +App::$strings["If disabled the max and min levels will be reset to default after page reload"] = ""; +App::$strings["Affinity Tool Settings"] = ""; +App::$strings["Authorize application connection"] = ""; +App::$strings["Return to your app and insert this Security Code:"] = ""; +App::$strings["Please login to continue."] = ""; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = ""; +App::$strings["App installed."] = ""; +App::$strings["Malformed app."] = ""; App::$strings["Embed code"] = ""; -App::$strings["Edit App"] = "アプリの編集"; -App::$strings["Create App"] = "アプリの作成"; -App::$strings["Name of app"] = "アプリの名前"; -App::$strings["Location (URL) of app"] = "アプリのURL"; -App::$strings["Photo icon URL"] = "アプリのアイコンのURL"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 ピクセル - 任意"; -App::$strings["Categories (optional, comma separated list)"] = "カテゴリー (任意、コンマで分けれます。)"; -App::$strings["Version ID"] = "バージョンID"; -App::$strings["Price of app"] = "アプリの価格"; -App::$strings["Location (URL) to purchase app"] = "アプリ購入先URL"; -App::$strings["network"] = "ネットワーク"; +App::$strings["Edit App"] = ""; +App::$strings["Create App"] = ""; +App::$strings["Name of app"] = ""; +App::$strings["Location (URL) of app"] = ""; +App::$strings["Description"] = ""; +App::$strings["Photo icon URL"] = ""; +App::$strings["80 x 80 pixels - optional"] = ""; +App::$strings["Categories (optional, comma separated list)"] = ""; +App::$strings["Version ID"] = ""; +App::$strings["Price of app"] = ""; +App::$strings["Location (URL) to purchase app"] = ""; +App::$strings["Change Order of Pinned Navbar Apps"] = ""; +App::$strings["Change Order of App Tray Apps"] = ""; +App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = ""; +App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = ""; +App::$strings["Available Apps"] = ""; +App::$strings["Installed Apps"] = ""; +App::$strings["Manage Apps"] = ""; +App::$strings["Create Custom App"] = ""; +App::$strings["Articles App"] = ""; +App::$strings["Create interactive articles"] = ""; +App::$strings["Add Article"] = ""; +App::$strings["Create"] = ""; +App::$strings["Item not found"] = ""; +App::$strings["Channel not found."] = ""; +App::$strings["Edit Article"] = ""; +App::$strings["Item not available."] = ""; +App::$strings["Unknown App"] = ""; +App::$strings["Authorize"] = ""; +App::$strings["Do you authorize the app %s to access your channel data?"] = ""; +App::$strings["Allow"] = ""; +App::$strings["Invalid item."] = ""; +App::$strings["Block Name"] = ""; +App::$strings["Block Title"] = ""; +App::$strings["Created"] = ""; +App::$strings["Edited"] = ""; +App::$strings["View"] = ""; +App::$strings["Bookmark added"] = ""; +App::$strings["Bookmarks App"] = ""; +App::$strings["Bookmark links from posts and manage them"] = ""; +App::$strings["My Bookmarks"] = ""; +App::$strings["My Connections Bookmarks"] = ""; +App::$strings["Permissions denied."] = ""; +App::$strings["l, F j"] = ""; +App::$strings["Edit Event"] = ""; +App::$strings["Create Event"] = ""; +App::$strings["Previous"] = ""; +App::$strings["Next"] = ""; +App::$strings["Today"] = ""; +App::$strings["Cards App"] = ""; +App::$strings["Create personal planning cards"] = ""; +App::$strings["Add Card"] = ""; App::$strings["INVALID EVENT DISMISSED!"] = ""; -App::$strings["Summary: "] = "サマリー:"; -App::$strings["Date: "] = "日付:"; -App::$strings["Reason: "] = "理由:"; +App::$strings["Summary: "] = ""; +App::$strings["Date: "] = ""; +App::$strings["Reason: "] = ""; App::$strings["INVALID CARD DISMISSED!"] = ""; -App::$strings["Name: "] = "名前:"; -App::$strings["Event title"] = "イベントのタイトル"; -App::$strings["Start date and time"] = "開始日と時刻"; -App::$strings["Example: YYYY-MM-DD HH:mm"] = "例: YYYY-MM-DD HH:mm"; -App::$strings["End date and time"] = "終了日と時刻"; -App::$strings["Previous"] = "前へ"; -App::$strings["Next"] = "次へ"; -App::$strings["Today"] = "今日"; -App::$strings["Month"] = "月"; -App::$strings["Week"] = "週"; -App::$strings["Day"] = "日"; -App::$strings["List month"] = "月リスト"; -App::$strings["List week"] = "週リスト"; -App::$strings["List day"] = "日リスト"; -App::$strings["More"] = "増やす"; -App::$strings["Less"] = "減らす"; -App::$strings["Select calendar"] = "カレンダーの選択"; -App::$strings["Delete all"] = "全部削除"; -App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Простите, но редактирование повторяющихся событий пока не реализовано."; -App::$strings["Organisation"] = "Организация"; -App::$strings["Title"] = "Наименование"; -App::$strings["Phone"] = "電話番号"; -App::$strings["Instant messenger"] = "メッセージ"; -App::$strings["Website"] = "Веб-сайт"; -App::$strings["Address"] = "アドレス"; -App::$strings["Note"] = "Заметка"; -App::$strings["Add Field"] = "追加"; -App::$strings["P.O. Box"] = "абонентский ящик"; -App::$strings["Additional"] = "Дополнительно"; -App::$strings["Street"] = "Улица"; -App::$strings["Locality"] = "Населённый пункт"; -App::$strings["Region"] = "Регион"; -App::$strings["ZIP Code"] = "Индекс"; -App::$strings["Country"] = "国"; -App::$strings["Default Calendar"] = "デフォルトカレンダー"; -App::$strings["Default Addressbook"] = "デフォルトアドレスブック"; -App::$strings["This page is available only to site members"] = "Эта страница доступна только для подписчиков сайта"; +App::$strings["Name: "] = ""; +App::$strings["CalDAV App"] = ""; +App::$strings["CalDAV capable calendar"] = ""; +App::$strings["CardDAV App"] = ""; +App::$strings["CalDAV capable addressbook"] = ""; +App::$strings["Event title"] = ""; +App::$strings["Start date and time"] = ""; +App::$strings["End date and time"] = ""; +App::$strings["Month"] = ""; +App::$strings["Week"] = ""; +App::$strings["Day"] = ""; +App::$strings["List month"] = ""; +App::$strings["List week"] = ""; +App::$strings["List day"] = ""; +App::$strings["More"] = ""; +App::$strings["Less"] = ""; +App::$strings["Select calendar"] = ""; +App::$strings["Delete all"] = ""; +App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = ""; +App::$strings["Organisation"] = ""; +App::$strings["Title"] = ""; +App::$strings["Phone"] = ""; +App::$strings["Instant messenger"] = ""; +App::$strings["Website"] = ""; +App::$strings["Note"] = ""; +App::$strings["Add Contact"] = ""; +App::$strings["Add Field"] = ""; +App::$strings["P.O. Box"] = ""; +App::$strings["Additional"] = ""; +App::$strings["Street"] = ""; +App::$strings["Locality"] = ""; +App::$strings["Region"] = ""; +App::$strings["ZIP Code"] = ""; +App::$strings["Country"] = ""; +App::$strings["Default Calendar"] = ""; +App::$strings["Default Addressbook"] = ""; +App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = ""; +App::$strings["Change channel nickname/address"] = ""; +App::$strings["WARNING: "] = ""; +App::$strings["Any/all connections on other networks will be lost!"] = ""; +App::$strings["Please enter your password for verification:"] = ""; +App::$strings["New channel address"] = ""; +App::$strings["Rename Channel"] = ""; +App::$strings["You must be logged in to see this page."] = ""; +App::$strings["Posts and comments"] = ""; +App::$strings["Only posts"] = ""; +App::$strings["Insufficient permissions. Request redirected to profile page."] = ""; +App::$strings["Search Results For:"] = ""; +App::$strings["Reset form"] = ""; +App::$strings["You must enable javascript for your browser to be able to view this content."] = ""; +App::$strings["toggle full screen mode"] = ""; +App::$strings["Chatrooms App"] = ""; +App::$strings["Access Controlled Chatrooms"] = ""; +App::$strings["Room not found"] = ""; +App::$strings["Leave Room"] = ""; +App::$strings["Delete Room"] = ""; +App::$strings["I am away right now"] = ""; +App::$strings["I am online"] = ""; +App::$strings["Bookmark this room"] = ""; +App::$strings["New Chatroom"] = ""; +App::$strings["Chatroom name"] = ""; +App::$strings["Expiration of chats (minutes)"] = ""; +App::$strings["%1\$s's Chatrooms"] = ""; +App::$strings["No chatrooms available"] = ""; +App::$strings["Create New"] = ""; +App::$strings["Expiration"] = ""; +App::$strings["min"] = ""; +App::$strings["Away"] = ""; +App::$strings["Online"] = ""; +App::$strings["Not found"] = ""; +App::$strings["Please refresh page"] = ""; +App::$strings["Unknown error"] = ""; +App::$strings["No channel."] = ""; +App::$strings["No connections in common."] = ""; +App::$strings["View Common Connections"] = ""; +App::$strings["Continue"] = ""; +App::$strings["Premium Channel App"] = ""; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = ""; +App::$strings["Premium Channel Setup"] = ""; +App::$strings["Enable premium channel connection restrictions"] = ""; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = ""; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = ""; +App::$strings["Potential connections will then see the following text before proceeding:"] = ""; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = ""; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = ""; +App::$strings["Restricted or Premium Channel"] = ""; +App::$strings["Active"] = ""; +App::$strings["Blocked"] = ""; +App::$strings["Ignored"] = ""; +App::$strings["Hidden"] = ""; +App::$strings["Archived/Unreachable"] = ""; +App::$strings["New"] = ""; +App::$strings["All"] = ""; +App::$strings["Active Connections"] = ""; +App::$strings["Show active connections"] = ""; +App::$strings["New Connections"] = ""; +App::$strings["Show pending (new) connections"] = ""; +App::$strings["Only show blocked connections"] = ""; +App::$strings["Only show ignored connections"] = ""; +App::$strings["Only show archived/unreachable connections"] = ""; +App::$strings["Only show hidden connections"] = ""; +App::$strings["All Connections"] = ""; +App::$strings["Show all connections"] = ""; +App::$strings["Pending approval"] = ""; +App::$strings["Archived"] = ""; +App::$strings["Not connected at this location"] = ""; +App::$strings["%1\$s [%2\$s]"] = ""; +App::$strings["Edit connection"] = ""; +App::$strings["Delete connection"] = ""; +App::$strings["Channel address"] = ""; +App::$strings["Call"] = ""; +App::$strings["Status"] = ""; +App::$strings["Connected"] = ""; +App::$strings["Approve connection"] = ""; +App::$strings["Ignore connection"] = ""; +App::$strings["Ignore"] = ""; +App::$strings["Recent activity"] = ""; +App::$strings["Search your connections"] = ""; +App::$strings["Connections search"] = ""; +App::$strings["Could not access contact record."] = ""; +App::$strings["Could not locate selected profile."] = ""; +App::$strings["Connection updated."] = ""; +App::$strings["Failed to update connection record."] = ""; +App::$strings["is now connected to"] = ""; +App::$strings["Could not access address book record."] = ""; +App::$strings["Refresh failed - channel is currently unavailable."] = ""; +App::$strings["Unable to set address book parameters."] = ""; +App::$strings["Connection has been removed."] = ""; +App::$strings["View %s's profile"] = ""; +App::$strings["Refresh Permissions"] = ""; +App::$strings["Fetch updated permissions"] = ""; +App::$strings["Refresh Photo"] = ""; +App::$strings["Fetch updated photo"] = ""; +App::$strings["View recent posts and comments"] = ""; +App::$strings["Block (or Unblock) all communications with this connection"] = ""; +App::$strings["This connection is blocked!"] = ""; +App::$strings["Unignore"] = ""; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = ""; +App::$strings["This connection is ignored!"] = ""; +App::$strings["Unarchive"] = ""; +App::$strings["Archive"] = ""; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = ""; +App::$strings["This connection is archived!"] = ""; +App::$strings["Unhide"] = ""; +App::$strings["Hide"] = ""; +App::$strings["Hide or Unhide this connection from your other connections"] = ""; +App::$strings["This connection is hidden!"] = ""; +App::$strings["Delete this connection"] = ""; +App::$strings["Fetch Vcard"] = ""; +App::$strings["Fetch electronic calling card for this connection"] = ""; +App::$strings["Open Individual Permissions section by default"] = ""; +App::$strings["Affinity"] = ""; +App::$strings["Open Set Affinity section by default"] = ""; +App::$strings["Me"] = ""; +App::$strings["Family"] = ""; +App::$strings["Acquaintances"] = ""; +App::$strings["Filter"] = ""; +App::$strings["Open Custom Filter section by default"] = ""; +App::$strings["Approve this connection"] = ""; +App::$strings["Accept connection to allow communication"] = ""; +App::$strings["Set Affinity"] = ""; +App::$strings["Set Profile"] = ""; +App::$strings["Set Affinity & Profile"] = ""; +App::$strings["This connection is unreachable from this location."] = ""; +App::$strings["This connection may be unreachable from other channel locations."] = ""; +App::$strings["Location independence is not supported by their network."] = ""; +App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = ""; +App::$strings["Connection Default Permissions"] = ""; +App::$strings["Apply these permissions automatically"] = ""; +App::$strings["Connection requests will be approved without your interaction"] = ""; +App::$strings["Permission role"] = ""; +App::$strings["Add permission role"] = ""; +App::$strings["This connection's primary address is"] = ""; +App::$strings["Available locations:"] = ""; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = ""; +App::$strings["Connection Tools"] = ""; +App::$strings["Slide to adjust your degree of friendship"] = ""; +App::$strings["Slide to adjust your rating"] = ""; +App::$strings["Optionally explain your rating"] = ""; +App::$strings["Custom Filter"] = ""; +App::$strings["Only import posts with this text"] = ""; +App::$strings["Do not import posts with this text"] = ""; +App::$strings["This information is public!"] = ""; +App::$strings["Connection Pending Approval"] = ""; +App::$strings["inherited"] = ""; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = ""; +App::$strings["Their Settings"] = ""; +App::$strings["My Settings"] = ""; +App::$strings["Individual Permissions"] = ""; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = ""; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = ""; +App::$strings["Last update:"] = ""; +App::$strings["Details"] = ""; +App::$strings["Image uploaded but image cropping failed."] = ""; +App::$strings["Cover Photos"] = ""; +App::$strings["Image resize failed."] = ""; +App::$strings["Image upload failed."] = ""; +App::$strings["Unable to process image."] = ""; +App::$strings["Photo not available."] = ""; +App::$strings["Your cover photo may be visible to anybody on the internet"] = ""; +App::$strings["Upload File:"] = ""; +App::$strings["Select a profile:"] = ""; +App::$strings["Change Cover Photo"] = ""; +App::$strings["Upload"] = ""; +App::$strings["Use a photo from your albums"] = ""; +App::$strings["Choose a different album"] = ""; +App::$strings["Select existing photo"] = ""; +App::$strings["Crop Image"] = ""; +App::$strings["Please adjust the image cropping for optimum viewing."] = ""; +App::$strings["Done Editing"] = ""; +App::$strings["Settings updated."] = ""; +App::$strings["Default Permissions App"] = ""; +App::$strings["Set custom default permissions for new connections"] = ""; +App::$strings["If enabled, connection requests will be approved without your interaction"] = ""; +App::$strings["Automatic approval settings"] = ""; +App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = ""; +App::$strings["Public access denied."] = ""; +App::$strings["No default suggestions were found."] = ""; +App::$strings["%d rating"] = array( + 0 => "", + 1 => "", +); +App::$strings["Gender: "] = ""; +App::$strings["Status: "] = ""; +App::$strings["Homepage: "] = ""; +App::$strings["Description:"] = ""; +App::$strings["Public Forum:"] = ""; +App::$strings["Keywords: "] = ""; +App::$strings["Don't suggest"] = ""; +App::$strings["Common connections (estimated):"] = ""; +App::$strings["Global Directory"] = ""; +App::$strings["Local Directory"] = ""; +App::$strings["Finding:"] = ""; +App::$strings["next page"] = ""; +App::$strings["previous page"] = ""; +App::$strings["Sort options"] = ""; +App::$strings["Alphabetic"] = ""; +App::$strings["Reverse Alphabetic"] = ""; +App::$strings["Newest to Oldest"] = ""; +App::$strings["Oldest to Newest"] = ""; +App::$strings["No entries (some entries may be hidden)."] = ""; +App::$strings["This site is not a directory server"] = ""; +App::$strings["This directory server requires an access token"] = ""; +App::$strings["Article"] = ""; +App::$strings["Item has been removed."] = ""; +App::$strings["Edit Block"] = ""; +App::$strings["Layout Name"] = ""; +App::$strings["Layout Description (Optional)"] = ""; +App::$strings["Edit Layout"] = ""; +App::$strings["Item is not editable"] = ""; +App::$strings["Edit post"] = ""; +App::$strings["Page link"] = ""; +App::$strings["Edit Webpage"] = ""; +App::$strings["Token verification failed."] = ""; +App::$strings["Email verification resent"] = ""; +App::$strings["Unable to resend email verification message."] = ""; +App::$strings["Email Verification Required"] = ""; +App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = ""; +App::$strings["Resend Email"] = ""; +App::$strings["Validation token"] = ""; +App::$strings["View Photo"] = ""; +App::$strings["Edit Album"] = ""; +App::$strings["Calendar entries imported."] = ""; +App::$strings["No calendar entries found."] = ""; +App::$strings["Event can not end before it has started."] = ""; +App::$strings["Unable to generate preview."] = ""; +App::$strings["Event title and start time are required."] = ""; +App::$strings["Event not found."] = ""; +App::$strings["Edit event title"] = ""; +App::$strings["Categories (comma-separated list)"] = ""; +App::$strings["Edit Category"] = ""; +App::$strings["Category"] = ""; +App::$strings["Edit start date and time"] = ""; +App::$strings["Finish date and time are not known or not relevant"] = ""; +App::$strings["Edit finish date and time"] = ""; +App::$strings["Finish date and time"] = ""; +App::$strings["Adjust for viewer timezone"] = ""; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = ""; +App::$strings["Edit Description"] = ""; +App::$strings["Edit Location"] = ""; +App::$strings["Timezone:"] = ""; +App::$strings["Advanced Options"] = ""; +App::$strings["Edit event"] = ""; +App::$strings["Delete event"] = ""; +App::$strings["calendar"] = ""; +App::$strings["Event removed"] = ""; +App::$strings["Failed to remove event"] = ""; +App::$strings["Enter a folder name"] = ""; +App::$strings["or select an existing folder (doubleclick)"] = ""; +App::$strings["File not found."] = ""; +App::$strings["Permission Denied."] = ""; +App::$strings["Edit file permissions"] = ""; +App::$strings["Set/edit permissions"] = ""; +App::$strings["Include all files and sub folders"] = ""; +App::$strings["Return to file list"] = ""; +App::$strings["Copy/paste this code to attach file to a post"] = ""; +App::$strings["Copy/paste this URL to link file from a web page"] = ""; +App::$strings["Share this file"] = ""; +App::$strings["Show URL to this file"] = ""; +App::$strings["Show in your contacts shared folder"] = ""; +App::$strings["Connection added."] = ""; +App::$strings["This page is available only to site members"] = ""; App::$strings["Welcome"] = ""; -App::$strings["What would you like to do?"] = "Что бы вы хотели сделать?"; -App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Пожалуйста, запомните эту страницу если вы хотите вернуться на неё в будущем"; -App::$strings["Upload a profile photo"] = "Загрузить фотографию профиля"; -App::$strings["Upload a cover photo"] = "Загрузить фотографию обложки"; -App::$strings["Edit your default profile"] = "Редактировать ваш профиль по умолчанию"; -App::$strings["View the channel directory"] = "Просмотр каталога каналов"; -App::$strings["View/edit your channel settings"] = "Просмотреть / редактировать настройки вашего канала"; -App::$strings["View the site or project documentation"] = "Просмотр документации сайта / проекта"; -App::$strings["Visit your channel homepage"] = "Посетить страницу вашего канала"; -App::$strings["View your connections and/or add somebody whose address you already know"] = "Просмотреть ваши контакты и / или добавить кого-то чей адрес в уже знаете"; -App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Ваш персональный поток (может быть пуст пока вы не добавите контакты)"; -App::$strings["View the public stream. Warning: this content is not moderated"] = "Просмотр публичного потока. Предупреждение: этот контент не модерируется"; -App::$strings["Page owner information could not be retrieved."] = "Информация о владельце страницы не может быть получена."; -App::$strings["Album not found."] = "Альбом не найден."; -App::$strings["Delete Album"] = "Удалить альбом"; -App::$strings["Delete Photo"] = "画像の削除"; -App::$strings["Public access denied."] = "Общественный доступ запрещен."; -App::$strings["No photos selected"] = "Никакие фотографии не выбраны"; -App::$strings["Access to this item is restricted."] = "Доступ к этому элементу ограничен."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "画像に%1$.2f MB中%2$.2fMBの容量を消費しています。"; -App::$strings["%1$.2f MB photo storage used."] = "画像に%1$.2fMBの容量を消費しています。"; -App::$strings["Upload Photos"] = "画像のアップロード"; -App::$strings["Enter an album name"] = "アルバム名"; -App::$strings["or select an existing album (doubleclick)"] = "または既にあるアルバムに追加(ダブルクリック)"; -App::$strings["Create a status post for this upload"] = "このアップロードに関して自動でインフォメーション投稿をする"; -App::$strings["Description (optional)"] = "説明(オプション)"; -App::$strings["Show Newest First"] = "名前順"; -App::$strings["Show Oldest First"] = "古い順"; -App::$strings["Add Photos"] = "画像の追加"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Доступ запрещен. Доступ к этому элементу может быть ограничен."; -App::$strings["Photo not available"] = "画像は利用できません"; -App::$strings["Use as profile photo"] = "プロファイル画像として使用"; -App::$strings["Use as cover photo"] = "カバー画像として使用"; -App::$strings["Private Photo"] = "プライベート画像"; -App::$strings["View Full Size"] = "フルサイズで表示"; -App::$strings["Edit photo"] = "画像の編集"; -App::$strings["Rotate CW (right)"] = "右に回転"; -App::$strings["Rotate CCW (left)"] = "左に回転"; -App::$strings["Move photo to album"] = "画像を指定のアルバムへ移動"; -App::$strings["Enter a new album name"] = "新しいアルバム名の入力"; -App::$strings["or select an existing one (doubleclick)"] = "又は既存のアルバムの使用(ダブルクリック)"; -App::$strings["Add a Tag"] = "タグの追加"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "例: @bob, @Barbara_Jensen, @jim@example.com"; -App::$strings["Flag as adult in album view"] = "アルバム内でアダルトフラグを付ける"; -App::$strings["Photo Tools"] = "画像ツール"; -App::$strings["In This Photo:"] = "На этой фотографии:"; -App::$strings["Map"] = "Карта"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Указанные хабы разрешают публичную регистрацию для сети \$Projectname. Все хабы в сети взаимосвязаны, поэтому членство в любом из них передает членство во всю сеть. Некоторым хабам может потребоваться подписка или предоставление многоуровневых планов обслуживания. Сам хаб может предоставить дополнительные сведения."; -App::$strings["Hub URL"] = "URL сервера"; -App::$strings["Access Type"] = "Тип доступа"; -App::$strings["Registration Policy"] = "Политика регистрации"; -App::$strings["Stats"] = "Статистика"; -App::$strings["Software"] = "Программное обеспечение"; -App::$strings["Rate"] = "Оценка"; -App::$strings["View"] = "表示"; -App::$strings["Continue"] = "続ける"; -App::$strings["Premium Channel Setup"] = "Установка премиум канала"; -App::$strings["Enable premium channel connection restrictions"] = "Включить ограничения для премиум канала"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Пожалуйста введите ваши ограничения или условия, такие, как оплата PayPal, правила использования и т.п."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "このチャンネルをフォローするためには追加のステップや許諾が必要になる可能性があります :"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Потенциальные соединения будут видеть следующий предварительный текст:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "継続することにより、私はこのページで提供された指示に従ったとみなします。"; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Владельцем канала не было представлено никаких специальных инструкций.)"; -App::$strings["Restricted or Premium Channel"] = "制限された、またはプレミアムなチャンネル"; +App::$strings["What would you like to do?"] = ""; +App::$strings["Please bookmark this page if you would like to return to it in the future"] = ""; +App::$strings["Upload a profile photo"] = ""; +App::$strings["Upload a cover photo"] = ""; +App::$strings["Edit your default profile"] = ""; +App::$strings["View friend suggestions"] = ""; +App::$strings["View the channel directory"] = ""; +App::$strings["View/edit your channel settings"] = ""; +App::$strings["View the site or project documentation"] = ""; +App::$strings["Visit your channel homepage"] = ""; +App::$strings["View your connections and/or add somebody whose address you already know"] = ""; +App::$strings["View your personal stream (this may be empty until you add some connections)"] = ""; +App::$strings["View the public stream. Warning: this content is not moderated"] = ""; +App::$strings["Privacy group created."] = ""; +App::$strings["Could not create privacy group."] = ""; +App::$strings["Privacy group updated."] = ""; +App::$strings["Privacy Groups App"] = ""; +App::$strings["Management of privacy groups"] = ""; +App::$strings["Add Group"] = ""; +App::$strings["Privacy group name"] = ""; +App::$strings["Members are visible to other channels"] = ""; +App::$strings["Members"] = ""; +App::$strings["Privacy group removed."] = ""; +App::$strings["Unable to remove privacy group."] = ""; +App::$strings["Privacy Group: %s"] = ""; +App::$strings["Privacy group name: "] = ""; +App::$strings["Delete Group"] = ""; +App::$strings["Group members"] = ""; +App::$strings["Not in this group"] = ""; +App::$strings["Click a channel to toggle membership"] = ""; +App::$strings["Documentation Search"] = ""; +App::$strings["Administrators"] = ""; +App::$strings["Developers"] = ""; +App::$strings["Tutorials"] = ""; +App::$strings["\$Projectname Documentation"] = ""; +App::$strings["Contents"] = ""; +App::$strings["Welcome to %s"] = ""; +App::$strings["Welcome to Hubzilla!"] = ""; +App::$strings["You have got no unseen posts..."] = ""; +App::$strings["%s element installed"] = ""; +App::$strings["%s element installation failed"] = ""; +App::$strings["Nothing to import."] = ""; +App::$strings["Unable to download data from old server"] = ""; +App::$strings["Imported file is empty."] = ""; +App::$strings["Your service plan only allows %d channels."] = ""; +App::$strings["No channel. Import failed."] = ""; +App::$strings["Import completed."] = ""; +App::$strings["You must be logged in to use this feature."] = ""; +App::$strings["Import Channel"] = ""; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = ""; +App::$strings["File to Upload"] = ""; +App::$strings["Or provide the old server/hub details"] = ""; +App::$strings["Your old identity address (xyz@example.com)"] = ""; +App::$strings["Your old login email address"] = ""; +App::$strings["Your old login password"] = ""; +App::$strings["Import a few months of posts if possible (limited by available memory"] = ""; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = ""; +App::$strings["Make this hub my primary location"] = ""; +App::$strings["Move this channel (disable all previous locations)"] = ""; +App::$strings["Use this channel nickname instead of the one provided"] = ""; +App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = ""; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = ""; +App::$strings["Warning: Database versions differ by %1\$d updates."] = ""; +App::$strings["Import completed"] = ""; +App::$strings["Import Items"] = ""; +App::$strings["Use this form to import existing posts and content from an export file."] = ""; +App::$strings["Total invitation limit exceeded."] = ""; +App::$strings["%s : Not a valid email address."] = ""; +App::$strings["Please join us on \$Projectname"] = ""; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = ""; +App::$strings["%s : Message delivery failed."] = ""; +App::$strings["%d message sent."] = array( + 0 => "", + 1 => "", +); +App::$strings["Invite App"] = ""; +App::$strings["Send email invitations to join this network"] = ""; +App::$strings["You have no more invitations available"] = ""; +App::$strings["Send invitations"] = ""; +App::$strings["Enter email addresses, one per line:"] = ""; +App::$strings["Your message:"] = ""; +App::$strings["Please join my community on \$Projectname."] = ""; +App::$strings["You will need to supply this invitation code:"] = ""; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = ""; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = ""; +App::$strings["or visit"] = ""; +App::$strings["3. Click [Connect]"] = ""; +App::$strings["Unable to locate original post."] = ""; +App::$strings["Empty post discarded."] = ""; +App::$strings["Duplicate post suppressed."] = ""; +App::$strings["System error. Post not saved."] = ""; +App::$strings["Your comment is awaiting approval."] = ""; +App::$strings["Unable to obtain post information from database."] = ""; +App::$strings["You have reached your limit of %1$.0f top level posts."] = ""; +App::$strings["You have reached your limit of %1$.0f webpages."] = ""; +App::$strings["Language App"] = ""; +App::$strings["Change UI language"] = ""; +App::$strings["Comanche page description language help"] = ""; +App::$strings["Layout Description"] = ""; +App::$strings["Download PDL file"] = ""; +App::$strings["Like/Dislike"] = ""; +App::$strings["This action is restricted to members."] = ""; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = ""; +App::$strings["Invalid request."] = ""; +App::$strings["thing"] = ""; +App::$strings["Channel unavailable."] = ""; +App::$strings["Previous action reversed."] = ""; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = ""; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = ""; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = ""; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = ""; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = ""; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = ""; +App::$strings["Action completed."] = ""; +App::$strings["Thank you."] = ""; +App::$strings["Remote privacy information not available."] = ""; +App::$strings["Visible to:"] = ""; +App::$strings["Location not found."] = ""; +App::$strings["Location lookup failed."] = ""; +App::$strings["Please select another location to become primary before removing the primary location."] = ""; +App::$strings["Syncing locations"] = ""; +App::$strings["No locations found."] = ""; +App::$strings["Manage Channel Locations"] = ""; +App::$strings["Primary"] = ""; +App::$strings["Drop"] = ""; +App::$strings["Sync Now"] = ""; +App::$strings["Please wait several minutes between consecutive operations."] = ""; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = ""; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = ""; +App::$strings["No valid account found."] = ""; +App::$strings["Password reset request issued. Check your email."] = ""; +App::$strings["Site Member (%s)"] = ""; +App::$strings["Password reset requested at %s"] = ""; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = ""; +App::$strings["Your password has been reset as requested."] = ""; +App::$strings["Your new password is"] = ""; +App::$strings["Save or copy your new password - and then"] = ""; +App::$strings["click here to login"] = ""; +App::$strings["Your password may be changed from the Settings page after successful login."] = ""; +App::$strings["Your password has changed at %s"] = ""; +App::$strings["Forgot your Password?"] = ""; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = ""; +App::$strings["Email Address"] = ""; +App::$strings["Reset"] = ""; +App::$strings["Hub not found."] = ""; +App::$strings["Unable to lookup recipient."] = ""; +App::$strings["Unable to communicate with requested channel."] = ""; +App::$strings["Cannot verify requested channel."] = ""; +App::$strings["Selected channel has private message restrictions. Send failed."] = ""; +App::$strings["Messages"] = ""; +App::$strings["message"] = ""; +App::$strings["Message recalled."] = ""; +App::$strings["Conversation removed."] = ""; +App::$strings["Expires YYYY-MM-DD HH:MM"] = ""; +App::$strings["Requested channel is not in this network"] = ""; +App::$strings["Send Private Message"] = ""; +App::$strings["To:"] = ""; +App::$strings["Subject:"] = ""; +App::$strings["Attach file"] = ""; +App::$strings["Send"] = ""; +App::$strings["Delete message"] = ""; +App::$strings["Delivery report"] = ""; +App::$strings["Recall message"] = ""; +App::$strings["Message has been recalled."] = ""; +App::$strings["Delete Conversation"] = ""; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; +App::$strings["Send Reply"] = ""; +App::$strings["Your message for %s (%s):"] = ""; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = ""; +App::$strings["Create a new channel"] = ""; +App::$strings["Current Channel"] = ""; +App::$strings["Switch to one of your channels by selecting it."] = ""; +App::$strings["Default Channel"] = ""; +App::$strings["Make Default"] = ""; +App::$strings["%d new messages"] = ""; +App::$strings["%d new introductions"] = ""; +App::$strings["Delegated Channel"] = ""; +App::$strings["Unable to update menu."] = ""; +App::$strings["Unable to create menu."] = ""; +App::$strings["Menu Name"] = ""; +App::$strings["Unique name (not visible on webpage) - required"] = ""; +App::$strings["Menu Title"] = ""; +App::$strings["Visible on webpage - leave empty for no title"] = ""; +App::$strings["Allow Bookmarks"] = ""; +App::$strings["Menu may be used to store saved bookmarks"] = ""; +App::$strings["Submit and proceed"] = ""; +App::$strings["Bookmarks allowed"] = ""; +App::$strings["Delete this menu"] = ""; +App::$strings["Edit menu contents"] = ""; +App::$strings["Edit this menu"] = ""; +App::$strings["Menu could not be deleted."] = ""; +App::$strings["Menu not found."] = ""; +App::$strings["Edit Menu"] = ""; +App::$strings["Add or remove entries to this menu"] = ""; +App::$strings["Menu name"] = ""; +App::$strings["Must be unique, only seen by you"] = ""; +App::$strings["Menu title"] = ""; +App::$strings["Menu title as seen by others"] = ""; +App::$strings["Allow bookmarks"] = ""; +App::$strings["Not found."] = ""; +App::$strings["Unable to create element."] = ""; +App::$strings["Unable to update menu element."] = ""; +App::$strings["Unable to add menu element."] = ""; +App::$strings["Menu Item Permissions"] = ""; +App::$strings["(click to open/close)"] = ""; +App::$strings["Link Name"] = ""; +App::$strings["Link or Submenu Target"] = ""; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = ""; +App::$strings["Use magic-auth if available"] = ""; +App::$strings["Open link in new window"] = ""; +App::$strings["Order in list"] = ""; +App::$strings["Higher numbers will sink to bottom of listing"] = ""; +App::$strings["Submit and finish"] = ""; +App::$strings["Submit and continue"] = ""; +App::$strings["Menu:"] = ""; +App::$strings["Link Target"] = ""; +App::$strings["Edit menu"] = ""; +App::$strings["Edit element"] = ""; +App::$strings["Drop element"] = ""; +App::$strings["New element"] = ""; +App::$strings["Edit this menu container"] = ""; +App::$strings["Add menu element"] = ""; +App::$strings["Delete this menu item"] = ""; +App::$strings["Edit this menu item"] = ""; +App::$strings["Menu item not found."] = ""; +App::$strings["Menu item deleted."] = ""; +App::$strings["Menu item could not be deleted."] = ""; +App::$strings["Edit Menu Element"] = ""; +App::$strings["Link text"] = ""; +App::$strings["Comment approved"] = ""; +App::$strings["Comment deleted"] = ""; +App::$strings["Mood App"] = ""; +App::$strings["Set your current mood and tell your friends"] = ""; +App::$strings["No such group"] = ""; +App::$strings["No such channel"] = ""; +App::$strings["Privacy group is empty"] = ""; +App::$strings["Privacy group: "] = ""; +App::$strings["Invalid channel."] = ""; +App::$strings["Your real name is recommended."] = ""; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = ""; +App::$strings["This will be used to create a unique network address (like an email address)."] = ""; +App::$strings["Allowed characters are a-z 0-9, - and _"] = ""; +App::$strings["Channel name"] = ""; +App::$strings["Choose a short nickname"] = ""; +App::$strings["Channel role and privacy"] = ""; +App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = ""; +App::$strings["Read more about channel permission roles"] = ""; +App::$strings["Create a Channel"] = ""; +App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = ""; +App::$strings["or import an existing channel from another location."] = ""; +App::$strings["Validate"] = ""; +App::$strings["Notes App"] = ""; +App::$strings["A simple notes app with a widget (note: notes are not encrypted)"] = ""; +App::$strings["No more system notifications."] = ""; +App::$strings["System Notifications"] = ""; +App::$strings["Name is required"] = ""; +App::$strings["Key and Secret are required"] = ""; +App::$strings["OAuth Apps Manager App"] = ""; +App::$strings["OAuth authentication tokens for mobile and remote apps"] = ""; +App::$strings["Add application"] = ""; +App::$strings["Name of application"] = ""; +App::$strings["Consumer Key"] = ""; +App::$strings["Automatically generated - change if desired. Max length 20"] = ""; +App::$strings["Consumer Secret"] = ""; +App::$strings["Redirect"] = ""; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = ""; +App::$strings["Icon url"] = ""; +App::$strings["Optional"] = ""; +App::$strings["Application not found."] = ""; +App::$strings["Connected OAuth Apps"] = ""; +App::$strings["Client key starts with"] = ""; +App::$strings["No name"] = ""; +App::$strings["Remove authorization"] = ""; +App::$strings["Name and Secret are required"] = ""; +App::$strings["OAuth2 Apps Manager App"] = ""; +App::$strings["OAuth2 authenticatication tokens for mobile and remote apps"] = ""; +App::$strings["Add OAuth2 application"] = ""; +App::$strings["Grant Types"] = ""; +App::$strings["leave blank unless your application sepcifically requires this"] = ""; +App::$strings["Authorization scope"] = ""; +App::$strings["OAuth2 Application not found."] = ""; +App::$strings["leave blank unless your application specifically requires this"] = ""; +App::$strings["Connected OAuth2 Apps"] = ""; +App::$strings["Edit Card"] = ""; +App::$strings["Invalid message"] = ""; +App::$strings["no results"] = ""; +App::$strings["channel sync processed"] = ""; +App::$strings["queued"] = ""; +App::$strings["posted"] = ""; +App::$strings["accepted for delivery"] = ""; +App::$strings["updated"] = ""; +App::$strings["update ignored"] = ""; +App::$strings["permission denied"] = ""; +App::$strings["recipient not found"] = ""; +App::$strings["mail recalled"] = ""; +App::$strings["duplicate mail received"] = ""; +App::$strings["mail delivered"] = ""; +App::$strings["Delivery report for %1\$s"] = ""; +App::$strings["Options"] = ""; +App::$strings["Redeliver"] = ""; +App::$strings["Please login."] = ""; +App::$strings["Unable to find your hub."] = ""; +App::$strings["Post successful."] = ""; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = ""; +App::$strings["This setting requires special processing and editing has been blocked."] = ""; +App::$strings["Configuration Editor"] = ""; +App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = ""; +App::$strings["Layout updated."] = ""; +App::$strings["PDL Editor App"] = ""; +App::$strings["Provides the ability to edit system page layouts"] = ""; +App::$strings["Edit System Page Description"] = ""; +App::$strings["(modified)"] = ""; +App::$strings["Layout not found."] = ""; +App::$strings["Module Name:"] = ""; +App::$strings["Layout Help"] = ""; +App::$strings["Edit another layout"] = ""; +App::$strings["System layout"] = ""; +App::$strings["Permission category name is required."] = ""; +App::$strings["Permission category saved."] = ""; +App::$strings["Permission Categories App"] = ""; +App::$strings["Create custom connection permission limits"] = ""; +App::$strings["Use this form to create permission rules for various classes of people or connections."] = ""; +App::$strings["Permission category name"] = ""; +App::$strings["Page owner information could not be retrieved."] = ""; +App::$strings["Album not found."] = ""; +App::$strings["Delete Album"] = ""; +App::$strings["Delete Photo"] = ""; +App::$strings["No photos selected"] = ""; +App::$strings["Access to this item is restricted."] = ""; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = ""; +App::$strings["%1$.2f MB photo storage used."] = ""; +App::$strings["Upload Photos"] = ""; +App::$strings["Enter an album name"] = ""; +App::$strings["or select an existing album (doubleclick)"] = ""; +App::$strings["Create a status post for this upload"] = ""; +App::$strings["Description (optional)"] = ""; +App::$strings["Show Newest First"] = ""; +App::$strings["Show Oldest First"] = ""; +App::$strings["Add Photos"] = ""; +App::$strings["Permission denied. Access to this item may be restricted."] = ""; +App::$strings["Photo not available"] = ""; +App::$strings["Use as profile photo"] = ""; +App::$strings["Use as cover photo"] = ""; +App::$strings["Private Photo"] = ""; +App::$strings["View Full Size"] = ""; +App::$strings["Edit photo"] = ""; +App::$strings["Rotate CW (right)"] = ""; +App::$strings["Rotate CCW (left)"] = ""; +App::$strings["Move photo to album"] = ""; +App::$strings["Enter a new album name"] = ""; +App::$strings["or select an existing one (doubleclick)"] = ""; +App::$strings["Add a Tag"] = ""; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = ""; +App::$strings["Flag as adult in album view"] = ""; +App::$strings["Photo Tools"] = ""; +App::$strings["In This Photo:"] = ""; +App::$strings["Map"] = ""; +App::$strings["sent you a private message"] = ""; +App::$strings["added your channel"] = ""; +App::$strings["requires approval"] = ""; +App::$strings["g A l F d"] = ""; +App::$strings["[today]"] = ""; +App::$strings["posted an event"] = ""; +App::$strings["shared a file with you"] = ""; +App::$strings["Private forum"] = ""; +App::$strings["Public forum"] = ""; +App::$strings["Poke App"] = ""; +App::$strings["Poke somebody in your addressbook"] = ""; App::$strings["Poke somebody"] = ""; App::$strings["Poke/Prod"] = ""; App::$strings["Poke, prod or do other things to somebody"] = ""; App::$strings["Recipient"] = ""; App::$strings["Choose what you wish to do to recipient"] = ""; App::$strings["Make this post private"] = ""; -App::$strings["Unable to find your hub."] = "あなたのhubからみつけることができませんでした。"; -App::$strings["Post successful."] = "投稿しました。"; -App::$strings["%s element installed"] = "%sのエレメントがインストールされました。"; -App::$strings["%s element installation failed"] = "%sのエレメントのインストールに失敗しました。"; -App::$strings["sent you a private message"] = "あなたにプライベートメッセージを送信しました。"; -App::$strings["added your channel"] = "あなたのチャンネルを追加しました。"; -App::$strings["requires approval"] = "Требуется подтверждение"; -App::$strings["g A l F d"] = "g A l F d"; -App::$strings["[today]"] = "[今日]"; -App::$strings["posted an event"] = "イベントを投稿しました。"; -App::$strings["shared a file with you"] = "あなたとファイルを共有しました。"; -App::$strings["Private forum"] = "プライベートフォーラム"; -App::$strings["Public forum"] = "パブリックフォーラム"; -App::$strings["Some blurb about what to do when you're new here"] = "Некоторые предложения о том, что делать, если вы здесь новичок "; -App::$strings["Active"] = "アクティブ"; -App::$strings["Blocked"] = "ブロック"; -App::$strings["Ignored"] = "拒否"; -App::$strings["Hidden"] = "隠し"; -App::$strings["Archived/Unreachable"] = "アーカイブ/リーチ"; -App::$strings["Active Connections"] = "アクティブなコネクション"; -App::$strings["Show active connections"] = "アクティブなコネクションを表示"; -App::$strings["Show pending (new) connections"] = "許可待ちな新しいコネクションを表示"; -App::$strings["Only show blocked connections"] = "ブロック済みのコネクションだけを表示"; -App::$strings["Only show ignored connections"] = "拒否済みのコネクションだけを表示"; -App::$strings["Only show archived/unreachable connections"] = "アーカイブ/リーチ済みのコネクションだけを表示"; -App::$strings["Only show hidden connections"] = "隠したコネクションだけを表示"; -App::$strings["All Connections"] = "全てのコネクション"; -App::$strings["Show all connections"] = "全てのコネクションを表示する"; -App::$strings["Pending approval"] = "許可待ち"; -App::$strings["Archived"] = "アーカイブ済み"; -App::$strings["Not connected at this location"] = "このロケーションからはアクセスできません。"; -App::$strings["%1\$s [%2\$s]"] = ""; -App::$strings["Edit connection"] = "コネクションの編集"; -App::$strings["Delete connection"] = "コネクションの削除"; -App::$strings["Channel address"] = "チャンネルアドレス"; -App::$strings["Network"] = "ネットワーク"; -App::$strings["Call"] = ""; -App::$strings["Status"] = "ステータス"; -App::$strings["Connected"] = "コネクト日時"; -App::$strings["Approve connection"] = "コネクション要求の許可"; -App::$strings["Ignore connection"] = "コネクション要求の拒否"; -App::$strings["Ignore"] = "拒否"; -App::$strings["Recent activity"] = "最近のアクティビティ"; -App::$strings["Search your connections"] = "コネクションを検索"; -App::$strings["Connections search"] = "コネクションの検索"; -App::$strings["Unable to locate original post."] = "ポストのオリジナルの場所を特定できませんでした。"; -App::$strings["Empty post discarded."] = "空のポストは作成できません。"; -App::$strings["Duplicate post suppressed."] = "多重投稿を検出しました。"; -App::$strings["System error. Post not saved."] = "システムエラーです。投稿は保存されませんでした。"; -App::$strings["Your comment is awaiting approval."] = "Ваш комментарий ожидает одобрения."; -App::$strings["Unable to obtain post information from database."] = "データベースから投稿の情報を取得できませんでした。"; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Вы достигли вашего ограничения в %1$.0f публикаций высокого уровня."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Вы достигли вашего ограничения в %1$.0f страниц."; -App::$strings["Calendar entries imported."] = "События календаря импортированы."; -App::$strings["No calendar entries found."] = "Не найдено событий в календаре."; -App::$strings["Event can not end before it has started."] = "Событие не может завершиться до его начала."; -App::$strings["Unable to generate preview."] = "プレビューの生成ができませんでした。"; -App::$strings["Event title and start time are required."] = "イベントのタイトルと開始時刻は必須です"; -App::$strings["Event not found."] = "Событие не найдено."; -App::$strings["Edit event title"] = "イベントタイトル"; -App::$strings["Categories (comma-separated list)"] = "カテゴリ指定 (任意、カンマで追加)"; -App::$strings["Edit Category"] = "カテゴリーの編集"; -App::$strings["Category"] = "カテゴリー"; -App::$strings["Edit start date and time"] = "開始時刻と日時"; -App::$strings["Finish date and time are not known or not relevant"] = "終了時期は未定、又は終了概念が無い"; -App::$strings["Edit finish date and time"] = "終了時刻と日時"; -App::$strings["Finish date and time"] = "終了時刻と日時"; -App::$strings["Adjust for viewer timezone"] = "観覧者のタイムゾーンに自動で調整する"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "局所的なイベントには的していますが、世界的なイベントには適していないかもしれません。"; -App::$strings["Edit Description"] = "説明"; -App::$strings["Edit Location"] = "位置情報"; -App::$strings["Timezone:"] = "タイムゾーン:"; -App::$strings["Advanced Options"] = "詳細設定"; -App::$strings["l, F j"] = ""; -App::$strings["Edit event"] = "イベントの編集"; -App::$strings["Delete event"] = "イベントの削除"; -App::$strings["calendar"] = "カレンダー"; -App::$strings["Edit Event"] = "イベントの編集"; -App::$strings["Create Event"] = "イベントの作成"; -App::$strings["Event removed"] = "イベントは削除されました"; -App::$strings["Failed to remove event"] = "イベントの削除に失敗しました"; -App::$strings["Layout Name"] = "レイアウト名"; -App::$strings["Layout Description (Optional)"] = "レイアウトの説明(任意)"; -App::$strings["Comanche page description language help"] = "Помощь по языку описания страниц Comanche "; -App::$strings["Layout Description"] = "レイアウトの説明"; -App::$strings["Created"] = "作成"; -App::$strings["Edited"] = "編集"; -App::$strings["Download PDL file"] = "PDLファイルのダウンロード"; -App::$strings["No more system notifications."] = "通知はありません。"; -App::$strings["System Notifications"] = "通知"; -App::$strings["Layout updated."] = "レイアウトはアップデートされました"; -App::$strings["Feature disabled."] = "機能は無効化されています"; -App::$strings["Edit System Page Description"] = "ページのレイアウト全体のデザイン設定を変更できます。"; -App::$strings["(modified)"] = "(編集済み)"; -App::$strings["Reset"] = "リセット"; -App::$strings["Layout not found."] = "レイアウトはありません"; -App::$strings["Module Name:"] = "モジュール名:"; -App::$strings["Layout Help"] = "レイアウトヘルプ"; -App::$strings["Edit another layout"] = "他のレイアウトを編集"; -App::$strings["System layout"] = "システムレイアウト"; -App::$strings["Unable to lookup recipient."] = ""; -App::$strings["Unable to communicate with requested channel."] = "Не удалось установить связь с запрашиваемым каналом."; -App::$strings["Cannot verify requested channel."] = "Не удалось установить подлинность требуемого канала."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Выбранный канал ограничивает частные сообщения. Отправка не удалась."; -App::$strings["Messages"] = "Сообщения"; -App::$strings["message"] = "メッセージ"; -App::$strings["Message recalled."] = "Сообщение отозванно."; -App::$strings["Conversation removed."] = "Разговор удален."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Истекает YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "Запрашиваемый канал не доступен."; -App::$strings["Send Private Message"] = "Отправить личное сообщение"; -App::$strings["To:"] = "Кому:"; -App::$strings["Subject:"] = "Тема:"; -App::$strings["Your message:"] = "Сообщение:"; -App::$strings["Attach file"] = "Прикрепить файл"; -App::$strings["Send"] = "Отправить"; -App::$strings["Delete message"] = "Удалить сообщение"; -App::$strings["Delivery report"] = "転送状況"; -App::$strings["Recall message"] = "Отозвать сообщение"; -App::$strings["Message has been recalled."] = "Сообщение отозванно"; -App::$strings["Delete Conversation"] = "Удалить разговор"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Безопасная связь недоступна. Вы можете попытаться ответить со страницы профиля отправителя."; -App::$strings["Send Reply"] = "Отправить ответ"; -App::$strings["Your message for %s (%s):"] = "Ваше сообщение для %s (%s):"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Удаление канала не разрешается в течении 48 часов после смены пароля у аккаунта."; -App::$strings["Remove This Channel"] = "チャンネルの削除"; -App::$strings["WARNING: "] = "警告 : "; -App::$strings["This channel will be completely removed from the network. "] = "このチャンネルはネットワークから完全に削除されます。"; -App::$strings["This action is permanent and can not be undone!"] = "この作業は取り消せませんので注意して実行してください。"; -App::$strings["Please enter your password for verification:"] = "パスワードを入力してください : "; -App::$strings["Remove this channel and all its clones from the network"] = "このチャンネルとそのクローンを全て削除する"; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "デフォルトではこのhubのチャンネルだけがネットワークから削除されます。クローンを作成している場合は削除されません。"; -App::$strings["Remove Channel"] = "チャンネルの削除"; -App::$strings["Reset form"] = "Очистить форму"; -App::$strings["Welcome to Hubzilla!"] = "hubzillaへようこそ!!!!"; -App::$strings["You have got no unseen posts..."] = "У вас нет видимых публикаций..."; -App::$strings["Item not found"] = "Элемент не найден"; -App::$strings["Channel not found."] = "Канал не найден."; -App::$strings["Edit Card"] = "Редактировать карточку"; -App::$strings["Xchan Lookup"] = "Поиск Xchan"; -App::$strings["Lookup xchan beginning with (or webbie): "] = "Запрос Xchan начинается с (или webbie):"; -App::$strings["Not found."] = "Не найдено."; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "ユーザーのおすすめはありません。もしこのサイトが作成されたばかりなのであれば24時間後にもう一度確認してみてください。"; -App::$strings["Posts and comments"] = "Публикации и комментарии"; -App::$strings["Only posts"] = "Только публикации"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Недостаточно прав. Запрос перенаправлен на страницу профиля."; -App::$strings["Search Results For:"] = "検索結果: "; -App::$strings["Documentation Search"] = "Поиск документации"; -App::$strings["Members"] = "メンバー"; -App::$strings["Administrators"] = "Администраторы"; -App::$strings["Developers"] = "Разработчики"; -App::$strings["Tutorials"] = "Руководства"; -App::$strings["\$Projectname Documentation"] = "\$Projectnameヘルプ"; -App::$strings["Contents"] = "コンテンツ"; -App::$strings["This site is not a directory server"] = "Этот сайт не является сервером каталога"; -App::$strings["Export Channel"] = "Экспорт канала"; -App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Экспортировать основную информацию из канала в файл. Служит в качестве резервной копии ваших контактов, основных данных и профиля, однако не включает содержимое. Может быть использовано для импорта ваши данных на новый сервер."; -App::$strings["Export Content"] = "Экспортировать содержимое"; -App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Экспортировать информацию из вашего канала и его содержимое в резервную копию в формате JSON которая может быть использована для восстановления или импорта на другом сервере. Сохраняет все ваши контакты, разрешения, данные профиля и публикации за несколько месяцев. Файл может иметь очень большой размер. Пожалуйста, будьте терпеливы и подождите несколько минут пока не начнётся загрузка."; -App::$strings["Export your posts from a given year."] = "Экспортировать ваши публикации за данный год."; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Вы также можете экспортировать ваши публикации и беседы за определённый месяц или год. Выберите дату в панели местоположения в браузере. Если экспорт будет неудачным (это возможно, например, из-за исчерпания памяти на сервере), повторите попытку, выбрав меньший диапазон дат."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Для выбора всех публикаций заданного года, например текущего, посетите %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Для выбора всех публикаций заданного месяца, например за январь сего года, посетите %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Данные файлы с содержимым могут быть импортированы и восстановлены на любом содержащем ваш канал сайте. Посетите %2\$s. Для лучших результатов пожалуйста производите импорт и восстановление в порядке датировки (старые сначала)."; -App::$strings["Away"] = "Нет на месте"; -App::$strings["Online"] = "В сети"; -App::$strings["Invalid item."] = "Недействительный элемент."; -App::$strings["Authorize application connection"] = "Авторизовать подключение приложения"; -App::$strings["Return to your app and insert this Security Code:"] = "Вернитесь к своему приложению и вставьте этот код безопасности:"; -App::$strings["Please login to continue."] = "Пожалуйста, войдите, чтобы продолжить."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Вы хотите авторизовать это приложение для доступа к вашим публикациям и контактам и / или созданию новых публикаций?"; -App::$strings["item"] = "пункт"; -App::$strings["No ratings"] = "Оценок нет"; -App::$strings["Rating: "] = "Оценкa:"; -App::$strings["Website: "] = "Веб-сайт:"; -App::$strings["Description: "] = "Описание:"; -App::$strings["Failed to create source. No channel selected."] = "Не удалось создать источник. Канал не выбран."; -App::$strings["Source created."] = "Источник создан."; -App::$strings["Source updated."] = "Источник обновлен."; -App::$strings["*"] = ""; -App::$strings["Manage remote sources of content for your channel."] = "Управлять удалённым источниками содержимого для вашего канала"; -App::$strings["New Source"] = "Новый источник"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Импортировать всё или выбранное содержимое из следующего канала в этот канал и распределить его в соответствии с вашими настройками."; -App::$strings["Only import content with these words (one per line)"] = "Импортировать содержимое только с этим текстом (построчно)"; -App::$strings["Leave blank to import all public content"] = "Оставьте пустым для импорта всего общедоступного содержимого"; -App::$strings["Channel Name"] = "チャンネル名"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Добавить следующие категории к импортированным публикациям из этого источника (через запятые)"; -App::$strings["Optional"] = "Необязательно"; -App::$strings["Resend posts with this channel as author"] = "Отправить публикации в этот канал повторно как автор"; -App::$strings["Copyrights may apply"] = "Могут применяться авторские права"; -App::$strings["Source not found."] = "Источник не найден."; -App::$strings["Edit Source"] = "Редактировать источник"; -App::$strings["Delete Source"] = "Удалить источник"; -App::$strings["Source removed"] = "Источник удален"; -App::$strings["Unable to remove source."] = "Невозможно удалить источник."; -App::$strings["About this site"] = "Об этом сайте"; -App::$strings["Site Name"] = "Название сайта"; -App::$strings["Site Information"] = "Информация о сайте"; -App::$strings["Administrator"] = "Администратор"; -App::$strings["Terms of Service"] = "利用規約"; -App::$strings["Software and Project information"] = "Информация о программном обеспечении и проекте"; -App::$strings["This site is powered by \$Projectname"] = "Этот сайт работает на \$Projectname"; -App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Объединенные и децентрализованные сети и службы идентификациии обеспечиваются Zot"; -App::$strings["Additional federated transport protocols:"] = "Дополнительные федеративные транспортные протоколы:"; -App::$strings["Version %s"] = "Версия %s"; -App::$strings["Project homepage"] = "Домашняя страница проекта"; -App::$strings["Developer homepage"] = "Домашняя страница разработчика"; -App::$strings["Image uploaded but image cropping failed."] = "Изображение загружено но обрезка не удалась."; -App::$strings["Image resize failed."] = "Не удалось изменить размер изображения."; -App::$strings["Image upload failed."] = "Загрузка изображения не удалась."; -App::$strings["Unable to process image."] = "画像処理に失敗しました。"; -App::$strings["Photo not available."] = "Фотография недоступна."; -App::$strings["Your default profile photo is visible to anybody on the internet. Profile photos for alternate profiles will inherit the permissions of the profile"] = "Фотография вашего профиля по умолчанию видна всем в Интернете. Фотографияпрофиля для альтернативных профилей наследуют разрешения текущего профиля"; -App::$strings["Your profile photo is visible to anybody on the internet and may be distributed to other websites."] = "プロフィール写真はインターネット上の誰でも見ることができ、他のウェブサイトに配布される可能性があります。"; -App::$strings["Upload File:"] = "ファイルをアップロード:"; -App::$strings["Select a profile:"] = "Выбрать профиль:"; -App::$strings["Use Photo for Profile"] = "Использовать фотографию для профиля"; -App::$strings["Change Profile Photo"] = "プロ画の変更"; -App::$strings["Use"] = "Использовать"; -App::$strings["Use a photo from your albums"] = "アップロード済画像から選ぶ"; -App::$strings["Choose a different album"] = "別のアルバムを選ぶ"; -App::$strings["Select existing photo"] = "アップロード済画像から選ぶ"; -App::$strings["Crop Image"] = "画像の切り取り"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "画像を四角に切り取ってください。"; -App::$strings["Done Editing"] = "編集の終了"; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s отслеживает %2\$s's %3\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s прекратил отслеживать %2\$s's %3\$s"; -App::$strings["No channel."] = "Канала нет."; -App::$strings["No connections in common."] = "Общих контактов нет."; -App::$strings["View Common Connections"] = "コモンなコネクションを表示"; -App::$strings["Permission Denied."] = "権限がありません."; -App::$strings["File not found."] = "ファイルがありません"; -App::$strings["Edit file permissions"] = "ファイルの権限の編集"; -App::$strings["Set/edit permissions"] = "権限の設定、編集"; -App::$strings["Include all files and sub folders"] = "全てのファイルとサブフォルダーを含める"; -App::$strings["Return to file list"] = "ファイルリストに戻る"; -App::$strings["Copy/paste this code to attach file to a post"] = "Копировать / вставить этот код для прикрепления файла к публикации"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Копировать / вставить эту URL для ссылки на файл со страницы"; -App::$strings["Share this file"] = "Поделиться этим файлом"; -App::$strings["Show URL to this file"] = "Показать URL этого файла"; -App::$strings["Show in your contacts shared folder"] = "あなたのフォロワーが共有したフォルダも表示する"; -App::$strings["Post not found."] = "ポストがありません"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s отметил тегом %2\$s %3\$s с %4\$s"; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Бля бля бля Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Block Name"] = "ブロック名"; -App::$strings["Edit Block"] = "ブロックの編集"; -App::$strings["Item is not editable"] = "アイテムは編集不可になっています。"; -App::$strings["Edit post"] = "投稿の作成"; -App::$strings["Tag removed"] = "タグは削除されました。"; -App::$strings["Remove Item Tag"] = "アイテムタグの削除"; -App::$strings["Select a tag to remove: "] = "削除するタグを選択:"; -App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Удаление канала не разрешается в течении 48 часов после смены пароля у аккаунта."; -App::$strings["Remove This Account"] = "このアカウントを削除する"; -App::$strings["This account and all its channels will be completely removed from the network. "] = "このアカウントとそのチャンネルはネットワークから完全に削除されます。"; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "アカウントを削除し全てのチャンネルとそのクローンを削除"; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "デフォルトでは、このハブにあるチャネルのインスタンスのみがネットワークから削除されます(クローン先やクローン元のチャンネルは削除されません)。"; -App::$strings["Remove Account"] = "アカウントの削除"; -App::$strings["Blocked accounts"] = "Заблокированные аккаунты"; -App::$strings["Expired accounts"] = "Просроченные аккаунты"; -App::$strings["Expiring accounts"] = "Близкие к просрочке аккаунты"; -App::$strings["Primary"] = "プライマリ"; -App::$strings["Clones"] = "Клоны"; -App::$strings["Message queues"] = "Очередь сообщений"; -App::$strings["Your software should be updated"] = "Ваше программное обеспечение должно быть обновлено"; -App::$strings["Administration"] = "Администрирование"; -App::$strings["Summary"] = "Резюме"; -App::$strings["Registered accounts"] = "Зарегистрированные аккаунты"; -App::$strings["Pending registrations"] = "Ждут утверждения"; -App::$strings["Registered channels"] = "Зарегистрированные каналы"; -App::$strings["Active addons"] = "Активные расширения"; -App::$strings["Version"] = "Версия системы"; -App::$strings["Repository version (master)"] = "Версия репозитория (master)"; -App::$strings["Repository version (dev)"] = "Версия репозитория (dev)"; -App::$strings["Could not access contact record."] = "Не удалось получить доступ к записи контакта."; -App::$strings["Could not locate selected profile."] = "Не удалось обнаружить выбранный профиль."; -App::$strings["Connection updated."] = "コネクションはアップデートされました。"; -App::$strings["Failed to update connection record."] = "Не удалось обновить запись контакта."; -App::$strings["is now connected to"] = "は接続されました:"; -App::$strings["Could not access address book record."] = "Не удалось получить доступ к записи адресной книги."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Обновление невозможно - в настоящее время канал недоступен."; -App::$strings["Unable to set address book parameters."] = "Не удалось получить доступ к параметрам адресной книги."; -App::$strings["Connection has been removed."] = "Контакт был удалён."; -App::$strings["View %s's profile"] = "%sのプロファイルを見る"; -App::$strings["Refresh Permissions"] = "パーミッションの更新"; -App::$strings["Fetch updated permissions"] = ""; -App::$strings["Refresh Photo"] = "画像の更新"; -App::$strings["Fetch updated photo"] = ""; -App::$strings["View recent posts and comments"] = "最近の投稿やコメントを見る"; -App::$strings["Unblock"] = "ブロックの解除"; -App::$strings["Block"] = "ブロック"; -App::$strings["Block (or Unblock) all communications with this connection"] = "このコネクションとの全ての関係をブロック(解除)する"; -App::$strings["This connection is blocked!"] = "このコネクションはブロックしています!"; -App::$strings["Unignore"] = "拒否の解除"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "全ての自分に対するコミュニケーションを拒否する"; -App::$strings["This connection is ignored!"] = "このコネクションは拒否されました!"; -App::$strings["Unarchive"] = "アンアーカイブ"; -App::$strings["Archive"] = "アーカイブ"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "チャンネルのアーカイブ(又はアーカイブの復帰) - チャンネルを死亡マークするがアクセスは可能"; -App::$strings["This connection is archived!"] = "このコネクションはアーカイブされました!"; -App::$strings["Unhide"] = "出す"; -App::$strings["Hide"] = "隠す"; -App::$strings["Hide or Unhide this connection from your other connections"] = "このコネクションを他のチャンネルから表示/非表示にする"; -App::$strings["This connection is hidden!"] = "このコネクションは非表示になっています!"; -App::$strings["Delete this connection"] = "このコネクションを削除する"; -App::$strings["Fetch Vcard"] = ""; -App::$strings["Fetch electronic calling card for this connection"] = ""; -App::$strings["Open Individual Permissions section by default"] = "Открывать раздел \"Индивидуальные разрешения\" по умолчанию"; -App::$strings["Affinity"] = "Сходство"; -App::$strings["Open Set Affinity section by default"] = "Открыть секцию установления сходства по умолчанию"; -App::$strings["Filter"] = "Фильтр"; -App::$strings["Open Custom Filter section by default"] = "Открывать секцию \"Настраиваемый фильтр\" по умолчанию"; -App::$strings["Approve this connection"] = "コネクションを許可する"; -App::$strings["Accept connection to allow communication"] = "コミュニケーションを取るために許可します!"; -App::$strings["Set Affinity"] = "Установить сходство"; -App::$strings["Set Profile"] = "プロファイルの設定"; -App::$strings["Set Affinity & Profile"] = "Установить сходство и профиль"; -App::$strings["This connection is unreachable from this location."] = "このコネクションはこの場所からリーチできません"; -App::$strings["This connection may be unreachable from other channel locations."] = "このチャンネルの投稿は本体のhub以外では取得できない可能性があります。"; -App::$strings["Location independence is not supported by their network."] = "連合コネクションが相手のネットワークでサポートされていません。"; -App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "ここからこのチャンネルに接続できません。連合コネクションが相手のネットワークでサポートされていません。"; -App::$strings["Apply these permissions automatically"] = "これらの権限設定を自動でセットする"; -App::$strings["Connection requests will be approved without your interaction"] = "Запросы контактов будут одобрены без вашего участия"; -App::$strings["Permission role"] = "権限ルール"; -App::$strings["Add permission role"] = "権限ルールの追加"; -App::$strings["This connection's primary address is"] = "このコネクションの住所 : "; -App::$strings["Available locations:"] = "このコネクションの別荘"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Разрешения, указанные на этой странице, будут применяться ко всем новым соединениям."; -App::$strings["Connection Tools"] = "コネクションツール"; -App::$strings["Slide to adjust your degree of friendship"] = "Прокрутить для настройки степени дружбы"; -App::$strings["Slide to adjust your rating"] = "Прокрутить для настройки оценки"; -App::$strings["Optionally explain your rating"] = "Объясните свою оценку (не обязательно)"; -App::$strings["Custom Filter"] = "カスタムフィルター"; -App::$strings["Only import posts with this text"] = "次のテキストにマッチする投稿だけ表示"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "一単語、又は #ハッシュタグ, /パターン/ や lang=xxl;で指定できます。空白で全ての投稿を取得します。"; -App::$strings["Do not import posts with this text"] = "次のテキストにマッチする投稿を表示しない"; -App::$strings["This information is public!"] = "Эта информация общедоступна!"; -App::$strings["Connection Pending Approval"] = "コネクション要求が来ています。"; -App::$strings["inherited"] = "継承済み"; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "%sのフォローに使用するプロファイルを選択してください。 相手にもこのプロファイルが表示されます。"; -App::$strings["Their Settings"] = "相手の設定"; -App::$strings["My Settings"] = "自分の設定"; -App::$strings["Individual Permissions"] = "アクセス権限の設定"; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = " -幾つかの権限はあなたのチャンネルのプライバシー設定によって隠されています。それは隠された設定よりも優先度が高いです(翻訳不定)。 あなたはこれらの設定をここで変更できません。"; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Некоторые разрешения могут быть унаследованы из настроек приватности вашего канала, которые могут иметь более высокий приоритет чем индивидуальные. Вы можете изменить эти настройки, однако они не будут применены до изменения переданных по наследству настроек."; -App::$strings["Last update:"] = "最終更新 : "; -App::$strings["Details"] = "Сведения"; -App::$strings["Import Webpage Elements"] = "Импортировать части веб-страницы"; -App::$strings["Import selected"] = "Импортировать выбранное"; -App::$strings["Export Webpage Elements"] = "Экспортировать часть веб-страницы"; -App::$strings["Export selected"] = "Экспортировать выбранное"; -App::$strings["Actions"] = "Действия"; -App::$strings["Page Link"] = "ページリンク"; -App::$strings["Page Title"] = "ページタイトル"; -App::$strings["Invalid file type."] = "Неверный тип файла."; -App::$strings["Error opening zip file"] = "Ошибка открытия ZIP файла"; -App::$strings["Invalid folder path."] = "Неверный путь к каталогу."; -App::$strings["No webpage elements detected."] = "Не обнаружено частей веб-страницы."; -App::$strings["Import complete."] = "Импорт завершен."; -App::$strings["Page link"] = "ページリンク"; -App::$strings["Edit Webpage"] = "Редактировать веб-страницу"; -App::$strings["Edit Layout"] = "Редактировать шаблон"; -App::$strings["This directory server requires an access token"] = "Для доступа к этому серверу каталогов требуется токен"; -App::$strings["Comment approved"] = "Комментарий одобрен"; -App::$strings["Comment deleted"] = "Комментарий удалён"; -App::$strings["Add Article"] = "記事の入力"; -App::$strings["Bookmark added"] = "ブックマークに追加されました。"; -App::$strings["My Bookmarks"] = "マイブックマーク"; -App::$strings["My Connections Bookmarks"] = "自分のコネクションのブックマーク"; -App::$strings["Files: shared with me"] = "ファイル : 自分に共有された項目"; -App::$strings["NEW"] = "НОВОЕ"; -App::$strings["Last Modified"] = "変更履歴"; -App::$strings["Remove all files"] = "全てのファイルを削除"; -App::$strings["Remove this file"] = "このファイルを削除"; -App::$strings["Select a bookmark folder"] = "ブックマークフォルダーの選択"; -App::$strings["Save Bookmark"] = "ブックマークの保存"; -App::$strings["URL of bookmark"] = "ブックマークのURL"; -App::$strings["Or enter new bookmark folder name"] = "又は新しいブックマークフォルダーの名前を入力"; -App::$strings["Permissions denied."] = "権限がありません。"; -App::$strings["Unknown App"] = "未知のアプリ"; -App::$strings["Authorize"] = "登録"; -App::$strings["Do you authorize the app %s to access your channel data?"] = "あなたのチャンネルデータにアクセスするために次のアプリ %s を登録しますか?"; -App::$strings["Allow"] = "許可"; -App::$strings["Deny"] = "拒否"; -App::$strings["Items tagged with: %s"] = "次によってタグ付け: %s"; -App::$strings["Search results for: %s"] = "次の検索結果: %s"; -App::$strings["\$Projectname Server - Setup"] = "\$Projectname サーバーのセットアップ"; -App::$strings["Could not connect to database."] = "データベースに接続できませんでした。"; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "URLにアクセスできませんでした。SSLかDNSに問題があるようです。"; -App::$strings["Could not create table."] = "テーブルが作成できませんでした。"; +App::$strings["Remote Diagnostics App"] = ""; +App::$strings["Perform diagnostics on remote channels"] = ""; +App::$strings["vcard"] = ""; +App::$strings["Profile not found."] = ""; +App::$strings["Profile deleted."] = ""; +App::$strings["Profile-"] = ""; +App::$strings["New profile created."] = ""; +App::$strings["Profile unavailable to clone."] = ""; +App::$strings["Profile unavailable to export."] = ""; +App::$strings["Profile Name is required."] = ""; +App::$strings["Marital Status"] = ""; +App::$strings["Romantic Partner"] = ""; +App::$strings["Likes"] = ""; +App::$strings["Dislikes"] = ""; +App::$strings["Work/Employment"] = ""; +App::$strings["Religion"] = ""; +App::$strings["Political Views"] = ""; +App::$strings["Gender"] = ""; +App::$strings["Sexual Preference"] = ""; +App::$strings["Homepage"] = ""; +App::$strings["Interests"] = ""; +App::$strings["Profile updated."] = ""; +App::$strings["Hide your connections list from viewers of this profile"] = ""; +App::$strings["Edit Profile Details"] = ""; +App::$strings["View this profile"] = ""; +App::$strings["Profile Tools"] = ""; +App::$strings["Change cover photo"] = ""; +App::$strings["Create a new profile using these settings"] = ""; +App::$strings["Clone this profile"] = ""; +App::$strings["Delete this profile"] = ""; +App::$strings["Add profile things"] = ""; +App::$strings["Personal"] = ""; +App::$strings["Relationship"] = ""; +App::$strings["Import profile from file"] = ""; +App::$strings["Export profile to file"] = ""; +App::$strings["Your gender"] = ""; +App::$strings["Marital status"] = ""; +App::$strings["Sexual preference"] = ""; +App::$strings["Profile name"] = ""; +App::$strings["This is your default profile."] = ""; +App::$strings["Your full name"] = ""; +App::$strings["Title/Description"] = ""; +App::$strings["Street address"] = ""; +App::$strings["Locality/City"] = ""; +App::$strings["Region/State"] = ""; +App::$strings["Postal/Zip code"] = ""; +App::$strings["Who (if applicable)"] = ""; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = ""; +App::$strings["Since (date)"] = ""; +App::$strings["Tell us about yourself"] = ""; +App::$strings["Homepage URL"] = ""; +App::$strings["Hometown"] = ""; +App::$strings["Political views"] = ""; +App::$strings["Religious views"] = ""; +App::$strings["Keywords used in directory listings"] = ""; +App::$strings["Example: fishing photography software"] = ""; +App::$strings["Musical interests"] = ""; +App::$strings["Books, literature"] = ""; +App::$strings["Television"] = ""; +App::$strings["Film/Dance/Culture/Entertainment"] = ""; +App::$strings["Hobbies/Interests"] = ""; +App::$strings["Love/Romance"] = ""; +App::$strings["School/Education"] = ""; +App::$strings["Contact information and social networks"] = ""; +App::$strings["My other channels"] = ""; +App::$strings["Communications"] = ""; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; +App::$strings["Your default profile photo is visible to anybody on the internet. Profile photos for alternate profiles will inherit the permissions of the profile"] = ""; +App::$strings["Your profile photo is visible to anybody on the internet and may be distributed to other websites."] = ""; +App::$strings["Use Photo for Profile"] = ""; +App::$strings["Change Profile Photo"] = ""; +App::$strings["Use"] = ""; +App::$strings["Invalid profile identifier."] = ""; +App::$strings["Profile Visibility Editor"] = ""; +App::$strings["Click on a contact to add or remove."] = ""; +App::$strings["Visible To"] = ""; +App::$strings["Public Hubs"] = ""; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = ""; +App::$strings["Hub URL"] = ""; +App::$strings["Access Type"] = ""; +App::$strings["Registration Policy"] = ""; +App::$strings["Stats"] = ""; +App::$strings["Software"] = ""; +App::$strings["Rate"] = ""; +App::$strings["Public Stream App"] = ""; +App::$strings["The unmoderated public stream of this hub"] = ""; +App::$strings["Random Channel App"] = ""; +App::$strings["Visit a random channel in the \$Projectname network"] = ""; +App::$strings["Website:"] = ""; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = ""; +App::$strings["Rating (this information is public)"] = ""; +App::$strings["Optionally explain your rating (this information is public)"] = ""; +App::$strings["No ratings"] = ""; +App::$strings["Rating: "] = ""; +App::$strings["Website: "] = ""; +App::$strings["Description: "] = ""; +App::$strings["Select a bookmark folder"] = ""; +App::$strings["Save Bookmark"] = ""; +App::$strings["URL of bookmark"] = ""; +App::$strings["Or enter new bookmark folder name"] = ""; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = ""; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = ""; +App::$strings["Passwords do not match."] = ""; +App::$strings["Registration successful. Continue to create your first channel..."] = ""; +App::$strings["Registration successful. Please check your email for validation instructions."] = ""; +App::$strings["Your registration is pending approval by the site owner."] = ""; +App::$strings["Your registration can not be processed."] = ""; +App::$strings["Registration on this hub is disabled."] = ""; +App::$strings["Registration on this hub is by approval only."] = ""; +App::$strings["Register at another affiliated hub."] = ""; +App::$strings["Registration on this hub is by invitation only."] = ""; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = ""; +App::$strings["Terms of Service"] = ""; +App::$strings["I accept the %s for this website"] = ""; +App::$strings["I am over %s years of age and accept the %s for this website"] = ""; +App::$strings["Your email address"] = ""; +App::$strings["Choose a password"] = ""; +App::$strings["Please re-enter your password"] = ""; +App::$strings["Please enter your invitation code"] = ""; +App::$strings["Your Name"] = ""; +App::$strings["Real names are preferred."] = ""; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = ""; +App::$strings["Select a channel permission role for your usage needs and privacy requirements."] = ""; +App::$strings["no"] = ""; +App::$strings["yes"] = ""; +App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = ""; +App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = ""; +App::$strings["Remove This Account"] = ""; +App::$strings["This account and all its channels will be completely removed from the network. "] = ""; +App::$strings["This action is permanent and can not be undone!"] = ""; +App::$strings["Remove this account, all its channels and all its channel clones from the network"] = ""; +App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = ""; +App::$strings["Remove Account"] = ""; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = ""; +App::$strings["Remove This Channel"] = ""; +App::$strings["This channel will be completely removed from the network. "] = ""; +App::$strings["Remove this channel and all its clones from the network"] = ""; +App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = ""; +App::$strings["Remove Channel"] = ""; +App::$strings["Authentication failed."] = ""; +App::$strings["Items tagged with: %s"] = ""; +App::$strings["Search results for: %s"] = ""; +App::$strings["No service class restrictions found."] = ""; +App::$strings["Not valid email."] = ""; +App::$strings["Protected email address. Cannot change to that email."] = ""; +App::$strings["System failure storing new email. Please try again."] = ""; +App::$strings["Password verification failed."] = ""; +App::$strings["Passwords do not match. Password unchanged."] = ""; +App::$strings["Empty passwords are not allowed. Password unchanged."] = ""; +App::$strings["Password changed."] = ""; +App::$strings["Password update failed. Please try again."] = ""; +App::$strings["Account Settings"] = ""; +App::$strings["Current Password"] = ""; +App::$strings["Enter New Password"] = ""; +App::$strings["Confirm New Password"] = ""; +App::$strings["Leave password fields blank unless changing"] = ""; +App::$strings["Email Address:"] = ""; +App::$strings["Remove this account including all its channels"] = ""; +App::$strings["CalDAV Settings"] = ""; +App::$strings["Nobody except yourself"] = ""; +App::$strings["Only those you specifically allow"] = ""; +App::$strings["Approved connections"] = ""; +App::$strings["Any connections"] = ""; +App::$strings["Anybody on this website"] = ""; +App::$strings["Anybody in this network"] = ""; +App::$strings["Anybody authenticated"] = ""; +App::$strings["Anybody on the internet"] = ""; +App::$strings["Publish your default profile in the network directory"] = ""; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = ""; +App::$strings["or"] = ""; +App::$strings["Your channel address is"] = ""; +App::$strings["Your files/photos are accessible via WebDAV at"] = ""; +App::$strings["Automatic membership approval"] = ""; +App::$strings["Channel Settings"] = ""; +App::$strings["Basic Settings"] = ""; +App::$strings["Your Timezone:"] = ""; +App::$strings["Default Post Location:"] = ""; +App::$strings["Geographical location to display on your posts"] = ""; +App::$strings["Use Browser Location:"] = ""; +App::$strings["Adult Content"] = ""; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = ""; +App::$strings["Security and Privacy Settings"] = ""; +App::$strings["Your permissions are already configured. Click to view/adjust"] = ""; +App::$strings["Hide my online presence"] = ""; +App::$strings["Prevents displaying in your profile that you are online"] = ""; +App::$strings["Simple Privacy Settings:"] = ""; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = ""; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = ""; +App::$strings["Private - default private, never open or public"] = ""; +App::$strings["Blocked - default blocked to/from everybody"] = ""; +App::$strings["Allow others to tag your posts"] = ""; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = ""; +App::$strings["Channel Permission Limits"] = ""; +App::$strings["Expire other channel content after this many days"] = ""; +App::$strings["0 or blank to use the website limit."] = ""; +App::$strings["This website expires after %d days."] = ""; +App::$strings["This website does not expire imported content."] = ""; +App::$strings["The website limit takes precedence if lower than your limit."] = ""; +App::$strings["Maximum Friend Requests/Day:"] = ""; +App::$strings["May reduce spam activity"] = ""; +App::$strings["Default Privacy Group"] = ""; +App::$strings["Use my default audience setting for the type of object published"] = ""; +App::$strings["Default permissions category"] = ""; +App::$strings["Maximum private messages per day from unknown people:"] = ""; +App::$strings["Useful to reduce spamming"] = ""; +App::$strings["By default post a status message when:"] = ""; +App::$strings["accepting a friend request"] = ""; +App::$strings["joining a forum/community"] = ""; +App::$strings["making an interesting profile change"] = ""; +App::$strings["Send a notification email when:"] = ""; +App::$strings["You receive a connection request"] = ""; +App::$strings["Your connections are confirmed"] = ""; +App::$strings["Someone writes on your profile wall"] = ""; +App::$strings["Someone writes a followup comment"] = ""; +App::$strings["You receive a private message"] = ""; +App::$strings["You receive a friend suggestion"] = ""; +App::$strings["You are tagged in a post"] = ""; +App::$strings["You are poked/prodded/etc. in a post"] = ""; +App::$strings["Someone likes your post/comment"] = ""; +App::$strings["Show visual notifications including:"] = ""; +App::$strings["Unseen stream activity"] = ""; +App::$strings["Unseen channel activity"] = ""; +App::$strings["Unseen private messages"] = ""; +App::$strings["Recommended"] = ""; +App::$strings["Upcoming events"] = ""; +App::$strings["Events today"] = ""; +App::$strings["Upcoming birthdays"] = ""; +App::$strings["Not available in all themes"] = ""; +App::$strings["System (personal) notifications"] = ""; +App::$strings["System info messages"] = ""; +App::$strings["System critical alerts"] = ""; +App::$strings["New connections"] = ""; +App::$strings["System Registrations"] = ""; +App::$strings["Unseen shared files"] = ""; +App::$strings["Unseen public stream activity"] = ""; +App::$strings["Unseen likes and dislikes"] = ""; +App::$strings["Unseen forum posts"] = ""; +App::$strings["Email notification hub (hostname)"] = ""; +App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = ""; +App::$strings["Show new wall posts, private messages and connections under Notices"] = ""; +App::$strings["Notify me of events this many days in advance"] = ""; +App::$strings["Must be greater than 0"] = ""; +App::$strings["Advanced Account/Page Type Settings"] = ""; +App::$strings["Change the behaviour of this account for special situations"] = ""; +App::$strings["Miscellaneous Settings"] = ""; +App::$strings["Default photo upload folder"] = ""; +App::$strings["%Y - current year, %m - current month"] = ""; +App::$strings["Default file upload folder"] = ""; +App::$strings["Remove this channel."] = ""; +App::$strings["Max height of content (in pixels)"] = ""; +App::$strings["Click to expand content exceeding this height"] = ""; +App::$strings["Personal menu to display in your channel pages"] = ""; +App::$strings["Channel Home Settings"] = ""; +App::$strings["Connections Settings"] = ""; +App::$strings["Settings saved."] = ""; +App::$strings["Settings saved. Reload page please."] = ""; +App::$strings["Conversation Settings"] = ""; +App::$strings["Directory Settings"] = ""; +App::$strings["%s - (Experimental)"] = ""; +App::$strings["Display Settings"] = ""; +App::$strings["Theme Settings"] = ""; +App::$strings["Custom Theme Settings"] = ""; +App::$strings["Content Settings"] = ""; +App::$strings["Display Theme:"] = ""; +App::$strings["Select scheme"] = ""; +App::$strings["Preload images before rendering the page"] = ""; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = ""; +App::$strings["Enable user zoom on mobile devices"] = ""; +App::$strings["Update browser every xx seconds"] = ""; +App::$strings["Minimum of 10 seconds, no maximum"] = ""; +App::$strings["Maximum number of conversations to load at any time:"] = ""; +App::$strings["Maximum of 100 items"] = ""; +App::$strings["Show emoticons (smilies) as images"] = ""; +App::$strings["Provide channel menu in navigation bar"] = ""; +App::$strings["Default: channel menu located in app menu"] = ""; +App::$strings["Manual conversation updates"] = ""; +App::$strings["Default is on, turning this off may increase screen jumping"] = ""; +App::$strings["Link post titles to source"] = ""; +App::$strings["New Member Links"] = ""; +App::$strings["Display new member quick links menu"] = ""; +App::$strings["Editor Settings"] = ""; +App::$strings["Events Settings"] = ""; +App::$strings["No feature settings configured"] = ""; +App::$strings["Addon Settings"] = ""; +App::$strings["Please save/submit changes to any panel before opening another."] = ""; +App::$strings["Additional Features"] = ""; +App::$strings["Channel Manager Settings"] = ""; +App::$strings["Stream Settings"] = ""; +App::$strings["Photos Settings"] = ""; +App::$strings["Profiles Settings"] = ""; +App::$strings["\$Projectname Server - Setup"] = ""; +App::$strings["Could not connect to database."] = ""; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = ""; +App::$strings["Could not create table."] = ""; App::$strings["Your site database has been installed."] = ""; App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = ""; App::$strings["Please see the file \"install/INSTALL.txt\"."] = ""; -App::$strings["System check"] = "システムチェック画面"; -App::$strings["Check again"] = "再チェック"; -App::$strings["Database connection"] = "データベースの設定"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "インストールを続行するためには \$Projectname がデータベースと接続する必要があります。"; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "設定方法は管理者やプロバイダーへご確認ください。"; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "下記で指定するデータベースは既に作成されている必要があります。もしまだ作成していない場合は作成してからこの画面を続行してください。"; -App::$strings["Database Server Name"] = "サーバー名"; -App::$strings["Default is 127.0.0.1"] = "デフォルト : 127.0.0.1"; -App::$strings["Database Port"] = "データベースのポート"; -App::$strings["Communication port number - use 0 for default"] = "通信ポートの設定です。 0でデフォルト設定を維持します。"; -App::$strings["Database Login Name"] = "データベースのユーザー名"; -App::$strings["Database Login Password"] = "パスワード"; -App::$strings["Database Name"] = "データベース名"; -App::$strings["Database Type"] = "データベースタイプ"; -App::$strings["Site administrator email address"] = "サイト管理者のメールアドレス"; +App::$strings["System check"] = ""; +App::$strings["Check again"] = ""; +App::$strings["Database connection"] = ""; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = ""; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = ""; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = ""; +App::$strings["Database Server Name"] = ""; +App::$strings["Default is 127.0.0.1"] = ""; +App::$strings["Database Port"] = ""; +App::$strings["Communication port number - use 0 for default"] = ""; +App::$strings["Database Login Name"] = ""; +App::$strings["Database Login Password"] = ""; +App::$strings["Database Name"] = ""; +App::$strings["Database Type"] = ""; +App::$strings["Site administrator email address"] = ""; App::$strings["Your account email address must match this in order to use the web admin panel."] = ""; -App::$strings["Website URL"] = "サイトのURL"; -App::$strings["Please use SSL (https) URL if available."] = "可能であればssl(https)を利用することを強くお勧めします。"; -App::$strings["Please select a default timezone for your website"] = "webサイトのデフォルトのタイムゾーンを選択してください。"; -App::$strings["Site settings"] = "サイト設定"; -App::$strings["PHP version 5.5 or greater is required."] = "PHPバージョン5.5以上が必須です。"; -App::$strings["PHP version"] = "PHPバージョン"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = " -CUIのphpバージョン取得コマンドがありません。サーバーのPATHを確認してください。"; -App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Если у вас на сервере не установлена консольная версия PHP вы не сможете запустить фоновый опрос через cron. "; -App::$strings["PHP executable path"] = "Пусть к исполняемому модулю PHP"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Введите полный путь к исполняемому модулю PHP. Вы можете оставить его пустым для продолжения установки."; -App::$strings["Command line PHP"] = "PHPコマンドライン"; -App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "Невозможно проверить командную строку PHP поскольку требуемая функция shell_exec() отключена."; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "このバージョンのphpは \"register_argc_argv\" に対応していません。"; -App::$strings["This is required for message delivery to work."] = "これは投稿の他サーバーへの送信に必要となります。"; +App::$strings["Website URL"] = ""; +App::$strings["Please use SSL (https) URL if available."] = ""; +App::$strings["Please select a default timezone for your website"] = ""; +App::$strings["Site settings"] = ""; +App::$strings["PHP version 7.1 or greater is required."] = ""; +App::$strings["PHP version"] = ""; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = ""; +App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = ""; +App::$strings["PHP executable path"] = ""; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; +App::$strings["Command line PHP"] = ""; +App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = ""; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = ""; +App::$strings["This is required for message delivery to work."] = ""; App::$strings["PHP register_argc_argv"] = ""; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "合計ファイル送信の最大値は %s に設定されています。一ファイルの最大値は %s です。 %d 個のファイルまで一度にアップロードできます。"; -App::$strings["You can adjust these settings in the server php.ini file."] = "php.iniでこれを設定することができます。"; -App::$strings["PHP upload limits"] = "PHP Upload limits"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Ошибка: функция \"openssl_pkey_new\" не может сгенерировать ключи шифрования"; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Если работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "暗号化キーの生成"; +App::$strings["This is not sufficient to upload larger images or files. You should be able to upload at least 4 MB at once."] = ""; +App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = ""; +App::$strings["You can adjust these settings in the server php.ini file."] = ""; +App::$strings["PHP upload limits"] = ""; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = ""; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = ""; +App::$strings["Generate encryption keys"] = ""; App::$strings["libCurl PHP module"] = ""; App::$strings["GD graphics PHP module"] = ""; App::$strings["OpenSSL PHP module"] = ""; @@ -2438,14 +2464,15 @@ App::$strings["mb_string PHP module"] = ""; App::$strings["xml PHP module"] = ""; App::$strings["zip PHP module"] = ""; App::$strings["Apache mod_rewrite module"] = ""; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: требуемый модуль mod_rewrite веб-сервера Apache не установлен."; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = ""; App::$strings["exec"] = ""; App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = ""; App::$strings["shell_exec"] = ""; App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = ""; App::$strings["Error: libCURL PHP module required but not installed."] = ""; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = ""; +App::$strings["Error: GD PHP module with JPEG support or ImageMagick graphics library required but not installed."] = ""; App::$strings["Error: openssl PHP module required but not installed."] = ""; +App::$strings["Error: PDO database PHP module missing a driver for either mysql or pgsql."] = ""; App::$strings["Error: PDO database PHP module required but not installed."] = ""; App::$strings["Error: mb_string PHP module required but not installed."] = ""; App::$strings["Error: xml PHP module required for DAV but not installed."] = ""; @@ -2458,12 +2485,12 @@ App::$strings["This software uses the Smarty3 template engine to render its web App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = ""; App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = ""; -App::$strings["%s is writable"] = "%s の書き込み権限"; -App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the top level web folder"] = "Эта программа использует каталог хранения для загруженных файлов. Для веб-сервера требуется доступ на запись начиная с верхнего уровня каталога хранения."; -App::$strings["store is writable"] = "./storeの書き込み権限"; +App::$strings["%s is writable"] = ""; +App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the top level web folder"] = ""; +App::$strings["store is writable"] = ""; App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = ""; App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = ""; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Эти ограничения приняты поскольку ваши общедоступные публикации могут, например, содержать ссылки на изображения на вашем собственном хабе."; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = ""; App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = ""; App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = ""; App::$strings["Providers are available that issue free certificates which are browser-valid."] = ""; @@ -2472,880 +2499,296 @@ App::$strings["SSL certificate validation"] = ""; App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = ""; App::$strings["Url rewrite is working"] = ""; App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; -App::$strings["

What next?

"] = "

次に

"; +App::$strings["Errors encountered creating database tables."] = ""; +App::$strings["

What next?

"] = ""; App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; -App::$strings["Remote privacy information not available."] = ""; -App::$strings["Visible to:"] = "見れる人:"; -App::$strings["Connection added."] = "コネクションを追加しました。"; -App::$strings["Menu not found."] = "Меню не найдено"; -App::$strings["Unable to create element."] = "Невозможно создать элемент."; -App::$strings["Unable to update menu element."] = "Невозможно обновить элемент меню."; -App::$strings["Unable to add menu element."] = "Невозможно добавить элемент меню."; -App::$strings["Menu Item Permissions"] = "Разрешения на пункт меню"; -App::$strings["(click to open/close)"] = "(クリックして開く、閉じる)"; -App::$strings["Link Name"] = "Имя ссылки"; -App::$strings["Link or Submenu Target"] = "Ссылка или цель подменю"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Введите URL ссылки или выберите имя меню для создания подменю"; -App::$strings["Use magic-auth if available"] = "Использовать magic-auth если возможно"; -App::$strings["Open link in new window"] = "Открыть ссылку в новом окне"; -App::$strings["Order in list"] = "Порядок в списке"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Большие значения в конце списка"; -App::$strings["Submit and finish"] = "Отправить и завершить"; -App::$strings["Submit and continue"] = "Отправить и продолжить"; -App::$strings["Menu:"] = "Меню:"; -App::$strings["Link Target"] = "Цель ссылки"; -App::$strings["Edit menu"] = "Редактировать меню"; -App::$strings["Edit element"] = "Редактировать элемент"; -App::$strings["Drop element"] = "Удалить элемент"; -App::$strings["New element"] = "Новый элемент"; -App::$strings["Edit this menu container"] = "Редактировать контейнер меню"; -App::$strings["Add menu element"] = "Добавить элемент меню"; -App::$strings["Delete this menu item"] = "Удалить этот элемент меню"; -App::$strings["Edit this menu item"] = "Редактировать этот элемент меню"; -App::$strings["Menu item not found."] = "Элемент меню не найден."; -App::$strings["Menu item deleted."] = "メニューアイテムは削除されました。"; -App::$strings["Menu item could not be deleted."] = "Невозможно удалить элемент меню."; -App::$strings["Edit Menu Element"] = "Редактировать элемент меню"; -App::$strings["Link text"] = "Текст ссылки"; -App::$strings["Plugin %s disabled."] = "Плагин %s отключен."; -App::$strings["Plugin %s enabled."] = "Плагин %s включен."; -App::$strings["Disable"] = "Запретить"; -App::$strings["Enable"] = "Разрешить"; -App::$strings["Toggle"] = "Переключить"; -App::$strings["Author: "] = "Автор: "; -App::$strings["Maintainer: "] = "Сопровождающий:"; -App::$strings["Minimum project version: "] = "Минимальная версия проекта:"; -App::$strings["Maximum project version: "] = "Максимальная версия проекта:"; -App::$strings["Minimum PHP version: "] = "Минимальная версия PHP:"; -App::$strings["Compatible Server Roles: "] = "Совместимые роли сервера:"; -App::$strings["Requires: "] = "Необходимо:"; -App::$strings["Disabled - version incompatibility"] = "Отключено - несовместимость версий"; -App::$strings["Enter the public git repository URL of the addon repo."] = "Введите URL публичного репозитория расширений git"; -App::$strings["Addon repo git URL"] = "URL репозитория расширений git"; -App::$strings["Custom repo name"] = "Пользовательское имя репозитория"; -App::$strings["(optional)"] = "(необязательно)"; -App::$strings["Download Addon Repo"] = "Загрузить репозиторий расширений"; -App::$strings["Install new repo"] = "Установить новый репозиторий"; -App::$strings["Manage Repos"] = "Управление репозиториями"; -App::$strings["Installed Addon Repositories"] = "Установленные репозитории расширений"; -App::$strings["Install a New Addon Repository"] = "Установить новый репозиторий расширений"; -App::$strings["Switch branch"] = "Переключить ветку"; -App::$strings["Site settings updated."] = "Настройки сайта обновлены."; -App::$strings["%s - (Incompatible)"] = "%s - (несовместимо)"; -App::$strings["mobile"] = "携帯電話"; -App::$strings["experimental"] = "экспериментальный"; -App::$strings["unsupported"] = "неподдерживаемый"; -App::$strings["Yes - with approval"] = "Да - требует подтверждения"; -App::$strings["My site is not a public server"] = "Мой сайт не является публичным сервером"; -App::$strings["My site has paid access only"] = "Мой сайт доступен только с оплатой "; -App::$strings["My site has free access only"] = "На моём сайте разрешён свободный доступ"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "На моём сайте разрешены бесплатные аккаунты с дополнительными платными услугами"; -App::$strings["Beginner/Basic"] = "Начинающий/Базовый"; -App::$strings["Novice - not skilled but willing to learn"] = "Новичок - не опытный, но желающий учиться"; -App::$strings["Intermediate - somewhat comfortable"] = "Промежуточный - более удобный"; -App::$strings["Advanced - very comfortable"] = "Продвинутый - очень удобный"; -App::$strings["Expert - I can write computer code"] = "Эксперт - я умею программировать"; -App::$strings["Wizard - I probably know more than you do"] = "Волшебник - возможно я знаю больше чем ты"; -App::$strings["Default permission role for new accounts"] = "Разрешения по умолчанию для новых аккаунтов"; -App::$strings["This role will be used for the first channel created after registration."] = "Эта роль будет использоваться для первого канала, созданного после регистрации."; -App::$strings["Registration"] = "登録"; -App::$strings["File upload"] = "Загрузка файла"; -App::$strings["Policies"] = "Правила"; -App::$strings["Site default technical skill level"] = "Уровень технических навыков на сайте по умолчанию"; -App::$strings["Used to provide a member experience matched to technical comfort level"] = "Используется чтобы обеспечить удобство на уровне технических навыков пользователя"; -App::$strings["Lock the technical skill level setting"] = "Заблокировать уровень технических навыков"; -App::$strings["Members can set their own technical comfort level by default"] = "Участники могут выбрать уровень своих технических навыков по умолчанию"; -App::$strings["Banner/Logo"] = "Баннер / логотип"; -App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Разрешён нефильтруемый HTML/CSS/JS"; -App::$strings["Administrator Information"] = "Информация об администраторе"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Контактная информация для администраторов сайта. Показывается на информационной странице сайта. Можно использовать BBCode."; -App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Публичное видимое описание сайта. Показывается на информационной странице сайта. Можно использовать BBCode."; -App::$strings["System language"] = "Язык системы"; -App::$strings["System theme"] = "Системная тема"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Системная тема по умолчанию - может быть изменена в профиле пользователя - изменить параметры темы."; -App::$strings["Allow Feeds as Connections"] = "Разрешить ленты новостей как контакты"; -App::$strings["(Heavy system resource usage)"] = "(Высокое использование системных ресурсов)"; -App::$strings["Maximum image size"] = "Максимальный размер изображения"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Максимальный размер загруженных изображений в байтах. По умолчанию 0 или без ограничений."; -App::$strings["Does this site allow new member registration?"] = "Разрешается ли регистрация новых пользователей на этом сайте?"; -App::$strings["Invitation only"] = "Только по приглашениям"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Регистрация пользователей разрешается только по приглашениям. Вышеуказанная политика регистрация должны быть установлена в \"Да\"."; -App::$strings["Minimum age"] = "Минимальный возраст"; -App::$strings["Minimum age (in years) for who may register on this site."] = "Минимальный возраст (в годах) для регистрации на этом сайте."; -App::$strings["Which best describes the types of account offered by this hub?"] = "Как лучше описать тип учётных записей предлагаемых на этом хабе?"; -App::$strings["Register text"] = "Текст регистрации"; -App::$strings["Will be displayed prominently on the registration page."] = "Будет отображаться на странице регистрации на видном месте."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Домашняя страница, которая будет показываться посетителям сайт (по умочанию - форма входа)."; -App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "например: 'public' для показа публичного потока, 'page/sys/home' показывает системную страницу home или 'include:home.html' для подключения файла."; -App::$strings["Preserve site homepage URL"] = "Сохранить URL главной страницы сайта"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Показывать домашнюю страницу сайта во фрейме вместо стандартной переадресации"; -App::$strings["Accounts abandoned after x days"] = "Аккаунты считаются заброшенными после N дней"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Системные ресурсы не будут расходоваться для опроса внешних сайтов для заброшенных аккаунтов. Введите 0 для отсутствия ограничений."; -App::$strings["Allowed friend domains"] = "Разрешенные домены друзей"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Список разделённых запятыми доменов с которыми разрешено устанавливать дружеские отношения на этом сайте. Wildcards разрешены. Пусто означает разрешены любые домены."; -App::$strings["Verify Email Addresses"] = "Проверка адреса электронной почты"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Включите для проверки адреса электронной почты использованного при регистрации (рекомендуется)."; -App::$strings["Force publish"] = "Принудительно публиковать"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Включите для принудительного включения всех учётных записей на данном сайте в каталог."; -App::$strings["Import Public Streams"] = "Импортированные публичные потоки"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Импортировать и разрешить публичный доступ к загружаемым с других сайтов потоков. Внимание - этот контент не может модерироваться."; -App::$strings["Site only Public Streams"] = "Публичные потоки только с сайта"; -App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Разрешить доступ к общедоступному контенту, исходящему только с этого сайта, если импортированные публичные потоки отключены."; -App::$strings["Allow anybody on the internet to access the Public streams"] = "Разрешить всем доступ к публичным потокам"; -App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Отключите если для просмотра требуется аутентификация. Внимание - этот контент не может модерироваться."; -App::$strings["Only import Public stream posts with this text"] = "Импортировать только публичные потоки с этим текстом"; -App::$strings["Do not import Public stream posts with this text"] = "Не импортировать публичные потоки с этим текстом"; -App::$strings["Login on Homepage"] = "Вход на домашней странице"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Предоставлять форму входа для посетителей на домашней странице если другого содержимого не настроено."; -App::$strings["Enable context help"] = "Включить контекстную помощь"; -App::$strings["Display contextual help for the current page when the help button is pressed."] = "Показывать контекстную помощь для текущей странице при нажатии на кнопку \"Помощь\"."; -App::$strings["Reply-to email address for system generated email."] = "Адрес email Reply-to для генерируемых системой сообщений."; -App::$strings["Sender (From) email address for system generated email."] = "Адрес email отправителя (From) для генерируемых системой сообщений."; -App::$strings["Name of email sender for system generated email."] = "Имя отправителя для генерируемых системой сообщений."; -App::$strings["Directory Server URL"] = "URL сервера каталогов"; -App::$strings["Default directory server"] = "Сервер каталогов по умолчанию"; -App::$strings["Proxy user"] = "Имя пользователя proxy-сервера"; -App::$strings["Proxy URL"] = "URL proxy-сервера"; -App::$strings["Network timeout"] = "Время ожидания сети"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Значение в секундах. Если установлен в 0 - без ограничений (не рекомендуется)."; -App::$strings["Delivery interval"] = "Интервал доставки"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Значение задержки фоновых процессов доставки в секундах для снижения нагрузки на систему. Рекомендуется 4-5 для серверов совместного использования, 2-3 для частных виртуальных и 0-1 для выделенных серверов."; -App::$strings["Deliveries per process"] = "Доставок на процесс"; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Количество доставок для одного процесса. Настройте в соответствии с производительностью системы. Рекомендуется 1-5."; -App::$strings["Queue Threshold"] = "Порог очереди"; -App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Всегда откладывать немедленную доставку, если в очереди содержится большее количество записей, чем это."; -App::$strings["Poll interval"] = "Интервал опроса"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Задержка фоновых процессов опроса на указанное количество секунд для снижения нагрузки на систему. Если 0 - использовать интервал доставки."; -App::$strings["Path to ImageMagick convert program"] = "Путь к ImageMagick"; -App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "При установке эта программа генерирует миниатюры изображений для больших файлов (свыше 4000 в любом измерении) для предотвращения утечки памяти. Пример: /usr/bin/convert"; -App::$strings["Allow SVG thumbnails in file browser"] = "Разрешить SVG миниатюры в просмотрщике файлов"; -App::$strings["WARNING: SVG images may contain malicious code."] = "Внимание: изображения SVG могут содержать вредоносный код."; -App::$strings["Maximum Load Average"] = "Максимальная средняя нагрузка"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Максимальная нагрузка системы для откладывания процессов опроса и доставки - по умолчанию 50."; -App::$strings["Expiration period in days for imported (grid/network) content"] = "Срок хранения в днях для импортированного содержимого (из матрицы / сети)."; -App::$strings["0 for no expiration of imported content"] = "0 для постоянного хранения импортированного содержимого"; -App::$strings["Do not expire any posts which have comments less than this many days ago"] = "Продлевать строк хранения для любых публикаций, которые имею комментарии возрастом менее этого значения"; -App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Публичные серверы: необязательная маркетинговая лэндинг-страница для новых пользователей"; -App::$strings["Create this page first. Default is %s/register"] = "Создать эту страницу первой. По умолчанию %s/register"; -App::$strings["Page to display after creating a new channel"] = "Страница для показа после создания нового канала"; -App::$strings["Default: profiles"] = "По умолчанию: профили"; -App::$strings["Optional: site location"] = "Необязательно: место размещения сайта"; -App::$strings["Region or country"] = "Регион или страна"; -App::$strings["Log settings updated."] = "Настройки журнала обновлены."; -App::$strings["Clear"] = "Очистить"; -App::$strings["Debugging"] = "Отладка"; -App::$strings["Log file"] = "Файл журнала"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Должен быть доступен для записи веб-сервером. Пусть относителен основного каталога веб-сайта."; -App::$strings["Log level"] = "Уровень журнала"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "%s аккаунт блокирован/разблокирован", - 1 => "%s аккаунта блокированы/разблокированы", - 2 => "%s аккаунтов блокированы/разблокированы", -); -App::$strings["%s account deleted"] = array( - 0 => "%s аккаунт удалён", - 1 => "%s аккаунта удалёны", - 2 => "%s аккаунтов удалёны", -); -App::$strings["Account not found"] = "Аккаунт не найден"; -App::$strings["Account '%s' blocked"] = "Аккаунт '%s' заблокирован"; -App::$strings["Account '%s' unblocked"] = "Аккаунт '%s' разблокирован"; -App::$strings["select all"] = "выбрать все"; -App::$strings["Registrations waiting for confirm"] = "Регистрации ждут подтверждения"; -App::$strings["Request date"] = "Дата запроса"; -App::$strings["No registrations."] = "Нет новых регистраций."; -App::$strings["ID"] = ""; -App::$strings["All Channels"] = "Все каналы"; -App::$strings["Register date"] = "Дата регистрации"; -App::$strings["Last login"] = "Последний вход"; -App::$strings["Expires"] = "Срок действия"; -App::$strings["Service Class"] = "Класс обслуживания"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Выбранные учётные записи будут удалены!\n\nВсё что было ими опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Этот аккаунт {0} будет удалён!\n\nВсё что им было опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "По умолчанию, HTML без фильтрации доступен во встраиваемых медиа. Это небезопасно."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Рекомендуется настроить разрешения использовать HTML без фильтрации только для следующих сайтов:"; -App::$strings["https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = ""; -App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "се остальные встроенные материалы будут отфильтрованы, если встроенное содержимое с этого сайта явно заблокировано."; -App::$strings["Block public"] = "Блокировать публичный доступ"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Установите флажок для блокировки публичного доступа ко всем другим общедоступным страницам на этом сайте, если вы в настоящее время не аутентифицированы."; -App::$strings["Provide a cloud root directory"] = "Предоставить корневой каталог в облаке"; -App::$strings["The cloud root directory lists all channel names which provide public files"] = "В корневом каталоге облака показываются все имена каналов, которые предоставляют общедоступные файлы"; -App::$strings["Show total disk space available to cloud uploads"] = "Показывать общее доступное для загрузок место в хранилище"; -App::$strings["Set \"Transport Security\" HTTP header"] = "Установить HTTP-заголовок \"Transport Security\""; -App::$strings["Set \"Content Security Policy\" HTTP header"] = "Установить HTTP-заголовок \"Content Security Policy\""; -App::$strings["Allowed email domains"] = "Разрешённые домены email"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Список разделённых запятыми доменов для которых разрешена регистрация на этом сайте. Wildcards разрешены. Если пусто то разрешены любые домены."; -App::$strings["Not allowed email domains"] = "Запрещённые домены email"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Список разделённых запятыми доменов для которых запрещена регистрация на этом сайте. Wildcards разрешены. Если пусто то разрешены любые домены до тех пор, пока разрешённые домены не будут указаны."; -App::$strings["Allow communications only from these sites"] = "Разрешить связь только с этими сайтами"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Один сайт на строку. Оставьте пустым для разрешения взаимодействия без ограничений (по умочанию)."; -App::$strings["Block communications from these sites"] = "Блокировать связь с этими сайтами"; -App::$strings["Allow communications only from these channels"] = "Разрешить связь только для этих каналов"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Один канал (или его хэш) на строку. Оставьте пустым для разрешения взаимодействия с любым каналом (по умолчанию)."; -App::$strings["Block communications from these channels"] = "Блокировать связь с этими каналами"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Разрешать встраивание только для безопасных (SSL/TLS) сайтов и ссылок."; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Разрешить встраивать нефильтруемое HTML-содержимое только для этих доменов"; -App::$strings["One site per line. By default embedded content is filtered."] = "Один сайт на строку. По умолчанию встраиваемое содержимое фильтруется."; -App::$strings["Block embedded HTML from these domains"] = "Блокировать встраивание HTML-содержимого для этих доменов"; -App::$strings["Update has been marked successful"] = "Обновление было помечено как успешное"; -App::$strings["Executing %s failed. Check system logs."] = "Выполнение %s неудачно. Проверьте системный журнал."; -App::$strings["Update %s was successfully applied."] = "Обновление %sбыло успешно применено."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Обновление %s не вернуло статус. Неизвестно было ли оно успешным."; -App::$strings["Update function %s could not be found."] = "Функция обновления %sне может быть найдена."; -App::$strings["Failed Updates"] = "Обновления с ошибками"; -App::$strings["Mark success (if update was manually applied)"] = "Пометить успешным (если обновление было применено вручную)"; -App::$strings["Attempt to execute this update step automatically"] = "Попытаться применить это обновление автоматически"; -App::$strings["No failed updates."] = "Ошибок обновлений нет."; -App::$strings["New Profile Field"] = "Поле нового профиля"; -App::$strings["Field nickname"] = "Псевдоним поля"; -App::$strings["System name of field"] = "Системное имя поля"; -App::$strings["Input type"] = "Тип ввода"; -App::$strings["Field Name"] = "Имя поля"; -App::$strings["Label on profile pages"] = "Метка на странице профиля"; -App::$strings["Help text"] = "Текст подсказки"; -App::$strings["Additional info (optional)"] = "Дополнительная информация (необязательно)"; -App::$strings["Field definition not found"] = "Определения поля не найдено"; -App::$strings["Edit Profile Field"] = "Редактировать поле профиля"; -App::$strings["Basic Profile Fields"] = "Основные поля профиля"; -App::$strings["Advanced Profile Fields"] = "Дополнительные поля профиля"; -App::$strings["(In addition to basic fields)"] = "(к основым полям)"; -App::$strings["All available fields"] = "Все доступные поля"; -App::$strings["Custom Fields"] = "Настраиваемые поля"; -App::$strings["Create Custom Field"] = "Создать настраиваемое поле"; -App::$strings["Theme settings updated."] = "Настройки темы обновленны."; -App::$strings["No themes found."] = "Темы не найдены."; -App::$strings["Screenshot"] = "Снимок экрана"; -App::$strings["[Experimental]"] = "[экспериментальный]"; -App::$strings["[Unsupported]"] = "[неподдерживаемый]"; -App::$strings["Off"] = ""; -App::$strings["On"] = ""; -App::$strings["Lock feature %s"] = "Заблокировать функцию \"%s\""; -App::$strings["Manage Additional Features"] = "Управлять дополнительными функциями"; -App::$strings["Queue Statistics"] = "Статистика очереди"; -App::$strings["Total Entries"] = "Всего записей"; -App::$strings["Priority"] = "Приоритет"; -App::$strings["Destination URL"] = "Конечный URL-адрес"; -App::$strings["Mark hub permanently offline"] = "Пометить хаб как постоянно отключенный"; -App::$strings["Empty queue for this hub"] = "Освободить очередь для этого хаба"; -App::$strings["Last known contact"] = "Последний известный контакт"; -App::$strings["Password changed for account %d."] = "Пароль для аккаунта %d изменён."; -App::$strings["Account settings updated."] = "アカウント設定がアップデートされました。"; -App::$strings["Account not found."] = "Учётная запись не найдена."; -App::$strings["Account Edit"] = "Редактировать аккаунт"; -App::$strings["New Password"] = "Новый пароль"; -App::$strings["New Password again"] = "Повторите новый пароль"; -App::$strings["Technical skill level"] = "Уровень технических навыков"; -App::$strings["Account language (for emails)"] = "Язык сообщения для email"; -App::$strings["Service class"] = "Класс обслуживания"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s канал цензурируется/нецензурируется", - 1 => "%s канала цензурируются/нецензурируются", - 2 => "%s каналов цензурируются/нецензурируются", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "в %s канале код разрешён/запрещён", - 1 => "в %s каналах код разрешён/запрещён", - 2 => "в %s каналах код разрешён/запрещён", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s канал удалён", - 1 => "%s канала удалены", - 2 => "%s каналов удалены", -); -App::$strings["Channel not found"] = "Канал не найден"; -App::$strings["Channel '%s' deleted"] = "Канал '%s' удалён"; -App::$strings["Channel '%s' censored"] = "Канал '%s' цензурируется"; -App::$strings["Channel '%s' uncensored"] = "Канал '%s' нецензурируется"; -App::$strings["Channel '%s' code allowed"] = "Код в канале '%s' разрешён"; -App::$strings["Channel '%s' code disallowed"] = "Код в канале '%s' запрещён"; -App::$strings["Censor"] = "Цензурировать"; -App::$strings["Uncensor"] = "Нецензурировать"; -App::$strings["Allow Code"] = "Разрешить код"; -App::$strings["Disallow Code"] = "Запретить код"; -App::$strings["UID"] = ""; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Выбранные каналы будут удалены!\n\nВсё что было опубликовано в этих каналах на этом сайте будет удалено навсегда!\n\nВы уверены?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Канал {0} будет удалён!\n\nВсё что было опубликовано в этом канале на этом сайте будет удалено навсегда!\n\nВы уверены?"; -App::$strings["Token verification failed."] = "トークンが違います。"; -App::$strings["Email Verification Required"] = "Eメール認証が必要です。"; -App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "認証トークンをメールへ送信しました [%s]メールに記載してあるトークンを下のボックスに入力してください。メールが届かない場合は迷惑メールを確認して頂き、そこにも無かった場合はサーバーの管理主へ連絡してください。"; -App::$strings["Resend Email"] = "メールを再送信する"; -App::$strings["Validation token"] = "トークン"; -App::$strings["Total invitation limit exceeded."] = "Превышено общее количество приглашений."; -App::$strings["%s : Not a valid email address."] = "%s : Недействительный адрес электронной почты."; -App::$strings["Please join us on \$Projectname"] = "Присоединятесь к \$Projectname !"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Превышен лимит приглашений. Пожалуйста, свяжитесь с администрацией сайта."; -App::$strings["%d message sent."] = array( - 0 => "%d сообщение отправлено.", - 1 => "%d сообщения отправлено.", - 2 => "%d сообщений отправлено.", -); -App::$strings["You have no more invitations available"] = "У вас больше нет приглашений"; -App::$strings["Send invitations"] = "Отправить приглашение"; -App::$strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному в строке:"; -App::$strings["Please join my community on \$Projectname."] = "Присоединятесь к нашему сообществу \$Projectname !"; -App::$strings["You will need to supply this invitation code:"] = "Вам нужно предоставит этот код приглашения:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Зарегистрируйтесь на любом из серверов \$Projectname"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Введите сетевой адрес \$Projectname в поисковой строке сайта"; -App::$strings["or visit"] = "или посетите"; -App::$strings["3. Click [Connect]"] = "Нажать [Подключиться]"; -App::$strings["Block Title"] = "ブロックのタイトル"; -App::$strings["Cover Photos"] = "Фотографии обложки"; -App::$strings["Your cover photo may be visible to anybody on the internet"] = "カバー写真はインターネット上の誰でも見ることができ、他のウェブサイトに配布される可能性があります。"; -App::$strings["Change Cover Photo"] = "カバ画の変更"; -App::$strings["Like/Dislike"] = "いいね! / わるいね!"; -App::$strings["This action is restricted to members."] = "Это действие доступно только участникам."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Пожалуйста, для продолжения войдите с вашим \$Projectname ID или зарегистрируйтесь как новый участник \$Projectname."; -App::$strings["Invalid request."] = "Неверный запрос."; -App::$strings["thing"] = "предмет"; -App::$strings["Channel unavailable."] = "Канал недоступен."; -App::$strings["Previous action reversed."] = "Предыдущее действие отменено."; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s согласен с %2\$s %3\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s не согласен с %2\$s %3\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s воздерживается от решения по %2\$s%3\$s"; -App::$strings["Action completed."] = "Действие завершено."; -App::$strings["Thank you."] = "Спасибо."; -App::$strings["If enabled, connection requests will be approved without your interaction"] = "Если включено, запросы контактов будут одобрены без вашего участия"; -App::$strings["Automatic approval settings"] = "Настройки автоматического одобрения"; -App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Некоторые индивидуальные разрешения могут быть предустановлены или заблокированы на основании типа вашего канала и настроек приватности."; -App::$strings["Unable to update menu."] = "メニューを更新できませんでした。"; -App::$strings["Unable to create menu."] = "メニューを作成できませんでした。"; -App::$strings["Menu Name"] = "メニュー名"; -App::$strings["Unique name (not visible on webpage) - required"] = "重複しない名前(webページには表示されません)。 - 必須"; -App::$strings["Menu Title"] = "メニューのタイトル"; -App::$strings["Visible on webpage - leave empty for no title"] = "webページに表示されます(空白にすることで非表示にもできます)。"; -App::$strings["Allow Bookmarks"] = "ブックマークの許可"; -App::$strings["Menu may be used to store saved bookmarks"] = "メニューはブックマークの保存のために使用されることとなります。"; -App::$strings["Submit and proceed"] = "確定して進む"; -App::$strings["Drop"] = "削除"; -App::$strings["Bookmarks allowed"] = "ブックマークの許可"; -App::$strings["Delete this menu"] = "このメニューを削除"; -App::$strings["Edit menu contents"] = "メニューの内容を編集"; -App::$strings["Edit this menu"] = "このメニューを編集"; -App::$strings["Menu could not be deleted."] = "メニューの削除ができません。"; -App::$strings["Edit Menu"] = "メニューの編集"; -App::$strings["Add or remove entries to this menu"] = "このメニューへのエントリーの追加/削除"; -App::$strings["Menu name"] = "メニュー名"; -App::$strings["Must be unique, only seen by you"] = "他と重複してはいけません(あなただけに表示されます)。"; -App::$strings["Menu title"] = "メニューのタイトル"; -App::$strings["Menu title as seen by others"] = "メニュータイトルは他のユーザーにも表示されます。"; -App::$strings["Allow bookmarks"] = "ブックマークの許可"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "あなたは%2$.0f個許可されてる中%1$.0f個のチャンネルをこのhubに作成しています。"; -App::$strings["Create a new channel"] = "新しいチャンネルを作成"; -App::$strings["Create New"] = "新規作成"; -App::$strings["Current Channel"] = "現在のチャンネル"; -App::$strings["Switch to one of your channels by selecting it."] = "選択したチャンネルに切り変えます。"; -App::$strings["Default Channel"] = "デフォルトのチャンネル"; -App::$strings["Make Default"] = "デフォルトのチャンネルにする"; -App::$strings["%d new messages"] = "%d件の新着メッセージ"; -App::$strings["%d new introductions"] = "%d件の新規フォローリクエスト"; -App::$strings["Delegated Channel"] = "Делегированный канал"; -App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Изменение названия канала не разрешается в течении 48 часов после смены пароля у аккаунта."; -App::$strings["Change channel nickname/address"] = "Изменить псевдоним / адрес канала"; -App::$strings["Any/all connections on other networks will be lost!"] = "Любые / все контакты в других сетях будут утеряны!"; -App::$strings["New channel address"] = "Новый адрес канала"; -App::$strings["Rename Channel"] = "Переименовать канал"; -App::$strings["Additional Features"] = "Дополнительные функции"; -App::$strings["Your technical skill level"] = "Ваш уровень технических навыков"; -App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Используется чтобы обеспечить соответствие опыта пользователя и функций на комфортном для вас уровне"; -App::$strings["Nobody except yourself"] = "Никто кроме вас"; -App::$strings["Only those you specifically allow"] = "Только персонально разрешённые"; -App::$strings["Approved connections"] = "Одобренные контакты"; -App::$strings["Any connections"] = "Любые контакты"; -App::$strings["Anybody on this website"] = "Любой на этом сайте"; -App::$strings["Anybody in this network"] = "Любой в этой сети"; -App::$strings["Anybody authenticated"] = "Любой аутентифицированный"; -App::$strings["Anybody on the internet"] = "Любой в интернете"; -App::$strings["Publish your default profile in the network directory"] = "Публиковать ваш профиль по умолчанию в сетевом каталоге"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "システム側でおすすめのユーザーとして紹介することを許可する"; -App::$strings["or"] = ""; -App::$strings["Your channel address is"] = "このチャンネルのアドレス : "; -App::$strings["Your files/photos are accessible via WebDAV at"] = "貴方のファイルや写真は次のWebDAVアドレスからアクセスできます : "; -App::$strings["Automatic membership approval"] = "Членство одобрено автоматически"; -App::$strings["Channel Settings"] = "チャンネル設定"; -App::$strings["Basic Settings"] = "基本設定"; -App::$strings["Email Address:"] = "メールアドレス:"; -App::$strings["Your Timezone:"] = "タイムゾーン:"; -App::$strings["Default Post Location:"] = "デフォルトの位置情報の指定 : "; -App::$strings["Geographical location to display on your posts"] = "デフォルトの現在地として投稿に記録される位置情報です。"; -App::$strings["Use Browser Location:"] = "ブラウザーから位置情報を取得する"; -App::$strings["Adult Content"] = "アダルトコンテンツ指定"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "しばしばor常にアダルトコンテンツを送信している場合はOnにしてください。(アダルトな要素を送信する時には#nsfwを付けるのを忘れないでください。)"; -App::$strings["Security and Privacy Settings"] = "セキュリティーとプライバシー"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Ваши разрешения уже настроены. Нажмите чтобы просмотреть или изменить"; -App::$strings["Hide my online presence"] = "Скрывать моё присутствие онлайн"; -App::$strings["Prevents displaying in your profile that you are online"] = "Предотвращает отображения статуса \"в сети\" в вашем профиле"; -App::$strings["Simple Privacy Settings:"] = "Простые настройки безопасности:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Полностью открытый - сверхлиберальный (должен использоваться с осторожностью)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Обычный - открытый по умолчанию, приватность по желанию (как в социальных сетях, но с улучшенными настройками)"; -App::$strings["Private - default private, never open or public"] = "Частный - частный по умочанию, не открытый и не публичный"; -App::$strings["Blocked - default blocked to/from everybody"] = "Закрытый - заблокированный по умолчанию от / для всех"; -App::$strings["Allow others to tag your posts"] = "他人が貴方の投稿にタグを追加することを許可する"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "主にコミュニティによって不適切なコンテンツに遡及的にフラグを立てるために使用されます。"; -App::$strings["Channel Permission Limits"] = "Ограничения разрешений канала"; -App::$strings["Expire other channel content after this many days"] = ""; -App::$strings["0 or blank to use the website limit."] = ""; -App::$strings["This website expires after %d days."] = "Срок хранения содержимого этого сайта истекает через %d дней"; -App::$strings["This website does not expire imported content."] = ""; -App::$strings["The website limit takes precedence if lower than your limit."] = ""; -App::$strings["Maximum Friend Requests/Day:"] = "Запросов в друзья в день:"; -App::$strings["May reduce spam activity"] = "Может ограничить спам активность"; -App::$strings["Default Privacy Group"] = "Группа конфиденциальности по умолчанию"; -App::$strings["Use my default audience setting for the type of object published"] = "Использовать настройки аудитории по умолчанию для типа опубликованного объекта"; -App::$strings["Profile to assign new connections"] = "コネクションをアサインするプロファイル"; -App::$strings["Channel role and privacy"] = "チャンネルの使い方"; -App::$strings["Default Permissions Group"] = "Группа разрешений по умолчанию"; -App::$strings["Maximum private messages per day from unknown people:"] = "Максимально количество сообщений от незнакомых людей, в день:"; -App::$strings["Useful to reduce spamming"] = "Полезно для сокращения количества спама"; -App::$strings["By default post a status message when:"] = "次のアクションの実行時に投稿を自動作成"; -App::$strings["accepting a friend request"] = "フレンドリクエストの許可"; -App::$strings["joining a forum/community"] = "フォーラム/コミュニティへの参加"; -App::$strings["making an interesting profile change"] = "おもしろい プロファイル更新"; -App::$strings["Send a notification email when:"] = "通知メールの送信"; -App::$strings["You receive a connection request"] = "コネクションリクエストを受け取った時"; -App::$strings["Your connections are confirmed"] = "あなたのコネクションリクエストが受理された時"; -App::$strings["Someone writes on your profile wall"] = "あなたのチャンネルに誰かが寄稿した時"; -App::$strings["Someone writes a followup comment"] = "誰かがフォローアップコメントを書いた時"; -App::$strings["You receive a private message"] = "プライベートメッセージ(DM)を取得した時"; -App::$strings["You receive a friend suggestion"] = "友達の提案が届いた時"; -App::$strings["You are tagged in a post"] = "ポストで名前リンクが貼られた時"; -App::$strings["You are poked/prodded/etc. in a post"] = "Poke(やその系統)された時"; -App::$strings["Someone likes your post/comment"] = "誰かが投稿やコメントにいいね!した時"; -App::$strings["Show visual notifications including:"] = "画面に表示する通知"; -App::$strings["Unseen grid activity"] = "未読のグリッドアクティビティ"; -App::$strings["Unseen stream activity"] = "未読のストリームアクティビティ"; -App::$strings["Unseen channel activity"] = "未読のチャンネルアクティビティ"; -App::$strings["Unseen private messages"] = "未読のプライベートメッセージ(DM)"; -App::$strings["Upcoming events"] = "イベント開始"; -App::$strings["Events today"] = "イベント当日"; -App::$strings["Upcoming birthdays"] = "誕生日当日"; -App::$strings["Not available in all themes"] = "一部のテーマには実装されていません。"; -App::$strings["System (personal) notifications"] = "システム(パーソナル)通知"; -App::$strings["System info messages"] = "システムインフォメーション"; -App::$strings["System critical alerts"] = "システムクリティカルアラート"; -App::$strings["New connections"] = "新しいコネクション"; -App::$strings["System Registrations"] = "システムへのユーザー登録"; -App::$strings["Unseen shared files"] = "未読の共有ファイル"; -App::$strings["Unseen public activity"] = "未読のパブリックアクティビティ"; -App::$strings["Unseen likes and dislikes"] = "未読のいいね!わるいね!"; -App::$strings["Unseen forum posts"] = "未読のフォーラムポスト"; -App::$strings["Email notification hub (hostname)"] = ""; -App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "もし貴方のチャンネルをクローンしている場合はメインのhubを選択してください。メールが二重に送信される原因となります。"; -App::$strings["Show new wall posts, private messages and connections under Notices"] = " -通知の下に優先度の低い内容(新しい投稿、プライベートメッセージ、コネクション等自分と直接関係の無い通知)を表示する"; -App::$strings["Notify me of events this many days in advance"] = ""; -App::$strings["Must be greater than 0"] = "0以上である必要があります。"; -App::$strings["Advanced Account/Page Type Settings"] = "Дополнительные настройки учётной записи / страницы"; -App::$strings["Change the behaviour of this account for special situations"] = "Изменить поведение этого аккаунта в особых ситуациях"; -App::$strings["Miscellaneous Settings"] = "他の設定"; -App::$strings["Default photo upload folder"] = "画像アップロードフォルダ名規則"; -App::$strings["%Y - current year, %m - current month"] = "%Y - 現在の年, %m -現在の月"; -App::$strings["Default file upload folder"] = "ファイルアップロードフォルダ名規則"; -App::$strings["Personal menu to display in your channel pages"] = "チャンネルページに表示するメニューを選択"; -App::$strings["Remove this channel."] = "このチャンネルを削除する"; -App::$strings["Firefox Share \$Projectname provider"] = ""; -App::$strings["Start calendar week on Monday"] = "カレンダーを頭月曜日にする"; -App::$strings["Affinity Slider settings updated."] = "Обновлены настройки слайдера cходства."; -App::$strings["No feature settings configured"] = "設定は変更されていません"; -App::$strings["Default maximum affinity level"] = "Максимальный уровень сходства по умолчанию."; -App::$strings["0-99 default 99"] = "0-99 (по умолчанию 99)"; -App::$strings["Default minimum affinity level"] = "Минимальный уровень сходства по умолчанию."; -App::$strings["0-99 - default 0"] = "0-99 (по умолчанию 0)"; -App::$strings["Affinity Slider Settings"] = "Настройки слайдера сходства"; -App::$strings["Addon Settings"] = "アドオンの設定"; -App::$strings["Please save/submit changes to any panel before opening another."] = "他のパネルを開く前に変更項目の保存をしてください。"; -App::$strings["Not valid email."] = "Не действительный адрес email."; -App::$strings["Protected email address. Cannot change to that email."] = "Защищенный адрес электронной почты. Нельзя изменить."; -App::$strings["System failure storing new email. Please try again."] = "Системная ошибка сохранения email. Пожалуйста попробуйте ещё раз."; -App::$strings["Technical skill level updated"] = "Уровень технических навыков обновлён"; -App::$strings["Password verification failed."] = "Не удалось выполнить проверку пароля."; -App::$strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменён."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменён."; -App::$strings["Password changed."] = "Пароль изменен."; -App::$strings["Password update failed. Please try again."] = "Изменение пароля не удалось. Пожалуйста, попробуйте ещё раз."; -App::$strings["Account Settings"] = "アカウント設定"; -App::$strings["Current Password"] = "現在のパスワード"; -App::$strings["Enter New Password"] = "新しいパスワード:"; -App::$strings["Confirm New Password"] = "新しいパスワードの再入力:"; -App::$strings["Leave password fields blank unless changing"] = "パスワードに変更を加えたくない場合は空欄で送信してください。"; -App::$strings["Remove this account including all its channels"] = "全てのチャンネル纏めてアカウントを削除する"; -App::$strings["%s - (Experimental)"] = "%s - (экспериментальный)"; -App::$strings["Display Settings"] = "画面表示設定"; -App::$strings["Theme Settings"] = "テーマ設定"; -App::$strings["Custom Theme Settings"] = "テーマのカスタマイズ設定"; -App::$strings["Content Settings"] = "コンテンツ設定"; -App::$strings["Display Theme:"] = "テーマ:"; -App::$strings["Select scheme"] = "スキームの選択"; -App::$strings["Preload images before rendering the page"] = "ページをレンダリングする前に画像をロードする"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "ページ自体の読み込みは遅くなりますが、ロード完了時に投稿がすぐ表示されます。"; -App::$strings["Enable user zoom on mobile devices"] = "モバイル端末でのズームを許可する"; -App::$strings["Update browser every xx seconds"] = "ブラウザーの情報更新頻度"; -App::$strings["Minimum of 10 seconds, no maximum"] = "最短10秒、最大値はありません。"; -App::$strings["Maximum number of conversations to load at any time:"] = ""; -App::$strings["Maximum of 100 items"] = "最大100アイテム"; -App::$strings["Show emoticons (smilies) as images"] = "絵文字を画像として扱う"; -App::$strings["Provide channel menu in navigation bar"] = "チャンネルメニューをナビゲーションバーに移動する"; -App::$strings["Default: channel menu located in app menu"] = "通常はアプリメニューに位置しています。"; -App::$strings["Manual conversation updates"] = "会話の自動更新"; -App::$strings["Default is on, turning this off may increase screen jumping"] = "デフォルトではオンです。スクリーンがジャンプする場合にこれをオフにしてください。"; -App::$strings["Link post titles to source"] = "ポストタイトルのクリックで投稿の本体へ移動"; -App::$strings["System Page Layout Editor - (advanced)"] = "システムページレイアウトエディタ(Advanced)"; -App::$strings["Use blog/list mode on channel page"] = "Использовать режим блога / списка на странице канала"; -App::$strings["(comments displayed separately)"] = "(комментарии отображаются отдельно)"; -App::$strings["Use blog/list mode on grid page"] = "Использовать режим блога / списка на странице матрицы"; -App::$strings["Channel page max height of content (in pixels)"] = "Максимальная высота содержания канала (в пикселях)"; -App::$strings["click to expand content exceeding this height"] = "нажмите, чтобы увеличить содержимое, превышающее эту высоту"; -App::$strings["Grid page max height of content (in pixels)"] = "Максимальная высота содержания на страницах матрицы (в пикселях)"; -App::$strings["Permission Name is required."] = "権限名は必須です。"; -App::$strings["Permission category saved."] = "権限カテゴリーは保存されました。"; -App::$strings["Use this form to create permission rules for various classes of people or connections."] = "このフォームを使用して複数の人で選別できる権限ルールを作成できます。"; -App::$strings["Permission Name"] = "権限名"; -App::$strings["Name and Secret are required"] = "名前とシークレットは必須です"; -App::$strings["Add OAuth2 application"] = "OAuth2アプリケーションの追加"; -App::$strings["Name of application"] = "アプリケーション名"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Сгенерирован автоматические - измените если требуется. Макс. длина 20"; -App::$strings["Redirect"] = "リダイレクト"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI перенаправления - оставьте пустыми до тех пока ваше приложение не требует этого"; -App::$strings["Grant Types"] = "Разрешить типы"; -App::$strings["leave blank unless your application sepcifically requires this"] = "оставьте пустыми до тех пока ваше приложение не требует этого"; -App::$strings["Authorization scope"] = "Область полномочий"; -App::$strings["OAuth2 Application not found."] = "Приложение OAuth2 не найдено."; -App::$strings["Add application"] = "Добавить приложение"; -App::$strings["Connected OAuth2 Apps"] = "Подключённые приложения OAuth2"; -App::$strings["Client key starts with"] = "Ключ клиента начинаетя с"; -App::$strings["No name"] = "名前無し"; -App::$strings["Remove authorization"] = "登録の削除"; -App::$strings["Name is required"] = "名前は必須です。"; -App::$strings["Key and Secret are required"] = "キーとシークレットキーは必須です。"; -App::$strings["Icon url"] = "アイコンURL"; -App::$strings["Application not found."] = "アプリケーションがありません。"; -App::$strings["Connected Apps"] = "接続済みアプリ"; -App::$strings["This channel is limited to %d tokens"] = "このチャンネルは%dのトークンで制限されています。"; -App::$strings["Name and Password are required."] = "名前とパスワードは必須です"; -App::$strings["Token saved."] = "トークンが保存されました。"; -App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Используйте эту форму для создания идентификаторов временного доступа для сторонних пользователей. Эти идентификаторы могут использоваться в списках контроля доступа, и посетители могут использовать эти учетные данные для доступа к частному контенту."; -App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Вы также можете предоставить доступ в стиле dropbox для друзей и коллег, добавив имя и пароль для входа на любой URL-адрес сайта. Например:"; -App::$strings["Login Name"] = "ログイン名"; -App::$strings["Login Password"] = "ログインパスワード"; -App::$strings["Expires (yyyy-mm-dd)"] = "期限(yyyy-mm-dd)"; -App::$strings["Room not found"] = "ルームがありません。"; -App::$strings["Leave Room"] = "ルームを去る"; -App::$strings["Delete Room"] = "ルームの削除"; -App::$strings["I am away right now"] = "退出中"; -App::$strings["I am online"] = "オンライン"; -App::$strings["Bookmark this room"] = "この部屋をブックマーク"; -App::$strings["New Chatroom"] = "新しいチャットルーム"; -App::$strings["Chatroom name"] = "チャットルームの名前"; -App::$strings["Expiration of chats (minutes)"] = "チャットの有効期限 (分単位)"; -App::$strings["%1\$s's Chatrooms"] = "%1\$sのチャットルーム"; -App::$strings["No chatrooms available"] = "チャットルームはありません"; -App::$strings["Expiration"] = "期限"; -App::$strings["min"] = "分"; -App::$strings["Website:"] = "サイト:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "リモートチャンネル[%s] (このサイトでは把握されていません。)"; -App::$strings["Rating (this information is public)"] = "Оценка (эта информация общедоступна)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Объясните свою оценку (необязательно; эта информация общедоступна)"; -App::$strings["Fetching URL returns error: %1\$s"] = ""; -App::$strings["Location not found."] = "ロケーションがありません。"; -App::$strings["Location lookup failed."] = "Поиск местоположения не удался"; -App::$strings["Please select another location to become primary before removing the primary location."] = "Пожалуйста, выберите другое местоположение в качестве основного прежде чем удалить предыдущее"; -App::$strings["Syncing locations"] = "同期中です...."; -App::$strings["No locations found."] = "他のロケーションがありません。"; -App::$strings["Manage Channel Locations"] = "チャンネル所在地の管理"; -App::$strings["Sync Now"] = "今すぐ同期"; -App::$strings["Please wait several minutes between consecutive operations."] = "作業を要求してからしばらくお待ちください。サーバー間の同期には時間がかかります。"; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "できるならそれぞれのクローン先に実際にログインして作業してもらえると負荷分散になり嬉しいです。。。。。"; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "当該のクローン先が閉鎖したなどログインできない状況の時にここを使用してください。"; -App::$strings["Nothing to import."] = "Ничего импортировать."; -App::$strings["Unable to download data from old server"] = "旧サーバーからデータを取得できませんでした。"; -App::$strings["Imported file is empty."] = "Импортированный файл пуст."; -App::$strings["Your service plan only allows %d channels."] = "Ваш класс обслуживания разрешает только %d каналов."; -App::$strings["No channel. Import failed."] = "Канала нет. Импорт невозможен."; -App::$strings["You must be logged in to use this feature."] = "Вы должны войти в систему, чтобы использовать эту функцию."; -App::$strings["Import Channel"] = "チャンネルのインポート"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "このフォームは外部サーバー/hubのチャンネルをインポートするためのものです。今利用している古いチャンネルの設定ファイルをご用意ください。"; -App::$strings["File to Upload"] = "ファイルのアップロード"; -App::$strings["Or provide the old server/hub details"] = "又は古いサーバーの情報を入力する"; -App::$strings["Your old identity address (xyz@example.com)"] = "古いチャンネルのアドレス(xyz@example.com 固有id@ドメイン)"; -App::$strings["Your old login email address"] = "古いアカウントのログインアドレス"; -App::$strings["Your old login password"] = "古いログインパスワード"; -App::$strings["Import a few months of posts if possible (limited by available memory"] = "最近の投稿のみを取得する(メモリによって制限されます)"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "ここをメインとして使うか、他をサブとして使うか選択することができます。ドメインはメインとした側のhubのドメインを利用することになります。"; -App::$strings["Make this hub my primary location"] = "ここをメインとする"; -App::$strings["Move this channel (disable all previous locations)"] = "完全にここにお引っこしする(以前の鯖の個人データを完全に消す)"; -App::$strings["Use this channel nickname instead of the one provided"] = "新しいチャンネルニックネームの設定"; -App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "新しいニックネームを指定することができます。空白のままにすると元のニックネームに似た別のニックネームが割り当てられます。"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "この作業にはそこそこ時間が掛ります。送信は一度だけにしてそのままお待ちください。"; -App::$strings["No connections."] = "Контактов нет."; -App::$strings["Visit %s's profile [%s]"] = "Посетить %s ​​профиль [%s]"; -App::$strings["View Connections"] = "コネクションの表示"; -App::$strings["Authentication failed."] = "Ошибка аутентификации."; -App::$strings["Your real name is recommended."] = "本名を使うことをオススメします!(義務ではない"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "例: \"harukin\", \"股尾前科\", \"唐澤貴洋\", \"龍神\""; -App::$strings["This will be used to create a unique network address (like an email address)."] = "これはメールのような固有のアドレスとなります。後から変更できません。"; -App::$strings["Allowed characters are a-z 0-9, - and _"] = "a-z 0-9, - и _ のみに対応しております。"; -App::$strings["Channel name"] = "チャンネル名"; -App::$strings["Choose a short nickname"] = "ニックネーム"; -App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = "貴方のプライバシー要求に従うように権限を設定してください。"; -App::$strings["Read more about channel permission roles"] = "チャンネルの権限についての詳細はこちらから"; -App::$strings["Create a Channel"] = "チャンネルの作成"; -App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = - "チャンネルはネットワークの中での一つの存在です。これは一般的なアカウントとして投稿することもできればフォーラムの中心やwebページ、ニュースフィードの基点等様々な事に利用できます。"; -App::$strings["or import an existing channel from another location."] = "又は チャンネルのインポート をする"; -App::$strings["Validate"] = "Проверить"; -App::$strings["Manage apps"] = "Управление приложениями"; -App::$strings["Create new app"] = "Создать новое приложение"; -App::$strings["No default suggestions were found."] = "Предложений по умолчанию не найдено."; -App::$strings["%d rating"] = array( - 0 => "%d оценка", - 1 => "%d оценки", - 2 => "%d оценок", -); -App::$strings["Gender: "] = "性別:"; -App::$strings["Status: "] = "配偶者:"; -App::$strings["Homepage: "] = "ホームページ:"; -App::$strings["Description:"] = "説明:"; -App::$strings["Public Forum:"] = "パブリックフォーラム:"; -App::$strings["Keywords: "] = "キーワード:"; -App::$strings["Don't suggest"] = "提案しない"; -App::$strings["Common connections (estimated):"] = "有名なコネクション:"; -App::$strings["Global Directory"] = "グローバルディレクトリ"; -App::$strings["Local Directory"] = "ローカルディレクトリ"; -App::$strings["Finding:"] = "検索:"; -App::$strings["next page"] = "次のページ"; -App::$strings["previous page"] = "前のページ"; -App::$strings["Sort options"] = "並べ替え"; -App::$strings["Alphabetic"] = "アルファベット(A->Z)"; -App::$strings["Reverse Alphabetic"] = "アルファベット(Z->A)"; -App::$strings["Newest to Oldest"] = "新しい順"; -App::$strings["Oldest to Newest"] = "古い順"; -App::$strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты)."; -App::$strings["Enter a folder name"] = "フォルダ名を入力してください"; -App::$strings["or select an existing folder (doubleclick)"] = "又はフォルダを選択する(ダブルクリックをしてください)"; -App::$strings["Invalid message"] = ""; -App::$strings["no results"] = "情報無し"; -App::$strings["channel sync processed"] = "チャンネルの同期は実行されました"; -App::$strings["queued"] = "キュー追加済"; -App::$strings["posted"] = "投稿完了"; -App::$strings["accepted for delivery"] = "転送が受理されました"; -App::$strings["updated"] = "アップデート済み"; -App::$strings["update ignored"] = "アップデートが拒否されました"; -App::$strings["permission denied"] = "権限が弾かれました"; -App::$strings["recipient not found"] = "レセプションがありません"; -App::$strings["mail recalled"] = "メールが再送信されました"; -App::$strings["duplicate mail received"] = "重複メールを受信しました"; -App::$strings["mail delivered"] = "メールを配送しました"; -App::$strings["Delivery report for %1\$s"] = "転送レポート : %1\$s"; -App::$strings["Redeliver"] = "再配送する"; -App::$strings["No such group"] = "そのようなグループは存在しません"; -App::$strings["No such channel"] = "そのようなチャンネルは存在しません"; -App::$strings["Privacy group is empty"] = "プライバシーグループは空です"; -App::$strings["Privacy group: "] = "プライバシーグループ : "; -App::$strings["Please login."] = "ログインしてください。"; -App::$strings["No service class restrictions found."] = "Ограничений класса обслуживание не найдено."; -App::$strings["Add Card"] = "カードの追加"; -App::$strings["Change Order of Pinned Navbar Apps"] = "Изменить порядок приложений на панели навигации"; -App::$strings["Change Order of App Tray Apps"] = "アプリの配置を変更できます。"; -App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Используйте стрелки для перемещения приложения влево (вверх) или вправо (вниз) в панели навигации"; -App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "上下の矢印を利用してアイテムの配置を変更します。"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Превышено максимальное количество регистраций на сегодня. Пожалуйста, попробуйте снова завтра."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "アカウントの登録には利用規約に同意する必要があります。同意してから作成してください。"; -App::$strings["Passwords do not match."] = "パスワードが一致しません。"; -App::$strings["Registration successful. Continue to create your first channel..."] = "Регистрация завершена успешно. Для продолжения создайте свой первый канал..."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "登録に成功しました。認証を確認してください。"; -App::$strings["Your registration is pending approval by the site owner."] = "Ваша регистрация ожидает одобрения администрации сайта."; -App::$strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана."; -App::$strings["Registration on this hub is disabled."] = "Регистрация на этом хабе отключена."; -App::$strings["Registration on this hub is by approval only."] = "Регистрация на этом хабе только по утверждению."; -App::$strings["Register at another affiliated hub."] = "Зарегистрироваться на другом хабе."; -App::$strings["Registration on this hub is by invitation only."] = "Регистрация на этом хабе доступна только по приглашениям."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Этот сайт превысил максимальное количество регистраций на сегодня. Пожалуйста, попробуйте снова завтра. "; -App::$strings["I accept the %s for this website"] = "Я принимаю %s для этого веб-сайта."; -App::$strings["I am over %s years of age and accept the %s for this website"] = "私は %s 歳以上であり %s に同意します。"; -App::$strings["Your email address"] = "メールアドレス"; -App::$strings["Choose a password"] = "パスワード"; -App::$strings["Please re-enter your password"] = "パスワードの再入力"; -App::$strings["Please enter your invitation code"] = "Пожалуйста, введите Ваш код приглашения"; -App::$strings["Your Name"] = "Ваше имя"; -App::$strings["Real names are preferred."] = "Предпочтительны реальные имена."; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Ваш псевдоним будет использован для создания легко запоминаемого адреса канала, напр. nickname %s"; -App::$strings["Select a channel permission role for your usage needs and privacy requirements."] = "Выберите разрешения для канала в зависимости от ваших потребностей и требований приватности."; -App::$strings["no"] = "No"; -App::$strings["yes"] = "Yes"; -App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "Eメールでの認証を行います。この後メールボックスを確認してください。(迷惑メールになっている可能性があります。)"; -App::$strings["This setting requires special processing and editing has been blocked."] = "Этот параметр требует специальной обработки и редактирования и был заблокирован."; -App::$strings["Configuration Editor"] = "Редактор конфигурации"; -App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Предупреждение. Изменение некоторых настроек может привести к неработоспособности вашего канала. Пожалуйста, покиньте эту страницу, если вы точно не значете, как правильно использовать эту функцию."; -App::$strings["Edit Article"] = "記事の編集"; -App::$strings["Not found"] = ""; -App::$strings["Error retrieving wiki"] = "Ошибка при получении Wiki"; -App::$strings["Error creating zip file export folder"] = "zipファイルのエクスポートフォルダーの作成に失敗しました。"; -App::$strings["Error downloading wiki: "] = "wikiのダウンロードエラー:"; -App::$strings["Download"] = "ダウンロード"; -App::$strings["Wiki name"] = "Wikiの名前"; -App::$strings["Content type"] = "コンテンツタイプ"; -App::$strings["Type"] = "タイプ"; -App::$strings["Any type"] = ""; -App::$strings["Lock content type"] = "コンテンツタイプを固定する"; -App::$strings["Create a status post for this wiki"] = "このwikiに対してステータス投稿を設定する"; -App::$strings["Edit Wiki Name"] = "Wikiの名前の編集"; -App::$strings["Wiki not found"] = "Wikiはありません"; -App::$strings["Rename page"] = "ページの名前編集"; -App::$strings["Error retrieving page content"] = "ページコンテンツの検索に失敗しました"; -App::$strings["New page"] = "新しいページ"; -App::$strings["Revision Comparison"] = "差分の表示"; -App::$strings["Revert"] = "打ち消す"; -App::$strings["Short description of your changes (optional)"] = "この編集に対して説明を追加する"; -App::$strings["Source"] = "ソース"; -App::$strings["New page name"] = "新規ページ名"; -App::$strings["Embed image from photo albums"] = "フォトアルバムからの埋め込み画像"; -App::$strings["Error creating wiki. Invalid name."] = "wiki作成エラー: 名前が無効です。"; -App::$strings["A wiki with this name already exists."] = "そのwikiの名前は既に存在します。"; -App::$strings["Wiki created, but error creating Home page."] = "wikiは作成されましたがホームページの作成中にエラーが発生しました。"; -App::$strings["Error creating wiki"] = "Wiki作成エラーです。"; -App::$strings["Error updating wiki. Invalid name."] = "Wikiアップデートエラー: 名前が無効です。"; -App::$strings["Error updating wiki"] = "Wikiアップデートエラーです。"; -App::$strings["Wiki delete permission denied."] = "Wiki削除権限がありません。"; -App::$strings["Error deleting wiki"] = "Wiki削除エラーです。"; -App::$strings["New page created"] = "新規ページの作成"; -App::$strings["Cannot delete Home"] = "homeを削除できません。"; -App::$strings["Current Revision"] = "現在のバージョン"; -App::$strings["Selected Revision"] = "前のバージョンの探索"; -App::$strings["You must be authenticated."] = "あなたは認証されている必要があります。"; -App::$strings["Hub not found."] = "hubは存在しません。"; -App::$strings["Item not available."] = "アイテムは利用できません。"; -App::$strings["Privacy group created."] = "プライバシーグループを作成しました。"; -App::$strings["Could not create privacy group."] = "プライバシーグループをアップデートできません。"; -App::$strings["Privacy group updated."] = "プライバシーグループはアップデートされました。"; -App::$strings["Add Group"] = "グループへ追加"; -App::$strings["Privacy group name"] = "プライバシーグループ名"; -App::$strings["Members are visible to other channels"] = "メンバーは他のチャンネルへ公開されます。"; -App::$strings["Privacy group removed."] = "プライバシーグループを削除しました。"; -App::$strings["Unable to remove privacy group."] = "プライバシーグループを削除できませんでした。"; -App::$strings["Privacy Group: %s"] = "プライバシーグループ: %s"; -App::$strings["Privacy group name: "] = "プライバシーグループの名前: "; -App::$strings["Delete Group"] = "グループを削除する"; -App::$strings["Group members"] = "グループのメンバー"; -App::$strings["Not in this group"] = "グループ外のアカウント"; -App::$strings["Click a channel to toggle membership"] = "ユーザーをクリックしてグループを操作します。"; -App::$strings["Profile not found."] = "プロファイルは存在しません。"; -App::$strings["Profile deleted."] = "プロファイルを削除しました。"; -App::$strings["Profile-"] = "プロファイル"; -App::$strings["New profile created."] = "新しいプロファイルが作成されました。"; -App::$strings["Profile unavailable to clone."] = "プロファイルがクローンできません。"; -App::$strings["Profile unavailable to export."] = "プロファイルをエクスポートできません。"; -App::$strings["Profile Name is required."] = "プロファイル名は必須です。"; -App::$strings["Marital Status"] = "マテリアルステータス"; -App::$strings["Romantic Partner"] = "ロマンチックパートナー"; -App::$strings["Likes"] = "好きなもの"; -App::$strings["Dislikes"] = "嫌いなもの"; -App::$strings["Work/Employment"] = "職 / 従業員"; -App::$strings["Religion"] = "信仰"; -App::$strings["Political Views"] = "政治感心"; -App::$strings["Sexual Preference"] = "性的興味感心"; -App::$strings["Homepage"] = "ホームページ"; -App::$strings["Interests"] = "興味"; -App::$strings["Profile updated."] = "プロファイルをアップデートしました。"; -App::$strings["Hide your connections list from viewers of this profile"] = "見に来た人にこのプロフィールを見せない"; -App::$strings["Edit Profile Details"] = "プロフィールの編集"; -App::$strings["View this profile"] = "このプロフィールを表示"; -App::$strings["Profile Tools"] = "プロファイルツール"; -App::$strings["Change cover photo"] = "カバ画の変更"; -App::$strings["Create a new profile using these settings"] = "この情報を元にして新しいプロファイルを作成する"; -App::$strings["Clone this profile"] = "このプロファイルを複製する"; -App::$strings["Delete this profile"] = "このプロファイルを削除する"; -App::$strings["Add profile things"] = "カスタム項目...."; -App::$strings["Relationship"] = "交友関係"; -App::$strings["Import profile from file"] = "プロファイルをファイルからインポートする"; -App::$strings["Export profile to file"] = "プロファイルをファイルへエクスポートする"; -App::$strings["Your gender"] = "性別"; -App::$strings["Marital status"] = "配偶者の有無"; -App::$strings["Sexual preference"] = "性的興味感心"; -App::$strings["Profile name"] = "プロファイル名"; -App::$strings["This is your default profile."] = "これはデフォルトのプロファイルです。"; -App::$strings["Your full name"] = "フルネーム"; -App::$strings["Title/Description"] = "ひとこと"; -App::$strings["Street address"] = "住所"; -App::$strings["Locality/City"] = "都市"; -App::$strings["Region/State"] = "地域"; -App::$strings["Postal/Zip code"] = "郵便番号"; -App::$strings["Who (if applicable)"] = "相手"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "例: ivan1990, Ivan Petrov, ivan@example.com"; -App::$strings["Since (date)"] = "いつから(日付)"; -App::$strings["Tell us about yourself"] = "あなたについて"; -App::$strings["Hometown"] = "街"; -App::$strings["Political views"] = "政治関心"; -App::$strings["Religious views"] = "信仰"; -App::$strings["Keywords used in directory listings"] = "自分の趣味"; -App::$strings["Example: fishing photography software"] = "例: 釣り 写真 ソフトウェア"; -App::$strings["Musical interests"] = "好きな音楽"; -App::$strings["Books, literature"] = "好きな本やリテラチャー"; -App::$strings["Television"] = "好きなテレビ"; -App::$strings["Film/Dance/Culture/Entertainment"] = "映画/ダンス/文化/娯楽"; -App::$strings["Hobbies/Interests"] = "趣味/興味"; -App::$strings["Love/Romance"] = "ラブ/ロマンス"; -App::$strings["School/Education"] = "学校 / 教育"; -App::$strings["Contact information and social networks"] = "連絡先とSNS"; -App::$strings["My other channels"] = "他のチャンネル"; -App::$strings["Communications"] = "コミュニケーション"; -App::$strings["Email verification resent"] = "メール確認を再送信しました。"; -App::$strings["Unable to resend email verification message."] = "メッセージ確認を送信できませんでした。"; -App::$strings["vcard"] = "vCard"; -App::$strings["Invalid profile identifier."] = "Неверный идентификатор профиля"; -App::$strings["Profile Visibility Editor"] = "プロファイル可視エディター"; -App::$strings["Click on a contact to add or remove."] = "クリックしてチャンネルを追加又は削除できます。"; -App::$strings["Visible To"] = "表示"; -App::$strings["Thing updated"] = "アップデートされました。"; -App::$strings["Object store: failed"] = "Хранлищие объектов: неудача"; -App::$strings["Thing added"] = "追加されました。"; +App::$strings["Post repeated"] = ""; +App::$strings["Files: shared with me"] = ""; +App::$strings["NEW"] = ""; +App::$strings["Last Modified"] = ""; +App::$strings["Remove all files"] = ""; +App::$strings["Remove this file"] = ""; +App::$strings["About this site"] = ""; +App::$strings["Site Name"] = ""; +App::$strings["Administrator"] = ""; +App::$strings["Software and Project information"] = ""; +App::$strings["This site is powered by \$Projectname"] = ""; +App::$strings["Federated and decentralised networking and identity services provided by Zot"] = ""; +App::$strings["Additional federated transport protocols:"] = ""; +App::$strings["Version %s"] = ""; +App::$strings["Project homepage"] = ""; +App::$strings["Developer homepage"] = ""; +App::$strings["Failed to create source. No channel selected."] = ""; +App::$strings["Source created."] = ""; +App::$strings["Source updated."] = ""; +App::$strings["Sources App"] = ""; +App::$strings["Automatically import channel content from other channels or feeds"] = ""; +App::$strings["*"] = ""; +App::$strings["Manage remote sources of content for your channel."] = ""; +App::$strings["New Source"] = ""; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = ""; +App::$strings["Only import content with these words (one per line)"] = ""; +App::$strings["Leave blank to import all public content"] = ""; +App::$strings["Channel Name"] = ""; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = ""; +App::$strings["Resend posts with this channel as author"] = ""; +App::$strings["Copyrights may apply"] = ""; +App::$strings["Source not found."] = ""; +App::$strings["Edit Source"] = ""; +App::$strings["Delete Source"] = ""; +App::$strings["Source removed"] = ""; +App::$strings["Unable to remove source."] = ""; +App::$strings["%1\$s is following %2\$s's %3\$s"] = ""; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = ""; +App::$strings["Suggest Channels App"] = ""; +App::$strings["Suggestions for channels in the \$Projectname network you might be interested in"] = ""; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; +App::$strings["Ignore/Hide"] = ""; +App::$strings["Post not found."] = ""; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = ""; +App::$strings["Tag removed"] = ""; +App::$strings["Remove Item Tag"] = ""; +App::$strings["Select a tag to remove: "] = ""; +App::$strings["Thing updated"] = ""; +App::$strings["Object store: failed"] = ""; +App::$strings["Thing added"] = ""; App::$strings["OBJ: %1\$s %2\$s %3\$s"] = ""; -App::$strings["Show Thing"] = "表示する"; -App::$strings["item not found."] = "アイテムはありません。"; -App::$strings["Edit Thing"] = "編集する"; -App::$strings["Select a profile"] = "プロファイルの選択"; +App::$strings["Show Thing"] = ""; +App::$strings["item not found."] = ""; +App::$strings["Edit Thing"] = ""; +App::$strings["Select a profile"] = ""; App::$strings["Post an activity"] = ""; App::$strings["Only sends to viewers of the applicable profile"] = ""; -App::$strings["Name of thing e.g. something"] = "要素の名前"; -App::$strings["URL of thing (optional)"] = "URL(任意)"; +App::$strings["Name of thing e.g. something"] = ""; +App::$strings["URL of thing (optional)"] = ""; App::$strings["URL for photo of thing (optional)"] = ""; -App::$strings["Add Thing to your Profile"] = "プロファイルへカスタム項目を追加"; -App::$strings["Article"] = "記事"; -App::$strings["Item has been removed."] = "アイテムは削除されます。"; -App::$strings["Welcome to %s"] = "%sへようこそ!!"; -App::$strings["Please refresh page"] = "ページを更新してください。"; -App::$strings["Unknown error"] = "原因不明のエラーです。"; -App::$strings["No valid account found."] = "そのアカウントは見つかりませんでした。"; -App::$strings["Password reset request issued. Check your email."] = "パスワードのリセットリクエストがあります。メールを確認してください。"; -App::$strings["Site Member (%s)"] = ""; -App::$strings["Password reset requested at %s"] = ""; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "リクエストは承認されませんでした。パスワードのリセットに失敗しました(既に過去に実行しているのかもしれません)。"; -App::$strings["Your password has been reset as requested."] = "あなたのパスワードを入力値にリセットしました。"; -App::$strings["Your new password is"] = "あなたの新しいパスワードは"; -App::$strings["Save or copy your new password - and then"] = "Сохраните ваш новый пароль и затем"; -App::$strings["click here to login"] = "ここをクリックしてログイン"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Ваш пароль может быть изменён на странице Настройкипосле успешного входа."; -App::$strings["Your password has changed at %s"] = "Пароль был изменен на %s"; -App::$strings["Forgot your Password?"] = "パスワードを忘れましたか?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите ваш адрес электронной почты и нажмите отправить чтобы сбросить пароль. Затем проверьте ваш почтовый ящик для дальнейших инструкций. "; -App::$strings["Email Address"] = "Адрес электронной почты"; -App::$strings["Set your current mood and tell your friends"] = "Установить текущее настроение и рассказать друзьям"; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Предупреждение: Версия базы данных отличается от %1\$d обновления."; -App::$strings["Import completed"] = "インポートは完了しました。"; -App::$strings["Import Items"] = "アイテムのインポート"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Используйте эту форму для импорта существующих публикаций и содержимого из файла."; -App::$strings["toggle full screen mode"] = "フルスクリーンモードの切り替え"; +App::$strings["Add Thing to your Profile"] = ""; +App::$strings["This channel is limited to %d tokens"] = ""; +App::$strings["Name and Password are required."] = ""; +App::$strings["Token saved."] = ""; +App::$strings["Guest Access App"] = ""; +App::$strings["Create access tokens so that non-members can access private content"] = ""; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = ""; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = ""; +App::$strings["Guest Access Tokens"] = ""; +App::$strings["Login Name"] = ""; +App::$strings["Login Password"] = ""; +App::$strings["Expires (yyyy-mm-dd)"] = ""; +App::$strings["Channel Export App"] = ""; +App::$strings["Export your channel"] = ""; +App::$strings["Export Channel"] = ""; +App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = ""; +App::$strings["Export Content"] = ""; +App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = ""; +App::$strings["Export your posts from a given year."] = ""; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = ""; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = ""; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = ""; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = ""; +App::$strings["No connections."] = ""; +App::$strings["Visit %s's profile [%s]"] = ""; +App::$strings["View Connections"] = ""; +App::$strings["item"] = ""; +App::$strings["Webpages App"] = ""; +App::$strings["Provide managed web pages on your channel"] = ""; +App::$strings["Import Webpage Elements"] = ""; +App::$strings["Import selected"] = ""; +App::$strings["Export Webpage Elements"] = ""; +App::$strings["Export selected"] = ""; +App::$strings["Actions"] = ""; +App::$strings["Page Link"] = ""; +App::$strings["Page Title"] = ""; +App::$strings["Invalid file type."] = ""; +App::$strings["Error opening zip file"] = ""; +App::$strings["Invalid folder path."] = ""; +App::$strings["No webpage elements detected."] = ""; +App::$strings["Import complete."] = ""; +App::$strings["Profile Unavailable."] = ""; +App::$strings["Wiki App"] = ""; +App::$strings["Provide a wiki for your channel"] = ""; +App::$strings["Invalid channel"] = ""; +App::$strings["Error retrieving wiki"] = ""; +App::$strings["Error creating zip file export folder"] = ""; +App::$strings["Error downloading wiki: "] = ""; +App::$strings["Download"] = ""; +App::$strings["Wiki name"] = ""; +App::$strings["Content type"] = ""; +App::$strings["Type"] = ""; +App::$strings["Any type"] = ""; +App::$strings["Lock content type"] = ""; +App::$strings["Create a status post for this wiki"] = ""; +App::$strings["Edit Wiki Name"] = ""; +App::$strings["Wiki not found"] = ""; +App::$strings["Rename page"] = ""; +App::$strings["Error retrieving page content"] = ""; +App::$strings["New page"] = ""; +App::$strings["Revision Comparison"] = ""; +App::$strings["Short description of your changes (optional)"] = ""; +App::$strings["Source"] = ""; +App::$strings["New page name"] = ""; +App::$strings["Embed image from photo albums"] = ""; +App::$strings["History"] = ""; +App::$strings["Error creating wiki. Invalid name."] = ""; +App::$strings["A wiki with this name already exists."] = ""; +App::$strings["Wiki created, but error creating Home page."] = ""; +App::$strings["Error creating wiki"] = ""; +App::$strings["Error updating wiki. Invalid name."] = ""; +App::$strings["Error updating wiki"] = ""; +App::$strings["Wiki delete permission denied."] = ""; +App::$strings["Error deleting wiki"] = ""; +App::$strings["New page created"] = ""; +App::$strings["Cannot delete Home"] = ""; +App::$strings["Current Revision"] = ""; +App::$strings["Selected Revision"] = ""; +App::$strings["You must be authenticated."] = ""; +App::$strings["Xchan Lookup"] = ""; +App::$strings["Lookup xchan beginning with (or webbie): "] = ""; App::$strings["parent"] = ""; App::$strings["Principal"] = ""; -App::$strings["Addressbook"] = "アドレス帳"; -App::$strings["Schedule Inbox"] = "インボックススケジュール"; -App::$strings["Schedule Outbox"] = "アウトボックススケジュール"; -App::$strings["Total"] = "合計"; -App::$strings["Shared"] = "共有"; -App::$strings["Add Files"] = "追加"; -App::$strings["You are using %1\$s of your available file storage."] = "あなたは%1\$sの容量を使っています。"; -App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Вы используете %1\$s из %2\$s доступного хранилища файлов (%3\$s%)."; -App::$strings["WARNING:"] = "わーにんぐ:"; -App::$strings["Create new folder"] = "新規フォルダの作成"; -App::$strings["Upload file"] = "ファイルのアップロード"; -App::$strings["Drop files here to immediately upload"] = "ファイルをここにドラックしてアップロードできます。"; - -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$sが[zrl=%3\$s]%4\$sの%5\$s[/zrl]にコメントしました"; \ No newline at end of file +App::$strings["Addressbook"] = ""; +App::$strings["Schedule Inbox"] = ""; +App::$strings["Schedule Outbox"] = ""; +App::$strings["Total"] = ""; +App::$strings["Shared"] = ""; +App::$strings["Add Files"] = ""; +App::$strings["You are using %1\$s of your available file storage."] = ""; +App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = ""; +App::$strings["WARNING:"] = ""; +App::$strings["Create new folder"] = ""; +App::$strings["Upload file"] = ""; +App::$strings["Drop files here to immediately upload"] = ""; +App::$strings["__ctx:widget__ Activity"] = ""; +App::$strings["Show posts related to the %s privacy group"] = ""; +App::$strings["Show my privacy groups"] = ""; +App::$strings["Show posts to this forum"] = ""; +App::$strings["Forums"] = ""; +App::$strings["Show forums"] = ""; +App::$strings["Starred Posts"] = ""; +App::$strings["Show posts that I have starred"] = ""; +App::$strings["Personal Posts"] = ""; +App::$strings["Show posts that mention or involve me"] = ""; +App::$strings["Show posts that I have filed to %s"] = ""; +App::$strings["Show filed post categories"] = ""; +App::$strings["Panel search"] = ""; +App::$strings["Filter by name"] = ""; +App::$strings["Remove active filter"] = ""; +App::$strings["Stream Filters"] = ""; +App::$strings["Commented Date"] = ""; +App::$strings["Order by last commented date"] = ""; +App::$strings["Posted Date"] = ""; +App::$strings["Order by last posted date"] = ""; +App::$strings["Date Unthreaded"] = ""; +App::$strings["Order unthreaded by date"] = ""; +App::$strings["Stream Order"] = ""; +App::$strings["Member registrations waiting for confirmation"] = ""; +App::$strings["Inspect queue"] = ""; +App::$strings["DB updates"] = ""; +App::$strings["Addon Features"] = ""; +App::$strings["Refresh"] = ""; +App::$strings["App Collections"] = ""; +App::$strings["Installed apps"] = ""; +App::$strings["Archives"] = ""; +App::$strings["Bookmarked Chatrooms"] = ""; +App::$strings["Select Channel"] = ""; +App::$strings["Read-write"] = ""; +App::$strings["Read-only"] = ""; +App::$strings["My Calendars"] = ""; +App::$strings["Shared Calendars"] = ""; +App::$strings["Share this calendar"] = ""; +App::$strings["Calendar name and color"] = ""; +App::$strings["Create new calendar"] = ""; +App::$strings["Calendar Name"] = ""; +App::$strings["Calendar Tools"] = ""; +App::$strings["Import calendar"] = ""; +App::$strings["Select a calendar to import to"] = ""; +App::$strings["Addressbooks"] = ""; +App::$strings["Addressbook name"] = ""; +App::$strings["Create new addressbook"] = ""; +App::$strings["Addressbook Name"] = ""; +App::$strings["Addressbook Tools"] = ""; +App::$strings["Import addressbook"] = ""; +App::$strings["Select an addressbook to import to"] = ""; +App::$strings["Overview"] = ""; +App::$strings["Chat Members"] = ""; +App::$strings["Received Messages"] = ""; +App::$strings["Sent Messages"] = ""; +App::$strings["Conversations"] = ""; +App::$strings["No messages."] = ""; +App::$strings["Delete conversation"] = ""; +App::$strings["Click to show more"] = ""; +App::$strings["Events Tools"] = ""; +App::$strings["Export Calendar"] = ""; +App::$strings["Import Calendar"] = ""; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = ""; +App::$strings["Add New Connection"] = ""; +App::$strings["Enter channel address"] = ""; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = ""; +App::$strings["HQ Control Panel"] = ""; +App::$strings["Create a new post"] = ""; +App::$strings["Private Mail Menu"] = ""; +App::$strings["Combined View"] = ""; +App::$strings["Inbox"] = ""; +App::$strings["Outbox"] = ""; +App::$strings["New Message"] = ""; +App::$strings["Profile Creation"] = ""; +App::$strings["Upload profile photo"] = ""; +App::$strings["Upload cover photo"] = ""; +App::$strings["Find and Connect with others"] = ""; +App::$strings["View the directory"] = ""; +App::$strings["Manage your connections"] = ""; +App::$strings["Communicate"] = ""; +App::$strings["View your channel homepage"] = ""; +App::$strings["View your network stream"] = ""; +App::$strings["Documentation"] = ""; +App::$strings["Missing Features?"] = ""; +App::$strings["Pin apps to navigation bar"] = ""; +App::$strings["Install more apps"] = ""; +App::$strings["View public stream"] = ""; +App::$strings["New Network Activity"] = ""; +App::$strings["New Network Activity Notifications"] = ""; +App::$strings["View your network activity"] = ""; +App::$strings["Mark all notifications read"] = ""; +App::$strings["Show new posts only"] = ""; +App::$strings["Filter by name or address"] = ""; +App::$strings["New Home Activity"] = ""; +App::$strings["New Home Activity Notifications"] = ""; +App::$strings["View your home activity"] = ""; +App::$strings["Mark all notifications seen"] = ""; +App::$strings["New Mails"] = ""; +App::$strings["New Mails Notifications"] = ""; +App::$strings["View your private mails"] = ""; +App::$strings["Mark all messages seen"] = ""; +App::$strings["New Events"] = ""; +App::$strings["New Events Notifications"] = ""; +App::$strings["View events"] = ""; +App::$strings["Mark all events seen"] = ""; +App::$strings["New Connections Notifications"] = ""; +App::$strings["View all connections"] = ""; +App::$strings["New Files"] = ""; +App::$strings["New Files Notifications"] = ""; +App::$strings["Notices"] = ""; +App::$strings["View all notices"] = ""; +App::$strings["Mark all notices seen"] = ""; +App::$strings["New Registrations"] = ""; +App::$strings["New Registrations Notifications"] = ""; +App::$strings["Public Stream Notifications"] = ""; +App::$strings["View the public stream"] = ""; +App::$strings["Sorry, you have got no notifications at the moment"] = ""; +App::$strings["photo/image"] = ""; +App::$strings["Rating Tools"] = ""; +App::$strings["Rate Me"] = ""; +App::$strings["View Ratings"] = ""; +App::$strings["Remove term"] = ""; +App::$strings["Account settings"] = ""; +App::$strings["Channel settings"] = ""; +App::$strings["Display settings"] = ""; +App::$strings["Manage locations"] = ""; +App::$strings["Suggested Chatrooms"] = ""; +App::$strings["Suggestions"] = ""; +App::$strings["See more..."] = ""; +App::$strings["Tasks"] = ""; +App::$strings["Add new page"] = ""; +App::$strings["Wiki Pages"] = ""; +App::$strings["Page name"] = ""; +App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = ""; +App::$strings["Welcome %s. Remote authentication successful."] = ""; From c01ab3ed3964c6bacf57d6c1a7836aac6297ea88 Mon Sep 17 00:00:00 2001 From: harukin Date: Sat, 8 Jun 2019 20:17:36 +0900 Subject: [PATCH 04/18] edit translation --- view/ja/hmessages.po | 10 ++++----- view/ja/hstrings.php | 50 ++++++++++++++++++++++---------------------- 2 files changed, 30 insertions(+), 30 deletions(-) diff --git a/view/ja/hmessages.po b/view/ja/hmessages.po index 0285a8bb6..99a04420a 100644 --- a/view/ja/hmessages.po +++ b/view/ja/hmessages.po @@ -172,7 +172,7 @@ msgstr "" #: ../../include/account.php:402 msgid "your registration password" -msgstr "" +msgstr "あなたの登録されているパスワード" #: ../../include/account.php:408 ../../include/account.php:471 #, php-format @@ -190,7 +190,7 @@ msgstr "" #: ../../include/account.php:803 ../../include/account.php:805 msgid "Click here to upgrade." -msgstr "" +msgstr "ここをクリックしてアップグレード" #: ../../include/account.php:811 msgid "This action exceeds the limits set by your subscription plan." @@ -209,16 +209,16 @@ msgstr "" #: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 msgctxt "acl" msgid "Profile" -msgstr "" +msgstr "プロファイル" #: ../../include/acl_selectors.php:106 #: ../../Zotlabs/Lib/PermissionDescription.php:107 msgid "Only me" -msgstr "" +msgstr "自分のみ" #: ../../include/acl_selectors.php:113 msgid "Who can see this?" -msgstr "" +msgstr "誰が見れる?" #: ../../include/acl_selectors.php:114 msgid "Custom selection" diff --git a/view/ja/hstrings.php b/view/ja/hstrings.php index dea8dba64..cdd14027f 100644 --- a/view/ja/hstrings.php +++ b/view/ja/hstrings.php @@ -1,43 +1,43 @@ Date: Sun, 9 Jun 2019 22:01:25 +0900 Subject: [PATCH 05/18] fix conflict --- util/hmessages.po | 24111 +++++++++++++++++++++++++------------------- 1 file changed, 13723 insertions(+), 10388 deletions(-) diff --git a/util/hmessages.po b/util/hmessages.po index e0cb80848..880cbfe30 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 4.0.3\n" +"Project-Id-Version: 4.2RC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-05-23 17:11+0900\n" +"POT-Creation-Date: 2019-05-13 12:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,3816 +17,6 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../boot.php:1609 -msgid "Create an account to access services and applications" -msgstr "" - -#: ../../boot.php:1610 ../../include/nav.php:160 -#: ../../Zotlabs/Module/Register.php:289 -msgid "Register" -msgstr "" - -#: ../../boot.php:1629 ../../include/nav.php:107 ../../include/nav.php:136 -#: ../../include/nav.php:155 -msgid "Logout" -msgstr "" - -#: ../../boot.php:1630 ../../include/nav.php:122 ../../include/nav.php:126 -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Login" -msgstr "" - -#: ../../boot.php:1631 ../../include/channel.php:2475 -#: ../../Zotlabs/Module/Rmagic.php:93 -msgid "Remote Authentication" -msgstr "" - -#: ../../boot.php:1633 -msgid "Login/Email" -msgstr "" - -#: ../../boot.php:1634 -msgid "Password" -msgstr "" - -#: ../../boot.php:1635 -msgid "Remember me" -msgstr "" - -#: ../../boot.php:1635 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:99 -#: ../../view/theme/redbasic/php/config.php:116 -#: ../../Zotlabs/Lib/Libzotdir.php:162 ../../Zotlabs/Lib/Libzotdir.php:163 -#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Module/Admin/Site.php:255 -#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Connedit.php:406 -#: ../../Zotlabs/Module/Connedit.php:796 ../../Zotlabs/Module/Defperms.php:197 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Events.php:473 -#: ../../Zotlabs/Module/Filestorage.php:198 -#: ../../Zotlabs/Module/Filestorage.php:206 ../../Zotlabs/Module/Import.php:635 -#: ../../Zotlabs/Module/Import.php:639 ../../Zotlabs/Module/Import.php:640 -#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Photos.php:712 ../../Zotlabs/Module/Profiles.php:681 -#: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings/Channel.php:309 -#: ../../Zotlabs/Module/Settings/Display.php:89 -#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 -#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Wiki.php:228 -#: ../../Zotlabs/Storage/Browser.php:411 -msgid "No" -msgstr "" - -#: ../../boot.php:1635 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:99 -#: ../../view/theme/redbasic/php/config.php:116 -#: ../../Zotlabs/Lib/Libzotdir.php:162 ../../Zotlabs/Lib/Libzotdir.php:163 -#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Module/Admin/Site.php:257 -#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Connedit.php:406 -#: ../../Zotlabs/Module/Defperms.php:197 ../../Zotlabs/Module/Events.php:472 -#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Module/Filestorage.php:198 -#: ../../Zotlabs/Module/Filestorage.php:206 ../../Zotlabs/Module/Import.php:635 -#: ../../Zotlabs/Module/Import.php:639 ../../Zotlabs/Module/Import.php:640 -#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Photos.php:712 ../../Zotlabs/Module/Profiles.php:681 -#: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings/Channel.php:309 -#: ../../Zotlabs/Module/Settings/Display.php:89 -#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 -#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Wiki.php:228 -#: ../../Zotlabs/Storage/Browser.php:411 -msgid "Yes" -msgstr "" - -#: ../../boot.php:1638 -msgid "Forgot your password?" -msgstr "" - -#: ../../boot.php:1639 ../../Zotlabs/Module/Lostpass.php:91 -msgid "Password Reset" -msgstr "" - -#: ../../boot.php:2434 -#, php-format -msgid "[$Projectname] Website SSL error for %s" -msgstr "" - -#: ../../boot.php:2439 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "" - -#: ../../boot.php:2555 -#, php-format -msgid "[$Projectname] Cron tasks not running on %s" -msgstr "" - -#: ../../boot.php:2560 -msgid "Cron/Scheduled tasks not running." -msgstr "" - -#: ../../boot.php:2561 ../../include/datetime.php:238 -msgid "never" -msgstr "" - -#: ../../include/account.php:36 -msgid "Not a valid email address" -msgstr "" - -#: ../../include/account.php:38 -msgid "Your email domain is not among those allowed on this site" -msgstr "" - -#: ../../include/account.php:44 -msgid "Your email address is already registered at this site." -msgstr "" - -#: ../../include/account.php:76 -msgid "An invitation is required." -msgstr "" - -#: ../../include/account.php:80 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/account.php:156 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/account.php:223 -msgid "Failed to store account information." -msgstr "" - -#: ../../include/account.php:311 -#, php-format -msgid "Registration confirmation for %s" -msgstr "" - -#: ../../include/account.php:380 -#, php-format -msgid "Registration request at %s" -msgstr "" - -#: ../../include/account.php:402 -msgid "your registration password" -msgstr "" - -#: ../../include/account.php:408 ../../include/account.php:471 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../include/account.php:482 -msgid "Account approved." -msgstr "" - -#: ../../include/account.php:522 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: ../../include/account.php:803 ../../include/account.php:805 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/account.php:811 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/account.php:816 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/acl_selectors.php:33 -#: ../../Zotlabs/Lib/PermissionDescription.php:34 -msgid "Visible to your default audience" -msgstr "" - -#: ../../include/acl_selectors.php:88 ../../Zotlabs/Module/Acl.php:121 -#: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -msgctxt "acl" -msgid "Profile" -msgstr "" - -#: ../../include/acl_selectors.php:106 -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Only me" -msgstr "" - -#: ../../include/acl_selectors.php:113 -msgid "Who can see this?" -msgstr "" - -#: ../../include/acl_selectors.php:114 -msgid "Custom selection" -msgstr "" - -#: ../../include/acl_selectors.php:115 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " -"the scope of \"Show\"." -msgstr "" - -#: ../../include/acl_selectors.php:116 -msgid "Show" -msgstr "" - -#: ../../include/acl_selectors.php:117 -msgid "Don't show" -msgstr "" - -#: ../../include/acl_selectors.php:118 ../../include/nav.php:186 -#: ../../include/text.php:1084 ../../include/text.php:1096 -#: ../../Zotlabs/Lib/Apps.php:352 ../../Zotlabs/Module/Connections.php:352 -#: ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Widget/Activity_filter.php:151 -#: ../../Zotlabs/Widget/Sitesearch.php:31 -msgid "Search" -msgstr "" - -#: ../../include/acl_selectors.php:123 ../../Zotlabs/Module/Chat.php:243 -#: ../../Zotlabs/Module/Connedit.php:690 -#: ../../Zotlabs/Module/Filestorage.php:190 ../../Zotlabs/Module/Photos.php:717 -#: ../../Zotlabs/Module/Photos.php:1086 ../../Zotlabs/Module/Thing.php:319 -#: ../../Zotlabs/Module/Thing.php:372 -msgid "Permissions" -msgstr "" - -#: ../../include/acl_selectors.php:125 ../../Zotlabs/Lib/ThreadItem.php:463 -#: ../../Zotlabs/Module/Photos.php:1316 -msgid "Close" -msgstr "" - -#: ../../include/acl_selectors.php:150 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These " -"permissions set who is allowed to view the post." -msgstr "" - -#: ../../include/activities.php:42 -msgid " and " -msgstr "" - -#: ../../include/activities.php:50 -msgid "public profile" -msgstr "" - -#: ../../include/activities.php:59 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: ../../include/activities.php:60 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "" - -#: ../../include/activities.php:63 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" - -#: ../../include/attach.php:150 ../../include/attach.php:199 -#: ../../include/attach.php:272 ../../include/attach.php:380 -#: ../../include/attach.php:394 ../../include/attach.php:401 -#: ../../include/attach.php:483 ../../include/attach.php:1043 -#: ../../include/attach.php:1117 ../../include/attach.php:1280 -#: ../../include/items.php:3801 ../../include/photos.php:27 -#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Module/Achievements.php:34 -#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Appman.php:87 -#: ../../Zotlabs/Module/Articles.php:88 -#: ../../Zotlabs/Module/Article_edit.php:51 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:24 -#: ../../Zotlabs/Module/Block.php:74 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Bookmarks.php:70 -#: ../../Zotlabs/Module/Cards.php:86 ../../Zotlabs/Module/Channel.php:168 -#: ../../Zotlabs/Module/Channel.php:335 ../../Zotlabs/Module/Channel.php:374 -#: ../../Zotlabs/Module/Chat.php:115 ../../Zotlabs/Module/Chat.php:120 -#: ../../Zotlabs/Module/Cloud.php:40 ../../Zotlabs/Module/Common.php:38 -#: ../../Zotlabs/Module/Connections.php:32 -#: ../../Zotlabs/Module/Connedit.php:399 -#: ../../Zotlabs/Module/Cover_photo.php:338 -#: ../../Zotlabs/Module/Cover_photo.php:351 -#: ../../Zotlabs/Module/Defperms.php:181 ../../Zotlabs/Module/Display.php:451 -#: ../../Zotlabs/Module/Editblock.php:67 ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:107 -#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Events.php:271 -#: ../../Zotlabs/Module/Filestorage.php:17 -#: ../../Zotlabs/Module/Filestorage.php:72 -#: ../../Zotlabs/Module/Filestorage.php:90 -#: ../../Zotlabs/Module/Filestorage.php:113 -#: ../../Zotlabs/Module/Filestorage.php:160 ../../Zotlabs/Module/Group.php:14 -#: ../../Zotlabs/Module/Group.php:30 ../../Zotlabs/Module/Invite.php:21 -#: ../../Zotlabs/Module/Invite.php:102 ../../Zotlabs/Module/Item.php:397 -#: ../../Zotlabs/Module/Item.php:416 ../../Zotlabs/Module/Item.php:426 -#: ../../Zotlabs/Module/Item.php:1302 ../../Zotlabs/Module/Layouts.php:71 -#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 -#: ../../Zotlabs/Module/Like.php:187 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mail.php:146 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Menu.php:129 ../../Zotlabs/Module/Menu.php:140 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mitem.php:129 -#: ../../Zotlabs/Module/Moderate.php:13 ../../Zotlabs/Module/Mood.php:126 -#: ../../Zotlabs/Module/Network.php:19 ../../Zotlabs/Module/New_channel.php:105 -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Notifications.php:11 -#: ../../Zotlabs/Module/Card_edit.php:51 ../../Zotlabs/Module/Regmod.php:20 -#: ../../Zotlabs/Module/Page.php:34 ../../Zotlabs/Module/Page.php:133 -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Photos.php:69 -#: ../../Zotlabs/Module/Poke.php:157 ../../Zotlabs/Module/Profile.php:85 -#: ../../Zotlabs/Module/Profile.php:101 ../../Zotlabs/Module/Profiles.php:198 -#: ../../Zotlabs/Module/Profiles.php:635 -#: ../../Zotlabs/Module/Profile_photo.php:302 -#: ../../Zotlabs/Module/Profile_photo.php:315 ../../Zotlabs/Module/Rate.php:113 -#: ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Setup.php:206 -#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Sources.php:80 -#: ../../Zotlabs/Module/Suggest.php:32 ../../Zotlabs/Module/Thing.php:280 -#: ../../Zotlabs/Module/Thing.php:300 ../../Zotlabs/Module/Thing.php:341 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Webpages.php:133 -#: ../../Zotlabs/Module/Wiki.php:59 ../../Zotlabs/Module/Wiki.php:285 -#: ../../Zotlabs/Module/Wiki.php:428 ../../Zotlabs/Web/WebServer.php:123 -msgid "Permission denied." -msgstr "" - -#: ../../include/attach.php:267 ../../include/attach.php:375 -msgid "Item was not found." -msgstr "" - -#: ../../include/attach.php:284 -msgid "Unknown error." -msgstr "" - -#: ../../include/attach.php:568 -msgid "No source file." -msgstr "" - -#: ../../include/attach.php:590 -msgid "Cannot locate file to replace" -msgstr "" - -#: ../../include/attach.php:609 -msgid "Cannot locate file to revise/update" -msgstr "" - -#: ../../include/attach.php:751 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "" - -#: ../../include/attach.php:772 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "" - -#: ../../include/attach.php:954 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "" - -#: ../../include/attach.php:983 -msgid "Stored file could not be verified. Upload failed." -msgstr "" - -#: ../../include/attach.php:1057 ../../include/attach.php:1073 -msgid "Path not available." -msgstr "" - -#: ../../include/attach.php:1122 ../../include/attach.php:1285 -msgid "Empty pathname" -msgstr "" - -#: ../../include/attach.php:1148 -msgid "duplicate filename or path" -msgstr "" - -#: ../../include/attach.php:1173 -msgid "Path not found." -msgstr "" - -#: ../../include/attach.php:1241 -msgid "mkdir failed." -msgstr "" - -#: ../../include/attach.php:1245 -msgid "database storage failed." -msgstr "" - -#: ../../include/attach.php:1291 -msgid "Empty path" -msgstr "" - -#: ../../include/auth.php:192 -msgid "Delegation session ended." -msgstr "" - -#: ../../include/auth.php:196 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:291 -msgid "Email validation is incomplete. Please check your email." -msgstr "" - -#: ../../include/auth.php:307 -msgid "Failed authentication" -msgstr "" - -#: ../../include/auth.php:317 -msgid "Login failed." -msgstr "" - -#: ../../include/bbcode.php:220 ../../include/bbcode.php:1210 -#: ../../include/bbcode.php:1213 ../../include/bbcode.php:1218 -#: ../../include/bbcode.php:1221 ../../include/bbcode.php:1224 -#: ../../include/bbcode.php:1227 ../../include/bbcode.php:1232 -#: ../../include/bbcode.php:1235 ../../include/bbcode.php:1240 -#: ../../include/bbcode.php:1243 ../../include/bbcode.php:1246 -#: ../../include/bbcode.php:1249 -msgid "Image/photo" -msgstr "" - -#: ../../include/bbcode.php:259 ../../include/bbcode.php:1260 -msgid "Encrypted content" -msgstr "" - -#: ../../include/bbcode.php:275 -#, php-format -msgid "Install %1$s element %2$s" -msgstr "" - -#: ../../include/bbcode.php:279 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "" - -#: ../../include/bbcode.php:289 ../../Zotlabs/Module/Impel.php:43 -msgid "webpage" -msgstr "" - -#: ../../include/bbcode.php:292 ../../Zotlabs/Module/Impel.php:53 -msgid "layout" -msgstr "" - -#: ../../include/bbcode.php:295 ../../Zotlabs/Module/Impel.php:48 -msgid "block" -msgstr "" - -#: ../../include/bbcode.php:298 ../../Zotlabs/Module/Impel.php:60 -msgid "menu" -msgstr "" - -#: ../../include/bbcode.php:359 -msgid "card" -msgstr "" - -#: ../../include/bbcode.php:361 -msgid "article" -msgstr "" - -#: ../../include/bbcode.php:363 ../../include/markdown.php:200 -#: ../../Zotlabs/Module/Tagger.php:77 -msgid "post" -msgstr "" - -#: ../../include/bbcode.php:367 ../../include/markdown.php:198 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:444 ../../include/bbcode.php:452 -msgid "Click to open/close" -msgstr "" - -#: ../../include/bbcode.php:452 -msgid "spoiler" -msgstr "" - -#: ../../include/bbcode.php:465 -msgid "View article" -msgstr "" - -#: ../../include/bbcode.php:465 -msgid "View summary" -msgstr "" - -#: ../../include/bbcode.php:755 ../../include/bbcode.php:925 -#: ../../Zotlabs/Lib/NativeWikiPage.php:603 -msgid "Different viewers will see this text differently" -msgstr "" - -#: ../../include/bbcode.php:1198 -msgid "$1 wrote:" -msgstr "" - -#: ../../include/bookmarks.php:34 -#, php-format -msgid "%1$s's bookmarks" -msgstr "" - -#: ../../include/channel.php:43 -msgid "Unable to obtain identity information from database" -msgstr "" - -#: ../../include/channel.php:76 -msgid "Empty name" -msgstr "" - -#: ../../include/channel.php:79 -msgid "Name too long" -msgstr "" - -#: ../../include/channel.php:196 -msgid "No account identifier" -msgstr "" - -#: ../../include/channel.php:208 -msgid "Nickname is required." -msgstr "" - -#: ../../include/channel.php:222 ../../include/channel.php:655 -#: ../../Zotlabs/Module/Changeaddr.php:46 -msgid "Reserved nickname. Please choose another." -msgstr "" - -#: ../../include/channel.php:227 ../../include/channel.php:660 -#: ../../Zotlabs/Module/Changeaddr.php:51 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "" - -#: ../../include/channel.php:287 -msgid "Unable to retrieve created identity" -msgstr "" - -#: ../../include/channel.php:429 -msgid "Default Profile" -msgstr "" - -#: ../../include/channel.php:493 ../../include/channel.php:494 -#: ../../include/channel.php:501 ../../include/selectors.php:134 -#: ../../Zotlabs/Module/Connedit.php:725 -#: ../../Zotlabs/Module/Settings/Channel.php:70 -#: ../../Zotlabs/Module/Settings/Channel.php:74 -#: ../../Zotlabs/Module/Settings/Channel.php:75 -#: ../../Zotlabs/Module/Settings/Channel.php:78 -#: ../../Zotlabs/Module/Settings/Channel.php:89 -#: ../../Zotlabs/Widget/Affinity.php:32 -msgid "Friends" -msgstr "" - -#: ../../include/channel.php:588 ../../include/channel.php:677 -msgid "Unable to retrieve modified identity" -msgstr "" - -#: ../../include/channel.php:1273 -msgid "Requested channel is not available." -msgstr "" - -#: ../../include/channel.php:1319 ../../Zotlabs/Module/Achievements.php:15 -#: ../../Zotlabs/Module/Articles.php:42 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Connect.php:17 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Filestorage.php:53 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Menu.php:91 -#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Webpages.php:39 -msgid "Requested profile is not available." -msgstr "" - -#: ../../include/channel.php:1411 ../../Zotlabs/Module/Profiles.php:728 -msgid "Change profile photo" -msgstr "" - -#: ../../include/channel.php:1418 ../../include/nav.php:113 -#: ../../Zotlabs/Module/Profiles.php:830 -msgid "Edit Profiles" -msgstr "" - -#: ../../include/channel.php:1418 ../../include/channel.php:1422 -#: ../../include/menu.php:118 ../../Zotlabs/Lib/Apps.php:558 -#: ../../Zotlabs/Lib/ThreadItem.php:147 -#: ../../Zotlabs/Module/Admin/Profs.php:175 -#: ../../Zotlabs/Module/Article_edit.php:99 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Connections.php:298 -#: ../../Zotlabs/Module/Connections.php:336 -#: ../../Zotlabs/Module/Connections.php:356 -#: ../../Zotlabs/Module/Editblock.php:114 -#: ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Editwebpage.php:142 ../../Zotlabs/Module/Group.php:252 -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Menu.php:175 -#: ../../Zotlabs/Module/Oauth.php:173 ../../Zotlabs/Module/Oauth2.php:194 -#: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Module/Thing.php:266 -#: ../../Zotlabs/Module/Webpages.php:255 ../../Zotlabs/Module/Wiki.php:211 -#: ../../Zotlabs/Module/Wiki.php:384 ../../Zotlabs/Storage/Browser.php:296 -#: ../../Zotlabs/Widget/Cdav.php:126 ../../Zotlabs/Widget/Cdav.php:162 -msgid "Edit" -msgstr "" - -#: ../../include/channel.php:1419 -msgid "Create New Profile" -msgstr "" - -#: ../../include/channel.php:1422 ../../include/nav.php:115 -msgid "Edit Profile" -msgstr "" - -#: ../../include/channel.php:1437 ../../Zotlabs/Module/Profiles.php:820 -msgid "Profile Image" -msgstr "" - -#: ../../include/channel.php:1440 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/channel.php:1441 ../../Zotlabs/Module/Profiles.php:725 -#: ../../Zotlabs/Module/Profiles.php:824 -msgid "Edit visibility" -msgstr "" - -#: ../../include/channel.php:1498 ../../include/connections.php:110 -#: ../../include/conversation.php:1058 ../../Zotlabs/Module/Directory.php:342 -#: ../../Zotlabs/Module/Suggest.php:71 ../../Zotlabs/Widget/Follow.php:32 -#: ../../Zotlabs/Widget/Suggestions.php:46 -msgid "Connect" -msgstr "" - -#: ../../include/channel.php:1513 ../../include/event.php:61 -#: ../../include/event.php:93 ../../Zotlabs/Module/Directory.php:328 -msgid "Location:" -msgstr "" - -#: ../../include/channel.php:1517 ../../include/channel.php:1645 -msgid "Gender:" -msgstr "" - -#: ../../include/channel.php:1518 ../../include/channel.php:1689 -msgid "Status:" -msgstr "" - -#: ../../include/channel.php:1519 ../../include/channel.php:1713 -msgid "Homepage:" -msgstr "" - -#: ../../include/channel.php:1520 -msgid "Online Now" -msgstr "" - -#: ../../include/channel.php:1573 -msgid "Change your profile photo" -msgstr "" - -#: ../../include/channel.php:1600 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 -msgid "Female" -msgstr "" - -#: ../../include/channel.php:1602 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 -msgid "Male" -msgstr "" - -#: ../../include/channel.php:1604 -msgid "Trans" -msgstr "" - -#: ../../include/channel.php:1606 ../../include/selectors.php:60 -msgid "Neuter" -msgstr "" - -#: ../../include/channel.php:1608 ../../include/selectors.php:60 -msgid "Non-specific" -msgstr "" - -#: ../../include/channel.php:1643 ../../Zotlabs/Module/Settings/Channel.php:499 -msgid "Full Name:" -msgstr "" - -#: ../../include/channel.php:1650 -msgid "Like this channel" -msgstr "" - -#: ../../include/channel.php:1661 ../../include/conversation.php:1702 -#: ../../include/taxonomy.php:659 ../../Zotlabs/Lib/ThreadItem.php:235 -#: ../../Zotlabs/Module/Photos.php:1177 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/channel.php:1674 -msgid "j F, Y" -msgstr "" - -#: ../../include/channel.php:1675 -msgid "j F" -msgstr "" - -#: ../../include/channel.php:1682 -msgid "Birthday:" -msgstr "" - -#: ../../include/channel.php:1686 ../../Zotlabs/Module/Directory.php:323 -msgid "Age:" -msgstr "" - -#: ../../include/channel.php:1695 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: ../../include/channel.php:1707 -msgid "Tags:" -msgstr "" - -#: ../../include/channel.php:1711 -msgid "Sexual Preference:" -msgstr "" - -#: ../../include/channel.php:1715 ../../Zotlabs/Module/Directory.php:339 -msgid "Hometown:" -msgstr "" - -#: ../../include/channel.php:1717 -msgid "Political Views:" -msgstr "" - -#: ../../include/channel.php:1719 -msgid "Religion:" -msgstr "" - -#: ../../include/channel.php:1721 ../../Zotlabs/Module/Directory.php:341 -msgid "About:" -msgstr "" - -#: ../../include/channel.php:1723 -msgid "Hobbies/Interests:" -msgstr "" - -#: ../../include/channel.php:1725 -msgid "Likes:" -msgstr "" - -#: ../../include/channel.php:1727 -msgid "Dislikes:" -msgstr "" - -#: ../../include/channel.php:1729 -msgid "Contact information and Social Networks:" -msgstr "" - -#: ../../include/channel.php:1731 -msgid "My other channels:" -msgstr "" - -#: ../../include/channel.php:1733 -msgid "Musical interests:" -msgstr "" - -#: ../../include/channel.php:1735 -msgid "Books, literature:" -msgstr "" - -#: ../../include/channel.php:1737 -msgid "Television:" -msgstr "" - -#: ../../include/channel.php:1739 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: ../../include/channel.php:1741 -msgid "Love/Romance:" -msgstr "" - -#: ../../include/channel.php:1743 -msgid "Work/employment:" -msgstr "" - -#: ../../include/channel.php:1745 -msgid "School/education:" -msgstr "" - -#: ../../include/channel.php:1766 ../../Zotlabs/Lib/Apps.php:361 -#: ../../Zotlabs/Module/Profperm.php:113 -msgid "Profile" -msgstr "" - -#: ../../include/channel.php:1768 -msgid "Like this thing" -msgstr "" - -#: ../../include/channel.php:1769 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Events.php:692 -msgid "Export" -msgstr "" - -#: ../../include/channel.php:2207 ../../Zotlabs/Module/Cover_photo.php:301 -msgid "cover photo" -msgstr "" - -#: ../../include/channel.php:2476 ../../Zotlabs/Module/Rmagic.php:94 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "" - -#: ../../include/channel.php:2477 ../../Zotlabs/Module/Rmagic.php:95 -msgid "Authenticate" -msgstr "" - -#: ../../include/channel.php:2632 ../../Zotlabs/Module/Admin/Accounts.php:91 -#, php-format -msgid "Account '%s' deleted" -msgstr "" - -#: ../../include/connections.php:133 -msgid "New window" -msgstr "" - -#: ../../include/connections.php:134 -msgid "Open the selected location in a different window or browser tab" -msgstr "" - -#: ../../include/connections.php:696 ../../include/event.php:1325 -#: ../../Zotlabs/Module/Cdav.php:1251 ../../Zotlabs/Module/Connedit.php:932 -#: ../../Zotlabs/Module/Profiles.php:792 -msgid "Mobile" -msgstr "" - -#: ../../include/connections.php:697 ../../include/event.php:1326 -#: ../../Zotlabs/Module/Cdav.php:1252 ../../Zotlabs/Module/Connedit.php:933 -#: ../../Zotlabs/Module/Profiles.php:793 -msgid "Home" -msgstr "" - -#: ../../include/connections.php:698 ../../include/event.php:1327 -msgid "Home, Voice" -msgstr "" - -#: ../../include/connections.php:699 ../../include/event.php:1328 -msgid "Home, Fax" -msgstr "" - -#: ../../include/connections.php:700 ../../include/event.php:1329 -#: ../../Zotlabs/Module/Cdav.php:1253 ../../Zotlabs/Module/Connedit.php:934 -#: ../../Zotlabs/Module/Profiles.php:794 -msgid "Work" -msgstr "" - -#: ../../include/connections.php:701 ../../include/event.php:1330 -msgid "Work, Voice" -msgstr "" - -#: ../../include/connections.php:702 ../../include/event.php:1331 -msgid "Work, Fax" -msgstr "" - -#: ../../include/connections.php:703 ../../include/connections.php:710 -#: ../../include/event.php:1332 ../../include/event.php:1339 -#: ../../include/selectors.php:60 ../../include/selectors.php:77 -#: ../../include/selectors.php:115 ../../include/selectors.php:151 -#: ../../Zotlabs/Access/PermissionRoles.php:306 -#: ../../Zotlabs/Module/Cdav.php:1254 ../../Zotlabs/Module/Connedit.php:935 -#: ../../Zotlabs/Module/Profiles.php:795 -msgid "Other" -msgstr "" - -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:16 ../../Zotlabs/Module/Admin/Site.php:293 -msgid "Advanced" -msgstr "" - -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "" - -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "" - -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "" - -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: ../../include/contact_widgets.php:23 -#: ../../Zotlabs/Module/Connections.php:355 -#: ../../Zotlabs/Module/Directory.php:405 -#: ../../Zotlabs/Module/Directory.php:410 -msgid "Find" -msgstr "" - -#: ../../include/contact_widgets.php:24 ../../Zotlabs/Module/Directory.php:409 -#: ../../Zotlabs/Module/Suggest.php:79 -msgid "Channel Suggestions" -msgstr "" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "" - -#: ../../include/contact_widgets.php:53 ../../include/features.php:325 -#: ../../Zotlabs/Widget/Activity_filter.php:137 -#: ../../Zotlabs/Widget/Filer.php:28 -msgid "Saved Folders" -msgstr "" - -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:99 -#: ../../include/contact_widgets.php:142 ../../include/contact_widgets.php:187 -#: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 -msgid "Everything" -msgstr "" - -#: ../../include/contact_widgets.php:96 ../../include/contact_widgets.php:139 -#: ../../include/contact_widgets.php:184 ../../include/taxonomy.php:409 -#: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511 -#: ../../include/taxonomy.php:532 ../../Zotlabs/Widget/Appcategories.php:43 -msgid "Categories" -msgstr "" - -#: ../../include/contact_widgets.php:218 -msgid "Common Connections" -msgstr "" - -#: ../../include/contact_widgets.php:222 -#, php-format -msgid "View all %d common connections" -msgstr "" - -#: ../../include/conversation.php:116 ../../include/text.php:2104 -#: ../../Zotlabs/Lib/Activity.php:2002 ../../Zotlabs/Module/Like.php:392 -#: ../../Zotlabs/Module/Subthread.php:112 ../../Zotlabs/Module/Tagger.php:69 -msgid "photo" -msgstr "" - -#: ../../include/conversation.php:119 ../../include/event.php:1169 -#: ../../include/text.php:2107 ../../Zotlabs/Module/Events.php:260 -#: ../../Zotlabs/Module/Like.php:394 ../../Zotlabs/Module/Tagger.php:73 -msgid "event" -msgstr "" - -#: ../../include/conversation.php:122 ../../Zotlabs/Module/Like.php:123 -msgid "channel" -msgstr "" - -#: ../../include/conversation.php:144 ../../include/text.php:2110 -#: ../../Zotlabs/Lib/Activity.php:2002 ../../Zotlabs/Module/Like.php:392 -#: ../../Zotlabs/Module/Subthread.php:112 -msgid "status" -msgstr "" - -#: ../../include/conversation.php:146 ../../include/text.php:2112 -#: ../../Zotlabs/Module/Tagger.php:79 -msgid "comment" -msgstr "" - -#: ../../include/conversation.php:160 ../../Zotlabs/Lib/Activity.php:2037 -#: ../../Zotlabs/Module/Like.php:447 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "" - -#: ../../include/conversation.php:163 ../../Zotlabs/Lib/Activity.php:2039 -#: ../../Zotlabs/Module/Like.php:449 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: ../../include/conversation.php:169 -#, php-format -msgid "likes %1$s's %2$s" -msgstr "" - -#: ../../include/conversation.php:172 -#, php-format -msgid "doesn't like %1$s's %2$s" -msgstr "" - -#: ../../include/conversation.php:212 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "" - -#: ../../include/conversation.php:247 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:251 ../../include/text.php:1176 -#: ../../include/text.php:1180 -msgid "poked" -msgstr "" - -#: ../../include/conversation.php:268 ../../Zotlabs/Module/Mood.php:76 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "" - -#: ../../include/conversation.php:483 ../../Zotlabs/Lib/ThreadItem.php:468 -msgid "This is an unsaved preview" -msgstr "" - -#: ../../include/conversation.php:619 ../../Zotlabs/Module/Photos.php:1154 -msgctxt "title" -msgid "Likes" -msgstr "" - -#: ../../include/conversation.php:619 ../../Zotlabs/Module/Photos.php:1154 -msgctxt "title" -msgid "Dislikes" -msgstr "" - -#: ../../include/conversation.php:620 ../../Zotlabs/Module/Photos.php:1155 -msgctxt "title" -msgid "Agree" -msgstr "" - -#: ../../include/conversation.php:620 ../../Zotlabs/Module/Photos.php:1155 -msgctxt "title" -msgid "Disagree" -msgstr "" - -#: ../../include/conversation.php:620 ../../Zotlabs/Module/Photos.php:1155 -msgctxt "title" -msgid "Abstain" -msgstr "" - -#: ../../include/conversation.php:621 ../../Zotlabs/Module/Photos.php:1156 -msgctxt "title" -msgid "Attending" -msgstr "" - -#: ../../include/conversation.php:621 ../../Zotlabs/Module/Photos.php:1156 -msgctxt "title" -msgid "Not attending" -msgstr "" - -#: ../../include/conversation.php:621 ../../Zotlabs/Module/Photos.php:1156 -msgctxt "title" -msgid "Might attend" -msgstr "" - -#: ../../include/conversation.php:690 ../../Zotlabs/Lib/ThreadItem.php:177 -msgid "Select" -msgstr "" - -#: ../../include/conversation.php:691 ../../include/conversation.php:736 -#: ../../Zotlabs/Lib/Apps.php:559 ../../Zotlabs/Lib/ThreadItem.php:167 -#: ../../Zotlabs/Module/Admin/Accounts.php:175 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Admin/Profs.php:176 -#: ../../Zotlabs/Module/Article_edit.php:129 -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Cdav.php:966 -#: ../../Zotlabs/Module/Cdav.php:1259 ../../Zotlabs/Module/Connections.php:306 -#: ../../Zotlabs/Module/Connedit.php:668 ../../Zotlabs/Module/Connedit.php:940 -#: ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Editlayout.php:138 -#: ../../Zotlabs/Module/Editwebpage.php:167 ../../Zotlabs/Module/Oauth.php:174 -#: ../../Zotlabs/Module/Oauth2.php:195 ../../Zotlabs/Module/Card_edit.php:129 -#: ../../Zotlabs/Module/Photos.php:1220 ../../Zotlabs/Module/Profiles.php:800 -#: ../../Zotlabs/Module/Thing.php:267 ../../Zotlabs/Module/Webpages.php:257 -#: ../../Zotlabs/Storage/Browser.php:297 -msgid "Delete" -msgstr "" - -#: ../../include/conversation.php:695 ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "Toggle Star Status" -msgstr "" - -#: ../../include/conversation.php:700 ../../Zotlabs/Lib/ThreadItem.php:102 -msgid "Private Message" -msgstr "" - -#: ../../include/conversation.php:707 ../../Zotlabs/Lib/ThreadItem.php:277 -msgid "Message signature validated" -msgstr "" - -#: ../../include/conversation.php:708 ../../Zotlabs/Lib/ThreadItem.php:278 -msgid "Message signature incorrect" -msgstr "" - -#: ../../include/conversation.php:735 -#: ../../Zotlabs/Module/Admin/Accounts.php:173 -#: ../../Zotlabs/Module/Connections.php:320 -msgid "Approve" -msgstr "" - -#: ../../include/conversation.php:739 -#, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: ../../include/conversation.php:759 -msgid "Categories:" -msgstr "" - -#: ../../include/conversation.php:760 -msgid "Filed under:" -msgstr "" - -#: ../../include/conversation.php:766 ../../Zotlabs/Lib/ThreadItem.php:402 -#, php-format -msgid "from %s" -msgstr "" - -#: ../../include/conversation.php:769 ../../Zotlabs/Lib/ThreadItem.php:405 -#, php-format -msgid "last edited: %s" -msgstr "" - -#: ../../include/conversation.php:770 ../../Zotlabs/Lib/ThreadItem.php:406 -#, php-format -msgid "Expires: %s" -msgstr "" - -#: ../../include/conversation.php:785 -msgid "View in context" -msgstr "" - -#: ../../include/conversation.php:787 ../../Zotlabs/Lib/ThreadItem.php:469 -#: ../../Zotlabs/Module/Photos.php:1118 -msgid "Please wait" -msgstr "" - -#: ../../include/conversation.php:886 -msgid "remove" -msgstr "" - -#: ../../include/conversation.php:890 -msgid "Loading..." -msgstr "" - -#: ../../include/conversation.php:891 ../../Zotlabs/Lib/ThreadItem.php:290 -msgid "Conversation Tools" -msgstr "" - -#: ../../include/conversation.php:892 -msgid "Delete Selected Items" -msgstr "" - -#: ../../include/conversation.php:935 -msgid "View Source" -msgstr "" - -#: ../../include/conversation.php:945 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:954 -msgid "Unfollow Thread" -msgstr "" - -#: ../../include/conversation.php:1038 ../../include/nav.php:110 -#: ../../Zotlabs/Lib/Apps.php:343 ../../Zotlabs/Module/Connedit.php:608 -msgid "View Profile" -msgstr "" - -#: ../../include/conversation.php:1048 ../../Zotlabs/Module/Connedit.php:629 -msgid "Recent Activity" -msgstr "" - -#: ../../include/conversation.php:1068 -msgid "Edit Connection" -msgstr "" - -#: ../../include/conversation.php:1078 -msgid "Message" -msgstr "" - -#: ../../include/conversation.php:1088 ../../Zotlabs/Module/Pubsites.php:35 -#: ../../Zotlabs/Module/Ratings.php:97 -msgid "Ratings" -msgstr "" - -#: ../../include/conversation.php:1098 ../../Zotlabs/Lib/Apps.php:350 -#: ../../Zotlabs/Module/Poke.php:199 -msgid "Poke" -msgstr "" - -#: ../../include/conversation.php:1166 ../../Zotlabs/Lib/Activity.php:1053 -#: ../../Zotlabs/Lib/Apps.php:1115 ../../Zotlabs/Lib/Apps.php:1199 -#: ../../Zotlabs/Module/Cdav.php:826 ../../Zotlabs/Module/Cdav.php:827 -#: ../../Zotlabs/Module/Cdav.php:834 ../../Zotlabs/Module/Embedphotos.php:154 -#: ../../Zotlabs/Module/Photos.php:832 ../../Zotlabs/Module/Photos.php:1296 -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Album.php:84 -#: ../../Zotlabs/Widget/Portfolio.php:95 -msgid "Unknown" -msgstr "" - -#: ../../include/conversation.php:1212 -#, php-format -msgid "%s likes this." -msgstr "" - -#: ../../include/conversation.php:1212 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: ../../include/conversation.php:1216 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1218 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1224 -msgid "and" -msgstr "" - -#: ../../include/conversation.php:1227 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1228 -#, php-format -msgid "%s like this." -msgstr "" - -#: ../../include/conversation.php:1228 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: ../../include/conversation.php:1285 -msgid "Set your location" -msgstr "" - -#: ../../include/conversation.php:1286 -msgid "Clear browser location" -msgstr "" - -#: ../../include/conversation.php:1298 -#: ../../Zotlabs/Module/Article_edit.php:101 ../../Zotlabs/Module/Chat.php:222 -#: ../../Zotlabs/Module/Editblock.php:116 -#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 -#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 -msgid "Insert web link" -msgstr "" - -#: ../../include/conversation.php:1302 -msgid "Embed (existing) photo from your photo albums" -msgstr "" - -#: ../../include/conversation.php:1337 ../../Zotlabs/Module/Chat.php:220 -#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Mail.php:362 -msgid "Please enter a link URL:" -msgstr "" - -#: ../../include/conversation.php:1338 -msgid "Tag term:" -msgstr "" - -#: ../../include/conversation.php:1339 -msgid "Where are you right now?" -msgstr "" - -#: ../../include/conversation.php:1342 ../../Zotlabs/Module/Cover_photo.php:427 -#: ../../Zotlabs/Module/Profile_photo.php:467 ../../Zotlabs/Module/Wiki.php:403 -msgid "Choose images to embed" -msgstr "" - -#: ../../include/conversation.php:1343 ../../Zotlabs/Module/Cover_photo.php:428 -#: ../../Zotlabs/Module/Profile_photo.php:468 ../../Zotlabs/Module/Wiki.php:404 -msgid "Choose an album" -msgstr "" - -#: ../../include/conversation.php:1344 -msgid "Choose a different album..." -msgstr "" - -#: ../../include/conversation.php:1345 ../../Zotlabs/Module/Cover_photo.php:430 -#: ../../Zotlabs/Module/Profile_photo.php:470 ../../Zotlabs/Module/Wiki.php:406 -msgid "Error getting album list" -msgstr "" - -#: ../../include/conversation.php:1346 ../../Zotlabs/Module/Cover_photo.php:431 -#: ../../Zotlabs/Module/Profile_photo.php:471 ../../Zotlabs/Module/Wiki.php:407 -msgid "Error getting photo link" -msgstr "" - -#: ../../include/conversation.php:1347 ../../Zotlabs/Module/Cover_photo.php:432 -#: ../../Zotlabs/Module/Profile_photo.php:472 ../../Zotlabs/Module/Wiki.php:408 -msgid "Error getting album" -msgstr "" - -#: ../../include/conversation.php:1348 -msgid "Comments enabled" -msgstr "" - -#: ../../include/conversation.php:1349 -msgid "Comments disabled" -msgstr "" - -#: ../../include/conversation.php:1359 ../../Zotlabs/Lib/ThreadItem.php:805 -#: ../../Zotlabs/Module/Events.php:480 ../../Zotlabs/Module/Photos.php:1139 -#: ../../Zotlabs/Module/Webpages.php:262 -msgid "Preview" -msgstr "" - -#: ../../include/conversation.php:1392 ../../Zotlabs/Module/Blocks.php:161 -#: ../../Zotlabs/Module/Layouts.php:194 ../../Zotlabs/Module/Photos.php:1117 -#: ../../Zotlabs/Module/Webpages.php:256 ../../Zotlabs/Module/Wiki.php:301 -#: ../../Zotlabs/Widget/Cdav.php:124 -msgid "Share" -msgstr "" - -#: ../../include/conversation.php:1401 -msgid "Page link name" -msgstr "" - -#: ../../include/conversation.php:1404 -msgid "Post as" -msgstr "" - -#: ../../include/conversation.php:1406 ../../Zotlabs/Lib/ThreadItem.php:796 -msgid "Bold" -msgstr "" - -#: ../../include/conversation.php:1407 ../../Zotlabs/Lib/ThreadItem.php:797 -msgid "Italic" -msgstr "" - -#: ../../include/conversation.php:1408 ../../Zotlabs/Lib/ThreadItem.php:798 -msgid "Underline" -msgstr "" - -#: ../../include/conversation.php:1409 ../../Zotlabs/Lib/ThreadItem.php:799 -msgid "Quote" -msgstr "" - -#: ../../include/conversation.php:1410 ../../Zotlabs/Lib/ThreadItem.php:800 -msgid "Code" -msgstr "" - -#: ../../include/conversation.php:1411 ../../Zotlabs/Lib/ThreadItem.php:802 -msgid "Attach/Upload file" -msgstr "" - -#: ../../include/conversation.php:1414 ../../Zotlabs/Module/Wiki.php:400 -msgid "Embed an image from your albums" -msgstr "" - -#: ../../include/conversation.php:1415 ../../include/conversation.php:1464 -#: ../../Zotlabs/Module/Admin/Addons.php:426 -#: ../../Zotlabs/Module/Article_edit.php:131 ../../Zotlabs/Module/Cdav.php:968 -#: ../../Zotlabs/Module/Cdav.php:1260 ../../Zotlabs/Module/Connedit.php:941 -#: ../../Zotlabs/Module/Cover_photo.php:425 -#: ../../Zotlabs/Module/Editblock.php:141 -#: ../../Zotlabs/Module/Editlayout.php:140 -#: ../../Zotlabs/Module/Editpost.php:109 -#: ../../Zotlabs/Module/Editwebpage.php:169 -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Oauth.php:112 -#: ../../Zotlabs/Module/Oauth.php:138 ../../Zotlabs/Module/Oauth2.php:117 -#: ../../Zotlabs/Module/Oauth2.php:145 ../../Zotlabs/Module/Card_edit.php:131 -#: ../../Zotlabs/Module/Profiles.php:801 -#: ../../Zotlabs/Module/Profile_photo.php:465 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:368 -#: ../../Zotlabs/Module/Wiki.php:401 -msgid "Cancel" -msgstr "" - -#: ../../include/conversation.php:1416 ../../include/conversation.php:1463 -#: ../../Zotlabs/Module/Cover_photo.php:426 -#: ../../Zotlabs/Module/Profile_photo.php:466 ../../Zotlabs/Module/Wiki.php:402 -msgid "OK" -msgstr "" - -#: ../../include/conversation.php:1418 -msgid "Toggle voting" -msgstr "" - -#: ../../include/conversation.php:1421 -msgid "Disable comments" -msgstr "" - -#: ../../include/conversation.php:1422 -msgid "Toggle comments" -msgstr "" - -#: ../../include/conversation.php:1427 -#: ../../Zotlabs/Module/Article_edit.php:117 -#: ../../Zotlabs/Module/Editblock.php:129 -#: ../../Zotlabs/Module/Card_edit.php:117 ../../Zotlabs/Module/Photos.php:713 -#: ../../Zotlabs/Module/Photos.php:1083 -msgid "Title (optional)" -msgstr "" - -#: ../../include/conversation.php:1430 -msgid "Categories (optional, comma-separated list)" -msgstr "" - -#: ../../include/conversation.php:1431 ../../Zotlabs/Module/Events.php:481 -msgid "Permission settings" -msgstr "" - -#: ../../include/conversation.php:1453 -msgid "Other networks and post services" -msgstr "" - -#: ../../include/conversation.php:1456 ../../Zotlabs/Module/Mail.php:292 -#: ../../Zotlabs/Module/Mail.php:434 -msgid "Set expiration date" -msgstr "" - -#: ../../include/conversation.php:1459 -msgid "Set publish date" -msgstr "" - -#: ../../include/conversation.php:1461 ../../Zotlabs/Lib/ThreadItem.php:809 -#: ../../Zotlabs/Module/Chat.php:221 ../../Zotlabs/Module/Mail.php:294 -#: ../../Zotlabs/Module/Mail.php:436 -msgid "Encrypt text" -msgstr "" - -#: ../../include/conversation.php:1705 ../../Zotlabs/Lib/ThreadItem.php:240 -#: ../../Zotlabs/Module/Photos.php:1182 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1708 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1711 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1714 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1717 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1720 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1723 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:58 ../../Zotlabs/Module/Profiles.php:736 -#: ../../Zotlabs/Widget/Newmember.php:51 -msgid "Miscellaneous" -msgstr "" - -#: ../../include/datetime.php:140 -msgid "Birthday" -msgstr "" - -#: ../../include/datetime.php:140 -msgid "Age: " -msgstr "" - -#: ../../include/datetime.php:140 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: ../../include/datetime.php:211 ../../Zotlabs/Module/Appman.php:143 -#: ../../Zotlabs/Module/Appman.php:144 ../../Zotlabs/Module/Events.php:462 -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Profiles.php:745 -#: ../../Zotlabs/Module/Profiles.php:749 -msgid "Required" -msgstr "" - -#: ../../include/datetime.php:244 -msgid "less than a second ago" -msgstr "" - -#: ../../include/datetime.php:262 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "" - -#: ../../include/datetime.php:273 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:276 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:279 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:282 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:285 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:288 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:291 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:520 -#, php-format -msgid "%1$s's birthday" -msgstr "" - -#: ../../include/datetime.php:521 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "" - -#: ../../include/dir_fns.php:141 ../../Zotlabs/Lib/Libzotdir.php:160 -msgid "Directory Options" -msgstr "" - -#: ../../include/dir_fns.php:143 ../../Zotlabs/Lib/Libzotdir.php:162 -msgid "Safe Mode" -msgstr "" - -#: ../../include/dir_fns.php:144 ../../Zotlabs/Lib/Libzotdir.php:163 -msgid "Public Forums Only" -msgstr "" - -#: ../../include/dir_fns.php:145 ../../Zotlabs/Lib/Libzotdir.php:165 -msgid "This Website Only" -msgstr "" - -#: ../../include/event.php:31 ../../include/event.php:78 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: ../../include/event.php:39 ../../include/event.php:82 -msgid "Starts:" -msgstr "" - -#: ../../include/event.php:49 ../../include/event.php:86 -msgid "Finishes:" -msgstr "" - -#: ../../include/event.php:1023 -msgid "This event has been added to your calendar." -msgstr "" - -#: ../../include/event.php:1244 -msgid "Not specified" -msgstr "" - -#: ../../include/event.php:1245 -msgid "Needs Action" -msgstr "" - -#: ../../include/event.php:1246 -msgid "Completed" -msgstr "" - -#: ../../include/event.php:1247 -msgid "In Process" -msgstr "" - -#: ../../include/event.php:1248 -msgid "Cancelled" -msgstr "" - -#: ../../include/features.php:55 ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:36 -msgid "Off" -msgstr "" - -#: ../../include/features.php:55 ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:36 -msgid "On" -msgstr "" - -#: ../../include/features.php:82 ../../Zotlabs/Lib/Apps.php:366 -msgid "CalDAV" -msgstr "" - -#: ../../include/features.php:86 ../../include/features.php:273 -msgid "Start calendar week on Monday" -msgstr "" - -#: ../../include/features.php:87 ../../include/features.php:274 -msgid "Default is Sunday" -msgstr "" - -#: ../../include/features.php:96 ../../Zotlabs/Lib/Apps.php:342 -msgid "Channel Home" -msgstr "" - -#: ../../include/features.php:100 -msgid "Search by Date" -msgstr "" - -#: ../../include/features.php:101 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: ../../include/features.php:108 -msgid "Tag Cloud" -msgstr "" - -#: ../../include/features.php:109 -msgid "Provide a personal tag cloud on your channel page" -msgstr "" - -#: ../../include/features.php:116 ../../include/features.php:365 -msgid "Use blog/list mode" -msgstr "" - -#: ../../include/features.php:117 ../../include/features.php:366 -msgid "Comments will be displayed separately" -msgstr "" - -#: ../../include/features.php:125 ../../include/text.php:991 -#: ../../Zotlabs/Lib/Apps.php:332 ../../Zotlabs/Module/Connections.php:348 -msgid "Connections" -msgstr "" - -#: ../../include/features.php:129 -msgid "Connection Filtering" -msgstr "" - -#: ../../include/features.php:130 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "" - -#: ../../include/features.php:138 -msgid "Conversation" -msgstr "" - -#: ../../include/features.php:142 -msgid "Community Tagging" -msgstr "" - -#: ../../include/features.php:143 -msgid "Ability to tag existing posts" -msgstr "" - -#: ../../include/features.php:150 -msgid "Emoji Reactions" -msgstr "" - -#: ../../include/features.php:151 -msgid "Add emoji reaction ability to posts" -msgstr "" - -#: ../../include/features.php:158 -msgid "Dislike Posts" -msgstr "" - -#: ../../include/features.php:159 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: ../../include/features.php:166 -msgid "Star Posts" -msgstr "" - -#: ../../include/features.php:167 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/features.php:176 ../../Zotlabs/Lib/Apps.php:346 -msgid "Directory" -msgstr "" - -#: ../../include/features.php:180 -msgid "Advanced Directory Search" -msgstr "" - -#: ../../include/features.php:181 -msgid "Allows creation of complex directory search queries" -msgstr "" - -#: ../../include/features.php:190 -msgid "Editor" -msgstr "" - -#: ../../include/features.php:194 -msgid "Post Categories" -msgstr "" - -#: ../../include/features.php:195 -msgid "Add categories to your posts" -msgstr "" - -#: ../../include/features.php:203 -msgid "Large Photos" -msgstr "" - -#: ../../include/features.php:204 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "" - -#: ../../include/features.php:211 -msgid "Even More Encryption" -msgstr "" - -#: ../../include/features.php:212 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "" - -#: ../../include/features.php:219 -msgid "Enable Voting Tools" -msgstr "" - -#: ../../include/features.php:220 -msgid "Provide a class of post which others can vote on" -msgstr "" - -#: ../../include/features.php:227 -msgid "Disable Comments" -msgstr "" - -#: ../../include/features.php:228 -msgid "Provide the option to disable comments for a post" -msgstr "" - -#: ../../include/features.php:235 -msgid "Delayed Posting" -msgstr "" - -#: ../../include/features.php:236 -msgid "Allow posts to be published at a later date" -msgstr "" - -#: ../../include/features.php:243 -msgid "Content Expiration" -msgstr "" - -#: ../../include/features.php:244 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "" - -#: ../../include/features.php:251 -msgid "Suppress Duplicate Posts/Comments" -msgstr "" - -#: ../../include/features.php:252 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "" - -#: ../../include/features.php:259 -msgid "Auto-save drafts of posts and comments" -msgstr "" - -#: ../../include/features.php:260 -msgid "" -"Automatically saves post and comment drafts in local browser storage to help " -"prevent accidental loss of compositions" -msgstr "" - -#: ../../include/features.php:269 ../../Zotlabs/Lib/Apps.php:345 -msgid "Events" -msgstr "" - -#: ../../include/features.php:281 -msgid "Smart Birthdays" -msgstr "" - -#: ../../include/features.php:282 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "" - -#: ../../include/features.php:289 -msgid "Event Timezone Selection" -msgstr "" - -#: ../../include/features.php:290 -msgid "Allow event creation in timezones other than your own." -msgstr "" - -#: ../../include/features.php:299 -msgid "Manage" -msgstr "" - -#: ../../include/features.php:303 -msgid "Navigation Channel Select" -msgstr "" - -#: ../../include/features.php:304 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "" - -#: ../../include/features.php:313 ../../Zotlabs/Module/Connections.php:310 -msgid "Network" -msgstr "" - -#: ../../include/features.php:317 ../../Zotlabs/Widget/Savedsearch.php:83 -msgid "Saved Searches" -msgstr "" - -#: ../../include/features.php:318 -msgid "Save search terms for re-use" -msgstr "" - -#: ../../include/features.php:326 -msgid "Ability to file posts under folders" -msgstr "" - -#: ../../include/features.php:333 -msgid "Alternate Stream Order" -msgstr "" - -#: ../../include/features.php:334 -msgid "" -"Ability to order the stream by last post date, last comment date or " -"unthreaded activities" -msgstr "" - -#: ../../include/features.php:341 -msgid "Contact Filter" -msgstr "" - -#: ../../include/features.php:342 -msgid "Ability to display only posts of a selected contact" -msgstr "" - -#: ../../include/features.php:349 -msgid "Forum Filter" -msgstr "" - -#: ../../include/features.php:350 -msgid "Ability to display only posts of a specific forum" -msgstr "" - -#: ../../include/features.php:357 -msgid "Personal Posts Filter" -msgstr "" - -#: ../../include/features.php:358 -msgid "Ability to display only posts that you've interacted on" -msgstr "" - -#: ../../include/features.php:375 ../../include/nav.php:446 -#: ../../Zotlabs/Lib/Apps.php:344 ../../Zotlabs/Module/Fbrowser.php:29 -msgid "Photos" -msgstr "" - -#: ../../include/features.php:379 -msgid "Photo Location" -msgstr "" - -#: ../../include/features.php:380 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "" - -#: ../../include/features.php:389 ../../Zotlabs/Lib/Apps.php:362 -msgid "Profiles" -msgstr "" - -#: ../../include/features.php:393 -msgid "Advanced Profiles" -msgstr "" - -#: ../../include/features.php:394 -msgid "Additional profile sections and selections" -msgstr "" - -#: ../../include/features.php:401 -msgid "Profile Import/Export" -msgstr "" - -#: ../../include/features.php:402 -msgid "Save and load profile details across sites/channels" -msgstr "" - -#: ../../include/features.php:409 -msgid "Multiple Profiles" -msgstr "" - -#: ../../include/features.php:410 -msgid "Ability to create multiple profiles" -msgstr "" - -#: ../../include/feedutils.php:858 ../../include/text.php:1504 -msgid "unknown" -msgstr "" - -#: ../../include/follow.php:37 -msgid "Channel is blocked on this site." -msgstr "" - -#: ../../include/follow.php:42 -msgid "Channel location missing." -msgstr "" - -#: ../../include/follow.php:84 -msgid "Response from remote channel was incomplete." -msgstr "" - -#: ../../include/follow.php:96 -msgid "Premium channel - please visit:" -msgstr "" - -#: ../../include/follow.php:110 -msgid "Channel was deleted and no longer exists." -msgstr "" - -#: ../../include/follow.php:166 -msgid "Remote channel or protocol unavailable." -msgstr "" - -#: ../../include/follow.php:189 -msgid "Channel discovery failed." -msgstr "" - -#: ../../include/follow.php:201 -msgid "Protocol disabled." -msgstr "" - -#: ../../include/follow.php:212 -msgid "Cannot connect to yourself." -msgstr "" - -#: ../../include/group.php:22 ../../Zotlabs/Lib/Group.php:28 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "" - -#: ../../include/group.php:264 ../../Zotlabs/Lib/Group.php:270 -msgid "Add new connections to this privacy group" -msgstr "" - -#: ../../include/group.php:298 ../../Zotlabs/Lib/Group.php:302 -msgid "edit" -msgstr "" - -#: ../../include/group.php:320 ../../include/nav.php:99 -#: ../../Zotlabs/Lib/Apps.php:363 ../../Zotlabs/Lib/Group.php:324 -#: ../../Zotlabs/Module/Group.php:141 ../../Zotlabs/Module/Group.php:153 -#: ../../Zotlabs/Widget/Activity_filter.php:41 -msgid "Privacy Groups" -msgstr "" - -#: ../../include/group.php:321 ../../Zotlabs/Lib/Group.php:325 -msgid "Edit group" -msgstr "" - -#: ../../include/group.php:322 ../../Zotlabs/Lib/Group.php:326 -msgid "Add privacy group" -msgstr "" - -#: ../../include/group.php:323 ../../Zotlabs/Lib/Group.php:327 -msgid "Channels not in any privacy group" -msgstr "" - -#: ../../include/group.php:325 ../../Zotlabs/Lib/Group.php:329 -#: ../../Zotlabs/Widget/Savedsearch.php:84 -msgid "add" -msgstr "" - -#: ../../include/help.php:80 -msgid "Help:" -msgstr "" - -#: ../../include/help.php:117 ../../include/help.php:125 -#: ../../include/nav.php:172 ../../include/nav.php:322 -#: ../../Zotlabs/Lib/Apps.php:347 ../../Zotlabs/Module/Layouts.php:186 -msgid "Help" -msgstr "" - -#: ../../include/help.php:129 -msgid "Not Found" -msgstr "" - -#: ../../include/help.php:132 ../../Zotlabs/Lib/NativeWikiPage.php:521 -#: ../../Zotlabs/Module/Block.php:77 ../../Zotlabs/Module/Display.php:140 -#: ../../Zotlabs/Module/Display.php:157 ../../Zotlabs/Module/Display.php:174 -#: ../../Zotlabs/Module/Display.php:180 ../../Zotlabs/Module/Page.php:136 -#: ../../Zotlabs/Web/Router.php:185 -msgid "Page not found." -msgstr "" - -#: ../../include/import.php:26 -msgid "Unable to import a removed channel." -msgstr "" - -#: ../../include/import.php:52 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "" - -#: ../../include/import.php:73 -msgid "Unable to create a unique channel address. Import failed." -msgstr "" - -#: ../../include/import.php:117 -msgid "Cloned channel not found. Import failed." -msgstr "" - -#: ../../include/items.php:416 ../../Zotlabs/Module/Cloud.php:126 -#: ../../Zotlabs/Module/Group.php:98 ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Like.php:301 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:82 ../../Zotlabs/Module/Profperm.php:28 -#: ../../Zotlabs/Module/Share.php:71 ../../Zotlabs/Module/Subthread.php:86 -#: ../../Zotlabs/Web/WebServer.php:122 -msgid "Permission denied" -msgstr "" - -#: ../../include/items.php:965 ../../include/items.php:1025 -msgid "(Unknown)" -msgstr "" - -#: ../../include/items.php:1213 -msgid "Visible to anybody on the internet." -msgstr "" - -#: ../../include/items.php:1215 -msgid "Visible to you only." -msgstr "" - -#: ../../include/items.php:1217 -msgid "Visible to anybody in this network." -msgstr "" - -#: ../../include/items.php:1219 -msgid "Visible to anybody authenticated." -msgstr "" - -#: ../../include/items.php:1221 -#, php-format -msgid "Visible to anybody on %s." -msgstr "" - -#: ../../include/items.php:1223 -msgid "Visible to all connections." -msgstr "" - -#: ../../include/items.php:1225 -msgid "Visible to approved connections." -msgstr "" - -#: ../../include/items.php:1227 -msgid "Visible to specific connections." -msgstr "" - -#: ../../include/items.php:3713 ../../Zotlabs/Module/Admin/Addons.php:259 -#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Admin.php:62 -#: ../../Zotlabs/Module/Display.php:45 ../../Zotlabs/Module/Display.php:455 -#: ../../Zotlabs/Module/Filestorage.php:26 ../../Zotlabs/Module/Thing.php:94 -#: ../../Zotlabs/Module/Viewsrc.php:25 -msgid "Item not found." -msgstr "" - -#: ../../include/items.php:4295 ../../Zotlabs/Module/Group.php:61 -#: ../../Zotlabs/Module/Group.php:213 -msgid "Privacy group not found." -msgstr "" - -#: ../../include/items.php:4311 -msgid "Privacy group is empty." -msgstr "" - -#: ../../include/items.php:4318 -#, php-format -msgid "Privacy group: %s" -msgstr "" - -#: ../../include/items.php:4328 ../../Zotlabs/Module/Connedit.php:867 -#, php-format -msgid "Connection: %s" -msgstr "" - -#: ../../include/items.php:4330 -msgid "Connection not found." -msgstr "" - -#: ../../include/items.php:4672 ../../Zotlabs/Module/Cover_photo.php:294 -msgid "female" -msgstr "" - -#: ../../include/items.php:4673 ../../Zotlabs/Module/Cover_photo.php:295 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "" - -#: ../../include/items.php:4674 ../../Zotlabs/Module/Cover_photo.php:296 -msgid "male" -msgstr "" - -#: ../../include/items.php:4675 ../../Zotlabs/Module/Cover_photo.php:297 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "" - -#: ../../include/items.php:4677 ../../Zotlabs/Module/Cover_photo.php:299 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "" - -#: ../../include/items.php:4679 -msgid "profile photo" -msgstr "" - -#: ../../include/items.php:4871 -#, php-format -msgid "[Edited %s]" -msgstr "" - -#: ../../include/items.php:4871 -msgctxt "edit_activity" -msgid "Post" -msgstr "" - -#: ../../include/items.php:4871 -msgctxt "edit_activity" -msgid "Comment" -msgstr "" - -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "" - -#: ../../include/js_strings.php:6 ../../Zotlabs/Lib/ThreadItem.php:794 -#: ../../Zotlabs/Module/Photos.php:1137 ../../Zotlabs/Module/Photos.php:1256 -msgid "Comment" -msgstr "" - -#: ../../include/js_strings.php:7 ../../Zotlabs/Lib/ThreadItem.php:501 -#, php-format -msgid "%s show all" -msgstr "" - -#: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "" - -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "" - -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "" - -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "" - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "" - -#: ../../include/js_strings.php:20 ../../Zotlabs/Module/Connedit.php:887 -#: ../../Zotlabs/Module/Rate.php:155 -msgid "Rating" -msgstr "" - -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "" - -#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:94 -#: ../../Zotlabs/Lib/ThreadItem.php:795 -#: ../../Zotlabs/Module/Admin/Accounts.php:168 -#: ../../Zotlabs/Module/Admin/Account_edit.php:73 -#: ../../Zotlabs/Module/Admin/Addons.php:441 -#: ../../Zotlabs/Module/Admin/Channels.php:147 -#: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Logs.php:84 -#: ../../Zotlabs/Module/Admin/Profs.php:178 -#: ../../Zotlabs/Module/Admin/Security.php:112 -#: ../../Zotlabs/Module/Admin/Site.php:289 -#: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Affinity.php:87 ../../Zotlabs/Module/Appman.php:155 -#: ../../Zotlabs/Module/Cal.php:344 ../../Zotlabs/Module/Chat.php:211 -#: ../../Zotlabs/Module/Chat.php:250 ../../Zotlabs/Module/Connect.php:124 -#: ../../Zotlabs/Module/Connedit.php:904 ../../Zotlabs/Module/Defperms.php:265 -#: ../../Zotlabs/Module/Editpost.php:85 -#: ../../Zotlabs/Module/Email_validation.php:40 -#: ../../Zotlabs/Module/Events.php:495 ../../Zotlabs/Module/Filestorage.php:203 -#: ../../Zotlabs/Module/Group.php:150 ../../Zotlabs/Module/Group.php:166 -#: ../../Zotlabs/Module/Import.php:646 -#: ../../Zotlabs/Module/Import_items.php:129 -#: ../../Zotlabs/Module/Invite.php:168 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:431 ../../Zotlabs/Module/Mitem.php:259 -#: ../../Zotlabs/Module/Mood.php:158 ../../Zotlabs/Module/Oauth.php:111 -#: ../../Zotlabs/Module/Oauth2.php:116 ../../Zotlabs/Module/Pconfig.php:116 -#: ../../Zotlabs/Module/Pdledit.php:107 ../../Zotlabs/Module/Permcats.php:128 -#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1138 -#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Module/Poke.php:217 -#: ../../Zotlabs/Module/Profiles.php:723 ../../Zotlabs/Module/Rate.php:166 -#: ../../Zotlabs/Module/Settings/Account.php:103 -#: ../../Zotlabs/Module/Settings/Calendar.php:41 -#: ../../Zotlabs/Module/Settings/Channel.php:493 -#: ../../Zotlabs/Module/Settings/Channel_home.php:89 -#: ../../Zotlabs/Module/Settings/Connections.php:41 -#: ../../Zotlabs/Module/Settings/Conversation.php:48 -#: ../../Zotlabs/Module/Settings/Directory.php:41 -#: ../../Zotlabs/Module/Settings/Display.php:189 -#: ../../Zotlabs/Module/Settings/Editor.php:41 -#: ../../Zotlabs/Module/Settings/Events.php:41 -#: ../../Zotlabs/Module/Settings/Features.php:46 -#: ../../Zotlabs/Module/Settings/Manage.php:41 -#: ../../Zotlabs/Module/Settings/Network.php:61 -#: ../../Zotlabs/Module/Settings/Photos.php:41 -#: ../../Zotlabs/Module/Settings/Profiles.php:50 -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -#: ../../Zotlabs/Module/Sources.php:125 ../../Zotlabs/Module/Sources.php:162 -#: ../../Zotlabs/Module/Thing.php:326 ../../Zotlabs/Module/Thing.php:379 -#: ../../Zotlabs/Module/Tokens.php:188 ../../Zotlabs/Module/Wiki.php:215 -#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Widget/Eventstools.php:16 -#: ../../Zotlabs/Widget/Wiki_pages.php:42 -#: ../../Zotlabs/Widget/Wiki_pages.php:99 -msgid "Submit" -msgstr "" - -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "" - -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "" - -#: ../../include/js_strings.php:25 ../../Zotlabs/Module/Cdav.php:940 -#: ../../Zotlabs/Module/Events.php:477 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:509 ../../Zotlabs/Module/Profiles.php:734 -#: ../../Zotlabs/Module/Pubsites.php:52 -msgid "Location" -msgstr "" - -#: ../../include/js_strings.php:26 -msgid "lovely" -msgstr "" - -#: ../../include/js_strings.php:27 -msgid "wonderful" -msgstr "" - -#: ../../include/js_strings.php:28 -msgid "fantastic" -msgstr "" - -#: ../../include/js_strings.php:29 -msgid "great" -msgstr "" - -#: ../../include/js_strings.php:30 -msgid "" -"Your chosen nickname was either already taken or not valid. Please use our " -"suggestion (" -msgstr "" - -#: ../../include/js_strings.php:31 -msgid ") or enter a new one." -msgstr "" - -#: ../../include/js_strings.php:32 -msgid "Thank you, this nickname is valid." -msgstr "" - -#: ../../include/js_strings.php:33 -msgid "A channel name is required." -msgstr "" - -#: ../../include/js_strings.php:34 -msgid "This is a " -msgstr "" - -#: ../../include/js_strings.php:35 -msgid " channel name" -msgstr "" - -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d minutes" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/js_strings.php:42 -#, php-format -msgid "about %d hours" -msgid_plural "about %d hours" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/js_strings.php:43 -#, php-format -msgid "%d days" -msgid_plural "%d days" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/js_strings.php:44 -#, php-format -msgid "%d months" -msgid_plural "%d months" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/js_strings.php:45 -#, php-format -msgid "%d years" -msgid_plural "%d years" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/js_strings.php:50 -msgid "timeago.prefixAgo" -msgstr "" - -#: ../../include/js_strings.php:51 -msgid "timeago.prefixFromNow" -msgstr "" - -#: ../../include/js_strings.php:52 -msgid "timeago.suffixAgo" -msgstr "" - -#: ../../include/js_strings.php:53 -msgid "timeago.suffixFromNow" -msgstr "" - -#: ../../include/js_strings.php:56 -msgid "less than a minute" -msgstr "" - -#: ../../include/js_strings.php:57 -msgid "about a minute" -msgstr "" - -#: ../../include/js_strings.php:59 -msgid "about an hour" -msgstr "" - -#: ../../include/js_strings.php:61 -msgid "a day" -msgstr "" - -#: ../../include/js_strings.php:63 -msgid "about a month" -msgstr "" - -#: ../../include/js_strings.php:65 -msgid "about a year" -msgstr "" - -#: ../../include/js_strings.php:67 -msgid " " -msgstr "" - -#: ../../include/js_strings.php:68 -msgid "timeago.numbers" -msgstr "" - -#: ../../include/js_strings.php:70 ../../include/text.php:1428 -msgid "January" -msgstr "" - -#: ../../include/js_strings.php:71 ../../include/text.php:1428 -msgid "February" -msgstr "" - -#: ../../include/js_strings.php:72 ../../include/text.php:1428 -msgid "March" -msgstr "" - -#: ../../include/js_strings.php:73 ../../include/text.php:1428 -msgid "April" -msgstr "" - -#: ../../include/js_strings.php:74 -msgctxt "long" -msgid "May" -msgstr "" - -#: ../../include/js_strings.php:75 ../../include/text.php:1428 -msgid "June" -msgstr "" - -#: ../../include/js_strings.php:76 ../../include/text.php:1428 -msgid "July" -msgstr "" - -#: ../../include/js_strings.php:77 ../../include/text.php:1428 -msgid "August" -msgstr "" - -#: ../../include/js_strings.php:78 ../../include/text.php:1428 -msgid "September" -msgstr "" - -#: ../../include/js_strings.php:79 ../../include/text.php:1428 -msgid "October" -msgstr "" - -#: ../../include/js_strings.php:80 ../../include/text.php:1428 -msgid "November" -msgstr "" - -#: ../../include/js_strings.php:81 ../../include/text.php:1428 -msgid "December" -msgstr "" - -#: ../../include/js_strings.php:82 -msgid "Jan" -msgstr "" - -#: ../../include/js_strings.php:83 -msgid "Feb" -msgstr "" - -#: ../../include/js_strings.php:84 -msgid "Mar" -msgstr "" - -#: ../../include/js_strings.php:85 -msgid "Apr" -msgstr "" - -#: ../../include/js_strings.php:86 -msgctxt "short" -msgid "May" -msgstr "" - -#: ../../include/js_strings.php:87 -msgid "Jun" -msgstr "" - -#: ../../include/js_strings.php:88 -msgid "Jul" -msgstr "" - -#: ../../include/js_strings.php:89 -msgid "Aug" -msgstr "" - -#: ../../include/js_strings.php:90 -msgid "Sep" -msgstr "" - -#: ../../include/js_strings.php:91 -msgid "Oct" -msgstr "" - -#: ../../include/js_strings.php:92 -msgid "Nov" -msgstr "" - -#: ../../include/js_strings.php:93 -msgid "Dec" -msgstr "" - -#: ../../include/js_strings.php:94 ../../include/text.php:1424 -msgid "Sunday" -msgstr "" - -#: ../../include/js_strings.php:95 ../../include/text.php:1424 -msgid "Monday" -msgstr "" - -#: ../../include/js_strings.php:96 ../../include/text.php:1424 -msgid "Tuesday" -msgstr "" - -#: ../../include/js_strings.php:97 ../../include/text.php:1424 -msgid "Wednesday" -msgstr "" - -#: ../../include/js_strings.php:98 ../../include/text.php:1424 -msgid "Thursday" -msgstr "" - -#: ../../include/js_strings.php:99 ../../include/text.php:1424 -msgid "Friday" -msgstr "" - -#: ../../include/js_strings.php:100 ../../include/text.php:1424 -msgid "Saturday" -msgstr "" - -#: ../../include/js_strings.php:101 -msgid "Sun" -msgstr "" - -#: ../../include/js_strings.php:102 -msgid "Mon" -msgstr "" - -#: ../../include/js_strings.php:103 -msgid "Tue" -msgstr "" - -#: ../../include/js_strings.php:104 -msgid "Wed" -msgstr "" - -#: ../../include/js_strings.php:105 -msgid "Thu" -msgstr "" - -#: ../../include/js_strings.php:106 -msgid "Fri" -msgstr "" - -#: ../../include/js_strings.php:107 -msgid "Sat" -msgstr "" - -#: ../../include/js_strings.php:108 -msgctxt "calendar" -msgid "today" -msgstr "" - -#: ../../include/js_strings.php:109 -msgctxt "calendar" -msgid "month" -msgstr "" - -#: ../../include/js_strings.php:110 -msgctxt "calendar" -msgid "week" -msgstr "" - -#: ../../include/js_strings.php:111 -msgctxt "calendar" -msgid "day" -msgstr "" - -#: ../../include/js_strings.php:112 -msgctxt "calendar" -msgid "All day" -msgstr "" - -#: ../../include/language.php:423 ../../include/text.php:1948 -msgid "default" -msgstr "" - -#: ../../include/language.php:436 -msgid "Select an alternate language" -msgstr "" - -#: ../../include/message.php:13 ../../include/text.php:1778 -msgid "Download binary/encrypted content" -msgstr "" - -#: ../../include/message.php:41 -msgid "Unable to determine sender." -msgstr "" - -#: ../../include/message.php:80 -msgid "No recipient provided." -msgstr "" - -#: ../../include/message.php:85 -msgid "[no subject]" -msgstr "" - -#: ../../include/message.php:215 -msgid "Stored post could not be verified." -msgstr "" - -#: ../../include/nav.php:90 -msgid "Remote authentication" -msgstr "" - -#: ../../include/nav.php:90 -msgid "Click to authenticate to your home hub" -msgstr "" - -#: ../../include/nav.php:96 ../../Zotlabs/Lib/Apps.php:336 -#: ../../Zotlabs/Module/Manage.php:170 -msgid "Channel Manager" -msgstr "" - -#: ../../include/nav.php:96 -msgid "Manage your channels" -msgstr "" - -#: ../../include/nav.php:99 -msgid "Manage your privacy groups" -msgstr "" - -#: ../../include/nav.php:101 ../../Zotlabs/Lib/Apps.php:338 -#: ../../Zotlabs/Module/Admin/Addons.php:344 -#: ../../Zotlabs/Module/Admin/Themes.php:125 -#: ../../Zotlabs/Widget/Newmember.php:53 -#: ../../Zotlabs/Widget/Settings_menu.php:61 -msgid "Settings" -msgstr "" - -#: ../../include/nav.php:101 -msgid "Account/Channel Settings" -msgstr "" - -#: ../../include/nav.php:107 ../../include/nav.php:136 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:110 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:113 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:115 ../../Zotlabs/Widget/Newmember.php:35 -msgid "Edit your profile" -msgstr "" - -#: ../../include/nav.php:122 ../../include/nav.php:126 -msgid "Sign in" -msgstr "" - -#: ../../include/nav.php:153 -msgid "Take me home" -msgstr "" - -#: ../../include/nav.php:155 -msgid "Log me out of this site" -msgstr "" - -#: ../../include/nav.php:160 -msgid "Create an account" -msgstr "" - -#: ../../include/nav.php:172 -msgid "Help and documentation" -msgstr "" - -#: ../../include/nav.php:186 -msgid "Search site @name, !forum, #tag, ?docs, content" -msgstr "" - -#: ../../include/nav.php:192 ../../Zotlabs/Widget/Admin.php:55 -msgid "Admin" -msgstr "" - -#: ../../include/nav.php:192 -msgid "Site Setup and Configuration" -msgstr "" - -#: ../../include/nav.php:326 ../../Zotlabs/Module/Connedit.php:869 -#: ../../Zotlabs/Module/Defperms.php:256 -#: ../../Zotlabs/Module/New_channel.php:157 -#: ../../Zotlabs/Module/New_channel.php:164 -#: ../../Zotlabs/Widget/Notifications.php:162 -msgid "Loading" -msgstr "" - -#: ../../include/nav.php:332 -msgid "@name, !forum, #tag, ?doc, content" -msgstr "" - -#: ../../include/nav.php:333 -msgid "Please wait..." -msgstr "" - -#: ../../include/nav.php:339 -msgid "Add Apps" -msgstr "" - -#: ../../include/nav.php:340 -msgid "Arrange Apps" -msgstr "" - -#: ../../include/nav.php:341 -msgid "Toggle System Apps" -msgstr "" - -#: ../../include/nav.php:423 ../../Zotlabs/Module/Admin/Channels.php:154 -msgid "Channel" -msgstr "" - -#: ../../include/nav.php:426 -msgid "Status Messages and Posts" -msgstr "" - -#: ../../include/nav.php:436 ../../Zotlabs/Module/Help.php:80 -msgid "About" -msgstr "" - -#: ../../include/nav.php:439 -msgid "Profile Details" -msgstr "" - -#: ../../include/nav.php:449 ../../include/photos.php:669 -msgid "Photo Albums" -msgstr "" - -#: ../../include/nav.php:454 ../../Zotlabs/Lib/Apps.php:339 -#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Storage/Browser.php:278 -msgid "Files" -msgstr "" - -#: ../../include/nav.php:457 -msgid "Files and Storage" -msgstr "" - -#: ../../include/nav.php:465 ../../include/nav.php:468 -#: ../../Zotlabs/Storage/Browser.php:140 -msgid "Calendar" -msgstr "" - -#: ../../include/nav.php:479 ../../include/nav.php:482 -#: ../../Zotlabs/Lib/Apps.php:329 ../../Zotlabs/Widget/Chatroom_list.php:16 -msgid "Chatrooms" -msgstr "" - -#: ../../include/nav.php:492 ../../Zotlabs/Lib/Apps.php:328 -msgid "Bookmarks" -msgstr "" - -#: ../../include/nav.php:495 -msgid "Saved Bookmarks" -msgstr "" - -#: ../../include/nav.php:503 ../../Zotlabs/Lib/Apps.php:325 -#: ../../Zotlabs/Module/Cards.php:207 -msgid "Cards" -msgstr "" - -#: ../../include/nav.php:506 -msgid "View Cards" -msgstr "" - -#: ../../include/nav.php:514 ../../Zotlabs/Lib/Apps.php:324 -#: ../../Zotlabs/Module/Articles.php:222 -msgid "Articles" -msgstr "" - -#: ../../include/nav.php:517 -msgid "View Articles" -msgstr "" - -#: ../../include/nav.php:526 ../../Zotlabs/Lib/Apps.php:340 -#: ../../Zotlabs/Module/Webpages.php:252 -msgid "Webpages" -msgstr "" - -#: ../../include/nav.php:529 -msgid "View Webpages" -msgstr "" - -#: ../../include/nav.php:538 ../../Zotlabs/Module/Wiki.php:206 -#: ../../Zotlabs/Widget/Wiki_list.php:15 -msgid "Wikis" -msgstr "" - -#: ../../include/nav.php:541 ../../Zotlabs/Lib/Apps.php:341 -msgid "Wiki" -msgstr "" - -#: ../../include/network.php:1725 ../../include/network.php:1726 -msgid "Friendica" -msgstr "" - -#: ../../include/network.php:1727 -msgid "OStatus" -msgstr "" - -#: ../../include/network.php:1728 -msgid "GNU-Social" -msgstr "" - -#: ../../include/network.php:1729 -msgid "RSS/Atom" -msgstr "" - -#: ../../include/network.php:1730 ../../Zotlabs/Lib/Activity.php:1848 -#: ../../Zotlabs/Lib/Activity.php:2046 -msgid "ActivityPub" -msgstr "" - -#: ../../include/network.php:1731 ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../Zotlabs/Module/Admin/Accounts.php:183 -#: ../../Zotlabs/Module/Cdav.php:1246 ../../Zotlabs/Module/Connedit.php:927 -#: ../../Zotlabs/Module/Profiles.php:787 -msgid "Email" -msgstr "" - -#: ../../include/network.php:1732 -msgid "Diaspora" -msgstr "" - -#: ../../include/network.php:1733 -msgid "Facebook" -msgstr "" - -#: ../../include/network.php:1734 -msgid "Zot" -msgstr "" - -#: ../../include/network.php:1735 -msgid "LinkedIn" -msgstr "" - -#: ../../include/network.php:1736 -msgid "XMPP/IM" -msgstr "" - -#: ../../include/network.php:1737 -msgid "MySpace" -msgstr "" - -#: ../../include/oembed.php:226 -msgid "View PDF" -msgstr "" - -#: ../../include/oembed.php:356 -msgid " by " -msgstr "" - -#: ../../include/oembed.php:357 -msgid " on " -msgstr "" - -#: ../../include/oembed.php:386 -msgid "Embedded content" -msgstr "" - -#: ../../include/oembed.php:395 -msgid "Embedding disabled" -msgstr "" - -#: ../../include/photo/photo_driver.php:367 -#: ../../Zotlabs/Module/Profile_photo.php:120 -#: ../../Zotlabs/Module/Profile_photo.php:248 -msgid "Profile Photos" -msgstr "" - -#: ../../include/photos.php:151 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "" - -#: ../../include/photos.php:162 -msgid "Image file is empty." -msgstr "" - -#: ../../include/photos.php:196 ../../Zotlabs/Module/Cover_photo.php:230 -#: ../../Zotlabs/Module/Profile_photo.php:225 -msgid "Unable to process image" -msgstr "" - -#: ../../include/photos.php:327 -msgid "Photo storage failed." -msgstr "" - -#: ../../include/photos.php:376 -msgid "a new photo" -msgstr "" - -#: ../../include/photos.php:380 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "" - -#: ../../include/photos.php:670 ../../Zotlabs/Module/Photos.php:1389 -#: ../../Zotlabs/Module/Photos.php:1402 ../../Zotlabs/Module/Photos.php:1403 -msgid "Recent Photos" -msgstr "" - -#: ../../include/photos.php:674 -msgid "Upload New Photos" -msgstr "" - -#: ../../include/security.php:607 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "" - -#: ../../include/selectors.php:18 -msgid "Profile to assign new connections" -msgstr "" - -#: ../../include/selectors.php:41 -msgid "Frequently" -msgstr "" - -#: ../../include/selectors.php:42 -msgid "Hourly" -msgstr "" - -#: ../../include/selectors.php:43 -msgid "Twice daily" -msgstr "" - -#: ../../include/selectors.php:44 -msgid "Daily" -msgstr "" - -#: ../../include/selectors.php:45 -msgid "Weekly" -msgstr "" - -#: ../../include/selectors.php:46 -msgid "Monthly" -msgstr "" - -#: ../../include/selectors.php:60 -msgid "Currently Male" -msgstr "" - -#: ../../include/selectors.php:60 -msgid "Currently Female" -msgstr "" - -#: ../../include/selectors.php:60 -msgid "Mostly Male" -msgstr "" - -#: ../../include/selectors.php:60 -msgid "Mostly Female" -msgstr "" - -#: ../../include/selectors.php:60 -msgid "Transgender" -msgstr "" - -#: ../../include/selectors.php:60 -msgid "Intersex" -msgstr "" - -#: ../../include/selectors.php:60 -msgid "Transsexual" -msgstr "" - -#: ../../include/selectors.php:60 -msgid "Hermaphrodite" -msgstr "" - -#: ../../include/selectors.php:60 -msgid "Undecided" -msgstr "" - -#: ../../include/selectors.php:96 ../../include/selectors.php:115 -msgid "Males" -msgstr "" - -#: ../../include/selectors.php:96 ../../include/selectors.php:115 -msgid "Females" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Gay" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Lesbian" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "No Preference" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Bisexual" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Autosexual" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Abstinent" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Virgin" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Deviant" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Fetish" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Oodles" -msgstr "" - -#: ../../include/selectors.php:96 -msgid "Nonsexual" -msgstr "" - -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Single" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Lonely" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Available" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Unavailable" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Has crush" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Infatuated" -msgstr "" - -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Dating" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Unfaithful" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Sex Addict" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Friends/Benefits" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Casual" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Engaged" -msgstr "" - -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Married" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Imaginarily married" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Partners" -msgstr "" - -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Cohabiting" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Common law" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Happy" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Not looking" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Swinger" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Betrayed" -msgstr "" - -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Separated" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Unstable" -msgstr "" - -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Divorced" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Imaginarily divorced" -msgstr "" - -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Widowed" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Uncertain" -msgstr "" - -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "It's complicated" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Don't care" -msgstr "" - -#: ../../include/selectors.php:134 -msgid "Ask me" -msgstr "" - -#: ../../include/taxonomy.php:320 -msgid "Trending" -msgstr "" - -#: ../../include/taxonomy.php:320 ../../include/taxonomy.php:449 -#: ../../include/taxonomy.php:470 ../../Zotlabs/Widget/Tagcloud.php:22 -msgid "Tags" -msgstr "" - -#: ../../include/taxonomy.php:550 -msgid "Keywords" -msgstr "" - -#: ../../include/taxonomy.php:571 -msgid "have" -msgstr "" - -#: ../../include/taxonomy.php:571 -msgid "has" -msgstr "" - -#: ../../include/taxonomy.php:572 -msgid "want" -msgstr "" - -#: ../../include/taxonomy.php:572 -msgid "wants" -msgstr "" - -#: ../../include/taxonomy.php:573 ../../Zotlabs/Lib/ThreadItem.php:306 -msgid "like" -msgstr "" - -#: ../../include/taxonomy.php:573 -msgid "likes" -msgstr "" - -#: ../../include/taxonomy.php:574 ../../Zotlabs/Lib/ThreadItem.php:307 -msgid "dislike" -msgstr "" - -#: ../../include/taxonomy.php:574 -msgid "dislikes" -msgstr "" - -#: ../../include/text.php:501 -msgid "prev" -msgstr "" - -#: ../../include/text.php:503 -msgid "first" -msgstr "" - -#: ../../include/text.php:532 -msgid "last" -msgstr "" - -#: ../../include/text.php:535 -msgid "next" -msgstr "" - -#: ../../include/text.php:553 -msgid "older" -msgstr "" - -#: ../../include/text.php:555 -msgid "newer" -msgstr "" - -#: ../../include/text.php:979 -msgid "No connections" -msgstr "" - -#: ../../include/text.php:1011 -#, php-format -msgid "View all %s connections" -msgstr "" - -#: ../../include/text.php:1073 -#, php-format -msgid "Network: %s" -msgstr "" - -#: ../../include/text.php:1085 ../../include/text.php:1097 -#: ../../Zotlabs/Module/Admin/Profs.php:94 -#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Module/Rbmark.php:32 ../../Zotlabs/Module/Rbmark.php:104 -#: ../../Zotlabs/Widget/Notes.php:23 -msgid "Save" -msgstr "" - -#: ../../include/text.php:1176 ../../include/text.php:1180 -msgid "poke" -msgstr "" - -#: ../../include/text.php:1181 -msgid "ping" -msgstr "" - -#: ../../include/text.php:1181 -msgid "pinged" -msgstr "" - -#: ../../include/text.php:1182 -msgid "prod" -msgstr "" - -#: ../../include/text.php:1182 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:1183 -msgid "slap" -msgstr "" - -#: ../../include/text.php:1183 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:1184 -msgid "finger" -msgstr "" - -#: ../../include/text.php:1184 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:1185 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:1185 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:1208 -msgid "happy" -msgstr "" - -#: ../../include/text.php:1209 -msgid "sad" -msgstr "" - -#: ../../include/text.php:1210 -msgid "mellow" -msgstr "" - -#: ../../include/text.php:1211 -msgid "tired" -msgstr "" - -#: ../../include/text.php:1212 -msgid "perky" -msgstr "" - -#: ../../include/text.php:1213 -msgid "angry" -msgstr "" - -#: ../../include/text.php:1214 -msgid "stupefied" -msgstr "" - -#: ../../include/text.php:1215 -msgid "puzzled" -msgstr "" - -#: ../../include/text.php:1216 -msgid "interested" -msgstr "" - -#: ../../include/text.php:1217 -msgid "bitter" -msgstr "" - -#: ../../include/text.php:1218 -msgid "cheerful" -msgstr "" - -#: ../../include/text.php:1219 -msgid "alive" -msgstr "" - -#: ../../include/text.php:1220 -msgid "annoyed" -msgstr "" - -#: ../../include/text.php:1221 -msgid "anxious" -msgstr "" - -#: ../../include/text.php:1222 -msgid "cranky" -msgstr "" - -#: ../../include/text.php:1223 -msgid "disturbed" -msgstr "" - -#: ../../include/text.php:1224 -msgid "frustrated" -msgstr "" - -#: ../../include/text.php:1225 -msgid "depressed" -msgstr "" - -#: ../../include/text.php:1226 -msgid "motivated" -msgstr "" - -#: ../../include/text.php:1227 -msgid "relaxed" -msgstr "" - -#: ../../include/text.php:1228 -msgid "surprised" -msgstr "" - -#: ../../include/text.php:1428 -msgid "May" -msgstr "" - -#: ../../include/text.php:1502 -msgid "Unknown Attachment" -msgstr "" - -#: ../../include/text.php:1504 ../../Zotlabs/Module/Sharedwithme.php:106 -#: ../../Zotlabs/Storage/Browser.php:293 -msgid "Size" -msgstr "" - -#: ../../include/text.php:1540 -msgid "remove category" -msgstr "" - -#: ../../include/text.php:1614 -msgid "remove from file" -msgstr "" - -#: ../../include/text.php:1926 ../../Zotlabs/Module/Cal.php:314 -#: ../../Zotlabs/Module/Events.php:663 -msgid "Link to Source" -msgstr "" - -#: ../../include/text.php:1956 -msgid "Page layout" -msgstr "" - -#: ../../include/text.php:1956 -msgid "You can create your own with the layouts tool" -msgstr "" - -#: ../../include/text.php:1966 ../../Zotlabs/Module/Wiki.php:217 -#: ../../Zotlabs/Module/Wiki.php:371 ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 -msgid "BBcode" -msgstr "" - -#: ../../include/text.php:1967 -msgid "HTML" -msgstr "" - -#: ../../include/text.php:1968 ../../Zotlabs/Module/Wiki.php:217 -#: ../../Zotlabs/Module/Wiki.php:371 ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 -msgid "Markdown" -msgstr "" - -#: ../../include/text.php:1969 ../../Zotlabs/Module/Wiki.php:217 -#: ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 -msgid "Text" -msgstr "" - -#: ../../include/text.php:1970 -msgid "Comanche Layout" -msgstr "" - -#: ../../include/text.php:1975 -msgid "PHP" -msgstr "" - -#: ../../include/text.php:1984 -msgid "Page content type" -msgstr "" - -#: ../../include/text.php:2117 -msgid "activity" -msgstr "" - -#: ../../include/text.php:2218 -msgid "a-z, 0-9, -, and _ only" -msgstr "" - -#: ../../include/text.php:2544 -msgid "Design Tools" -msgstr "" - -#: ../../include/text.php:2547 ../../Zotlabs/Module/Blocks.php:154 -msgid "Blocks" -msgstr "" - -#: ../../include/text.php:2548 ../../Zotlabs/Module/Menu.php:170 -msgid "Menus" -msgstr "" - -#: ../../include/text.php:2549 ../../Zotlabs/Module/Layouts.php:184 -msgid "Layouts" -msgstr "" - -#: ../../include/text.php:2550 -msgid "Pages" -msgstr "" - -#: ../../include/text.php:2562 ../../Zotlabs/Module/Cal.php:343 -msgid "Import" -msgstr "" - -#: ../../include/text.php:2563 -msgid "Import website..." -msgstr "" - -#: ../../include/text.php:2564 -msgid "Select folder to import" -msgstr "" - -#: ../../include/text.php:2565 -msgid "Import from a zipped folder:" -msgstr "" - -#: ../../include/text.php:2566 -msgid "Import from cloud files:" -msgstr "" - -#: ../../include/text.php:2567 -msgid "/cloud/channel/path/to/folder" -msgstr "" - -#: ../../include/text.php:2568 -msgid "Enter path to website files" -msgstr "" - -#: ../../include/text.php:2569 -msgid "Select folder" -msgstr "" - -#: ../../include/text.php:2570 -msgid "Export website..." -msgstr "" - -#: ../../include/text.php:2571 -msgid "Export to a zip file" -msgstr "" - -#: ../../include/text.php:2572 -msgid "website.zip" -msgstr "" - -#: ../../include/text.php:2573 -msgid "Enter a name for the zip file." -msgstr "" - -#: ../../include/text.php:2574 -msgid "Export to cloud files" -msgstr "" - -#: ../../include/text.php:2575 -msgid "/path/to/export/folder" -msgstr "" - -#: ../../include/text.php:2576 -msgid "Enter a path to a cloud files destination." -msgstr "" - -#: ../../include/text.php:2577 -msgid "Specify folder" -msgstr "" - -#: ../../include/text.php:2939 ../../Zotlabs/Storage/Browser.php:131 -msgid "Collection" -msgstr "" - -#: ../../include/text.php:3208 ../../view/theme/redbasic/php/config.php:15 -#: ../../Zotlabs/Module/Admin/Site.php:187 -msgid "Default" -msgstr "" - -#: ../../include/zid.php:363 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "" - -#: ../../include/zot.php:775 -msgid "Invalid data packet" -msgstr "" - -#: ../../include/zot.php:802 ../../Zotlabs/Lib/Libzot.php:652 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../include/zot.php:2595 ../../Zotlabs/Lib/Libsync.php:733 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" - -#: ../../include/zot.php:4292 -msgid "invalid target signature" -msgstr "" - -#: ../../util/nconfig.php:34 -msgid "Source channel not found." -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:16 -#: ../../view/theme/redbasic/php/config.php:19 -msgid "Focus (Hubzilla default)" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:98 -msgid "Theme settings" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Narrow navbar" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:100 -msgid "Navigation bar background color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:101 -msgid "Navigation bar icon color " -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Navigation bar active icon color " -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Link color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Set font-color for banner" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Set the background color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Set the background image" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Set the background color of items" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Set the background color of comments" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Set font-size for the entire application" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Examples: 1rem, 100%, 16px" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Set font-color for posts and comments" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Set radius of corners" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Example: 4px" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Set shadow depth of photos" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Set maximum width of content region in pixel" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Leave empty for default width" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set size of conversation author photo" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set size of followup author photos" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Show advanced settings" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:283 -msgid "Social Networking" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:284 -msgid "Social - Federation" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:285 -msgid "Social - Mostly Public" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:286 -msgid "Social - Restricted" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:287 -msgid "Social - Private" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:290 -msgid "Community Forum" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:291 -msgid "Forum - Mostly Public" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:292 -msgid "Forum - Restricted" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:293 -msgid "Forum - Private" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:296 -msgid "Feed Republish" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:297 -msgid "Feed - Mostly Public" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:298 -msgid "Feed - Restricted" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:301 -msgid "Special Purpose" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:302 -msgid "Special - Celebrity/Soapbox" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:303 -msgid "Special - Group Repository" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:307 -msgid "Custom/Expert Mode" -msgstr "" - #: ../../Zotlabs/Access/Permissions.php:56 msgid "Can view my channel stream and posts" msgstr "" @@ -3899,2295 +89,160 @@ msgstr "" msgid "Can administer my channel" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1500 -#, php-format -msgid "Likes %1$s's %2$s" +#: ../../Zotlabs/Access/PermissionRoles.php:283 +msgid "Social Networking" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1503 -#, php-format -msgid "Doesn't like %1$s's %2$s" +#: ../../Zotlabs/Access/PermissionRoles.php:284 +msgid "Social - Federation" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1506 -#, php-format -msgid "Will attend %1$s's %2$s" +#: ../../Zotlabs/Access/PermissionRoles.php:285 +msgid "Social - Mostly Public" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1509 -#, php-format -msgid "Will not attend %1$s's %2$s" +#: ../../Zotlabs/Access/PermissionRoles.php:286 +msgid "Social - Restricted" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1512 -#, php-format -msgid "May attend %1$s's %2$s" +#: ../../Zotlabs/Access/PermissionRoles.php:287 +msgid "Social - Private" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1515 ../../Zotlabs/Module/Share.php:103 -#, php-format -msgid "🔁 Repeated %1$s's %2$s" +#: ../../Zotlabs/Access/PermissionRoles.php:290 +msgid "Community Forum" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:322 -msgid "Apps" +#: ../../Zotlabs/Access/PermissionRoles.php:291 +msgid "Forum - Mostly Public" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:323 -msgid "Affinity Tool" +#: ../../Zotlabs/Access/PermissionRoles.php:292 +msgid "Forum - Restricted" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:326 -msgid "Site Admin" +#: ../../Zotlabs/Access/PermissionRoles.php:293 +msgid "Forum - Private" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:327 -msgid "Report Bug" +#: ../../Zotlabs/Access/PermissionRoles.php:296 +msgid "Feed Republish" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:330 -msgid "Content Filter" +#: ../../Zotlabs/Access/PermissionRoles.php:297 +msgid "Feed - Mostly Public" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:331 -msgid "Content Import" +#: ../../Zotlabs/Access/PermissionRoles.php:298 +msgid "Feed - Restricted" msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:333 -msgid "Remote Diagnostics" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:334 -msgid "Suggest Channels" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:337 -msgid "Stream" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:348 -msgid "Mail" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:349 ../../Zotlabs/Module/Mood.php:154 -msgid "Mood" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:351 -msgid "Chat" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:353 -msgid "Probe" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:354 -msgid "Suggest" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:355 -msgid "Random Channel" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:356 -msgid "Invite" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:357 ../../Zotlabs/Widget/Admin.php:26 -msgid "Features" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:358 -msgid "Language" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:359 -msgid "Post" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:360 -msgid "Profile Photo" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:364 -msgid "Notifications" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:365 -msgid "Order Apps" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:367 -msgid "CardDAV" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:368 ../../Zotlabs/Module/Sources.php:107 -msgid "Channel Sources" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:369 -msgid "Guest Access" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:370 ../../Zotlabs/Widget/Notes.php:21 -msgid "Notes" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:371 -msgid "OAuth Apps Manager" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:372 -msgid "OAuth2 Apps Manager" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:373 -msgid "PDL Editor" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:374 ../../Zotlabs/Module/Permcats.php:112 -msgid "Permission Categories" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:375 -msgid "Premium Channel" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:376 ../../Zotlabs/Module/Pubstream.php:109 -#: ../../Zotlabs/Widget/Notifications.php:142 -msgid "Public Stream" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:377 -msgid "My Chatrooms" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:378 -msgid "Channel Export" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:537 ../../Zotlabs/Module/Admin/Addons.php:456 -#: ../../Zotlabs/Module/Cdav.php:1258 ../../Zotlabs/Module/Connedit.php:939 -#: ../../Zotlabs/Module/Oauth.php:53 ../../Zotlabs/Module/Oauth.php:137 -#: ../../Zotlabs/Module/Oauth2.php:58 ../../Zotlabs/Module/Oauth2.php:144 -#: ../../Zotlabs/Module/Profiles.php:799 -msgid "Update" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:537 ../../Zotlabs/Module/Admin/Addons.php:425 -msgid "Install" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:555 -msgid "Purchase" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:560 -msgid "Undelete" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:569 -msgid "Add to app-tray" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:570 -msgid "Remove from app-tray" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:571 -msgid "Pin to navbar" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:572 -msgid "Unpin from navbar" -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:23 -msgid "Missing room name" -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:32 -msgid "Duplicate room name" -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:82 ../../Zotlabs/Lib/Chatroom.php:90 -msgid "Invalid room specifier." -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:122 -msgid "Room not found." -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:143 -msgid "Room is full" -msgstr "" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:83 -#, php-format -msgid "Update Error at %s" -msgstr "" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:89 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:60 -msgid "$Projectname Notification" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:61 -msgid "$projectname" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:63 -msgid "Thank You," -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:65 -#, php-format -msgid "%s Administrator" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:66 -#, php-format -msgid "This email was sent by %1$s at %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:66 ../../Zotlabs/Module/Home.php:72 -#: ../../Zotlabs/Module/Home.php:80 -msgid "$Projectname" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:67 -#, php-format -msgid "" -"To stop receiving these messages, please adjust your Notification Settings " -"at %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:68 -#, php-format -msgid "To stop receiving these messages, please adjust your %s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:68 -#: ../../Zotlabs/Module/Settings/Channel.php:545 -msgid "Notification Settings" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:123 -#, php-format -msgid "%s " -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:127 -#, php-format -msgid "[$Projectname:Notify] New mail received at %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:129 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:130 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:130 -msgid "a private message" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:131 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:144 -msgid "commented on" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:155 -msgid "liked" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:158 -msgid "disliked" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:201 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:209 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:218 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:233 -#, php-format -msgid "%1$s commented on an item/conversation you have been following." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:317 -#: ../../Zotlabs/Lib/Enotify.php:333 ../../Zotlabs/Lib/Enotify.php:358 -#: ../../Zotlabs/Lib/Enotify.php:375 ../../Zotlabs/Lib/Enotify.php:388 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 -#, php-format -msgid "Please visit %s to approve or reject this comment." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:299 -#, php-format -msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:313 -#, php-format -msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:314 -#, php-format -msgid "%1$s liked an item/conversation you created." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:325 -#, php-format -msgid "[$Projectname:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:327 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:329 -#, php-format -msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:352 -#, php-format -msgid "[$Projectname:Notify] %s tagged you" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:353 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:354 -#, php-format -msgid "%1$s [zrl=%2$s]tagged you[/zrl]." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:365 -#, php-format -msgid "[$Projectname:Notify] %1$s poked you" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:366 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:367 -#, php-format -msgid "%1$s [zrl=%2$s]poked you[/zrl]." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:382 -#, php-format -msgid "[$Projectname:Notify] %s tagged your post" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:383 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:384 -#, php-format -msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:395 -msgid "[$Projectname:Notify] Introduction received" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:396 -#, php-format -msgid "You've received an new connection request from '%1$s' at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:397 -#, php-format -msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:400 ../../Zotlabs/Lib/Enotify.php:418 -#, php-format -msgid "You may visit their profile at %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:402 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:409 -msgid "[$Projectname:Notify] Friend suggestion received" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:410 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:411 -#, php-format -msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:416 -msgid "Name:" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:417 -msgid "Photo:" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:420 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:640 -msgid "[$Projectname:Notify]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:808 -msgid "created a new post" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:809 -#, php-format -msgid "commented on %s's post" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:816 -#, php-format -msgid "edited a post dated %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:820 -#, php-format -msgid "edited a comment dated %s" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWiki.php:143 -msgid "Wiki updated successfully" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWiki.php:197 -msgid "Wiki files deleted successfully" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:42 -#: ../../Zotlabs/Lib/NativeWikiPage.php:94 -msgid "(No Title)" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:109 -msgid "Wiki page create failed." -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:122 -msgid "Wiki not found." -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:133 -msgid "Destination name already exists" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:166 -#: ../../Zotlabs/Lib/NativeWikiPage.php:362 -msgid "Page not found" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:197 -msgid "Error reading page content" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:353 -#: ../../Zotlabs/Lib/NativeWikiPage.php:402 -#: ../../Zotlabs/Lib/NativeWikiPage.php:469 -#: ../../Zotlabs/Lib/NativeWikiPage.php:510 -msgid "Error reading wiki" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:390 -msgid "Page update failed." -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:424 -msgid "Nothing deleted" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:490 -msgid "Compare: object not found." -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:496 -msgid "Page updated" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:499 -msgid "Untitled" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:505 -msgid "Wiki resource_id required for git commit" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:561 -#: ../../Zotlabs/Module/Admin/Channels.php:159 -#: ../../Zotlabs/Module/Cdav.php:1242 ../../Zotlabs/Module/Chat.php:259 -#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Group.php:154 -#: ../../Zotlabs/Module/Oauth.php:113 ../../Zotlabs/Module/Oauth.php:139 -#: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 -#: ../../Zotlabs/Module/Sharedwithme.php:104 ../../Zotlabs/Module/Wiki.php:218 -#: ../../Zotlabs/Storage/Browser.php:291 -#: ../../Zotlabs/Widget/Wiki_page_history.php:22 -msgid "Name" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:562 -#: ../../Zotlabs/Widget/Wiki_page_history.php:23 -msgctxt "wiki_history" -msgid "Message" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:563 -#: ../../Zotlabs/Widget/Wiki_page_history.php:24 -msgid "Date" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:564 ../../Zotlabs/Module/Wiki.php:367 -#: ../../Zotlabs/Widget/Wiki_page_history.php:25 -msgid "Revert" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:565 -#: ../../Zotlabs/Widget/Wiki_page_history.php:26 -msgid "Compare" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:82 -msgctxt "permcat" -msgid "default" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:133 -msgctxt "permcat" -msgid "follower" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:137 -msgctxt "permcat" -msgid "contributor" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:141 -msgctxt "permcat" -msgid "publisher" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Public" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -msgid "Anybody in the $Projectname network" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -#, php-format -msgid "Any account on %s" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Any of my connections" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Only connections I specifically allow" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:114 -msgid "Any connections including those who haven't yet been approved" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:150 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:151 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "This is your default setting for who can view your connections" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for the audience of your webpages" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:10 -msgid "0. Beginner/Basic" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:11 -msgid "1. Novice - not skilled but willing to learn" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:12 -msgid "2. Intermediate - somewhat comfortable" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:13 -msgid "3. Advanced - very comfortable" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:14 -msgid "4. Expert - I can write computer code" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:15 -msgid "5. Wizard - I probably know more than you do" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:129 -msgid "Privacy conflict. Discretion advised." -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:171 ../../Zotlabs/Storage/Browser.php:286 -msgid "Admin Delete" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Module/Filer.php:54 -msgid "Save to Folder" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:202 -msgid "I will attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:202 -msgid "I will not attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:202 -msgid "I might attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:212 -msgid "I agree" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:212 -msgid "I disagree" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:212 -msgid "I abstain" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:231 ../../Zotlabs/Lib/ThreadItem.php:243 -#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Photos.php:1185 -msgid "View all" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:286 -msgid "Add Tag" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:306 ../../Zotlabs/Module/Photos.php:1115 -msgid "I like this (toggle)" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:307 ../../Zotlabs/Module/Photos.php:1116 -msgid "I don't like this (toggle)" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:317 -msgid "Share This" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:317 -msgid "share" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "Delivery Report" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:347 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Lib/ThreadItem.php:381 ../../Zotlabs/Lib/ThreadItem.php:382 -#, php-format -msgid "View %s's profile - %s" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:385 -msgid "to" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:386 -msgid "via" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:387 -msgid "Wall-to-Wall" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:388 -msgid "via Wall-To-Wall:" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:414 -msgid "Attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:415 -msgid "Attendance Options" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:416 -msgid "Vote" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:417 -msgid "Voting Options" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:439 -msgid "Save Bookmarks" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:440 -msgid "Add to Calendar" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:450 -#: ../../Zotlabs/Module/Notifications.php:60 -msgid "Mark all seen" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:457 ../../Zotlabs/Module/Photos.php:1310 -msgctxt "noun" -msgid "Likes" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:458 ../../Zotlabs/Module/Photos.php:1311 -msgctxt "noun" -msgid "Dislikes" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:792 ../../Zotlabs/Module/Photos.php:1135 -#: ../../Zotlabs/Module/Photos.php:1254 -msgid "This is you" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:801 -msgid "Image" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:803 -msgid "Insert Link" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:804 -msgid "Video" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:814 -msgid "Your full name (required)" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:815 -msgid "Your email address (required)" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:816 -msgid "Your website URL (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Achievements.php:38 -msgid "Some blurb about what to do when you're new here" -msgstr "" - -#: ../../Zotlabs/Module/Acl.php:360 -msgid "network" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:37 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:44 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:80 -msgid "Account not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:99 -#, php-format -msgid "Account '%s' blocked" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:107 -#, php-format -msgid "Account '%s' unblocked" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Addons.php:341 -#: ../../Zotlabs/Module/Admin/Addons.php:439 -#: ../../Zotlabs/Module/Admin/Channels.php:145 -#: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Security.php:92 -#: ../../Zotlabs/Module/Admin/Site.php:287 -#: ../../Zotlabs/Module/Admin/Themes.php:122 -#: ../../Zotlabs/Module/Admin/Themes.php:156 ../../Zotlabs/Module/Admin.php:138 -msgid "Administration" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:167 -#: ../../Zotlabs/Module/Admin/Accounts.php:180 -#: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 -msgid "Accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -#: ../../Zotlabs/Module/Admin/Channels.php:148 -msgid "select all" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -msgid "Registrations waiting for confirm" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -msgid "Request date" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:172 -msgid "No registrations." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:174 -#: ../../Zotlabs/Module/Authorize.php:33 -msgid "Deny" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:176 -#: ../../Zotlabs/Module/Connedit.php:636 -msgid "Block" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:177 -#: ../../Zotlabs/Module/Connedit.php:636 -msgid "Unblock" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:182 -msgid "ID" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:184 -msgid "All Channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:185 -msgid "Register date" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:186 -msgid "Last login" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:187 -msgid "Expires" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:188 -msgid "Service Class" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:190 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " -"on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:191 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:29 -#, php-format -msgid "Password changed for account %d." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:46 -msgid "Account settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:61 -msgid "Account not found." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:68 -msgid "Account Edit" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:69 -msgid "New Password" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:70 -msgid "New Password again" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:71 -msgid "Account language (for emails)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:72 -msgid "Service class" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:289 -#, php-format -msgid "Plugin %s disabled." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:294 -#, php-format -msgid "Plugin %s enabled." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:310 -#: ../../Zotlabs/Module/Admin/Themes.php:95 -msgid "Disable" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:313 -#: ../../Zotlabs/Module/Admin/Themes.php:97 -msgid "Enable" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:342 -#: ../../Zotlabs/Module/Admin/Addons.php:440 ../../Zotlabs/Widget/Admin.php:27 -msgid "Addons" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:343 -#: ../../Zotlabs/Module/Admin/Themes.php:124 -msgid "Toggle" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:351 -#: ../../Zotlabs/Module/Admin/Themes.php:134 -msgid "Author: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:352 -#: ../../Zotlabs/Module/Admin/Themes.php:135 -msgid "Maintainer: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:353 -msgid "Minimum project version: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:354 -msgid "Maximum project version: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:355 -msgid "Minimum PHP version: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:356 -msgid "Compatible Server Roles: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:357 -msgid "Requires: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:358 -#: ../../Zotlabs/Module/Admin/Addons.php:445 -msgid "Disabled - version incompatibility" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:414 -msgid "Enter the public git repository URL of the addon repo." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:415 -msgid "Addon repo git URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:416 -msgid "Custom repo name" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:416 -msgid "(optional)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:417 -msgid "Download Addon Repo" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:424 -msgid "Install new repo" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:448 -msgid "Manage Repos" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:449 -msgid "Installed Addon Repositories" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:450 -msgid "Install a New Addon Repository" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:457 -msgid "Switch branch" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:458 -#: ../../Zotlabs/Module/Cover_photo.php:421 -#: ../../Zotlabs/Module/Photos.php:1035 ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:31 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:40 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:46 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:65 -msgid "Channel not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:75 -#, php-format -msgid "Channel '%s' deleted" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' censored" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:146 -#: ../../Zotlabs/Module/Admin.php:114 ../../Zotlabs/Widget/Admin.php:24 -msgid "Channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:150 -msgid "Censor" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:151 -msgid "Uncensor" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:152 -msgid "Allow Code" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:153 -msgid "Disallow Code" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:158 -msgid "UID" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Cdav.php:1249 ../../Zotlabs/Module/Connedit.php:930 -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:502 -#: ../../Zotlabs/Module/Profiles.php:790 -msgid "Address" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:162 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:163 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -msgid "Update has been marked successful" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:31 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:34 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:38 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:41 -#, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 -msgid "Failed Updates" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:61 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:62 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:67 -msgid "No failed updates." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Features.php:56 -#, php-format -msgid "Lock feature %s" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Features.php:64 -msgid "Manage Additional Features" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:28 -msgid "Log settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 -#: ../../Zotlabs/Widget/Admin.php:58 -msgid "Logs" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:85 -msgid "Clear" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:91 -msgid "Debugging" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "Log file" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:93 -msgid "Log level" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:89 -msgid "New Profile Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "Field nickname" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "System name of field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:91 -#: ../../Zotlabs/Module/Admin/Profs.php:111 -msgid "Input type" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Field Name" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Label on profile pages" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Help text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Additional info (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:103 -msgid "Field definition not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:109 -msgid "Edit Profile Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:168 ../../Zotlabs/Widget/Admin.php:30 -msgid "Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:169 -msgid "Basic Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "Advanced Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "(In addition to basic fields)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:172 -msgid "All available fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:173 -msgid "Custom Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:177 -msgid "Create Custom Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:35 -msgid "Queue Statistics" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:36 -msgid "Total Entries" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:37 -msgid "Priority" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:38 -msgid "Destination URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:39 -msgid "Mark hub permanently offline" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:40 -msgid "Empty queue for this hub" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:41 -msgid "Last known contact" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:83 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:86 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:87 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" -"
https://vimeo.com/
https://soundcloud.com/
" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:88 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:93 ../../Zotlabs/Widget/Admin.php:25 -msgid "Security" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:95 -msgid "Block public" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:95 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "Provide a cloud root directory" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "" -"The cloud root directory lists all channel names which provide public files" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:97 -msgid "Show total disk space available to cloud uploads" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:98 -msgid "Set \"Transport Security\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "Allowed email domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:101 -msgid "Not allowed email domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:101 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:102 -msgid "Allow communications only from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:102 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:103 -msgid "Block communications from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:104 -msgid "Allow communications only from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:104 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:105 -msgid "Block communications from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:106 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:107 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:107 -msgid "One site per line. By default embedded content is filtered." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:108 -msgid "Block embedded HTML from these domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:161 -msgid "Site settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:198 -#: ../../Zotlabs/Module/Settings/Display.php:119 -#, php-format -msgid "%s - (Incompatible)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:205 -msgid "mobile" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:207 -msgid "experimental" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:209 -msgid "unsupported" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:256 -msgid "Yes - with approval" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:262 -msgid "My site is not a public server" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:263 -msgid "My site has paid access only" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:264 -msgid "My site has free access only" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:265 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:279 -msgid "Default permission role for new accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:279 -msgid "" -"This role will be used for the first channel created after registration." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:288 ../../Zotlabs/Widget/Admin.php:22 -msgid "Site" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:290 -#: ../../Zotlabs/Module/Register.php:273 -msgid "Registration" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:291 -msgid "File upload" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:292 -msgid "Policies" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:297 -msgid "Site name" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "Banner/Logo" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "Unfiltered HTML/CSS/JS is allowed" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:300 -msgid "Administrator Information" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:300 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:301 ../../Zotlabs/Module/Siteinfo.php:24 -msgid "Site Information" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:301 -msgid "" -"Publicly visible description of this site. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:302 -msgid "System language" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:303 -msgid "System theme" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:303 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Allow Feeds as Connections" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "(Heavy system resource usage)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:307 -msgid "Maximum image size" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:307 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Does this site allow new member registration?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:309 -msgid "Invitation only" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:309 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Minimum age" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Minimum age (in years) for who may register on this site." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "Which best describes the types of account offered by this hub?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "This is displayed on the public server site list." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "Register text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "Site homepage to show visitors (default: login box)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "" -"example: 'pubstream' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:315 -msgid "Preserve site homepage URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:315 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:316 -msgid "Accounts abandoned after x days" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:316 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:317 -msgid "Allowed friend domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:317 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:318 -msgid "Verify Email Addresses" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:318 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:319 -msgid "Force publish" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:319 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "Import Public Streams" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "Site only Public Streams" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "" -"Allow access to public content originating only from this site if Imported " -"Public Streams are disabled." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:322 -msgid "Allow anybody on the internet to access the Public streams" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:322 -msgid "" -"Disable to require authentication before viewing. Warning: this content is " -"unmoderated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:323 -msgid "Only import Public stream posts with this text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:323 -#: ../../Zotlabs/Module/Admin/Site.php:324 -#: ../../Zotlabs/Module/Connedit.php:892 ../../Zotlabs/Module/Connedit.php:893 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:324 -msgid "Do not import Public stream posts with this text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:327 -msgid "Login on Homepage" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:327 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:328 -msgid "Enable context help" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:328 -msgid "" -"Display contextual help for the current page when the help button is pressed." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "Reply-to email address for system generated email." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "Sender (From) email address for system generated email." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:332 -msgid "Name of email sender for system generated email." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:334 -msgid "Directory Server URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:334 -msgid "Default directory server" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:336 -msgid "Proxy user" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:337 -msgid "Proxy URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:338 -msgid "Network timeout" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:338 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:339 -msgid "Delivery interval" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:339 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "Deliveries per process" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust " -"if necessary to tune system performance. Recommend: 1-5." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:341 -msgid "Queue Threshold" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:341 -msgid "" -"Always defer immediate delivery if queue contains more than this number of " -"entries." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:342 -msgid "Poll interval" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:342 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:343 -msgid "Path to ImageMagick convert program" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:343 -msgid "" -"If set, use this program to generate photo thumbnails for huge images ( > " -"4000 pixels in either dimension), otherwise memory exhaustion may occur. " -"Example: /usr/bin/convert" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:344 -msgid "Allow SVG thumbnails in file browser" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:344 -msgid "WARNING: SVG images may contain malicious code." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:345 -msgid "Maximum Load Average" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:345 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:346 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:346 -msgid "0 for no expiration of imported content" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:347 -msgid "" -"Do not expire any posts which have comments less than this many days ago" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:349 -msgid "" -"Public servers: Optional landing (marketing) webpage for new registrants" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:349 -#, php-format -msgid "Create this page first. Default is %s/register" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:350 -msgid "Page to display after creating a new channel" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:350 -msgid "Default: profiles" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:352 -msgid "Optional: site location" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:352 -msgid "Region or country" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:26 -msgid "Theme settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:61 -msgid "No themes found." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:116 -msgid "Screenshot" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:123 -#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 -msgid "Themes" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:162 -msgid "[Experimental]" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:163 -msgid "[Unsupported]" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:97 -msgid "Blocked accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:98 -msgid "Expired accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:99 -msgid "Expiring accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:120 -msgid "Message queues" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:134 -msgid "Your software should be updated" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:139 -msgid "Summary" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:142 -msgid "Registered accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:143 -msgid "Pending registrations" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:144 -msgid "Registered channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:145 -msgid "Active addons" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:146 -msgid "Version" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:147 -msgid "Repository version (master)" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:148 -msgid "Repository version (dev)" -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:35 -msgid "Affinity Tool settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:47 -msgid "" -"This app presents a slider control in your connection editor and also on " -"your network page. The slider represents your degree of friendship " -"(affinity) with each connection. It allows you to zoom in or out and display " -"conversations from only your closest friends or everybody in your stream." -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:52 -msgid "Affinity Tool App" -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:52 ../../Zotlabs/Module/Articles.php:51 -#: ../../Zotlabs/Module/Bookmarks.php:78 ../../Zotlabs/Module/Cards.php:51 -#: ../../Zotlabs/Module/Cdav.php:854 ../../Zotlabs/Module/Cdav.php:863 -#: ../../Zotlabs/Module/Chat.php:102 ../../Zotlabs/Module/Connect.php:104 -#: ../../Zotlabs/Module/Defperms.php:189 ../../Zotlabs/Module/Group.php:106 -#: ../../Zotlabs/Module/Invite.php:110 ../../Zotlabs/Module/Lang.php:17 -#: ../../Zotlabs/Module/Mood.php:134 ../../Zotlabs/Module/Notes.php:56 -#: ../../Zotlabs/Module/Oauth.php:100 ../../Zotlabs/Module/Oauth2.php:106 -#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Permcats.php:62 -#: ../../Zotlabs/Module/Poke.php:165 ../../Zotlabs/Module/Probe.php:18 -#: ../../Zotlabs/Module/Pubstream.php:20 ../../Zotlabs/Module/Randprof.php:29 -#: ../../Zotlabs/Module/Sources.php:88 ../../Zotlabs/Module/Suggest.php:40 -#: ../../Zotlabs/Module/Tokens.php:99 ../../Zotlabs/Module/Uexport.php:61 -#: ../../Zotlabs/Module/Webpages.php:48 ../../Zotlabs/Module/Wiki.php:52 -msgid "Not Installed" -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:57 -msgid "" -"The numbers below represent the minimum and maximum slider default positions " -"for your network/stream page as a percentage." -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:64 -msgid "Default maximum affinity level" -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:64 -msgid "0-99 default 99" -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:70 -msgid "Default minimum affinity level" -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:70 -msgid "0-99 - default 0" -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:76 -msgid "Persistent affinity levels" -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:76 -msgid "" -"If disabled the max and min levels will be reset to default after page reload" -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:84 -msgid "Affinity Tool Settings" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 -msgid "Authorize application connection" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:75 -msgid "Return to your app and insert this Security Code:" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:85 -msgid "Please login to continue." -msgstr "" - -#: ../../Zotlabs/Module/Api.php:97 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 -msgid "App installed." -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:49 -msgid "Malformed app." -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:132 -msgid "Embed code" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:138 -msgid "Edit App" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:138 -msgid "Create App" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:143 -msgid "Name of app" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:144 -msgid "Location (URL) of app" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:145 ../../Zotlabs/Module/Cdav.php:939 -#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:146 -msgid "Photo icon URL" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:146 -msgid "80 x 80 pixels - optional" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:147 -msgid "Categories (optional, comma separated list)" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:148 -msgid "Version ID" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:149 -msgid "Price of app" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:150 -msgid "Location (URL) to purchase app" -msgstr "" - -#: ../../Zotlabs/Module/Apporder.php:47 -msgid "Change Order of Pinned Navbar Apps" -msgstr "" - -#: ../../Zotlabs/Module/Apporder.php:47 -msgid "Change Order of App Tray Apps" -msgstr "" - -#: ../../Zotlabs/Module/Apporder.php:48 -msgid "" -"Use arrows to move the corresponding app left (top) or right (bottom) in the " -"navbar" -msgstr "" - -#: ../../Zotlabs/Module/Apporder.php:48 -msgid "Use arrows to move the corresponding app up or down in the app tray" -msgstr "" - -#: ../../Zotlabs/Module/Apps.php:50 ../../Zotlabs/Widget/Appstore.php:14 -msgid "Available Apps" -msgstr "" - -#: ../../Zotlabs/Module/Apps.php:50 -msgid "Installed Apps" -msgstr "" - -#: ../../Zotlabs/Module/Apps.php:53 -msgid "Manage Apps" -msgstr "" - -#: ../../Zotlabs/Module/Apps.php:54 -msgid "Create Custom App" -msgstr "" - -#: ../../Zotlabs/Module/Articles.php:51 -msgid "Articles App" -msgstr "" - -#: ../../Zotlabs/Module/Articles.php:52 -msgid "Create interactive articles" -msgstr "" - -#: ../../Zotlabs/Module/Articles.php:115 -msgid "Add Article" -msgstr "" - -#: ../../Zotlabs/Module/Articles.php:116 ../../Zotlabs/Module/Blocks.php:159 -#: ../../Zotlabs/Module/Cards.php:113 ../../Zotlabs/Module/Cdav.php:1257 -#: ../../Zotlabs/Module/Connedit.php:938 ../../Zotlabs/Module/Layouts.php:185 -#: ../../Zotlabs/Module/Menu.php:181 ../../Zotlabs/Module/New_channel.php:189 -#: ../../Zotlabs/Module/Profiles.php:798 ../../Zotlabs/Module/Webpages.php:254 -#: ../../Zotlabs/Storage/Browser.php:282 ../../Zotlabs/Storage/Browser.php:396 -#: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 -msgid "Create" -msgstr "" - -#: ../../Zotlabs/Module/Article_edit.php:17 -#: ../../Zotlabs/Module/Article_edit.php:33 -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 ../../Zotlabs/Module/Editpost.php:24 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Card_edit.php:17 ../../Zotlabs/Module/Card_edit.php:33 -msgid "Item not found" -msgstr "" - -#: ../../Zotlabs/Module/Article_edit.php:44 ../../Zotlabs/Module/Block.php:41 -#: ../../Zotlabs/Module/Cal.php:63 ../../Zotlabs/Module/Chanview.php:96 -#: ../../Zotlabs/Module/Card_edit.php:44 ../../Zotlabs/Module/Page.php:75 -#: ../../Zotlabs/Module/Wall_upload.php:31 -msgid "Channel not found." -msgstr "" - -#: ../../Zotlabs/Module/Article_edit.php:128 -msgid "Edit Article" -msgstr "" - -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "" - -#: ../../Zotlabs/Module/Authorize.php:17 -msgid "Unknown App" -msgstr "" - -#: ../../Zotlabs/Module/Authorize.php:29 -msgid "Authorize" -msgstr "" - -#: ../../Zotlabs/Module/Authorize.php:30 -#, php-format -msgid "Do you authorize the app %s to access your channel data?" -msgstr "" - -#: ../../Zotlabs/Module/Authorize.php:32 -msgid "Allow" -msgstr "" - -#: ../../Zotlabs/Module/Block.php:29 ../../Zotlabs/Module/Page.php:39 -msgid "Invalid item." + +#: ../../Zotlabs/Access/PermissionRoles.php:301 +msgid "Special Purpose" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:302 +msgid "Special - Celebrity/Soapbox" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:303 +msgid "Special - Group Repository" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:306 +#: ../../Zotlabs/Module/Cdav.php:1335 ../../Zotlabs/Module/Connedit.php:935 +#: ../../Zotlabs/Module/Profiles.php:795 ../../include/selectors.php:60 +#: ../../include/selectors.php:77 ../../include/selectors.php:115 +#: ../../include/selectors.php:151 ../../include/event.php:1336 +#: ../../include/event.php:1343 ../../include/connections.php:730 +#: ../../include/connections.php:737 +msgid "Other" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:307 +msgid "Custom/Expert Mode" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Articles.php:42 +#: ../../Zotlabs/Module/Editlayout.php:31 ../../Zotlabs/Module/Connect.php:17 +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Menu.php:91 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Cards.php:42 +#: ../../Zotlabs/Module/Webpages.php:39 ../../Zotlabs/Module/Filestorage.php:53 +#: ../../addon/gallery/Mod_Gallery.php:49 ../../include/channel.php:1319 +msgid "Requested profile is not available." +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Invite.php:21 ../../Zotlabs/Module/Invite.php:102 +#: ../../Zotlabs/Module/Articles.php:88 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:168 +#: ../../Zotlabs/Module/Channel.php:331 ../../Zotlabs/Module/Channel.php:370 +#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Events.php:271 +#: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Regmod.php:20 +#: ../../Zotlabs/Module/Article_edit.php:51 +#: ../../Zotlabs/Module/New_channel.php:105 +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:206 +#: ../../Zotlabs/Module/Moderate.php:13 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:280 +#: ../../Zotlabs/Module/Thing.php:300 ../../Zotlabs/Module/Thing.php:341 +#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 +#: ../../Zotlabs/Module/Mood.php:126 ../../Zotlabs/Module/Connections.php:32 +#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:70 +#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:59 +#: ../../Zotlabs/Module/Wiki.php:285 ../../Zotlabs/Module/Wiki.php:428 +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Poke.php:157 +#: ../../Zotlabs/Module/Profile_photo.php:336 +#: ../../Zotlabs/Module/Profile_photo.php:349 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:397 +#: ../../Zotlabs/Module/Item.php:416 ../../Zotlabs/Module/Item.php:426 +#: ../../Zotlabs/Module/Item.php:1302 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:399 +#: ../../Zotlabs/Module/Chat.php:115 ../../Zotlabs/Module/Chat.php:120 +#: ../../Zotlabs/Module/Menu.php:129 ../../Zotlabs/Module/Menu.php:140 +#: ../../Zotlabs/Module/Channel_calendar.php:230 +#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Cloud.php:40 +#: ../../Zotlabs/Module/Defperms.php:181 ../../Zotlabs/Module/Group.php:14 +#: ../../Zotlabs/Module/Group.php:30 ../../Zotlabs/Module/Profiles.php:198 +#: ../../Zotlabs/Module/Profiles.php:635 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:107 +#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Cards.php:86 ../../Zotlabs/Module/Webpages.php:133 +#: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:80 +#: ../../Zotlabs/Module/Like.php:187 ../../Zotlabs/Module/Suggest.php:32 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 +#: ../../Zotlabs/Module/Register.php:80 +#: ../../Zotlabs/Module/Cover_photo.php:347 +#: ../../Zotlabs/Module/Cover_photo.php:360 +#: ../../Zotlabs/Module/Display.php:451 ../../Zotlabs/Module/Network.php:19 +#: ../../Zotlabs/Module/Filestorage.php:17 +#: ../../Zotlabs/Module/Filestorage.php:72 +#: ../../Zotlabs/Module/Filestorage.php:90 +#: ../../Zotlabs/Module/Filestorage.php:113 +#: ../../Zotlabs/Module/Filestorage.php:160 ../../Zotlabs/Module/Common.php:38 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Service_limits.php:11 ../../Zotlabs/Module/Rate.php:113 +#: ../../Zotlabs/Module/Card_edit.php:51 +#: ../../Zotlabs/Module/Notifications.php:11 ../../Zotlabs/Lib/Chatroom.php:133 +#: ../../Zotlabs/Web/WebServer.php:123 ../../addon/keepout/keepout.php:36 +#: ../../addon/flashcards/Mod_Flashcards.php:167 +#: ../../addon/openid/Mod_Id.php:53 ../../addon/pumpio/pumpio.php:44 +#: ../../include/attach.php:150 ../../include/attach.php:199 +#: ../../include/attach.php:272 ../../include/attach.php:380 +#: ../../include/attach.php:394 ../../include/attach.php:401 +#: ../../include/attach.php:483 ../../include/attach.php:1043 +#: ../../include/attach.php:1117 ../../include/attach.php:1280 +#: ../../include/items.php:3801 ../../include/photos.php:27 +msgid "Permission denied." msgstr "" #: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 @@ -6195,1715 +250,86 @@ msgstr "" msgid "Block Name" msgstr "" +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2558 +msgid "Blocks" +msgstr "" + #: ../../Zotlabs/Module/Blocks.php:156 msgid "Block Title" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:191 -#: ../../Zotlabs/Module/Menu.php:177 ../../Zotlabs/Module/Webpages.php:266 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:177 +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:266 msgid "Created" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:192 -#: ../../Zotlabs/Module/Menu.php:178 ../../Zotlabs/Module/Webpages.php:267 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:178 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:267 msgid "Edited" msgstr "" +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:116 +#: ../../Zotlabs/Module/Cdav.php:1036 ../../Zotlabs/Module/Cdav.php:1338 +#: ../../Zotlabs/Module/New_channel.php:189 +#: ../../Zotlabs/Module/Connedit.php:938 ../../Zotlabs/Module/Menu.php:181 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Cards.php:113 ../../Zotlabs/Module/Webpages.php:254 +#: ../../Zotlabs/Storage/Browser.php:282 ../../Zotlabs/Storage/Browser.php:396 +#: ../../Zotlabs/Widget/Cdav.php:140 ../../Zotlabs/Widget/Cdav.php:178 +msgid "Create" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Article_edit.php:99 +#: ../../Zotlabs/Module/Admin/Profs.php:175 ../../Zotlabs/Module/Thing.php:266 +#: ../../Zotlabs/Module/Oauth2.php:194 ../../Zotlabs/Module/Editblock.php:114 +#: ../../Zotlabs/Module/Connections.php:298 +#: ../../Zotlabs/Module/Connections.php:336 +#: ../../Zotlabs/Module/Connections.php:356 ../../Zotlabs/Module/Wiki.php:211 +#: ../../Zotlabs/Module/Wiki.php:384 ../../Zotlabs/Module/Menu.php:175 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Group.php:252 +#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Webpages.php:255 ../../Zotlabs/Module/Card_edit.php:99 +#: ../../Zotlabs/Module/Oauth.php:173 ../../Zotlabs/Lib/Apps.php:557 +#: ../../Zotlabs/Lib/ThreadItem.php:148 ../../Zotlabs/Storage/Browser.php:296 +#: ../../Zotlabs/Widget/Cdav.php:138 ../../Zotlabs/Widget/Cdav.php:175 +#: ../../include/channel.php:1418 ../../include/channel.php:1422 +#: ../../include/menu.php:118 +msgid "Edit" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1075 +#: ../../Zotlabs/Module/Wiki.php:301 ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Webpages.php:256 ../../Zotlabs/Widget/Cdav.php:136 +#: ../../addon/hsse/hsse.php:186 ../../include/conversation.php:1392 +msgid "Share" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 +#: ../../Zotlabs/Module/Cdav.php:1033 ../../Zotlabs/Module/Cdav.php:1340 +#: ../../Zotlabs/Module/Article_edit.php:129 +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Profs.php:176 ../../Zotlabs/Module/Thing.php:267 +#: ../../Zotlabs/Module/Oauth2.php:195 ../../Zotlabs/Module/Editblock.php:139 +#: ../../Zotlabs/Module/Connections.php:306 +#: ../../Zotlabs/Module/Photos.php:1178 ../../Zotlabs/Module/Connedit.php:668 +#: ../../Zotlabs/Module/Connedit.php:940 ../../Zotlabs/Module/Profiles.php:800 +#: ../../Zotlabs/Module/Editwebpage.php:167 +#: ../../Zotlabs/Module/Webpages.php:257 ../../Zotlabs/Module/Card_edit.php:129 +#: ../../Zotlabs/Module/Oauth.php:174 ../../Zotlabs/Lib/Apps.php:558 +#: ../../Zotlabs/Lib/ThreadItem.php:168 ../../Zotlabs/Storage/Browser.php:297 +#: ../../include/conversation.php:691 ../../include/conversation.php:736 +msgid "Delete" +msgstr "" + #: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:695 -#: ../../Zotlabs/Module/Layouts.php:198 ../../Zotlabs/Module/Pubsites.php:60 -#: ../../Zotlabs/Module/Webpages.php:261 ../../Zotlabs/Module/Wiki.php:213 -#: ../../Zotlabs/Module/Wiki.php:409 +#: ../../Zotlabs/Module/Wiki.php:213 ../../Zotlabs/Module/Wiki.php:409 +#: ../../Zotlabs/Module/Layouts.php:198 ../../Zotlabs/Module/Webpages.php:261 +#: ../../Zotlabs/Module/Pubsites.php:60 msgid "View" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:62 -msgid "Bookmark added" -msgstr "" - -#: ../../Zotlabs/Module/Bookmarks.php:78 -msgid "Bookmarks App" -msgstr "" - -#: ../../Zotlabs/Module/Bookmarks.php:79 -msgid "Bookmark links from posts and manage them" -msgstr "" - -#: ../../Zotlabs/Module/Bookmarks.php:92 -msgid "My Bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Bookmarks.php:103 -msgid "My Connections Bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:70 -msgid "Permissions denied." -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:264 ../../Zotlabs/Module/Events.php:607 -msgid "l, F j" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:689 -msgid "Edit Event" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:689 -msgid "Create Event" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Cal.php:345 -#: ../../Zotlabs/Module/Cdav.php:948 ../../Zotlabs/Module/Events.php:690 -#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Photos.php:986 -msgid "Previous" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:339 ../../Zotlabs/Module/Cal.php:346 -#: ../../Zotlabs/Module/Cdav.php:949 ../../Zotlabs/Module/Events.php:691 -#: ../../Zotlabs/Module/Events.php:700 ../../Zotlabs/Module/Photos.php:995 -#: ../../Zotlabs/Module/Setup.php:260 -msgid "Next" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:347 ../../Zotlabs/Module/Cdav.php:950 -#: ../../Zotlabs/Module/Events.php:701 -msgid "Today" -msgstr "" - -#: ../../Zotlabs/Module/Cards.php:51 -msgid "Cards App" -msgstr "" - -#: ../../Zotlabs/Module/Cards.php:52 -msgid "Create personal planning cards" -msgstr "" - -#: ../../Zotlabs/Module/Cards.php:112 -msgid "Add Card" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:825 -msgid "INVALID EVENT DISMISSED!" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:826 -msgid "Summary: " -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:827 -msgid "Date: " -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:828 ../../Zotlabs/Module/Cdav.php:835 -msgid "Reason: " -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:833 -msgid "INVALID CARD DISMISSED!" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:834 -msgid "Name: " -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:854 -msgid "CalDAV App" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:855 -msgid "CalDAV capable calendar" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:863 -msgid "CardDAV App" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:864 -msgid "CalDAV capable addressbook" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:936 ../../Zotlabs/Module/Events.php:462 -msgid "Event title" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:937 ../../Zotlabs/Module/Events.php:468 -msgid "Start date and time" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:938 -msgid "End date and time" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:951 ../../Zotlabs/Module/Events.php:696 -msgid "Month" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:952 ../../Zotlabs/Module/Events.php:697 -msgid "Week" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:953 ../../Zotlabs/Module/Events.php:698 -msgid "Day" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:954 -msgid "List month" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:955 -msgid "List week" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:956 -msgid "List day" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:963 -msgid "More" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:964 -msgid "Less" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:965 -msgid "Select calendar" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:967 -msgid "Delete all" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:969 -msgid "Sorry! Editing of recurrent events is not yet implemented." -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1243 ../../Zotlabs/Module/Connedit.php:924 -msgid "Organisation" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1244 ../../Zotlabs/Module/Connedit.php:925 -msgid "Title" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1245 ../../Zotlabs/Module/Connedit.php:926 -#: ../../Zotlabs/Module/Profiles.php:786 -msgid "Phone" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1247 ../../Zotlabs/Module/Connedit.php:928 -#: ../../Zotlabs/Module/Profiles.php:788 -msgid "Instant messenger" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1248 ../../Zotlabs/Module/Connedit.php:929 -#: ../../Zotlabs/Module/Profiles.php:789 -msgid "Website" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1250 ../../Zotlabs/Module/Connedit.php:931 -#: ../../Zotlabs/Module/Profiles.php:791 -msgid "Note" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1255 ../../Zotlabs/Module/Connedit.php:936 -#: ../../Zotlabs/Module/Profiles.php:796 -msgid "Add Contact" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1256 ../../Zotlabs/Module/Connedit.php:937 -#: ../../Zotlabs/Module/Profiles.php:797 -msgid "Add Field" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1261 ../../Zotlabs/Module/Connedit.php:942 -msgid "P.O. Box" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1262 ../../Zotlabs/Module/Connedit.php:943 -msgid "Additional" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1263 ../../Zotlabs/Module/Connedit.php:944 -msgid "Street" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1264 ../../Zotlabs/Module/Connedit.php:945 -msgid "Locality" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1265 ../../Zotlabs/Module/Connedit.php:946 -msgid "Region" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1266 ../../Zotlabs/Module/Connedit.php:947 -msgid "ZIP Code" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1267 ../../Zotlabs/Module/Connedit.php:948 -#: ../../Zotlabs/Module/Profiles.php:757 -msgid "Country" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1314 -msgid "Default Calendar" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1324 -msgid "Default Addressbook" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:35 -msgid "" -"Channel name changes are not allowed within 48 hours of changing the account " -"password." -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:77 -msgid "Change channel nickname/address" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:78 -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "Any/all connections on other networks will be lost!" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:79 -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:80 -msgid "New channel address" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:81 -msgid "Rename Channel" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:41 ../../Zotlabs/Module/Chat.php:31 -#: ../../Zotlabs/Module/Ochannel.php:32 -msgid "You must be logged in to see this page." -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:98 ../../Zotlabs/Module/Hcard.php:37 -#: ../../Zotlabs/Module/Profile.php:45 -msgid "Posts and comments" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:105 ../../Zotlabs/Module/Hcard.php:44 -#: ../../Zotlabs/Module/Profile.php:52 -msgid "Only posts" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:165 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:182 ../../Zotlabs/Module/Network.php:173 -msgid "Search Results For:" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:217 ../../Zotlabs/Module/Display.php:80 -#: ../../Zotlabs/Module/Hq.php:134 ../../Zotlabs/Module/Network.php:203 -#: ../../Zotlabs/Module/Pubstream.php:94 -msgid "Reset form" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:476 ../../Zotlabs/Module/Display.php:378 -msgid "" -"You must enable javascript for your browser to be able to view this content." -msgstr "" - -#: ../../Zotlabs/Module/Chanview.php:139 -msgid "toggle full screen mode" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:102 -msgid "Chatrooms App" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:103 -msgid "Access Controlled Chatrooms" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:196 -msgid "Room not found" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:212 -msgid "Leave Room" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:213 -msgid "Delete Room" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:214 -msgid "I am away right now" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:215 -msgid "I am online" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:217 -msgid "Bookmark this room" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:240 -msgid "New Chatroom" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:241 -msgid "Chatroom name" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:242 -msgid "Expiration of chats (minutes)" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:258 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:263 -msgid "No chatrooms available" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:264 ../../Zotlabs/Module/Manage.php:145 -#: ../../Zotlabs/Module/Profiles.php:831 ../../Zotlabs/Module/Wiki.php:214 -msgid "Create New" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:267 -msgid "Expiration" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:268 -msgid "min" -msgstr "" - -#: ../../Zotlabs/Module/Chatsvc.php:131 -msgid "Away" -msgstr "" - -#: ../../Zotlabs/Module/Chatsvc.php:136 -msgid "Online" -msgstr "" - -#: ../../Zotlabs/Module/Cloud.php:123 -msgid "Not found" -msgstr "" - -#: ../../Zotlabs/Module/Cloud.php:129 -msgid "Please refresh page" -msgstr "" - -#: ../../Zotlabs/Module/Cloud.php:132 -msgid "Unknown error" -msgstr "" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "" - -#: ../../Zotlabs/Module/Common.php:45 -msgid "No connections in common." -msgstr "" - -#: ../../Zotlabs/Module/Common.php:65 -msgid "View Common Connections" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:73 ../../Zotlabs/Module/Connect.php:135 -msgid "Continue" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:104 -msgid "Premium Channel App" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:105 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:116 -msgid "Premium Channel Setup" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:118 -msgid "Enable premium channel connection restrictions" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:119 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:121 ../../Zotlabs/Module/Connect.php:141 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:122 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:123 ../../Zotlabs/Module/Connect.php:144 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:132 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:140 -msgid "Restricted or Premium Channel" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:58 -#: ../../Zotlabs/Module/Connections.php:115 -#: ../../Zotlabs/Module/Connections.php:273 -msgid "Active" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:63 -#: ../../Zotlabs/Module/Connections.php:181 -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Blocked" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:68 -#: ../../Zotlabs/Module/Connections.php:188 -#: ../../Zotlabs/Module/Connections.php:277 -msgid "Ignored" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:73 -#: ../../Zotlabs/Module/Connections.php:202 -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Hidden" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:78 -#: ../../Zotlabs/Module/Connections.php:195 -msgid "Archived/Unreachable" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:83 -#: ../../Zotlabs/Module/Connections.php:92 ../../Zotlabs/Module/Menu.php:179 -#: ../../Zotlabs/Module/Notifications.php:50 -msgid "New" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:97 -#: ../../Zotlabs/Module/Connections.php:111 -#: ../../Zotlabs/Module/Connedit.php:727 ../../Zotlabs/Widget/Affinity.php:34 -msgid "All" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:157 -msgid "Active Connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:160 -msgid "Show active connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:164 -#: ../../Zotlabs/Widget/Notifications.php:84 -msgid "New Connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:167 -msgid "Show pending (new) connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:184 -msgid "Only show blocked connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:191 -msgid "Only show ignored connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:198 -msgid "Only show archived/unreachable connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:205 -msgid "Only show hidden connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:217 -#: ../../Zotlabs/Module/Profperm.php:140 -msgid "All Connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:220 -msgid "Show all connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Pending approval" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:275 -msgid "Archived" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:279 -msgid "Not connected at this location" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:296 -#, php-format -msgid "%1$s [%2$s]" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:297 -msgid "Edit connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:299 -msgid "Delete connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Channel address" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:313 -msgid "Call" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:315 -msgid "Status" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:317 -msgid "Connected" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:319 -msgid "Approve connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:321 -msgid "Ignore connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:322 -#: ../../Zotlabs/Module/Connedit.php:644 -msgid "Ignore" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:323 -msgid "Recent activity" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:353 -msgid "Search your connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:354 -msgid "Connections search" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:81 ../../Zotlabs/Module/Defperms.php:67 -msgid "Could not access contact record." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:112 -msgid "Could not locate selected profile." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:256 -msgid "Connection updated." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:258 -msgid "Failed to update connection record." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:312 -msgid "is now connected to" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:437 -msgid "Could not access address book record." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:485 ../../Zotlabs/Module/Connedit.php:489 -msgid "Refresh failed - channel is currently unavailable." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:504 ../../Zotlabs/Module/Connedit.php:513 -#: ../../Zotlabs/Module/Connedit.php:522 ../../Zotlabs/Module/Connedit.php:531 -#: ../../Zotlabs/Module/Connedit.php:544 -msgid "Unable to set address book parameters." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:568 -msgid "Connection has been removed." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:611 -#, php-format -msgid "View %s's profile" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:615 -msgid "Refresh Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:618 -msgid "Fetch updated permissions" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:622 -msgid "Refresh Photo" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:625 -msgid "Fetch updated photo" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:632 -msgid "View recent posts and comments" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:639 -msgid "Block (or Unblock) all communications with this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:640 -msgid "This connection is blocked!" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:644 -msgid "Unignore" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:647 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:648 -msgid "This connection is ignored!" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:652 -msgid "Unarchive" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:652 -msgid "Archive" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:655 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:656 -msgid "This connection is archived!" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:660 -msgid "Unhide" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:660 -msgid "Hide" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:663 -msgid "Hide or Unhide this connection from your other connections" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:664 -msgid "This connection is hidden!" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:671 -msgid "Delete this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:679 -msgid "Fetch Vcard" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:682 -msgid "Fetch electronic calling card for this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:693 -msgid "Open Individual Permissions section by default" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:716 -msgid "Affinity" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:719 -msgid "Open Set Affinity section by default" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:723 ../../Zotlabs/Widget/Affinity.php:30 -msgid "Me" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:724 ../../Zotlabs/Widget/Affinity.php:31 -msgid "Family" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:726 ../../Zotlabs/Widget/Affinity.php:33 -msgid "Acquaintances" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:756 -msgid "Filter" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:759 -msgid "Open Custom Filter section by default" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:796 -msgid "Approve this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:796 -msgid "Accept connection to allow communication" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:801 -msgid "Set Affinity" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:804 -msgid "Set Profile" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:807 -msgid "Set Affinity & Profile" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:855 -msgid "This connection is unreachable from this location." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:856 -msgid "This connection may be unreachable from other channel locations." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:858 -msgid "Location independence is not supported by their network." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:864 -msgid "" -"This connection is unreachable from this location. Location independence is " -"not supported by their network." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:867 ../../Zotlabs/Module/Defperms.php:254 -msgid "Connection Default Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:868 ../../Zotlabs/Module/Defperms.php:255 -msgid "Apply these permissions automatically" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:868 -msgid "Connection requests will be approved without your interaction" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:869 ../../Zotlabs/Module/Defperms.php:256 -msgid "Permission role" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Defperms.php:257 -msgid "Add permission role" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:877 -msgid "This connection's primary address is" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:878 -msgid "Available locations:" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:883 ../../Zotlabs/Module/Defperms.php:261 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:884 -msgid "Connection Tools" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:886 -msgid "Slide to adjust your degree of friendship" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:888 -msgid "Slide to adjust your rating" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:889 ../../Zotlabs/Module/Connedit.php:894 -msgid "Optionally explain your rating" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:891 -msgid "Custom Filter" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:892 -msgid "Only import posts with this text" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:893 -msgid "Do not import posts with this text" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:895 -msgid "This information is public!" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:900 -msgid "Connection Pending Approval" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:903 ../../Zotlabs/Module/Defperms.php:264 -#: ../../Zotlabs/Module/Permcats.php:123 ../../Zotlabs/Module/Tokens.php:183 -msgid "inherited" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:905 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:907 ../../Zotlabs/Module/Tokens.php:180 -msgid "Their Settings" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:908 ../../Zotlabs/Module/Defperms.php:266 -#: ../../Zotlabs/Module/Permcats.php:121 ../../Zotlabs/Module/Tokens.php:181 -msgid "My Settings" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Defperms.php:269 -#: ../../Zotlabs/Module/Permcats.php:126 ../../Zotlabs/Module/Tokens.php:186 -msgid "Individual Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:911 ../../Zotlabs/Module/Permcats.php:127 -#: ../../Zotlabs/Module/Tokens.php:187 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can not change those settings here." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:912 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can change those settings here but they wont have " -"any impact unless the inherited setting changes." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:913 -msgid "Last update:" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:921 -msgid "Details" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:80 -#: ../../Zotlabs/Module/Profile_photo.php:66 -msgid "Image uploaded but image cropping failed." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:191 -#: ../../Zotlabs/Module/Cover_photo.php:243 -msgid "Cover Photos" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:214 -#: ../../Zotlabs/Module/Profile_photo.php:142 -msgid "Image resize failed." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:254 -#: ../../Zotlabs/Module/Profile_photo.php:260 -msgid "Image upload failed." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:271 -#: ../../Zotlabs/Module/Profile_photo.php:279 -msgid "Unable to process image." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:364 -#: ../../Zotlabs/Module/Cover_photo.php:379 -#: ../../Zotlabs/Module/Profile_photo.php:343 -#: ../../Zotlabs/Module/Profile_photo.php:390 -msgid "Photo not available." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:415 -msgid "Your cover photo may be visible to anybody on the internet" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:417 -#: ../../Zotlabs/Module/Profile_photo.php:456 -msgid "Upload File:" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:418 -#: ../../Zotlabs/Module/Profile_photo.php:457 -msgid "Select a profile:" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:419 -msgid "Change Cover Photo" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:420 -#: ../../Zotlabs/Module/Embedphotos.php:166 ../../Zotlabs/Module/Photos.php:727 -#: ../../Zotlabs/Module/Profile_photo.php:459 -#: ../../Zotlabs/Storage/Browser.php:398 ../../Zotlabs/Widget/Album.php:97 -#: ../../Zotlabs/Widget/Cdav.php:133 ../../Zotlabs/Widget/Cdav.php:169 -#: ../../Zotlabs/Widget/Portfolio.php:110 -msgid "Upload" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:423 -#: ../../Zotlabs/Module/Cover_photo.php:424 -#: ../../Zotlabs/Module/Profile_photo.php:463 -#: ../../Zotlabs/Module/Profile_photo.php:464 -msgid "Use a photo from your albums" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:429 -#: ../../Zotlabs/Module/Profile_photo.php:469 ../../Zotlabs/Module/Wiki.php:405 -msgid "Choose a different album" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:435 -#: ../../Zotlabs/Module/Profile_photo.php:474 -msgid "Select existing photo" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:452 -#: ../../Zotlabs/Module/Profile_photo.php:493 -msgid "Crop Image" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:453 -#: ../../Zotlabs/Module/Profile_photo.php:494 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:455 -#: ../../Zotlabs/Module/Profile_photo.php:496 -msgid "Done Editing" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:111 -#: ../../Zotlabs/Module/Settings/Channel.php:266 -msgid "Settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:189 -msgid "Default Permissions App" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:190 -msgid "Set custom default permissions for new connections" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:255 -#: ../../Zotlabs/Module/Settings/Channel.php:470 -msgid "" -"If enabled, connection requests will be approved without your interaction" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:262 -msgid "Automatic approval settings" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:270 -msgid "" -"Some individual permissions may have been preset or locked based on your " -"channel type and privacy settings." -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:67 ../../Zotlabs/Module/Directory.php:72 -#: ../../Zotlabs/Module/Display.php:29 ../../Zotlabs/Module/Photos.php:558 -#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:110 -msgid "No default suggestions were found." -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:259 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Directory.php:270 -msgid "Gender: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:272 -msgid "Status: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:274 -msgid "Homepage: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Description:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:343 -msgid "Public Forum:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:346 -msgid "Keywords: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:349 -msgid "Don't suggest" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:351 -msgid "Common connections (estimated):" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:400 -msgid "Global Directory" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:400 -msgid "Local Directory" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:406 -msgid "Finding:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:411 -msgid "next page" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:411 -msgid "previous page" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:412 -msgid "Sort options" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:413 -msgid "Alphabetic" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:414 -msgid "Reverse Alphabetic" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:415 -msgid "Newest to Oldest" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:416 -msgid "Oldest to Newest" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:433 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "" - -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "" - -#: ../../Zotlabs/Module/Display.php:396 -msgid "Article" -msgstr "" - -#: ../../Zotlabs/Module/Display.php:448 -msgid "Item has been removed." -msgstr "" - -#: ../../Zotlabs/Module/Editblock.php:138 -msgid "Edit Block" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:128 ../../Zotlabs/Module/Layouts.php:129 -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Name" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:129 ../../Zotlabs/Module/Layouts.php:132 -msgid "Layout Description (Optional)" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:137 -msgid "Edit Layout" -msgstr "" - -#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 -msgid "Item is not editable" -msgstr "" - -#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:144 -msgid "Edit post" -msgstr "" - -#: ../../Zotlabs/Module/Editwebpage.php:139 -msgid "Page link" -msgstr "" - -#: ../../Zotlabs/Module/Editwebpage.php:166 -msgid "Edit Webpage" -msgstr "" - -#: ../../Zotlabs/Module/Email_resend.php:12 -#: ../../Zotlabs/Module/Email_validation.php:24 -msgid "Token verification failed." -msgstr "" - -#: ../../Zotlabs/Module/Email_resend.php:30 -msgid "Email verification resent" -msgstr "" - -#: ../../Zotlabs/Module/Email_resend.php:33 -msgid "Unable to resend email verification message." -msgstr "" - -#: ../../Zotlabs/Module/Email_validation.php:36 -msgid "Email Verification Required" -msgstr "" - -#: ../../Zotlabs/Module/Email_validation.php:37 -#, php-format -msgid "" -"A verification token was sent to your email address [%s]. Enter that token " -"here to complete the account verification step. Please allow a few minutes " -"for delivery, and check your spam folder if you do not see the message." -msgstr "" - -#: ../../Zotlabs/Module/Email_validation.php:38 -msgid "Resend Email" -msgstr "" - -#: ../../Zotlabs/Module/Email_validation.php:41 -msgid "Validation token" -msgstr "" - -#: ../../Zotlabs/Module/Embedphotos.php:148 ../../Zotlabs/Module/Photos.php:826 -#: ../../Zotlabs/Module/Photos.php:1374 ../../Zotlabs/Widget/Album.php:78 -#: ../../Zotlabs/Widget/Portfolio.php:87 -msgid "View Photo" -msgstr "" - -#: ../../Zotlabs/Module/Embedphotos.php:164 ../../Zotlabs/Module/Photos.php:857 -#: ../../Zotlabs/Widget/Album.php:95 ../../Zotlabs/Widget/Portfolio.php:108 -msgid "Edit Album" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:110 -msgid "Event can not end before it has started." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 -#: ../../Zotlabs/Module/Events.php:143 -msgid "Unable to generate preview." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:119 -msgid "Event title and start time are required." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:141 ../../Zotlabs/Module/Events.php:265 -msgid "Event not found." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Edit event title" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:464 -msgid "Categories (comma-separated list)" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:465 -msgid "Edit Category" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:465 -msgid "Category" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:468 -msgid "Edit start date and time" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Events.php:472 -msgid "Finish date and time are not known or not relevant" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:471 -msgid "Edit finish date and time" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:471 -msgid "Finish date and time" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Module/Events.php:474 -msgid "Adjust for viewer timezone" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:473 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Edit Description" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:477 -msgid "Edit Location" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:491 -msgid "Timezone:" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:496 -msgid "Advanced Options" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:635 -msgid "Edit event" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:637 -msgid "Delete event" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:670 -msgid "calendar" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:732 -msgid "Event removed" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:735 -msgid "Failed to remove event" -msgstr "" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Enter a folder name" -msgstr "" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "or select an existing folder (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:152 -msgid "Permission Denied." -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:185 -msgid "Edit file permissions" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:197 -msgid "Set/edit permissions" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:198 -msgid "Include all files and sub folders" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:199 -msgid "Return to file list" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:201 -msgid "Copy/paste this code to attach file to a post" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:202 -msgid "Copy/paste this URL to link file from a web page" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:204 -msgid "Share this file" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:205 -msgid "Show URL to this file" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:206 -#: ../../Zotlabs/Storage/Browser.php:411 -msgid "Show in your contacts shared folder" -msgstr "" - -#: ../../Zotlabs/Module/Follow.php:36 -msgid "Connection added." -msgstr "" - -#: ../../Zotlabs/Module/Go.php:21 -msgid "This page is available only to site members" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:27 -msgid "Welcome" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:29 -msgid "What would you like to do?" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:31 -msgid "" -"Please bookmark this page if you would like to return to it in the future" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:35 -msgid "Upload a profile photo" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:36 -msgid "Upload a cover photo" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:37 -msgid "Edit your default profile" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:41 -msgid "View friend suggestions" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:39 -msgid "View the channel directory" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:40 -msgid "View/edit your channel settings" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:41 -msgid "View the site or project documentation" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:42 -msgid "Visit your channel homepage" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:43 -msgid "" -"View your connections and/or add somebody whose address you already know" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:44 -msgid "" -"View your personal stream (this may be empty until you add some connections)" -msgstr "" - -#: ../../Zotlabs/Module/Go.php:52 -msgid "View the public stream. Warning: this content is not moderated" -msgstr "" - -#: ../../Zotlabs/Module/Group.php:45 -msgid "Privacy group created." -msgstr "" - -#: ../../Zotlabs/Module/Group.php:48 -msgid "Could not create privacy group." -msgstr "" - -#: ../../Zotlabs/Module/Group.php:80 -msgid "Privacy group updated." -msgstr "" - -#: ../../Zotlabs/Module/Group.php:106 -msgid "Privacy Groups App" -msgstr "" - -#: ../../Zotlabs/Module/Group.php:107 -msgid "Management of privacy groups" -msgstr "" - -#: ../../Zotlabs/Module/Group.php:142 -msgid "Add Group" -msgstr "" - -#: ../../Zotlabs/Module/Group.php:146 -msgid "Privacy group name" -msgstr "" - -#: ../../Zotlabs/Module/Group.php:147 ../../Zotlabs/Module/Group.php:256 -msgid "Members are visible to other channels" -msgstr "" - -#: ../../Zotlabs/Module/Group.php:155 ../../Zotlabs/Module/Help.php:81 -msgid "Members" -msgstr "" - -#: ../../Zotlabs/Module/Group.php:182 -msgid "Privacy group removed." -msgstr "" - -#: ../../Zotlabs/Module/Group.php:185 -msgid "Unable to remove privacy group." -msgstr "" - -#: ../../Zotlabs/Module/Group.php:251 -#, php-format -msgid "Privacy Group: %s" -msgstr "" - -#: ../../Zotlabs/Module/Group.php:253 -msgid "Privacy group name: " -msgstr "" - -#: ../../Zotlabs/Module/Group.php:258 -msgid "Delete Group" -msgstr "" - -#: ../../Zotlabs/Module/Group.php:269 -msgid "Group members" -msgstr "" - -#: ../../Zotlabs/Module/Group.php:271 -msgid "Not in this group" -msgstr "" - -#: ../../Zotlabs/Module/Group.php:303 -msgid "Click a channel to toggle membership" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:23 -msgid "Documentation Search" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:82 -msgid "Administrators" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:83 -msgid "Developers" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:84 -msgid "Tutorials" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:95 -msgid "$Projectname Documentation" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:96 -msgid "Contents" -msgstr "" - -#: ../../Zotlabs/Module/Home.php:90 -#, php-format -msgid "Welcome to %s" -msgstr "" - -#: ../../Zotlabs/Module/Hq.php:140 -msgid "Welcome to Hubzilla!" -msgstr "" - -#: ../../Zotlabs/Module/Hq.php:140 -msgid "You have got no unseen posts..." -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:185 -#, php-format -msgid "%s element installed" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:188 -#, php-format -msgid "%s element installation failed" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:68 ../../Zotlabs/Module/Import_items.php:48 -msgid "Nothing to import." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:83 ../../Zotlabs/Module/Import.php:99 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Unable to download data from old server" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:106 ../../Zotlabs/Module/Import_items.php:77 -msgid "Imported file is empty." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:157 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:184 -msgid "No channel. Import failed." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:594 -msgid "Import completed." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:622 -msgid "You must be logged in to use this feature." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:627 -msgid "Import Channel" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:628 -msgid "" -"Use this form to import an existing channel from a different server/hub. You " -"may retrieve the channel identity from the old server/hub via the network or " -"provide an export file." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:629 -#: ../../Zotlabs/Module/Import_items.php:127 -msgid "File to Upload" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:630 -msgid "Or provide the old server/hub details" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:632 -msgid "Your old identity address (xyz@example.com)" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:633 -msgid "Your old login email address" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:634 -msgid "Your old login password" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:635 -msgid "Import a few months of posts if possible (limited by available memory" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:637 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be " -"able to post from either location, but only one can be marked as the primary " -"location for files, photos, and media." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:639 -msgid "Make this hub my primary location" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:640 -msgid "Move this channel (disable all previous locations)" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:641 -msgid "Use this channel nickname instead of the one provided" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:641 -msgid "" -"Leave blank to keep your existing channel nickname. You will be randomly " -"assigned a similar nickname if either name is already allocated on this site." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:643 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:93 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:108 -msgid "Import completed" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:125 -msgid "Import Items" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:126 -msgid "Use this form to import existing posts and content from an export file." -msgstr "" - #: ../../Zotlabs/Module/Invite.php:37 msgid "Total invitation limit exceeded." msgstr "" @@ -7922,6 +348,7 @@ msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" #: ../../Zotlabs/Module/Invite.php:90 +#: ../../addon/notifyadmin/notifyadmin.php:40 #, php-format msgid "%s : Message delivery failed." msgstr "" @@ -7937,6 +364,46 @@ msgstr[1] "" msgid "Invite App" msgstr "" +#: ../../Zotlabs/Module/Invite.php:110 ../../Zotlabs/Module/Articles.php:51 +#: ../../Zotlabs/Module/Cdav.php:857 ../../Zotlabs/Module/Permcats.php:62 +#: ../../Zotlabs/Module/Lang.php:17 ../../Zotlabs/Module/Uexport.php:61 +#: ../../Zotlabs/Module/Pubstream.php:20 ../../Zotlabs/Module/Connect.php:104 +#: ../../Zotlabs/Module/Tokens.php:99 ../../Zotlabs/Module/Oauth2.php:106 +#: ../../Zotlabs/Module/Randprof.php:29 ../../Zotlabs/Module/Mood.php:134 +#: ../../Zotlabs/Module/Bookmarks.php:78 ../../Zotlabs/Module/Wiki.php:52 +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Poke.php:165 +#: ../../Zotlabs/Module/Chat.php:102 ../../Zotlabs/Module/Notes.php:56 +#: ../../Zotlabs/Module/Affinity.php:52 ../../Zotlabs/Module/Defperms.php:189 +#: ../../Zotlabs/Module/Group.php:106 ../../Zotlabs/Module/Cards.php:51 +#: ../../Zotlabs/Module/Webpages.php:48 ../../Zotlabs/Module/Sources.php:88 +#: ../../Zotlabs/Module/Suggest.php:40 ../../Zotlabs/Module/Probe.php:18 +#: ../../Zotlabs/Module/Oauth.php:100 ../../addon/skeleton/Mod_Skeleton.php:32 +#: ../../addon/gnusoc/Mod_Gnusoc.php:22 ../../addon/planets/Mod_Planets.php:20 +#: ../../addon/wppost/Mod_Wppost.php:41 ../../addon/nsfw/Mod_Nsfw.php:33 +#: ../../addon/ijpost/Mod_Ijpost.php:35 ../../addon/dwpost/Mod_Dwpost.php:36 +#: ../../addon/gallery/Mod_Gallery.php:58 ../../addon/ljpost/Mod_Ljpost.php:36 +#: ../../addon/startpage/Mod_Startpage.php:50 +#: ../../addon/diaspora/Mod_Diaspora.php:57 +#: ../../addon/photocache/Mod_Photocache.php:42 +#: ../../addon/rainbowtag/Mod_Rainbowtag.php:21 +#: ../../addon/nsabait/Mod_Nsabait.php:20 +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:34 ../../addon/rtof/Mod_Rtof.php:36 +#: ../../addon/jappixmini/Mod_Jappixmini.php:96 +#: ../../addon/superblock/Mod_Superblock.php:20 +#: ../../addon/nofed/Mod_Nofed.php:33 ../../addon/redred/Mod_Redred.php:50 +#: ../../addon/hsse/Mod_Hsse.php:21 ../../addon/pubcrawl/Mod_Pubcrawl.php:40 +#: ../../addon/libertree/Mod_Libertree.php:35 +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:53 +#: ../../addon/statusnet/Mod_Statusnet.php:146 +#: ../../addon/twitter/Mod_Twitter.php:78 +#: ../../addon/smileybutton/Mod_Smileybutton.php:35 +#: ../../addon/sendzid/Mod_Sendzid.php:20 +#: ../../addon/pageheader/Mod_Pageheader.php:34 +#: ../../addon/authchoose/Mod_Authchoose.php:28 +#: ../../addon/xmpp/Mod_Xmpp.php:35 ../../addon/pumpio/Mod_Pumpio.php:53 +msgid "Not Installed" +msgstr "" + #: ../../Zotlabs/Module/Invite.php:111 msgid "Send email invitations to join this network" msgstr "" @@ -7981,38 +448,573 @@ msgstr "" msgid "3. Click [Connect]" msgstr "" -#: ../../Zotlabs/Module/Item.php:362 -msgid "Unable to locate original post." +#: ../../Zotlabs/Module/Invite.php:168 ../../Zotlabs/Module/Permcats.php:128 +#: ../../Zotlabs/Module/Locs.php:121 ../../Zotlabs/Module/Mitem.php:259 +#: ../../Zotlabs/Module/Events.php:495 ../../Zotlabs/Module/Appman.php:155 +#: ../../Zotlabs/Module/Import_items.php:129 ../../Zotlabs/Module/Setup.php:304 +#: ../../Zotlabs/Module/Setup.php:344 ../../Zotlabs/Module/Connect.php:124 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Channels.php:147 +#: ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Addons.php:441 +#: ../../Zotlabs/Module/Admin/Profs.php:178 +#: ../../Zotlabs/Module/Admin/Account_edit.php:73 +#: ../../Zotlabs/Module/Admin/Security.php:112 +#: ../../Zotlabs/Module/Settings/Channel.php:493 +#: ../../Zotlabs/Module/Settings/Features.php:46 +#: ../../Zotlabs/Module/Settings/Events.php:41 +#: ../../Zotlabs/Module/Settings/Calendar.php:41 +#: ../../Zotlabs/Module/Settings/Conversation.php:48 +#: ../../Zotlabs/Module/Settings/Connections.php:41 +#: ../../Zotlabs/Module/Settings/Photos.php:41 +#: ../../Zotlabs/Module/Settings/Account.php:103 +#: ../../Zotlabs/Module/Settings/Profiles.php:50 +#: ../../Zotlabs/Module/Settings/Manage.php:41 +#: ../../Zotlabs/Module/Settings/Channel_home.php:89 +#: ../../Zotlabs/Module/Settings/Directory.php:41 +#: ../../Zotlabs/Module/Settings/Editor.php:41 +#: ../../Zotlabs/Module/Settings/Display.php:189 +#: ../../Zotlabs/Module/Settings/Network.php:61 +#: ../../Zotlabs/Module/Tokens.php:188 ../../Zotlabs/Module/Thing.php:326 +#: ../../Zotlabs/Module/Thing.php:379 ../../Zotlabs/Module/Import.php:646 +#: ../../Zotlabs/Module/Oauth2.php:116 ../../Zotlabs/Module/Cal.php:344 +#: ../../Zotlabs/Module/Mood.php:158 ../../Zotlabs/Module/Photos.php:1055 +#: ../../Zotlabs/Module/Photos.php:1096 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Module/Wiki.php:215 ../../Zotlabs/Module/Pdledit.php:107 +#: ../../Zotlabs/Module/Poke.php:217 ../../Zotlabs/Module/Connedit.php:904 +#: ../../Zotlabs/Module/Chat.php:211 ../../Zotlabs/Module/Chat.php:250 +#: ../../Zotlabs/Module/Email_validation.php:40 +#: ../../Zotlabs/Module/Pconfig.php:116 ../../Zotlabs/Module/Affinity.php:87 +#: ../../Zotlabs/Module/Defperms.php:265 ../../Zotlabs/Module/Group.php:150 +#: ../../Zotlabs/Module/Group.php:166 ../../Zotlabs/Module/Profiles.php:723 +#: ../../Zotlabs/Module/Editpost.php:86 ../../Zotlabs/Module/Sources.php:125 +#: ../../Zotlabs/Module/Sources.php:162 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Mail.php:431 ../../Zotlabs/Module/Filestorage.php:203 +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Oauth.php:111 +#: ../../Zotlabs/Lib/ThreadItem.php:796 ../../Zotlabs/Widget/Eventstools.php:16 +#: ../../Zotlabs/Widget/Wiki_pages.php:42 +#: ../../Zotlabs/Widget/Wiki_pages.php:99 +#: ../../view/theme/redbasic_c/php/config.php:95 +#: ../../view/theme/redbasic/php/config.php:94 +#: ../../addon/skeleton/Mod_Skeleton.php:51 +#: ../../addon/openclipatar/openclipatar.php:53 +#: ../../addon/wppost/Mod_Wppost.php:97 ../../addon/nsfw/Mod_Nsfw.php:61 +#: ../../addon/ijpost/Mod_Ijpost.php:72 ../../addon/dwpost/Mod_Dwpost.php:71 +#: ../../addon/likebanner/likebanner.php:57 +#: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:45 +#: ../../addon/ljpost/Mod_Ljpost.php:73 +#: ../../addon/startpage/Mod_Startpage.php:73 +#: ../../addon/diaspora/Mod_Diaspora.php:99 +#: ../../addon/photocache/Mod_Photocache.php:67 +#: ../../addon/hzfiles/hzfiles.php:86 ../../addon/mailtest/mailtest.php:100 +#: ../../addon/openstreetmap/openstreetmap.php:169 +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:56 ../../addon/rtof/Mod_Rtof.php:72 +#: ../../addon/jappixmini/Mod_Jappixmini.php:261 +#: ../../addon/channelreputation/channelreputation.php:142 +#: ../../addon/nofed/Mod_Nofed.php:53 ../../addon/redred/Mod_Redred.php:90 +#: ../../addon/logrot/logrot.php:35 +#: ../../addon/content_import/Mod_content_import.php:142 +#: ../../addon/frphotos/frphotos.php:97 +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:65 +#: ../../addon/chords/Mod_Chords.php:60 +#: ../../addon/libertree/Mod_Libertree.php:70 +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:92 +#: ../../addon/statusnet/Mod_Statusnet.php:193 +#: ../../addon/statusnet/Mod_Statusnet.php:251 +#: ../../addon/statusnet/Mod_Statusnet.php:306 +#: ../../addon/statusnet/statusnet.php:602 +#: ../../addon/twitter/Mod_Twitter.php:184 +#: ../../addon/smileybutton/Mod_Smileybutton.php:55 +#: ../../addon/cart/Settings/Cart.php:114 ../../addon/cart/cart.php:1264 +#: ../../addon/cart/submodules/manualcat.php:248 +#: ../../addon/cart/submodules/hzservices.php:640 +#: ../../addon/cart/submodules/subscriptions.php:410 +#: ../../addon/piwik/piwik.php:95 ../../addon/pageheader/Mod_Pageheader.php:54 +#: ../../addon/xmpp/Mod_Xmpp.php:70 ../../addon/pumpio/Mod_Pumpio.php:115 +#: ../../addon/redfiles/redfiles.php:124 ../../addon/hubwall/hubwall.php:95 +#: ../../include/js_strings.php:22 +msgid "Submit" msgstr "" -#: ../../Zotlabs/Module/Item.php:649 -msgid "Empty post discarded." +#: ../../Zotlabs/Module/Articles.php:51 +msgid "Articles App" msgstr "" -#: ../../Zotlabs/Module/Item.php:1058 -msgid "Duplicate post suppressed." +#: ../../Zotlabs/Module/Articles.php:52 +msgid "Create interactive articles" msgstr "" -#: ../../Zotlabs/Module/Item.php:1203 -msgid "System error. Post not saved." +#: ../../Zotlabs/Module/Articles.php:115 +msgid "Add Article" msgstr "" -#: ../../Zotlabs/Module/Item.php:1239 -msgid "Your comment is awaiting approval." +#: ../../Zotlabs/Module/Articles.php:222 ../../Zotlabs/Lib/Apps.php:324 +#: ../../include/nav.php:514 +msgid "Articles" msgstr "" -#: ../../Zotlabs/Module/Item.php:1356 -msgid "Unable to obtain post information from database." +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Article_edit.php:17 +#: ../../Zotlabs/Module/Article_edit.php:33 +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editwebpage.php:80 ../../Zotlabs/Module/Editpost.php:24 +#: ../../Zotlabs/Module/Card_edit.php:17 ../../Zotlabs/Module/Card_edit.php:33 +msgid "Item not found" msgstr "" -#: ../../Zotlabs/Module/Item.php:1363 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." +#: ../../Zotlabs/Module/Editlayout.php:128 ../../Zotlabs/Module/Layouts.php:129 +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Name" msgstr "" -#: ../../Zotlabs/Module/Item.php:1370 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." +#: ../../Zotlabs/Module/Editlayout.php:129 ../../Zotlabs/Module/Layouts.php:132 +msgid "Layout Description (Optional)" +msgstr "" + +#: ../../Zotlabs/Module/Editlayout.php:137 +msgid "Edit Layout" +msgstr "" + +#: ../../Zotlabs/Module/Editlayout.php:140 ../../Zotlabs/Module/Cdav.php:1035 +#: ../../Zotlabs/Module/Cdav.php:1341 ../../Zotlabs/Module/Article_edit.php:131 +#: ../../Zotlabs/Module/Admin/Addons.php:426 +#: ../../Zotlabs/Module/Oauth2.php:117 ../../Zotlabs/Module/Oauth2.php:145 +#: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Wiki.php:368 +#: ../../Zotlabs/Module/Wiki.php:401 ../../Zotlabs/Module/Profile_photo.php:505 +#: ../../Zotlabs/Module/Connedit.php:941 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:801 +#: ../../Zotlabs/Module/Editwebpage.php:169 +#: ../../Zotlabs/Module/Editpost.php:110 ../../Zotlabs/Module/Filer.php:55 +#: ../../Zotlabs/Module/Cover_photo.php:434 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Card_edit.php:131 +#: ../../Zotlabs/Module/Oauth.php:112 ../../Zotlabs/Module/Oauth.php:138 +#: ../../addon/hsse/hsse.php:209 ../../addon/hsse/hsse.php:258 +#: ../../include/conversation.php:1415 ../../include/conversation.php:1464 +msgid "Cancel" +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:86 +#: ../../Zotlabs/Module/Import_items.php:120 ../../Zotlabs/Module/Share.php:71 +#: ../../Zotlabs/Module/Cloud.php:126 ../../Zotlabs/Module/Group.php:98 +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:82 +#: ../../Zotlabs/Module/Like.php:301 ../../Zotlabs/Web/WebServer.php:122 +#: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:75 +#: ../../addon/frphotos/frphotos.php:82 ../../addon/redfiles/redfiles.php:109 +#: ../../include/items.php:416 +msgid "Permission denied" +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:111 +msgid "Profile Visibility Editor" +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:113 ../../Zotlabs/Lib/Apps.php:361 +#: ../../include/channel.php:1766 +msgid "Profile" +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Click on a contact to add or remove." +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:124 +msgid "Visible To" +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:140 +#: ../../Zotlabs/Module/Connections.php:217 +msgid "All Connections" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:765 ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:767 ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:828 +msgid "INVALID EVENT DISMISSED!" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:829 +msgid "Summary: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:829 ../../Zotlabs/Module/Cdav.php:830 +#: ../../Zotlabs/Module/Cdav.php:837 ../../Zotlabs/Module/Embedphotos.php:174 +#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1254 +#: ../../Zotlabs/Lib/Activity.php:1067 ../../Zotlabs/Lib/Apps.php:1114 +#: ../../Zotlabs/Lib/Apps.php:1198 ../../Zotlabs/Storage/Browser.php:164 +#: ../../Zotlabs/Widget/Portfolio.php:95 ../../Zotlabs/Widget/Album.php:84 +#: ../../addon/pubcrawl/as.php:1009 ../../include/conversation.php:1166 +msgid "Unknown" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:830 +msgid "Date: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:831 ../../Zotlabs/Module/Cdav.php:838 +msgid "Reason: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:836 +msgid "INVALID CARD DISMISSED!" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:837 +msgid "Name: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:857 +msgid "CardDAV App" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:858 +msgid "CalDAV capable addressbook" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:921 +#: ../../Zotlabs/Module/Channel_calendar.php:401 +msgid "Link to source" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:987 ../../Zotlabs/Module/Events.php:462 +msgid "Event title" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:988 ../../Zotlabs/Module/Events.php:468 +msgid "Start date and time" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:989 +msgid "End date and time" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:990 ../../Zotlabs/Module/Events.php:475 +#: ../../Zotlabs/Module/Appman.php:145 ../../Zotlabs/Module/Rbmark.php:101 +#: ../../addon/rendezvous/rendezvous.php:173 +#: ../../addon/cart/submodules/manualcat.php:260 +#: ../../addon/cart/submodules/hzservices.php:652 +msgid "Description" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:991 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Events.php:477 ../../Zotlabs/Module/Profiles.php:509 +#: ../../Zotlabs/Module/Profiles.php:734 ../../Zotlabs/Module/Pubsites.php:52 +#: ../../include/js_strings.php:25 +msgid "Location" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1012 ../../Zotlabs/Module/Events.php:690 +#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Cal.php:345 ../../Zotlabs/Module/Photos.php:944 +msgid "Previous" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1013 ../../Zotlabs/Module/Events.php:691 +#: ../../Zotlabs/Module/Events.php:700 ../../Zotlabs/Module/Setup.php:260 +#: ../../Zotlabs/Module/Cal.php:339 ../../Zotlabs/Module/Cal.php:346 +#: ../../Zotlabs/Module/Photos.php:953 +msgid "Next" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1014 ../../Zotlabs/Module/Events.php:701 +#: ../../Zotlabs/Module/Cal.php:347 +msgid "Today" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1015 ../../Zotlabs/Module/Events.php:696 +msgid "Month" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1016 ../../Zotlabs/Module/Events.php:697 +msgid "Week" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1017 ../../Zotlabs/Module/Events.php:698 +msgid "Day" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1018 +msgid "List month" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1019 +msgid "List week" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1020 +msgid "List day" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1028 +msgid "More" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1029 +msgid "Less" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1030 ../../Zotlabs/Module/Cdav.php:1339 +#: ../../Zotlabs/Module/Admin/Addons.php:456 ../../Zotlabs/Module/Oauth2.php:58 +#: ../../Zotlabs/Module/Oauth2.php:144 ../../Zotlabs/Module/Connedit.php:939 +#: ../../Zotlabs/Module/Profiles.php:799 ../../Zotlabs/Module/Oauth.php:53 +#: ../../Zotlabs/Module/Oauth.php:137 ../../Zotlabs/Lib/Apps.php:536 +msgid "Update" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1031 +msgid "Select calendar" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1032 ../../Zotlabs/Widget/Cdav.php:143 +msgid "Channel Calendars" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1032 ../../Zotlabs/Widget/Cdav.php:129 +#: ../../Zotlabs/Widget/Cdav.php:143 +msgid "CalDAV Calendars" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1034 +msgid "Delete all" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1037 +msgid "Sorry! Editing of recurrent events is not yet implemented." +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1047 ../../Zotlabs/Widget/Appcategories.php:43 +#: ../../include/contact_widgets.php:96 ../../include/contact_widgets.php:139 +#: ../../include/contact_widgets.php:184 ../../include/taxonomy.php:409 +#: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511 +#: ../../include/taxonomy.php:532 +msgid "Categories" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1323 ../../Zotlabs/Module/Sharedwithme.php:104 +#: ../../Zotlabs/Module/Admin/Channels.php:159 +#: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 +#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Connedit.php:923 +#: ../../Zotlabs/Module/Chat.php:259 ../../Zotlabs/Module/Group.php:154 +#: ../../Zotlabs/Module/Oauth.php:113 ../../Zotlabs/Module/Oauth.php:139 +#: ../../Zotlabs/Lib/NativeWikiPage.php:561 +#: ../../Zotlabs/Storage/Browser.php:291 +#: ../../Zotlabs/Widget/Wiki_page_history.php:22 +#: ../../addon/rendezvous/rendezvous.php:172 +msgid "Name" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1324 ../../Zotlabs/Module/Connedit.php:924 +msgid "Organisation" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1325 ../../Zotlabs/Module/Connedit.php:925 +msgid "Title" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1326 ../../Zotlabs/Module/Connedit.php:926 +#: ../../Zotlabs/Module/Profiles.php:786 +msgid "Phone" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1327 +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../Zotlabs/Module/Connedit.php:927 ../../Zotlabs/Module/Profiles.php:787 +#: ../../addon/openid/MysqlProvider.php:56 +#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/Mod_Rtof.php:57 +#: ../../addon/redred/Mod_Redred.php:71 ../../include/network.php:1731 +msgid "Email" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1328 ../../Zotlabs/Module/Connedit.php:928 +#: ../../Zotlabs/Module/Profiles.php:788 +msgid "Instant messenger" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1329 ../../Zotlabs/Module/Connedit.php:929 +#: ../../Zotlabs/Module/Profiles.php:789 +msgid "Website" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1330 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Admin/Channels.php:160 +#: ../../Zotlabs/Module/Connedit.php:930 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Profiles.php:790 +msgid "Address" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1331 ../../Zotlabs/Module/Connedit.php:931 +#: ../../Zotlabs/Module/Profiles.php:791 +msgid "Note" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1332 ../../Zotlabs/Module/Connedit.php:932 +#: ../../Zotlabs/Module/Profiles.php:792 ../../include/event.php:1329 +#: ../../include/connections.php:723 +msgid "Mobile" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1333 ../../Zotlabs/Module/Connedit.php:933 +#: ../../Zotlabs/Module/Profiles.php:793 ../../include/event.php:1330 +#: ../../include/connections.php:724 +msgid "Home" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1334 ../../Zotlabs/Module/Connedit.php:934 +#: ../../Zotlabs/Module/Profiles.php:794 ../../include/event.php:1333 +#: ../../include/connections.php:727 +msgid "Work" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1336 ../../Zotlabs/Module/Connedit.php:936 +#: ../../Zotlabs/Module/Profiles.php:796 +#: ../../addon/jappixmini/Mod_Jappixmini.php:216 +msgid "Add Contact" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1337 ../../Zotlabs/Module/Connedit.php:937 +#: ../../Zotlabs/Module/Profiles.php:797 +msgid "Add Field" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1342 ../../Zotlabs/Module/Connedit.php:942 +msgid "P.O. Box" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1343 ../../Zotlabs/Module/Connedit.php:943 +msgid "Additional" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1344 ../../Zotlabs/Module/Connedit.php:944 +msgid "Street" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1345 ../../Zotlabs/Module/Connedit.php:945 +msgid "Locality" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1346 ../../Zotlabs/Module/Connedit.php:946 +msgid "Region" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1347 ../../Zotlabs/Module/Connedit.php:947 +msgid "ZIP Code" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1348 ../../Zotlabs/Module/Connedit.php:948 +#: ../../Zotlabs/Module/Profiles.php:757 +msgid "Country" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1395 +msgid "Default Calendar" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1406 +msgid "Default Addressbook" +msgstr "" + +#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 +msgid "This site is not a directory server" +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:28 +msgid "Permission category name is required." +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:47 +msgid "Permission category saved." +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:62 +msgid "Permission Categories App" +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:63 +msgid "Create custom connection permission limits" +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:79 +msgid "" +"Use this form to create permission rules for various classes of people or " +"connections." +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:112 ../../Zotlabs/Lib/Apps.php:373 +msgid "Permission Categories" +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:120 +msgid "Permission category name" +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:121 ../../Zotlabs/Module/Tokens.php:181 +#: ../../Zotlabs/Module/Connedit.php:908 ../../Zotlabs/Module/Defperms.php:266 +msgid "My Settings" +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:123 ../../Zotlabs/Module/Tokens.php:183 +#: ../../Zotlabs/Module/Connedit.php:903 ../../Zotlabs/Module/Defperms.php:264 +msgid "inherited" +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:126 ../../Zotlabs/Module/Tokens.php:186 +#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Defperms.php:269 +msgid "Individual Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Permcats.php:127 ../../Zotlabs/Module/Tokens.php:187 +#: ../../Zotlabs/Module/Connedit.php:911 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can not change those settings here." +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:41 ../../Zotlabs/Module/Ochannel.php:32 +#: ../../Zotlabs/Module/Chat.php:31 ../../addon/chess/Mod_Chess.php:343 +msgid "You must be logged in to see this page." +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:98 ../../Zotlabs/Module/Hcard.php:37 +#: ../../Zotlabs/Module/Profile.php:45 +msgid "Posts and comments" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:105 ../../Zotlabs/Module/Hcard.php:44 +#: ../../Zotlabs/Module/Profile.php:52 +msgid "Only posts" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:165 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:182 ../../Zotlabs/Module/Network.php:173 +msgid "Search Results For:" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:217 ../../Zotlabs/Module/Hq.php:134 +#: ../../Zotlabs/Module/Pubstream.php:94 ../../Zotlabs/Module/Display.php:80 +#: ../../Zotlabs/Module/Network.php:203 +msgid "Reset form" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:472 ../../Zotlabs/Module/Display.php:378 +msgid "" +"You must enable javascript for your browser to be able to view this content." msgstr "" #: ../../Zotlabs/Module/Lang.php:17 @@ -8023,93 +1025,116 @@ msgstr "" msgid "Change UI language" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:186 -msgid "Comanche page description language help" +#: ../../Zotlabs/Module/Uexport.php:61 +msgid "Channel Export App" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:190 -msgid "Layout Description" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "Export your channel" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:195 -msgid "Download PDL file" +#: ../../Zotlabs/Module/Uexport.php:72 ../../Zotlabs/Module/Uexport.php:73 +msgid "Export Channel" msgstr "" -#: ../../Zotlabs/Module/Like.php:56 -msgid "Like/Dislike" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:61 -msgid "This action is restricted to members." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:62 +#: ../../Zotlabs/Module/Uexport.php:74 msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." msgstr "" -#: ../../Zotlabs/Module/Like.php:111 ../../Zotlabs/Module/Like.php:137 -#: ../../Zotlabs/Module/Like.php:175 -msgid "Invalid request." +#: ../../Zotlabs/Module/Uexport.php:75 +msgid "Export Content" msgstr "" -#: ../../Zotlabs/Module/Like.php:152 -msgid "thing" +#: ../../Zotlabs/Module/Uexport.php:76 +msgid "" +"Export your channel information and recent content to a JSON backup that can " +"be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for " +"this download to begin." msgstr "" -#: ../../Zotlabs/Module/Like.php:198 -msgid "Channel unavailable." +#: ../../Zotlabs/Module/Uexport.php:78 +msgid "Export your posts from a given year." msgstr "" -#: ../../Zotlabs/Module/Like.php:246 -msgid "Previous action reversed." +#: ../../Zotlabs/Module/Uexport.php:80 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." msgstr "" -#: ../../Zotlabs/Module/Like.php:451 +#: ../../Zotlabs/Module/Uexport.php:81 #, php-format -msgid "%1$s agrees with %2$s's %3$s" +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:453 +#: ../../Zotlabs/Module/Uexport.php:82 #, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:455 +#: ../../Zotlabs/Module/Uexport.php:83 #, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" +msgid "" +"These content files may be imported or restored by visiting " +"%2$s on any site containing your channel. For best results please import " +"or restore these in date order (oldest first)." msgstr "" -#: ../../Zotlabs/Module/Like.php:457 +#: ../../Zotlabs/Module/Hq.php:140 +msgid "Welcome to Hubzilla!" +msgstr "" + +#: ../../Zotlabs/Module/Hq.php:140 +msgid "You have got no unseen posts..." +msgstr "" + +#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:516 +#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:67 +#: ../../Zotlabs/Module/Directory.php:72 ../../Zotlabs/Module/Display.php:29 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "" + +#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:352 +#: ../../Zotlabs/Lib/Apps.php:352 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../Zotlabs/Widget/Activity_filter.php:151 ../../include/text.php:1103 +#: ../../include/text.php:1115 ../../include/acl_selectors.php:118 +#: ../../include/nav.php:186 +msgid "Search" +msgstr "" + +#: ../../Zotlabs/Module/Search.php:230 #, php-format -msgid "%1$s is attending %2$s's %3$s" +msgid "Items tagged with: %s" msgstr "" -#: ../../Zotlabs/Module/Like.php:459 +#: ../../Zotlabs/Module/Search.php:232 #, php-format -msgid "%1$s is not attending %2$s's %3$s" +msgid "Search results for: %s" msgstr "" -#: ../../Zotlabs/Module/Like.php:461 -#, php-format -msgid "%1$s may attend %2$s's %3$s" +#: ../../Zotlabs/Module/Pubstream.php:20 +msgid "Public Stream App" msgstr "" -#: ../../Zotlabs/Module/Like.php:572 -msgid "Action completed." +#: ../../Zotlabs/Module/Pubstream.php:21 +msgid "The unmoderated public stream of this hub" msgstr "" -#: ../../Zotlabs/Module/Like.php:573 -msgid "Thank you." -msgstr "" - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "" - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" +#: ../../Zotlabs/Module/Pubstream.php:109 ../../Zotlabs/Lib/Apps.php:375 +#: ../../Zotlabs/Widget/Notifications.php:142 +msgid "Public Stream" msgstr "" #: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 @@ -8164,306 +1189,28 @@ msgstr "" msgid "Use this form to drop the location if the hub is no longer operating." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." +#: ../../Zotlabs/Module/Apporder.php:47 +msgid "Change Order of Pinned Navbar Apps" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." +#: ../../Zotlabs/Module/Apporder.php:47 +msgid "Change Order of App Tray Apps" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 -#, php-format -msgid "Site Member (%s)" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:68 +#: ../../Zotlabs/Module/Apporder.php:48 msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +"Use arrows to move the corresponding app left (top) or right (bottom) in the " +"navbar" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your password has been reset as requested." +#: ../../Zotlabs/Module/Apporder.php:48 +msgid "Use arrows to move the corresponding app up or down in the app tray" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Your new password is" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "Save or copy your new password - and then" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "click here to login" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:96 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:117 -#, php-format -msgid "Your password has changed at %s" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Forgot your Password?" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:131 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:132 -msgid "Email Address" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:133 ../../Zotlabs/Module/Pdledit.php:77 -msgid "Reset" -msgstr "" - -#: ../../Zotlabs/Module/Magic.php:76 -msgid "Hub not found." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:73 -msgid "Unable to lookup recipient." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:80 -msgid "Unable to communicate with requested channel." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:87 -msgid "Cannot verify requested channel." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:105 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:160 -msgid "Messages" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:173 -msgid "message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:214 -msgid "Message recalled." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:227 -msgid "Conversation removed." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:270 -msgid "Requested channel is not in this network" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:278 -msgid "Send Private Message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 -msgid "To:" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 -msgid "Subject:" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 -msgid "Attach file" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:289 -msgid "Send" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:393 -msgid "Delete message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:394 -msgid "Delivery report" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:395 -msgid "Recall message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:397 -msgid "Message has been recalled." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:414 -msgid "Delete Conversation" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:416 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:420 -msgid "Send Reply" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:425 -#, php-format -msgid "Your message for %s (%s):" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:138 ../../Zotlabs/Module/New_channel.php:147 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:145 -msgid "Create a new channel" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:171 -msgid "Current Channel" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:173 -msgid "Switch to one of your channels by selecting it." -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:174 -msgid "Default Channel" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Make Default" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:178 -#, php-format -msgid "%d new messages" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:179 -#, php-format -msgid "%d new introductions" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:181 -msgid "Delegated Channel" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:67 -msgid "Unable to update menu." -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:78 -msgid "Unable to create menu." -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:160 ../../Zotlabs/Module/Menu.php:173 -msgid "Menu Name" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:160 -msgid "Unique name (not visible on webpage) - required" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:161 ../../Zotlabs/Module/Menu.php:174 -msgid "Menu Title" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:161 -msgid "Visible on webpage - leave empty for no title" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:162 -msgid "Allow Bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 -msgid "Menu may be used to store saved bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:224 -msgid "Submit and proceed" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:180 -msgid "Bookmarks allowed" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:182 -msgid "Delete this menu" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:183 ../../Zotlabs/Module/Menu.php:218 -msgid "Edit menu contents" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:184 -msgid "Edit this menu" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:200 -msgid "Menu could not be deleted." -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:208 ../../Zotlabs/Module/Mitem.php:31 +#: ../../Zotlabs/Module/Mitem.php:31 ../../Zotlabs/Module/Menu.php:208 msgid "Menu not found." msgstr "" -#: ../../Zotlabs/Module/Menu.php:213 -msgid "Edit Menu" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:217 -msgid "Add or remove entries to this menu" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:219 -msgid "Menu name" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:219 -msgid "Must be unique, only seen by you" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:220 -msgid "Menu title" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:220 -msgid "Menu title as seen by others" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:221 -msgid "Allow bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:231 ../../Zotlabs/Module/Mitem.php:134 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "" - #: ../../Zotlabs/Module/Mitem.php:63 msgid "Unable to create element." msgstr "" @@ -8476,6 +1223,11 @@ msgstr "" msgid "Unable to add menu element." msgstr "" +#: ../../Zotlabs/Module/Mitem.php:134 ../../Zotlabs/Module/Menu.php:231 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "" + #: ../../Zotlabs/Module/Mitem.php:167 ../../Zotlabs/Module/Mitem.php:246 msgid "Menu Item Permissions" msgstr "" @@ -8501,6 +1253,125 @@ msgstr "" msgid "Use magic-auth if available" msgstr "" +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 +#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Admin/Site.php:255 +#: ../../Zotlabs/Module/Settings/Channel.php:309 +#: ../../Zotlabs/Module/Settings/Display.php:89 +#: ../../Zotlabs/Module/Import.php:635 ../../Zotlabs/Module/Import.php:639 +#: ../../Zotlabs/Module/Import.php:640 ../../Zotlabs/Module/Api.php:99 +#: ../../Zotlabs/Module/Photos.php:670 ../../Zotlabs/Module/Wiki.php:227 +#: ../../Zotlabs/Module/Wiki.php:228 ../../Zotlabs/Module/Connedit.php:406 +#: ../../Zotlabs/Module/Connedit.php:796 ../../Zotlabs/Module/Menu.php:162 +#: ../../Zotlabs/Module/Menu.php:221 ../../Zotlabs/Module/Defperms.php:197 +#: ../../Zotlabs/Module/Profiles.php:681 ../../Zotlabs/Module/Sources.php:124 +#: ../../Zotlabs/Module/Sources.php:159 +#: ../../Zotlabs/Module/Filestorage.php:198 +#: ../../Zotlabs/Module/Filestorage.php:206 ../../Zotlabs/Lib/Libzotdir.php:162 +#: ../../Zotlabs/Lib/Libzotdir.php:163 ../../Zotlabs/Lib/Libzotdir.php:165 +#: ../../Zotlabs/Storage/Browser.php:411 ../../boot.php:1635 +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic_c/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:99 +#: ../../view/theme/redbasic/php/config.php:116 +#: ../../addon/wppost/Mod_Wppost.php:82 ../../addon/wppost/Mod_Wppost.php:86 +#: ../../addon/ijpost/Mod_Ijpost.php:61 ../../addon/dwpost/Mod_Dwpost.php:60 +#: ../../addon/ljpost/Mod_Ljpost.php:62 ../../addon/rtof/Mod_Rtof.php:49 +#: ../../addon/jappixmini/Mod_Jappixmini.php:161 +#: ../../addon/jappixmini/Mod_Jappixmini.php:191 +#: ../../addon/jappixmini/Mod_Jappixmini.php:199 +#: ../../addon/jappixmini/Mod_Jappixmini.php:203 +#: ../../addon/jappixmini/Mod_Jappixmini.php:207 +#: ../../addon/channelreputation/channelreputation.php:110 +#: ../../addon/nofed/Mod_Nofed.php:42 ../../addon/redred/Mod_Redred.php:63 +#: ../../addon/content_import/Mod_content_import.php:137 +#: ../../addon/content_import/Mod_content_import.php:138 +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:45 +#: ../../addon/libertree/Mod_Libertree.php:59 +#: ../../addon/statusnet/Mod_Statusnet.php:260 +#: ../../addon/statusnet/Mod_Statusnet.php:282 +#: ../../addon/statusnet/Mod_Statusnet.php:291 +#: ../../addon/twitter/Mod_Twitter.php:162 +#: ../../addon/twitter/Mod_Twitter.php:171 +#: ../../addon/smileybutton/Mod_Smileybutton.php:44 +#: ../../addon/cart/Settings/Cart.php:59 ../../addon/cart/Settings/Cart.php:71 +#: ../../addon/cart/cart.php:1258 +#: ../../addon/cart/submodules/paypalbutton.php:87 +#: ../../addon/cart/submodules/paypalbutton.php:95 +#: ../../addon/cart/submodules/manualcat.php:63 +#: ../../addon/cart/submodules/manualcat.php:254 +#: ../../addon/cart/submodules/manualcat.php:258 +#: ../../addon/cart/submodules/hzservices.php:64 +#: ../../addon/cart/submodules/hzservices.php:646 +#: ../../addon/cart/submodules/hzservices.php:650 +#: ../../addon/cart/submodules/subscriptions.php:153 +#: ../../addon/cart/submodules/subscriptions.php:425 +#: ../../addon/pumpio/Mod_Pumpio.php:94 ../../addon/pumpio/Mod_Pumpio.php:98 +#: ../../addon/pumpio/Mod_Pumpio.php:102 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +msgid "No" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 +#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Admin/Site.php:257 +#: ../../Zotlabs/Module/Settings/Channel.php:309 +#: ../../Zotlabs/Module/Settings/Display.php:89 +#: ../../Zotlabs/Module/Import.php:635 ../../Zotlabs/Module/Import.php:639 +#: ../../Zotlabs/Module/Import.php:640 ../../Zotlabs/Module/Api.php:98 +#: ../../Zotlabs/Module/Photos.php:670 ../../Zotlabs/Module/Wiki.php:227 +#: ../../Zotlabs/Module/Wiki.php:228 ../../Zotlabs/Module/Connedit.php:406 +#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 +#: ../../Zotlabs/Module/Defperms.php:197 ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +#: ../../Zotlabs/Module/Filestorage.php:198 +#: ../../Zotlabs/Module/Filestorage.php:206 ../../Zotlabs/Lib/Libzotdir.php:162 +#: ../../Zotlabs/Lib/Libzotdir.php:163 ../../Zotlabs/Lib/Libzotdir.php:165 +#: ../../Zotlabs/Storage/Browser.php:411 ../../boot.php:1635 +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic_c/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:99 +#: ../../view/theme/redbasic/php/config.php:116 +#: ../../addon/wppost/Mod_Wppost.php:82 ../../addon/wppost/Mod_Wppost.php:86 +#: ../../addon/ijpost/Mod_Ijpost.php:61 ../../addon/dwpost/Mod_Dwpost.php:60 +#: ../../addon/ljpost/Mod_Ljpost.php:62 ../../addon/rtof/Mod_Rtof.php:49 +#: ../../addon/jappixmini/Mod_Jappixmini.php:161 +#: ../../addon/jappixmini/Mod_Jappixmini.php:191 +#: ../../addon/jappixmini/Mod_Jappixmini.php:199 +#: ../../addon/jappixmini/Mod_Jappixmini.php:203 +#: ../../addon/jappixmini/Mod_Jappixmini.php:207 +#: ../../addon/channelreputation/channelreputation.php:110 +#: ../../addon/nofed/Mod_Nofed.php:42 ../../addon/redred/Mod_Redred.php:63 +#: ../../addon/content_import/Mod_content_import.php:137 +#: ../../addon/content_import/Mod_content_import.php:138 +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:45 +#: ../../addon/libertree/Mod_Libertree.php:59 +#: ../../addon/statusnet/Mod_Statusnet.php:260 +#: ../../addon/statusnet/Mod_Statusnet.php:282 +#: ../../addon/statusnet/Mod_Statusnet.php:291 +#: ../../addon/twitter/Mod_Twitter.php:162 +#: ../../addon/twitter/Mod_Twitter.php:171 +#: ../../addon/smileybutton/Mod_Smileybutton.php:44 +#: ../../addon/cart/Settings/Cart.php:59 ../../addon/cart/Settings/Cart.php:71 +#: ../../addon/cart/cart.php:1258 +#: ../../addon/cart/submodules/paypalbutton.php:87 +#: ../../addon/cart/submodules/paypalbutton.php:95 +#: ../../addon/cart/submodules/manualcat.php:63 +#: ../../addon/cart/submodules/manualcat.php:254 +#: ../../addon/cart/submodules/manualcat.php:258 +#: ../../addon/cart/submodules/hzservices.php:64 +#: ../../addon/cart/submodules/hzservices.php:646 +#: ../../addon/cart/submodules/hzservices.php:650 +#: ../../addon/cart/submodules/subscriptions.php:153 +#: ../../addon/cart/submodules/subscriptions.php:425 +#: ../../addon/pumpio/Mod_Pumpio.php:94 ../../addon/pumpio/Mod_Pumpio.php:98 +#: ../../addon/pumpio/Mod_Pumpio.php:102 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +msgid "Yes" +msgstr "" + #: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:257 msgid "Open link in new window" msgstr "" @@ -8581,40 +1452,316 @@ msgstr "" msgid "Link text" msgstr "" -#: ../../Zotlabs/Module/Moderate.php:65 -msgid "Comment approved" +#: ../../Zotlabs/Module/Events.php:110 +#: ../../Zotlabs/Module/Channel_calendar.php:87 +msgid "Event can not end before it has started." msgstr "" -#: ../../Zotlabs/Module/Moderate.php:69 -msgid "Comment deleted" +#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 +#: ../../Zotlabs/Module/Events.php:143 +#: ../../Zotlabs/Module/Channel_calendar.php:89 +#: ../../Zotlabs/Module/Channel_calendar.php:97 +#: ../../Zotlabs/Module/Channel_calendar.php:114 +msgid "Unable to generate preview." msgstr "" -#: ../../Zotlabs/Module/Mood.php:134 -msgid "Mood App" +#: ../../Zotlabs/Module/Events.php:119 +#: ../../Zotlabs/Module/Channel_calendar.php:95 +msgid "Event title and start time are required." msgstr "" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Module/Mood.php:155 -msgid "Set your current mood and tell your friends" +#: ../../Zotlabs/Module/Events.php:141 ../../Zotlabs/Module/Events.php:265 +#: ../../Zotlabs/Module/Channel_calendar.php:112 +#: ../../Zotlabs/Module/Channel_calendar.php:224 +msgid "Event not found." msgstr "" -#: ../../Zotlabs/Module/Network.php:109 -msgid "No such group" +#: ../../Zotlabs/Module/Events.php:260 +#: ../../Zotlabs/Module/Channel_calendar.php:219 +#: ../../Zotlabs/Module/Tagger.php:73 ../../Zotlabs/Module/Like.php:394 +#: ../../include/conversation.php:119 ../../include/text.php:2118 +#: ../../include/event.php:1169 +msgid "event" msgstr "" -#: ../../Zotlabs/Module/Network.php:158 -msgid "No such channel" +#: ../../Zotlabs/Module/Events.php:462 +msgid "Edit event title" msgstr "" -#: ../../Zotlabs/Module/Network.php:242 -msgid "Privacy group is empty" +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:467 +#: ../../Zotlabs/Module/Appman.php:143 ../../Zotlabs/Module/Appman.php:144 +#: ../../Zotlabs/Module/Profiles.php:745 ../../Zotlabs/Module/Profiles.php:749 +#: ../../include/datetime.php:211 +msgid "Required" msgstr "" -#: ../../Zotlabs/Module/Network.php:252 -msgid "Privacy group: " +#: ../../Zotlabs/Module/Events.php:464 +msgid "Categories (comma-separated list)" msgstr "" -#: ../../Zotlabs/Module/Network.php:325 -msgid "Invalid channel." +#: ../../Zotlabs/Module/Events.php:465 +msgid "Edit Category" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:465 +msgid "Category" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:468 +msgid "Edit start date and time" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Events.php:472 +msgid "Finish date and time are not known or not relevant" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:471 +msgid "Edit finish date and time" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:471 +msgid "Finish date and time" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Module/Events.php:474 +msgid "Adjust for viewer timezone" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:473 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "" + +#: ../../Zotlabs/Module/Events.php:475 +msgid "Edit Description" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:477 +msgid "Edit Location" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:480 ../../Zotlabs/Module/Photos.php:1097 +#: ../../Zotlabs/Module/Webpages.php:262 ../../Zotlabs/Lib/ThreadItem.php:806 +#: ../../addon/hsse/hsse.php:153 ../../include/conversation.php:1359 +msgid "Preview" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:481 ../../addon/hsse/hsse.php:225 +#: ../../include/conversation.php:1431 +msgid "Permission settings" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:491 +msgid "Timezone:" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:496 +msgid "Advanced Options" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:607 ../../Zotlabs/Module/Cal.php:264 +msgid "l, F j" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:635 +#: ../../Zotlabs/Module/Channel_calendar.php:385 +msgid "Edit event" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:637 +#: ../../Zotlabs/Module/Channel_calendar.php:387 +msgid "Delete event" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:663 ../../Zotlabs/Module/Cal.php:314 +#: ../../include/text.php:1937 +msgid "Link to Source" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:670 +#: ../../Zotlabs/Module/Channel_calendar.php:415 +msgid "calendar" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:689 ../../Zotlabs/Module/Cal.php:337 +msgid "Edit Event" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:689 ../../Zotlabs/Module/Cal.php:337 +msgid "Create Event" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:692 ../../Zotlabs/Module/Cal.php:340 +#: ../../include/channel.php:1769 +msgid "Export" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:732 +msgid "Event removed" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:735 +#: ../../Zotlabs/Module/Channel_calendar.php:448 +msgid "Failed to remove event" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 +msgid "App installed." +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:49 +msgid "Malformed app." +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:132 +msgid "Embed code" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:138 +msgid "Edit App" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:138 +msgid "Create App" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:143 +msgid "Name of app" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:144 +msgid "Location (URL) of app" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:146 +msgid "Photo icon URL" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:146 +msgid "80 x 80 pixels - optional" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:147 +msgid "Categories (optional, comma separated list)" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:148 +msgid "Version ID" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:149 +msgid "Price of app" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:150 +msgid "Location (URL) to purchase app" +msgstr "" + +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "" + +#: ../../Zotlabs/Module/Magic.php:76 +msgid "Hub not found." +msgstr "" + +#: ../../Zotlabs/Module/Subthread.php:112 ../../Zotlabs/Module/Tagger.php:69 +#: ../../Zotlabs/Module/Like.php:392 ../../Zotlabs/Lib/Activity.php:2019 +#: ../../addon/redphotos/redphotohelper.php:71 +#: ../../addon/diaspora/Receiver.php:1565 ../../addon/pubcrawl/as.php:1558 +#: ../../include/conversation.php:116 ../../include/text.php:2115 +msgid "photo" +msgstr "" + +#: ../../Zotlabs/Module/Subthread.php:112 ../../Zotlabs/Module/Like.php:392 +#: ../../Zotlabs/Lib/Activity.php:2019 ../../addon/diaspora/Receiver.php:1565 +#: ../../addon/pubcrawl/as.php:1558 ../../include/conversation.php:144 +#: ../../include/text.php:2121 +msgid "status" +msgstr "" + +#: ../../Zotlabs/Module/Subthread.php:143 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Subthread.php:145 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Article_edit.php:44 ../../Zotlabs/Module/Cal.php:63 +#: ../../Zotlabs/Module/Chanview.php:96 ../../Zotlabs/Module/Page.php:75 +#: ../../Zotlabs/Module/Wall_upload.php:31 ../../Zotlabs/Module/Block.php:41 +#: ../../Zotlabs/Module/Card_edit.php:44 +msgid "Channel not found." +msgstr "" + +#: ../../Zotlabs/Module/Article_edit.php:101 +#: ../../Zotlabs/Module/Editblock.php:116 ../../Zotlabs/Module/Chat.php:222 +#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 +#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 +#: ../../addon/hsse/hsse.php:95 ../../include/conversation.php:1298 +msgid "Insert web link" +msgstr "" + +#: ../../Zotlabs/Module/Article_edit.php:117 +#: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:671 +#: ../../Zotlabs/Module/Photos.php:1041 ../../Zotlabs/Module/Card_edit.php:117 +#: ../../addon/hsse/hsse.php:221 ../../include/conversation.php:1427 +msgid "Title (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Article_edit.php:128 +msgid "Edit Article" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:68 +msgid "Nothing to import." +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:83 +#: ../../Zotlabs/Module/Import.php:99 +msgid "Unable to download data from old server" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:77 ../../Zotlabs/Module/Import.php:106 +msgid "Imported file is empty." +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:93 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:108 +msgid "Import completed" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:125 +msgid "Import Items" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:126 +msgid "Use this form to import existing posts and content from an export file." +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:127 +#: ../../Zotlabs/Module/Import.php:629 +msgid "File to Upload" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:147 ../../Zotlabs/Module/Manage.php:138 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:157 +#: ../../Zotlabs/Module/New_channel.php:164 +#: ../../Zotlabs/Module/Connedit.php:869 ../../Zotlabs/Module/Defperms.php:256 +#: ../../Zotlabs/Widget/Notifications.php:162 ../../include/nav.php:326 +msgid "Loading" msgstr "" #: ../../Zotlabs/Module/New_channel.php:159 @@ -8641,13 +1788,13 @@ msgid "Channel name" msgstr "" #: ../../Zotlabs/Module/New_channel.php:177 -#: ../../Zotlabs/Module/Register.php:260 +#: ../../Zotlabs/Module/Register.php:263 msgid "Choose a short nickname" msgstr "" #: ../../Zotlabs/Module/New_channel.php:178 -#: ../../Zotlabs/Module/Register.php:261 #: ../../Zotlabs/Module/Settings/Channel.php:535 +#: ../../Zotlabs/Module/Register.php:264 msgid "Channel role and privacy" msgstr "" @@ -8658,7 +1805,7 @@ msgid "" msgstr "" #: ../../Zotlabs/Module/New_channel.php:178 -#: ../../Zotlabs/Module/Register.php:261 +#: ../../Zotlabs/Module/Register.php:264 msgid "Read more about channel permission roles" msgstr "" @@ -8682,1090 +1829,6 @@ msgstr "" msgid "Validate" msgstr "" -#: ../../Zotlabs/Module/Notes.php:56 -msgid "Notes App" -msgstr "" - -#: ../../Zotlabs/Module/Notes.php:57 -msgid "A simple notes app with a widget (note: notes are not encrypted)" -msgstr "" - -#: ../../Zotlabs/Module/Notifications.php:55 ../../Zotlabs/Module/Notify.php:61 -msgid "No more system notifications." -msgstr "" - -#: ../../Zotlabs/Module/Notifications.php:59 ../../Zotlabs/Module/Notify.php:65 -msgid "System Notifications" -msgstr "" - -#: ../../Zotlabs/Module/Oauth.php:45 -msgid "Name is required" -msgstr "" - -#: ../../Zotlabs/Module/Oauth.php:49 -msgid "Key and Secret are required" -msgstr "" - -#: ../../Zotlabs/Module/Oauth.php:100 -msgid "OAuth Apps Manager App" -msgstr "" - -#: ../../Zotlabs/Module/Oauth.php:101 -msgid "OAuth authentication tokens for mobile and remote apps" -msgstr "" - -#: ../../Zotlabs/Module/Oauth.php:110 ../../Zotlabs/Module/Oauth.php:136 -#: ../../Zotlabs/Module/Oauth.php:172 ../../Zotlabs/Module/Oauth2.php:143 -#: ../../Zotlabs/Module/Oauth2.php:193 -msgid "Add application" -msgstr "" - -#: ../../Zotlabs/Module/Oauth.php:113 ../../Zotlabs/Module/Oauth2.php:118 -#: ../../Zotlabs/Module/Oauth2.php:146 -msgid "Name of application" -msgstr "" - -#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:140 -msgid "Consumer Key" -msgstr "" - -#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:115 -#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "" - -#: ../../Zotlabs/Module/Oauth.php:115 ../../Zotlabs/Module/Oauth.php:141 -#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 -msgid "Consumer Secret" -msgstr "" - -#: ../../Zotlabs/Module/Oauth.php:116 ../../Zotlabs/Module/Oauth.php:142 -#: ../../Zotlabs/Module/Oauth2.php:120 ../../Zotlabs/Module/Oauth2.php:148 -msgid "Redirect" -msgstr "" - -#: ../../Zotlabs/Module/Oauth.php:116 ../../Zotlabs/Module/Oauth2.php:120 -#: ../../Zotlabs/Module/Oauth2.php:148 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" -msgstr "" - -#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Oauth.php:143 -msgid "Icon url" -msgstr "" - -#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Sources.php:123 -#: ../../Zotlabs/Module/Sources.php:158 -msgid "Optional" -msgstr "" - -#: ../../Zotlabs/Module/Oauth.php:128 -msgid "Application not found." -msgstr "" - -#: ../../Zotlabs/Module/Oauth.php:171 -msgid "Connected OAuth Apps" -msgstr "" - -#: ../../Zotlabs/Module/Oauth.php:175 ../../Zotlabs/Module/Oauth2.php:196 -msgid "Client key starts with" -msgstr "" - -#: ../../Zotlabs/Module/Oauth.php:176 ../../Zotlabs/Module/Oauth2.php:197 -msgid "No name" -msgstr "" - -#: ../../Zotlabs/Module/Oauth.php:177 ../../Zotlabs/Module/Oauth2.php:198 -msgid "Remove authorization" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:54 -msgid "Name and Secret are required" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:106 -msgid "OAuth2 Apps Manager App" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:107 -msgid "OAuth2 authenticatication tokens for mobile and remote apps" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:115 -msgid "Add OAuth2 application" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:121 ../../Zotlabs/Module/Oauth2.php:149 -msgid "Grant Types" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:121 ../../Zotlabs/Module/Oauth2.php:122 -msgid "leave blank unless your application sepcifically requires this" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:122 ../../Zotlabs/Module/Oauth2.php:150 -msgid "Authorization scope" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:134 -msgid "OAuth2 Application not found." -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:149 ../../Zotlabs/Module/Oauth2.php:150 -msgid "leave blank unless your application specifically requires this" -msgstr "" - -#: ../../Zotlabs/Module/Oauth2.php:192 -msgid "Connected OAuth2 Apps" -msgstr "" - -#: ../../Zotlabs/Module/Card_edit.php:128 -msgid "Edit Card" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:59 -msgid "Invalid message" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:93 -msgid "no results" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "channel sync processed" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:111 -msgid "queued" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:115 -msgid "posted" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:119 -msgid "accepted for delivery" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "updated" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "update ignored" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:129 -msgid "permission denied" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:133 -msgid "recipient not found" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:136 -msgid "mail recalled" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:139 -msgid "duplicate mail received" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:142 -msgid "mail delivered" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:162 -#, php-format -msgid "Delivery report for %1$s" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:166 ../../Zotlabs/Widget/Wiki_pages.php:41 -#: ../../Zotlabs/Widget/Wiki_pages.php:98 -msgid "Options" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:167 -msgid "Redeliver" -msgstr "" - -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "" - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "" - -#: ../../Zotlabs/Module/Page.php:173 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " -"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "" - -#: ../../Zotlabs/Module/Pconfig.php:32 ../../Zotlabs/Module/Pconfig.php:68 -msgid "This setting requires special processing and editing has been blocked." -msgstr "" - -#: ../../Zotlabs/Module/Pconfig.php:57 -msgid "Configuration Editor" -msgstr "" - -#: ../../Zotlabs/Module/Pconfig.php:58 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please " -"leave this page unless you are comfortable with and knowledgeable about how " -"to correctly use this feature." -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:26 -msgid "Layout updated." -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:42 -msgid "PDL Editor App" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:43 -msgid "Provides the ability to edit system page layouts" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:56 ../../Zotlabs/Module/Pdledit.php:99 -msgid "Edit System Page Description" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:77 -msgid "(modified)" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:94 -msgid "Layout not found." -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:100 -msgid "Module Name:" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:101 -msgid "Layout Help" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:102 -msgid "Edit another layout" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:103 -msgid "System layout" -msgstr "" - -#: ../../Zotlabs/Module/Permcats.php:28 -msgid "Permission category name is required." -msgstr "" - -#: ../../Zotlabs/Module/Permcats.php:47 -msgid "Permission category saved." -msgstr "" - -#: ../../Zotlabs/Module/Permcats.php:62 -msgid "Permission Categories App" -msgstr "" - -#: ../../Zotlabs/Module/Permcats.php:63 -msgid "Create custom connection permission limits" -msgstr "" - -#: ../../Zotlabs/Module/Permcats.php:79 -msgid "" -"Use this form to create permission rules for various classes of people or " -"connections." -msgstr "" - -#: ../../Zotlabs/Module/Permcats.php:120 -msgid "Permission category name" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:78 -msgid "Page owner information could not be retrieved." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:113 -msgid "Album not found." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:103 -msgid "Delete Album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1098 -msgid "Delete Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:569 -msgid "No photos selected" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:618 -msgid "Access to this item is restricted." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:661 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:664 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:706 -msgid "Upload Photos" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:710 -msgid "Enter an album name" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:711 -msgid "or select an existing album (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:712 -msgid "Create a status post for this upload" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:714 -msgid "Description (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:800 -msgid "Show Newest First" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:802 -msgid "Show Oldest First" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:859 ../../Zotlabs/Module/Photos.php:1405 -msgid "Add Photos" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:907 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:909 -msgid "Photo not available" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:967 -msgid "Use as profile photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:968 -msgid "Use as cover photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:975 -msgid "Private Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:990 -msgid "View Full Size" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1072 -msgid "Edit photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1074 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1075 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1078 -msgid "Move photo to album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1079 -msgid "Enter a new album name" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1080 -msgid "or select an existing one (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1085 -msgid "Add a Tag" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1093 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1096 -msgid "Flag as adult in album view" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1288 -msgid "Photo Tools" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1297 -msgid "In This Photo:" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1302 -msgid "Map" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:338 -msgid "sent you a private message" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:394 -msgid "added your channel" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:419 -msgid "requires approval" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:429 -msgid "g A l F d" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:447 -msgid "[today]" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:457 -msgid "posted an event" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:491 -msgid "shared a file with you" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:673 -msgid "Private forum" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:673 -msgid "Public forum" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:165 -msgid "Poke App" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:166 -msgid "Poke somebody in your addressbook" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:200 -msgid "Poke somebody" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:203 -msgid "Poke/Prod" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:204 -msgid "Poke, prod or do other things to somebody" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:211 -msgid "Recipient" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:212 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:215 ../../Zotlabs/Module/Poke.php:216 -msgid "Make this post private" -msgstr "" - -#: ../../Zotlabs/Module/Probe.php:18 -msgid "Remote Diagnostics App" -msgstr "" - -#: ../../Zotlabs/Module/Probe.php:19 -msgid "Perform diagnostics on remote channels" -msgstr "" - -#: ../../Zotlabs/Module/Profile.php:93 -msgid "vcard" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 -#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 -msgid "Profile not found." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 -msgid "Profile-" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 -msgid "New profile created." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:111 -msgid "Profile unavailable to clone." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:146 -msgid "Profile unavailable to export." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:252 -msgid "Profile Name is required." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:459 -msgid "Marital Status" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:463 -msgid "Romantic Partner" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:772 -msgid "Likes" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:773 -msgid "Dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:780 -msgid "Work/Employment" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:478 -msgid "Religion" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:482 -msgid "Political Views" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:486 -msgid "Gender" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:490 -msgid "Sexual Preference" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:494 -msgid "Homepage" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:498 -msgid "Interests" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:594 -msgid "Profile updated." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:678 -msgid "Hide your connections list from viewers of this profile" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:722 -msgid "Edit Profile Details" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:724 -msgid "View this profile" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Profile Tools" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Change cover photo" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:729 -msgid "Create a new profile using these settings" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Clone this profile" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Delete this profile" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Add profile things" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Personal" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Relationship" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Import profile from file" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Export profile to file" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Your gender" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Marital status" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Sexual preference" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "Profile name" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "This is your default profile." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:749 -msgid "Your full name" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:750 -msgid "Title/Description" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:753 -msgid "Street address" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:754 -msgid "Locality/City" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:755 -msgid "Region/State" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:756 -msgid "Postal/Zip code" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:762 -msgid "Who (if applicable)" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:762 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:763 -msgid "Since (date)" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:766 -msgid "Tell us about yourself" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:767 -msgid "Homepage URL" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:768 -msgid "Hometown" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:769 -msgid "Political views" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:770 -msgid "Religious views" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:771 -msgid "Keywords used in directory listings" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:771 -msgid "Example: fishing photography software" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:774 -msgid "Musical interests" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:775 -msgid "Books, literature" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:776 -msgid "Television" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:777 -msgid "Film/Dance/Culture/Entertainment" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Hobbies/Interests" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:779 -msgid "Love/Romance" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:781 -msgid "School/Education" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:782 -msgid "Contact information and social networks" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:783 -msgid "My other channels" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:785 -msgid "Communications" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:218 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:454 -msgid "" -"Your default profile photo is visible to anybody on the internet. Profile " -"photos for alternate profiles will inherit the permissions of the profile" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:454 -msgid "" -"Your profile photo is visible to anybody on the internet and may be " -"distributed to other websites." -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:458 -msgid "Use Photo for Profile" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:458 -msgid "Change Profile Photo" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:459 -msgid "Use" -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:111 -msgid "Profile Visibility Editor" -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Click on a contact to add or remove." -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:124 -msgid "Visible To" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 -msgid "Public Hubs" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:27 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Hub URL" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:49 -msgid "Rate" -msgstr "" - -#: ../../Zotlabs/Module/Pubstream.php:20 -msgid "Public Stream App" -msgstr "" - -#: ../../Zotlabs/Module/Pubstream.php:21 -msgid "The unmoderated public stream of this hub" -msgstr "" - -#: ../../Zotlabs/Module/Randprof.php:29 -msgid "Random Channel App" -msgstr "" - -#: ../../Zotlabs/Module/Randprof.php:30 -msgid "Visit a random channel in the $Projectname network" -msgstr "" - -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" -msgstr "" - -#: ../../Zotlabs/Module/Rate.php:159 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Rating (this information is public)" -msgstr "" - -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " -msgstr "" - -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "" - -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "" - -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "" - -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:132 -msgid "Registration successful. Continue to create your first channel..." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:135 -msgid "" -"Registration successful. Please check your email for validation instructions." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:142 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:145 -msgid "Your registration can not be processed." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:192 -msgid "Registration on this hub is disabled." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:201 -msgid "Registration on this hub is by approval only." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:202 ../../Zotlabs/Module/Register.php:211 -msgid "Register at another affiliated hub." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:210 -msgid "Registration on this hub is by invitation only." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:221 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:236 ../../Zotlabs/Module/Siteinfo.php:28 -msgid "Terms of Service" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:242 -#, php-format -msgid "I accept the %s for this website" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:249 -#, php-format -msgid "I am over %s years of age and accept the %s for this website" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:254 -msgid "Your email address" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:255 -msgid "Choose a password" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:256 -msgid "Please re-enter your password" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:257 -msgid "Please enter your invitation code" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:258 -msgid "Your Name" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:258 -msgid "Real names are preferred." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:260 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address e." -"g. nickname%s" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:261 -msgid "" -"Select a channel permission role for your usage needs and privacy " -"requirements." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:262 -msgid "no" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:262 -msgid "yes" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:290 -msgid "" -"This site requires email verification. After completing this form, please " -"check your email for further instructions." -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings/Account.php:105 -msgid "Remove Account" -msgstr "" - #: ../../Zotlabs/Module/Removeme.php:35 msgid "" "Channel removals are not allowed within 48 hours of changing the account " @@ -9776,10 +1839,27 @@ msgstr "" msgid "Remove This Channel" msgstr "" +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "WARNING: " +msgstr "" + #: ../../Zotlabs/Module/Removeme.php:61 msgid "This channel will be completely removed from the network. " msgstr "" +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "This action is permanent and can not be undone!" +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Changeaddr.php:79 +msgid "Please enter your password for verification:" +msgstr "" + #: ../../Zotlabs/Module/Removeme.php:63 msgid "Remove this channel and all its clones from the network" msgstr "" @@ -9795,631 +1875,30 @@ msgstr "" msgid "Remove Channel" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "Authentication failed." +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Files: shared with me" msgstr "" -#: ../../Zotlabs/Module/Search.php:230 -#, php-format -msgid "Items tagged with: %s" +#: ../../Zotlabs/Module/Sharedwithme.php:105 +msgid "NEW" msgstr "" -#: ../../Zotlabs/Module/Search.php:232 -#, php-format -msgid "Search results for: %s" +#: ../../Zotlabs/Module/Sharedwithme.php:106 +#: ../../Zotlabs/Storage/Browser.php:293 ../../include/text.php:1515 +msgid "Size" msgstr "" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." +#: ../../Zotlabs/Module/Sharedwithme.php:107 +#: ../../Zotlabs/Storage/Browser.php:294 +msgid "Last Modified" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:19 -msgid "Not valid email." +#: ../../Zotlabs/Module/Sharedwithme.php:108 +msgid "Remove all files" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:22 -msgid "Protected email address. Cannot change to that email." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:31 -msgid "System failure storing new email. Please try again." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:48 -msgid "Password verification failed." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:55 -msgid "Passwords do not match. Password unchanged." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:59 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:73 -msgid "Password changed." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:75 -msgid "Password update failed. Please try again." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:99 -msgid "Account Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:100 -msgid "Current Password" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:101 -msgid "Enter New Password" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:102 -msgid "Confirm New Password" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:102 -msgid "Leave password fields blank unless changing" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:104 -#: ../../Zotlabs/Module/Settings/Channel.php:500 -msgid "Email Address:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:106 -msgid "Remove this account including all its channels" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Calendar.php:39 -msgid "CalDAV Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:327 -msgid "Nobody except yourself" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:328 -msgid "Only those you specifically allow" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:329 -msgid "Approved connections" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:330 -msgid "Any connections" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:331 -msgid "Anybody on this website" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:332 -msgid "Anybody in this network" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:333 -msgid "Anybody authenticated" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:334 -msgid "Anybody on the internet" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:409 -msgid "Publish your default profile in the network directory" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:414 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:418 -msgid "or" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:427 -msgid "Your channel address is" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:430 -msgid "Your files/photos are accessible via WebDAV at" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:470 -msgid "Automatic membership approval" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:491 -msgid "Channel Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:498 -msgid "Basic Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:501 -msgid "Your Timezone:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:502 -msgid "Default Post Location:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:502 -msgid "Geographical location to display on your posts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:503 -msgid "Use Browser Location:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:505 -msgid "Adult Content" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:505 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:507 -msgid "Security and Privacy Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:509 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:511 -msgid "Hide my online presence" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:511 -msgid "Prevents displaying in your profile that you are online" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:513 -msgid "Simple Privacy Settings:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:514 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:515 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:516 -msgid "Private - default private, never open or public" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:517 -msgid "Blocked - default blocked to/from everybody" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:519 -msgid "Allow others to tag your posts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:519 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:521 -msgid "Channel Permission Limits" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:523 -msgid "Expire other channel content after this many days" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:523 -msgid "0 or blank to use the website limit." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:523 -#, php-format -msgid "This website expires after %d days." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:523 -msgid "This website does not expire imported content." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:523 -msgid "The website limit takes precedence if lower than your limit." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:524 -msgid "Maximum Friend Requests/Day:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:524 -msgid "May reduce spam activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "Default Privacy Group" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:527 -msgid "Use my default audience setting for the type of object published" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:536 -msgid "Default permissions category" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:542 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:542 -msgid "Useful to reduce spamming" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "By default post a status message when:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:547 -msgid "accepting a friend request" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:548 -msgid "joining a forum/community" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:549 -msgid "making an interesting profile change" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:550 -msgid "Send a notification email when:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:551 -msgid "You receive a connection request" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:552 -msgid "Your connections are confirmed" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:553 -msgid "Someone writes on your profile wall" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:554 -msgid "Someone writes a followup comment" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:555 -msgid "You receive a private message" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:556 -msgid "You receive a friend suggestion" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:557 -msgid "You are tagged in a post" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:558 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:560 -msgid "Someone likes your post/comment" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:563 -msgid "Show visual notifications including:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:565 -msgid "Unseen stream activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:566 -msgid "Unseen channel activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:567 -msgid "Unseen private messages" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:567 -#: ../../Zotlabs/Module/Settings/Channel.php:572 -#: ../../Zotlabs/Module/Settings/Channel.php:573 -#: ../../Zotlabs/Module/Settings/Channel.php:574 -msgid "Recommended" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:568 -msgid "Upcoming events" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:569 -msgid "Events today" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:570 -msgid "Upcoming birthdays" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:570 -msgid "Not available in all themes" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:571 -msgid "System (personal) notifications" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:572 -msgid "System info messages" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:573 -msgid "System critical alerts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:574 -msgid "New connections" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:575 -msgid "System Registrations" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:576 -msgid "Unseen shared files" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:577 -msgid "Unseen public stream activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:578 -msgid "Unseen likes and dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:579 -msgid "Unseen forum posts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:580 -msgid "Email notification hub (hostname)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:580 -#, php-format -msgid "" -"If your channel is mirrored to multiple hubs, set this to your preferred " -"location. This will prevent duplicate email notifications. Example: %s" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:581 -msgid "Show new wall posts, private messages and connections under Notices" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:583 -msgid "Notify me of events this many days in advance" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:583 -msgid "Must be greater than 0" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:588 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:589 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:591 -msgid "Miscellaneous Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:592 -msgid "Default photo upload folder" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:592 -#: ../../Zotlabs/Module/Settings/Channel.php:593 -msgid "%Y - current year, %m - current month" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:593 -msgid "Default file upload folder" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:595 -msgid "Remove this channel." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel_home.php:44 -#: ../../Zotlabs/Module/Settings/Network.php:41 -msgid "Max height of content (in pixels)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel_home.php:46 -#: ../../Zotlabs/Module/Settings/Network.php:43 -msgid "Click to expand content exceeding this height" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel_home.php:59 -msgid "Personal menu to display in your channel pages" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel_home.php:86 -msgid "Channel Home Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Connections.php:39 -msgid "Connections Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Conversation.php:22 -msgid "Settings saved." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Conversation.php:24 -msgid "Settings saved. Reload page please." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Conversation.php:46 -msgid "Conversation Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Directory.php:39 -msgid "Directory Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:128 -#, php-format -msgid "%s - (Experimental)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:184 -msgid "Display Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:185 -msgid "Theme Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:186 -msgid "Custom Theme Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:187 -msgid "Content Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:193 -msgid "Display Theme:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:194 -msgid "Select scheme" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:196 -msgid "Preload images before rendering the page" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:196 -msgid "" -"The subjective page load time will be longer but the page will be ready when " -"displayed" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:197 -msgid "Enable user zoom on mobile devices" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:198 -msgid "Update browser every xx seconds" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:198 -msgid "Minimum of 10 seconds, no maximum" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:199 -msgid "Maximum number of conversations to load at any time:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:199 -msgid "Maximum of 100 items" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:200 -msgid "Show emoticons (smilies) as images" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Provide channel menu in navigation bar" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Default: channel menu located in app menu" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:202 -msgid "Manual conversation updates" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:202 -msgid "Default is on, turning this off may increase screen jumping" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:203 -msgid "Link post titles to source" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:205 -#: ../../Zotlabs/Widget/Newmember.php:75 -msgid "New Member Links" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:205 -msgid "Display new member quick links menu" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Editor.php:39 -msgid "Editor Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Events.php:39 -msgid "Events Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Featured.php:24 -msgid "No feature settings configured" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Featured.php:33 -msgid "Addon Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Featured.php:34 -msgid "Please save/submit changes to any panel before opening another." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Features.php:43 -msgid "Additional Features" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Manage.php:39 -msgid "Channel Manager Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:58 -msgid "Stream Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Photos.php:39 -msgid "Photos Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Profiles.php:47 -msgid "Profiles Settings" +#: ../../Zotlabs/Module/Sharedwithme.php:109 +msgid "Remove this file" msgstr "" #: ../../Zotlabs/Module/Setup.php:167 @@ -10852,7 +2331,7 @@ msgid "" "server root." msgstr "" -#: ../../Zotlabs/Module/Setup.php:718 +#: ../../Zotlabs/Module/Setup.php:718 ../../addon/rendezvous/rendezvous.php:401 msgid "Errors encountered creating database tables." msgstr "" @@ -10865,206 +2344,2016 @@ msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../Zotlabs/Module/Share.php:119 -msgid "Post repeated" +#: ../../Zotlabs/Module/Connect.php:73 ../../Zotlabs/Module/Connect.php:135 +msgid "Continue" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Files: shared with me" +#: ../../Zotlabs/Module/Connect.php:104 +msgid "Premium Channel App" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:105 -msgid "NEW" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:107 -#: ../../Zotlabs/Storage/Browser.php:294 -msgid "Last Modified" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:108 -msgid "Remove all files" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:109 -msgid "Remove this file" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:21 -msgid "About this site" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:22 -msgid "Site Name" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:26 -msgid "Administrator" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:29 -msgid "Software and Project information" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:30 -msgid "This site is powered by $Projectname" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:31 +#: ../../Zotlabs/Module/Connect.php:105 msgid "" -"Federated and decentralised networking and identity services provided by Zot" +"Allows you to set restrictions and terms on those that connect with your " +"channel" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Additional federated transport protocols:" +#: ../../Zotlabs/Module/Connect.php:116 +msgid "Premium Channel Setup" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:36 +#: ../../Zotlabs/Module/Connect.php:118 +msgid "Enable premium channel connection restrictions" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:119 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:121 ../../Zotlabs/Module/Connect.php:141 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:122 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:123 ../../Zotlabs/Module/Connect.php:144 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:132 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:140 +msgid "Restricted or Premium Channel" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:35 +msgid "Queue Statistics" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Total Entries" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Priority" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Destination URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Mark hub permanently offline" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Empty queue for this hub" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Last known contact" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:36 ../../include/features.php:55 +msgid "Off" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:36 ../../include/features.php:55 +msgid "On" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Features.php:56 #, php-format -msgid "Version %s" +msgid "Lock feature %s" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:37 -msgid "Project homepage" +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:38 -msgid "Developer homepage" +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Update has been marked successful" msgstr "" -#: ../../Zotlabs/Module/Sources.php:41 -msgid "Failed to create source. No channel selected." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:57 -msgid "Source created." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:70 -msgid "Source updated." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:88 -msgid "Sources App" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:89 -msgid "Automatically import channel content from other channels or feeds" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:101 -msgid "*" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:108 -msgid "Manage remote sources of content for your channel." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:119 -msgid "New Source" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:120 ../../Zotlabs/Module/Sources.php:154 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 -msgid "Only import content with these words (one per line)" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 -msgid "Leave blank to import all public content" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:161 -msgid "Channel Name" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 -msgid "Resend posts with this channel as author" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 -msgid "Copyrights may apply" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:144 ../../Zotlabs/Module/Sources.php:174 -msgid "Source not found." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:151 -msgid "Edit Source" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:152 -msgid "Delete Source" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:182 -msgid "Source removed" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:184 -msgid "Unable to remove source." -msgstr "" - -#: ../../Zotlabs/Module/Subthread.php:143 +#: ../../Zotlabs/Module/Admin/Dbsync.php:32 #, php-format -msgid "%1$s is following %2$s's %3$s" +msgid "Verification of update %s failed. Check system logs." msgstr "" -#: ../../Zotlabs/Module/Subthread.php:145 +#: ../../Zotlabs/Module/Admin/Dbsync.php:35 +#: ../../Zotlabs/Module/Admin/Dbsync.php:74 #, php-format -msgid "%1$s stopped following %2$s's %3$s" +msgid "Update %s was successfully applied." msgstr "" -#: ../../Zotlabs/Module/Suggest.php:40 -msgid "Suggest Channels App" -msgstr "" - -#: ../../Zotlabs/Module/Suggest.php:41 -msgid "" -"Suggestions for channels in the $Projectname network you might be interested " -"in" -msgstr "" - -#: ../../Zotlabs/Module/Suggest.php:54 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: ../../Zotlabs/Module/Suggest.php:73 ../../Zotlabs/Widget/Suggestions.php:48 -msgid "Ignore/Hide" -msgstr "" - -#: ../../Zotlabs/Module/Tagger.php:48 -msgid "Post not found." -msgstr "" - -#: ../../Zotlabs/Module/Tagger.php:119 +#: ../../Zotlabs/Module/Admin/Dbsync.php:39 #, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +msgid "Verifying update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" +#: ../../Zotlabs/Module/Admin/Dbsync.php:42 +#, php-format +msgid "Update %s does not contain a verification function." msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" +#: ../../Zotlabs/Module/Admin/Dbsync.php:46 +#: ../../Zotlabs/Module/Admin/Dbsync.php:81 +#, php-format +msgid "Update function %s could not be found." msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " +#: ../../Zotlabs/Module/Admin/Dbsync.php:71 +#, php-format +msgid "Executing update procedure %s failed. Check system logs." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:78 +#, php-format +msgid "" +"Update %s did not return a status. It cannot be determined if it was " +"successful." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:99 +msgid "Failed Updates" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:101 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:102 +msgid "Attempt to verify this update if a verification procedure exists" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:103 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:108 +msgid "No failed updates." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:37 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:44 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:80 +msgid "Account not found" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2632 +#, php-format +msgid "Account '%s' deleted" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:99 +#, php-format +msgid "Account '%s' blocked" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:107 +#, php-format +msgid "Account '%s' unblocked" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Channels.php:145 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../Zotlabs/Module/Admin/Addons.php:341 +#: ../../Zotlabs/Module/Admin/Addons.php:439 +#: ../../Zotlabs/Module/Admin/Security.php:92 +#: ../../Zotlabs/Module/Admin.php:138 +msgid "Administration" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Accounts.php:180 +#: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 +msgid "Accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +#: ../../Zotlabs/Module/Admin/Channels.php:148 +msgid "select all" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Registrations waiting for confirm" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "Request date" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +msgid "No registrations." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Connections.php:320 ../../include/conversation.php:735 +msgid "Approve" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Authorize.php:33 +msgid "Deny" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:636 +msgid "Block" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:177 +#: ../../Zotlabs/Module/Connedit.php:636 +msgid "Unblock" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:182 +msgid "ID" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:184 +msgid "All Channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Register date" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Last login" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Expires" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:188 +msgid "Service Class" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:190 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " +"on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:191 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 +#: ../../Zotlabs/Widget/Admin.php:58 +msgid "Logs" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:31 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:40 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:46 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:65 +msgid "Channel not found" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:75 +#, php-format +msgid "Channel '%s' deleted" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' censored" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:146 +#: ../../Zotlabs/Module/Admin.php:114 ../../Zotlabs/Widget/Admin.php:24 +msgid "Channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:150 +msgid "Censor" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:151 +msgid "Uncensor" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "Allow Code" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:153 +msgid "Disallow Code" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:154 ../../include/nav.php:423 +msgid "Channel" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:158 +msgid "UID" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:163 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:26 +msgid "Theme settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:61 +msgid "No themes found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:72 +#: ../../Zotlabs/Module/Admin/Addons.php:259 ../../Zotlabs/Module/Thing.php:94 +#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:45 +#: ../../Zotlabs/Module/Display.php:455 ../../Zotlabs/Module/Filestorage.php:26 +#: ../../Zotlabs/Module/Admin.php:62 ../../include/items.php:3713 +msgid "Item not found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:95 +#: ../../Zotlabs/Module/Admin/Addons.php:310 +msgid "Disable" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:97 +#: ../../Zotlabs/Module/Admin/Addons.php:313 +msgid "Enable" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:116 +msgid "Screenshot" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:123 +#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 +msgid "Themes" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:124 +#: ../../Zotlabs/Module/Admin/Addons.php:343 +msgid "Toggle" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:125 +#: ../../Zotlabs/Module/Admin/Addons.php:344 ../../Zotlabs/Lib/Apps.php:338 +#: ../../Zotlabs/Widget/Newmember.php:53 +#: ../../Zotlabs/Widget/Settings_menu.php:61 ../../include/nav.php:101 +msgid "Settings" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:134 +#: ../../Zotlabs/Module/Admin/Addons.php:351 +msgid "Author: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:135 +#: ../../Zotlabs/Module/Admin/Addons.php:352 +msgid "Maintainer: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:162 +msgid "[Experimental]" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:163 +msgid "[Unsupported]" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:161 +msgid "Site settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:187 +#: ../../view/theme/redbasic_c/php/config.php:15 +#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3218 +msgid "Default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:198 +#: ../../Zotlabs/Module/Settings/Display.php:119 +#, php-format +msgid "%s - (Incompatible)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:205 +msgid "mobile" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:207 +msgid "experimental" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:209 +msgid "unsupported" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:256 +msgid "Yes - with approval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:262 +msgid "My site is not a public server" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:263 +msgid "My site has paid access only" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:264 +msgid "My site has free access only" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:265 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Default permission role for new accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "" +"This role will be used for the first channel created after registration." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:288 ../../Zotlabs/Widget/Admin.php:22 +msgid "Site" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:290 +#: ../../Zotlabs/Module/Register.php:277 +msgid "Registration" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "File upload" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:292 +msgid "Policies" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:293 ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:297 +#: ../../addon/statusnet/statusnet.php:593 +msgid "Site name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Banner/Logo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Unfiltered HTML/CSS/JS is allowed" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "Administrator Information" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:301 ../../Zotlabs/Module/Siteinfo.php:24 +msgid "Site Information" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "" +"Publicly visible description of this site. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "System language" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "System theme" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Allow Feeds as Connections" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "(Heavy system resource usage)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:307 +msgid "Maximum image size" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:307 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Does this site allow new member registration?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "Invitation only" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Minimum age" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Minimum age (in years) for who may register on this site." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Which best describes the types of account offered by this hub?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "This is displayed on the public server site list." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "Register text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Site homepage to show visitors (default: login box)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "" +"example: 'pubstream' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "Preserve site homepage URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:316 +msgid "Accounts abandoned after x days" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:316 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "Allowed friend domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "Verify Email Addresses" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "Force publish" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "Import Public Streams" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "Site only Public Streams" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "" +"Allow access to public content originating only from this site if Imported " +"Public Streams are disabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:322 +msgid "Allow anybody on the internet to access the Public streams" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:322 +msgid "" +"Disable to require authentication before viewing. Warning: this content is " +"unmoderated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "Only import Public stream posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Connedit.php:892 ../../Zotlabs/Module/Connedit.php:893 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "Do not import Public stream posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "Login on Homepage" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "Enable context help" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "" +"Display contextual help for the current page when the help button is pressed." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "Reply-to email address for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "Sender (From) email address for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:332 +msgid "Name of email sender for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "Directory Server URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "Default directory server" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:336 +msgid "Proxy user" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:337 +msgid "Proxy URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:338 +msgid "Network timeout" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:338 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:339 +msgid "Delivery interval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:339 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "Deliveries per process" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust " +"if necessary to tune system performance. Recommend: 1-5." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:341 +msgid "Queue Threshold" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:341 +msgid "" +"Always defer immediate delivery if queue contains more than this number of " +"entries." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:342 +msgid "Poll interval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:342 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "Path to ImageMagick convert program" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "" +"If set, use this program to generate photo thumbnails for huge images ( > " +"4000 pixels in either dimension), otherwise memory exhaustion may occur. " +"Example: /usr/bin/convert" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "Allow SVG thumbnails in file browser" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "WARNING: SVG images may contain malicious code." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "Maximum Load Average" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:346 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:346 +msgid "0 for no expiration of imported content" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "" +"Do not expire any posts which have comments less than this many days ago" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:349 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:349 +#, php-format +msgid "Create this page first. Default is %s/register" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Page to display after creating a new channel" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Default: profiles" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:352 +msgid "Optional: site location" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:352 +msgid "Region or country" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:289 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:294 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:342 +#: ../../Zotlabs/Module/Admin/Addons.php:440 ../../Zotlabs/Widget/Admin.php:27 +msgid "Addons" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:353 +msgid "Minimum project version: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:354 +msgid "Maximum project version: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:355 +msgid "Minimum PHP version: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:356 +msgid "Compatible Server Roles: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:357 +msgid "Requires: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:358 +#: ../../Zotlabs/Module/Admin/Addons.php:445 +msgid "Disabled - version incompatibility" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:414 +msgid "Enter the public git repository URL of the addon repo." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:415 +msgid "Addon repo git URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:416 +msgid "Custom repo name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:416 +msgid "(optional)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:417 +msgid "Download Addon Repo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:424 +msgid "Install new repo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:425 ../../Zotlabs/Lib/Apps.php:536 +msgid "Install" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:448 +msgid "Manage Repos" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:449 +msgid "Installed Addon Repositories" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:450 +msgid "Install a New Addon Repository" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:457 +msgid "Switch branch" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:458 +#: ../../Zotlabs/Module/Photos.php:993 +#: ../../Zotlabs/Module/Profile_photo.php:499 +#: ../../Zotlabs/Module/Cover_photo.php:430 ../../Zotlabs/Module/Tagrm.php:137 +#: ../../addon/superblock/Mod_Superblock.php:91 +msgid "Remove" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "New Profile Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "Field nickname" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "System name of field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:91 +#: ../../Zotlabs/Module/Admin/Profs.php:111 +msgid "Input type" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Field Name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Label on profile pages" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Help text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Additional info (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:94 +#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Widget/Notes.php:23 +#: ../../addon/queueworker/Mod_Queueworker.php:102 ../../include/text.php:1104 +#: ../../include/text.php:1116 +msgid "Save" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:103 +msgid "Field definition not found" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:109 +msgid "Edit Profile Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:168 ../../Zotlabs/Widget/Admin.php:30 +msgid "Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:169 +msgid "Basic Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "Advanced Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "(In addition to basic fields)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:172 +msgid "All available fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:173 +msgid "Custom Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:177 +msgid "Create Custom Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:29 +#, php-format +msgid "Password changed for account %d." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:46 +msgid "Account settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:61 +msgid "Account not found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:68 +msgid "Account Edit" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:69 +msgid "New Password" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:70 +msgid "New Password again" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:71 +msgid "Account language (for emails)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 +msgid "Service class" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:83 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:86 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:87 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" +"
https://vimeo.com/
https://soundcloud.com/
" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:88 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:93 ../../Zotlabs/Widget/Admin.php:25 +msgid "Security" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block public" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Provide a cloud root directory" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"The cloud root directory lists all channel names which provide public files" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Show total disk space available to cloud uploads" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Set \"Transport Security\" HTTP header" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Allowed email domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:101 +msgid "Not allowed email domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:101 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:102 +msgid "Allow communications only from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:102 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:103 +msgid "Block communications from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:104 +msgid "Allow communications only from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:104 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:105 +msgid "Block communications from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:106 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:107 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:107 +msgid "One site per line. By default embedded content is filtered." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:108 +msgid "Block embedded HTML from these domains" +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 +#: ../../Zotlabs/Module/Acl.php:121 ../../include/acl_selectors.php:88 +msgctxt "acl" +msgid "Profile" +msgstr "" + +#: ../../Zotlabs/Module/Moderate.php:65 +msgid "Comment approved" +msgstr "" + +#: ../../Zotlabs/Module/Moderate.php:69 +msgid "Comment deleted" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:70 +#: ../../Zotlabs/Module/Settings/Channel.php:74 +#: ../../Zotlabs/Module/Settings/Channel.php:75 +#: ../../Zotlabs/Module/Settings/Channel.php:78 +#: ../../Zotlabs/Module/Settings/Channel.php:89 +#: ../../Zotlabs/Module/Connedit.php:725 ../../Zotlabs/Widget/Affinity.php:32 +#: ../../include/selectors.php:134 ../../include/channel.php:493 +#: ../../include/channel.php:494 ../../include/channel.php:501 +msgid "Friends" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:266 +#: ../../Zotlabs/Module/Defperms.php:111 +#: ../../addon/rendezvous/rendezvous.php:82 +#: ../../addon/openstreetmap/openstreetmap.php:185 +#: ../../addon/msgfooter/msgfooter.php:54 ../../addon/logrot/logrot.php:54 +#: ../../addon/twitter/twitter.php:605 ../../addon/piwik/piwik.php:116 +#: ../../addon/xmpp/xmpp.php:54 +msgid "Settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:327 +msgid "Nobody except yourself" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:328 +msgid "Only those you specifically allow" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:329 +msgid "Approved connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:330 +msgid "Any connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:331 +msgid "Anybody on this website" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:332 +msgid "Anybody in this network" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:333 +msgid "Anybody authenticated" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:334 +msgid "Anybody on the internet" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:409 +msgid "Publish your default profile in the network directory" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:414 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:418 +msgid "or" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:427 +msgid "Your channel address is" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:430 +msgid "Your files/photos are accessible via WebDAV at" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:470 +msgid "Automatic membership approval" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:470 +#: ../../Zotlabs/Module/Defperms.php:255 +msgid "" +"If enabled, connection requests will be approved without your interaction" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:491 +msgid "Channel Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:498 +msgid "Basic Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:499 ../../include/channel.php:1643 +msgid "Full Name:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:500 +#: ../../Zotlabs/Module/Settings/Account.php:104 +msgid "Email Address:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:501 +msgid "Your Timezone:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:502 +msgid "Default Post Location:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:502 +msgid "Geographical location to display on your posts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Use Browser Location:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "Adult Content" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "Security and Privacy Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:509 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Hide my online presence" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Prevents displaying in your profile that you are online" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "Simple Privacy Settings:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:514 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:515 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:516 +msgid "Private - default private, never open or public" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:517 +msgid "Blocked - default blocked to/from everybody" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "Allow others to tag your posts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Channel Permission Limits" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "Expire other channel content after this many days" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "0 or blank to use the website limit." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:523 +#, php-format +msgid "This website expires after %d days." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "This website does not expire imported content." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "The website limit takes precedence if lower than your limit." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:524 +msgid "Maximum Friend Requests/Day:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:524 +msgid "May reduce spam activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Default Privacy Group" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:527 +msgid "Use my default audience setting for the type of object published" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:536 +msgid "Default permissions category" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:542 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:542 +msgid "Useful to reduce spamming" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:545 +#: ../../Zotlabs/Lib/Enotify.php:68 +msgid "Notification Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "By default post a status message when:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:547 +msgid "accepting a friend request" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:548 +msgid "joining a forum/community" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:549 +msgid "making an interesting profile change" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:550 +msgid "Send a notification email when:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:551 +msgid "You receive a connection request" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:552 +msgid "Your connections are confirmed" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:553 +msgid "Someone writes on your profile wall" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:554 +msgid "Someone writes a followup comment" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:555 +msgid "You receive a private message" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:556 +msgid "You receive a friend suggestion" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:557 +msgid "You are tagged in a post" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:558 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:560 +msgid "Someone likes your post/comment" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:563 +msgid "Show visual notifications including:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:565 +msgid "Unseen stream activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:566 +msgid "Unseen channel activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:567 +msgid "Unseen private messages" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:567 +#: ../../Zotlabs/Module/Settings/Channel.php:572 +#: ../../Zotlabs/Module/Settings/Channel.php:573 +#: ../../Zotlabs/Module/Settings/Channel.php:574 +#: ../../addon/jappixmini/Mod_Jappixmini.php:191 +msgid "Recommended" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:568 +msgid "Upcoming events" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:569 +msgid "Events today" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:570 +msgid "Upcoming birthdays" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:570 +msgid "Not available in all themes" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:571 +msgid "System (personal) notifications" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:572 +msgid "System info messages" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:573 +msgid "System critical alerts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:574 +msgid "New connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:575 +msgid "System Registrations" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:576 +msgid "Unseen shared files" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:577 +msgid "Unseen public stream activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:578 +msgid "Unseen likes and dislikes" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:579 +msgid "Unseen forum posts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:580 +msgid "Email notification hub (hostname)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:580 +#, php-format +msgid "" +"If your channel is mirrored to multiple hubs, set this to your preferred " +"location. This will prevent duplicate email notifications. Example: %s" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:581 +msgid "Show new wall posts, private messages and connections under Notices" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:583 +msgid "Notify me of events this many days in advance" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:583 +msgid "Must be greater than 0" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:588 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:589 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:591 +msgid "Miscellaneous Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:592 +msgid "Default photo upload folder" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:592 +#: ../../Zotlabs/Module/Settings/Channel.php:593 +msgid "%Y - current year, %m - current month" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:593 +msgid "Default file upload folder" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:595 +msgid "Remove this channel." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Features.php:43 +msgid "Additional Features" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Events.php:39 +msgid "Events Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Calendar.php:39 +msgid "Calendar Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Conversation.php:22 +msgid "Settings saved." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Conversation.php:24 +msgid "Settings saved. Reload page please." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Conversation.php:46 +msgid "Conversation Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Connections.php:39 +msgid "Connections Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Photos.php:39 +msgid "Photos Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:19 +msgid "Not valid email." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:22 +msgid "Protected email address. Cannot change to that email." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:31 +msgid "System failure storing new email. Please try again." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:48 +msgid "Password verification failed." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:55 +msgid "Passwords do not match. Password unchanged." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:59 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:73 +msgid "Password changed." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:75 +msgid "Password update failed. Please try again." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:99 +msgid "Account Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:100 +msgid "Current Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:101 +msgid "Enter New Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:102 +msgid "Confirm New Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:102 +msgid "Leave password fields blank unless changing" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:105 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Remove this account including all its channels" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Profiles.php:47 +msgid "Profiles Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Manage.php:39 +msgid "Channel Manager Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:24 +msgid "No feature settings configured" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:33 +msgid "Addon Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:34 +msgid "Please save/submit changes to any panel before opening another." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel_home.php:44 +#: ../../Zotlabs/Module/Settings/Network.php:41 +msgid "Max height of content (in pixels)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel_home.php:46 +#: ../../Zotlabs/Module/Settings/Network.php:43 +msgid "Click to expand content exceeding this height" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel_home.php:59 +msgid "Personal menu to display in your channel pages" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel_home.php:86 +msgid "Channel Home Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Directory.php:39 +msgid "Directory Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Editor.php:39 +msgid "Editor Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:128 +#, php-format +msgid "%s - (Experimental)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:184 +msgid "Display Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:185 +msgid "Theme Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:186 +msgid "Custom Theme Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:187 +msgid "Content Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:193 +msgid "Display Theme:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:194 +msgid "Select scheme" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "Preload images before rendering the page" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "" +"The subjective page load time will be longer but the page will be ready when " +"displayed" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:197 +msgid "Enable user zoom on mobile devices" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Update browser every xx seconds" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Minimum of 10 seconds, no maximum" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Maximum number of conversations to load at any time:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Maximum of 100 items" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:200 +msgid "Show emoticons (smilies) as images" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Provide channel menu in navigation bar" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Default: channel menu located in app menu" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Manual conversation updates" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Default is on, turning this off may increase screen jumping" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Link post titles to source" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +#: ../../Zotlabs/Widget/Newmember.php:75 +msgid "New Member Links" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Display new member quick links menu" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:58 +msgid "Stream Settings" +msgstr "" + +#: ../../Zotlabs/Module/Embedphotos.php:168 ../../Zotlabs/Module/Photos.php:784 +#: ../../Zotlabs/Module/Photos.php:1332 ../../Zotlabs/Widget/Portfolio.php:87 +#: ../../Zotlabs/Widget/Album.php:78 +msgid "View Photo" +msgstr "" + +#: ../../Zotlabs/Module/Embedphotos.php:184 ../../Zotlabs/Module/Photos.php:815 +#: ../../Zotlabs/Widget/Portfolio.php:108 ../../Zotlabs/Widget/Album.php:95 +msgid "Edit Album" +msgstr "" + +#: ../../Zotlabs/Module/Embedphotos.php:186 ../../Zotlabs/Module/Photos.php:685 +#: ../../Zotlabs/Module/Profile_photo.php:498 +#: ../../Zotlabs/Module/Cover_photo.php:429 +#: ../../Zotlabs/Storage/Browser.php:398 ../../Zotlabs/Widget/Cdav.php:146 +#: ../../Zotlabs/Widget/Cdav.php:182 ../../Zotlabs/Widget/Portfolio.php:110 +#: ../../Zotlabs/Widget/Album.php:97 +msgid "Upload" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:39 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:45 +msgid "Name and Password are required." +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:85 +msgid "Token saved." +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:99 +msgid "Guest Access App" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:100 +msgid "Create access tokens so that non-members can access private content" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:133 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:135 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:170 +msgid "Guest Access Tokens" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:177 +msgid "Login Name" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:178 +msgid "Login Password" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:179 +msgid "Expires (yyyy-mm-dd)" +msgstr "" + +#: ../../Zotlabs/Module/Tokens.php:180 ../../Zotlabs/Module/Connedit.php:907 +msgid "Their Settings" +msgstr "" + +#: ../../Zotlabs/Module/Achievements.php:38 +msgid "Some blurb about what to do when you're new here" msgstr "" #: ../../Zotlabs/Module/Thing.php:120 @@ -11120,201 +4409,749 @@ msgstr "" msgid "URL for photo of thing (optional)" msgstr "" +#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:372 +#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1044 +#: ../../Zotlabs/Module/Connedit.php:690 ../../Zotlabs/Module/Chat.php:243 +#: ../../Zotlabs/Module/Filestorage.php:190 ../../include/acl_selectors.php:123 +msgid "Permissions" +msgstr "" + #: ../../Zotlabs/Module/Thing.php:362 msgid "Add Thing to your Profile" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:39 +#: ../../Zotlabs/Module/Notify.php:61 ../../Zotlabs/Module/Notifications.php:55 +msgid "No more system notifications." +msgstr "" + +#: ../../Zotlabs/Module/Notify.php:65 ../../Zotlabs/Module/Notifications.php:59 +msgid "System Notifications" +msgstr "" + +#: ../../Zotlabs/Module/Follow.php:36 +msgid "Connection added." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:157 #, php-format -msgid "This channel is limited to %d tokens" +msgid "Your service plan only allows %d channels." msgstr "" -#: ../../Zotlabs/Module/Tokens.php:45 -msgid "Name and Password are required." +#: ../../Zotlabs/Module/Import.php:184 +msgid "No channel. Import failed." msgstr "" -#: ../../Zotlabs/Module/Tokens.php:85 -msgid "Token saved." +#: ../../Zotlabs/Module/Import.php:594 +#: ../../addon/diaspora/import_diaspora.php:141 +msgid "Import completed." msgstr "" -#: ../../Zotlabs/Module/Tokens.php:99 -msgid "Guest Access App" +#: ../../Zotlabs/Module/Import.php:622 +msgid "You must be logged in to use this feature." msgstr "" -#: ../../Zotlabs/Module/Tokens.php:100 -msgid "Create access tokens so that non-members can access private content" +#: ../../Zotlabs/Module/Import.php:627 +msgid "Import Channel" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:133 +#: ../../Zotlabs/Module/Import.php:628 msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access private content." +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file." msgstr "" -#: ../../Zotlabs/Module/Tokens.php:135 +#: ../../Zotlabs/Module/Import.php:630 +msgid "Or provide the old server/hub details" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:632 +msgid "Your old identity address (xyz@example.com)" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:633 +msgid "Your old login email address" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:634 +msgid "Your old login password" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:635 +msgid "Import a few months of posts if possible (limited by available memory" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:637 msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." msgstr "" -#: ../../Zotlabs/Module/Tokens.php:170 -msgid "Guest Access Tokens" +#: ../../Zotlabs/Module/Import.php:639 +msgid "Make this hub my primary location" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:177 -msgid "Login Name" +#: ../../Zotlabs/Module/Import.php:640 +msgid "Move this channel (disable all previous locations)" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:178 -msgid "Login Password" +#: ../../Zotlabs/Module/Import.php:641 +msgid "Use this channel nickname instead of the one provided" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:179 -msgid "Expires (yyyy-mm-dd)" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:61 -msgid "Channel Export App" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "Export your channel" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:72 ../../Zotlabs/Module/Uexport.php:73 -msgid "Export Channel" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:74 +#: ../../Zotlabs/Module/Import.php:641 msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." +"Leave blank to keep your existing channel nickname. You will be randomly " +"assigned a similar nickname if either name is already allocated on this site." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:75 -msgid "Export Content" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:76 +#: ../../Zotlabs/Module/Import.php:643 msgid "" -"Export your channel information and recent content to a JSON backup that can " -"be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for " -"this download to begin." +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:78 -msgid "Export your posts from a given year." +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "Authentication failed." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:80 +#: ../../Zotlabs/Module/Rmagic.php:93 ../../boot.php:1631 +#: ../../include/channel.php:2475 +msgid "Remote Authentication" +msgstr "" + +#: ../../Zotlabs/Module/Rmagic.php:94 ../../include/channel.php:2476 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "" + +#: ../../Zotlabs/Module/Rmagic.php:95 ../../include/channel.php:2477 +msgid "Authenticate" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:54 +msgid "Name and Secret are required" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:106 +msgid "OAuth2 Apps Manager App" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:107 +msgid "OAuth2 authenticatication tokens for mobile and remote apps" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:115 +msgid "Add OAuth2 application" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 +#: ../../Zotlabs/Module/Oauth.php:113 +msgid "Name of application" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 +#: ../../Zotlabs/Module/Oauth.php:115 ../../Zotlabs/Module/Oauth.php:141 +#: ../../addon/statusnet/statusnet.php:595 ../../addon/twitter/twitter.php:615 +msgid "Consumer Secret" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 +#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:115 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:120 ../../Zotlabs/Module/Oauth2.php:148 +#: ../../Zotlabs/Module/Oauth.php:116 ../../Zotlabs/Module/Oauth.php:142 +msgid "Redirect" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:120 ../../Zotlabs/Module/Oauth2.php:148 +#: ../../Zotlabs/Module/Oauth.php:116 msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." +"Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:81 +#: ../../Zotlabs/Module/Oauth2.php:121 ../../Zotlabs/Module/Oauth2.php:149 +msgid "Grant Types" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:121 ../../Zotlabs/Module/Oauth2.php:122 +msgid "leave blank unless your application sepcifically requires this" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:122 ../../Zotlabs/Module/Oauth2.php:150 +msgid "Authorization scope" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:134 +msgid "OAuth2 Application not found." +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:143 ../../Zotlabs/Module/Oauth2.php:193 +#: ../../Zotlabs/Module/Oauth.php:110 ../../Zotlabs/Module/Oauth.php:136 +#: ../../Zotlabs/Module/Oauth.php:172 +msgid "Add application" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:149 ../../Zotlabs/Module/Oauth2.php:150 +msgid "leave blank unless your application specifically requires this" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:192 +msgid "Connected OAuth2 Apps" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:196 ../../Zotlabs/Module/Oauth.php:175 +msgid "Client key starts with" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:197 ../../Zotlabs/Module/Oauth.php:176 +msgid "No name" +msgstr "" + +#: ../../Zotlabs/Module/Oauth2.php:198 ../../Zotlabs/Module/Oauth.php:177 +msgid "Remove authorization" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:70 +msgid "Permissions denied." +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:343 ../../include/text.php:2573 +msgid "Import" +msgstr "" + +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 +msgid "Authorize application connection" +msgstr "" + +#: ../../Zotlabs/Module/Api.php:75 +msgid "Return to your app and insert this Security Code:" +msgstr "" + +#: ../../Zotlabs/Module/Api.php:85 +msgid "Please login to continue." +msgstr "" + +#: ../../Zotlabs/Module/Api.php:97 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" +msgstr "" + +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "" + +#: ../../Zotlabs/Module/Randprof.php:29 +msgid "Random Channel App" +msgstr "" + +#: ../../Zotlabs/Module/Randprof.php:30 +msgid "Visit a random channel in the $Projectname network" +msgstr "" + +#: ../../Zotlabs/Module/Editblock.php:138 +msgid "Edit Block" +msgstr "" + +#: ../../Zotlabs/Module/Profile.php:93 +msgid "vcard" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:50 ../../Zotlabs/Widget/Appstore.php:14 +msgid "Available Apps" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:50 +msgid "Installed Apps" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:53 +msgid "Manage Apps" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:54 +msgid "Create Custom App" +msgstr "" + +#: ../../Zotlabs/Module/Mood.php:76 ../../include/conversation.php:268 #, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" +msgctxt "mood" +msgid "%1$s is %2$s" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:82 +#: ../../Zotlabs/Module/Mood.php:134 +msgid "Mood App" +msgstr "" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Module/Mood.php:155 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: ../../Zotlabs/Module/Mood.php:154 ../../Zotlabs/Lib/Apps.php:349 +msgid "Mood" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:58 +#: ../../Zotlabs/Module/Connections.php:115 +#: ../../Zotlabs/Module/Connections.php:273 +msgid "Active" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:63 +#: ../../Zotlabs/Module/Connections.php:181 +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Blocked" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:68 +#: ../../Zotlabs/Module/Connections.php:188 +#: ../../Zotlabs/Module/Connections.php:277 +msgid "Ignored" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:73 +#: ../../Zotlabs/Module/Connections.php:202 +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Hidden" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:78 +#: ../../Zotlabs/Module/Connections.php:195 +msgid "Archived/Unreachable" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:83 +#: ../../Zotlabs/Module/Connections.php:92 ../../Zotlabs/Module/Menu.php:179 +#: ../../Zotlabs/Module/Notifications.php:50 +msgid "New" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:97 +#: ../../Zotlabs/Module/Connections.php:111 +#: ../../Zotlabs/Module/Connedit.php:727 ../../Zotlabs/Widget/Affinity.php:34 +msgid "All" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:157 +msgid "Active Connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:160 +msgid "Show active connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:164 +#: ../../Zotlabs/Widget/Notifications.php:84 +msgid "New Connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:167 +msgid "Show pending (new) connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:184 +msgid "Only show blocked connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:191 +msgid "Only show ignored connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:198 +msgid "Only show archived/unreachable connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:205 +msgid "Only show hidden connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:220 +msgid "Show all connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Pending approval" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:275 +msgid "Archived" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:279 +msgid "Not connected at this location" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:296 #, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" +msgid "%1$s [%2$s]" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:83 -#, php-format -msgid "" -"These content files may be imported or restored by visiting " -"%2$s on any site containing your channel. For best results please import " -"or restore these in date order (oldest first)." +#: ../../Zotlabs/Module/Connections.php:297 +msgid "Edit connection" msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." +#: ../../Zotlabs/Module/Connections.php:299 +msgid "Delete connection" msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:83 -#, php-format -msgid "Visit %s's profile [%s]" +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Channel address" msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:113 -msgid "View Connections" +#: ../../Zotlabs/Module/Connections.php:310 ../../include/features.php:321 +msgid "Network" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:313 +msgid "Call" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:315 +msgid "Status" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:317 +msgid "Connected" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:319 +msgid "Approve connection" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:321 +msgid "Ignore connection" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:322 +#: ../../Zotlabs/Module/Connedit.php:644 +msgid "Ignore" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:323 +msgid "Recent activity" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:348 ../../Zotlabs/Lib/Apps.php:332 +#: ../../include/text.php:1010 ../../include/features.php:125 +msgid "Connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:353 +msgid "Search your connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:354 +msgid "Connections search" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:355 +#: ../../Zotlabs/Module/Directory.php:416 +#: ../../Zotlabs/Module/Directory.php:421 ../../include/contact_widgets.php:23 +msgid "Find" msgstr "" #: ../../Zotlabs/Module/Viewsrc.php:43 msgid "item" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:48 -msgid "Webpages App" +#: ../../Zotlabs/Module/Bookmarks.php:62 +msgid "Bookmark added" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:49 -msgid "Provide managed web pages on your channel" +#: ../../Zotlabs/Module/Bookmarks.php:78 +msgid "Bookmarks App" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:69 -msgid "Import Webpage Elements" +#: ../../Zotlabs/Module/Bookmarks.php:79 +msgid "Bookmark links from posts and manage them" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:70 -msgid "Import selected" +#: ../../Zotlabs/Module/Bookmarks.php:92 +msgid "My Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:93 -msgid "Export Webpage Elements" +#: ../../Zotlabs/Module/Bookmarks.php:103 +msgid "My Connections Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:94 -msgid "Export selected" +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:263 -msgid "Actions" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:264 -msgid "Page Link" +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " msgstr "" -#: ../../Zotlabs/Module/Webpages.php:265 -msgid "Page Title" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:295 -msgid "Invalid file type." +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:307 -msgid "Error opening zip file" +#: ../../Zotlabs/Module/Photos.php:78 +msgid "Page owner information could not be retrieved." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:318 -msgid "Invalid folder path." +#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:113 +msgid "Album not found." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:345 -msgid "No webpage elements detected." +#: ../../Zotlabs/Module/Photos.php:103 +msgid "Delete Album" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:420 -msgid "Import complete." +#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1056 +msgid "Delete Photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:527 +msgid "No photos selected" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:576 +msgid "Access to this item is restricted." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:619 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:622 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Upload Photos" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Enter an album name" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:669 +msgid "or select an existing album (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:670 +msgid "Create a status post for this upload" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:672 +msgid "Description (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:758 +msgid "Show Newest First" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:760 +msgid "Show Oldest First" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:817 ../../Zotlabs/Module/Photos.php:1363 +msgid "Add Photos" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:865 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:867 +msgid "Photo not available" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:925 +msgid "Use as profile photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:926 +msgid "Use as cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:933 +msgid "Private Photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:948 +msgid "View Full Size" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1030 +msgid "Edit photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Rotate CW (right)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Rotate CCW (left)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Move photo to album" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1037 +msgid "Enter a new album name" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "or select an existing one (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1043 +msgid "Add a Tag" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Flag as adult in album view" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:307 +msgid "I like this (toggle)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1074 ../../Zotlabs/Lib/ThreadItem.php:308 +msgid "I don't like this (toggle)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:469 +#: ../../include/conversation.php:787 +msgid "Please wait" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1093 ../../Zotlabs/Module/Photos.php:1212 +#: ../../Zotlabs/Lib/ThreadItem.php:793 +msgid "This is you" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1214 +#: ../../Zotlabs/Lib/ThreadItem.php:795 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1112 ../../include/conversation.php:619 +msgctxt "title" +msgid "Likes" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1112 ../../include/conversation.php:619 +msgctxt "title" +msgid "Dislikes" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:620 +msgctxt "title" +msgid "Agree" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:620 +msgctxt "title" +msgid "Disagree" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:620 +msgctxt "title" +msgid "Abstain" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:621 +msgctxt "title" +msgid "Attending" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:621 +msgctxt "title" +msgid "Not attending" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:621 +msgctxt "title" +msgid "Might attend" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1131 ../../Zotlabs/Module/Photos.php:1143 +#: ../../Zotlabs/Lib/ThreadItem.php:232 ../../Zotlabs/Lib/ThreadItem.php:244 +msgid "View all" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:236 +#: ../../include/conversation.php:1702 ../../include/channel.php:1661 +#: ../../include/taxonomy.php:659 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Photos.php:1140 ../../Zotlabs/Lib/ThreadItem.php:241 +#: ../../include/conversation.php:1705 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Photos.php:1246 +msgid "Photo Tools" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "In This Photo:" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1260 +msgid "Map" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1268 ../../Zotlabs/Lib/ThreadItem.php:457 +msgctxt "noun" +msgid "Likes" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:458 +msgctxt "noun" +msgid "Dislikes" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1274 ../../Zotlabs/Lib/ThreadItem.php:463 +#: ../../addon/channelreputation/channelreputation.php:230 +#: ../../include/acl_selectors.php:125 +msgid "Close" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1347 ../../Zotlabs/Module/Photos.php:1360 +#: ../../Zotlabs/Module/Photos.php:1361 ../../include/photos.php:667 +msgid "Recent Photos" msgstr "" #: ../../Zotlabs/Module/Wiki.php:35 +#: ../../addon/flashcards/Mod_Flashcards.php:34 ../../addon/cart/cart.php:1298 msgid "Profile Unavailable." msgstr "" @@ -11326,7 +5163,10 @@ msgstr "" msgid "Provide a wiki for your channel" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:77 +#: ../../Zotlabs/Module/Wiki.php:77 ../../addon/cart/myshop.php:37 +#: ../../addon/cart/cart.php:1444 +#: ../../addon/cart/submodules/paypalbutton.php:456 +#: ../../addon/cart/manual_payments.php:93 msgid "Invalid channel" msgstr "" @@ -11342,10 +5182,20 @@ msgstr "" msgid "Error downloading wiki: " msgstr "" +#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Widget/Wiki_list.php:15 +#: ../../include/nav.php:538 +msgid "Wikis" +msgstr "" + #: ../../Zotlabs/Module/Wiki.php:212 msgid "Download" msgstr "" +#: ../../Zotlabs/Module/Wiki.php:214 ../../Zotlabs/Module/Chat.php:264 +#: ../../Zotlabs/Module/Profiles.php:831 ../../Zotlabs/Module/Manage.php:145 +msgid "Create New" +msgstr "" + #: ../../Zotlabs/Module/Wiki.php:216 msgid "Wiki name" msgstr "" @@ -11354,6 +5204,24 @@ msgstr "" msgid "Content type" msgstr "" +#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Wiki.php:371 +#: ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../addon/mdpost/mdpost.php:41 +#: ../../include/text.php:1979 +msgid "Markdown" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Wiki.php:371 +#: ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../include/text.php:1977 +msgid "BBcode" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../include/text.php:1980 +msgid "Text" +msgstr "" + #: ../../Zotlabs/Module/Wiki.php:219 ../../Zotlabs/Storage/Browser.php:292 msgid "Type" msgstr "" @@ -11394,6 +5262,11 @@ msgstr "" msgid "Revision Comparison" msgstr "" +#: ../../Zotlabs/Module/Wiki.php:367 ../../Zotlabs/Lib/NativeWikiPage.php:564 +#: ../../Zotlabs/Widget/Wiki_page_history.php:25 +msgid "Revert" +msgstr "" + #: ../../Zotlabs/Module/Wiki.php:374 msgid "Short description of your changes (optional)" msgstr "" @@ -11410,6 +5283,53 @@ msgstr "" msgid "Embed image from photo albums" msgstr "" +#: ../../Zotlabs/Module/Wiki.php:400 ../../addon/hsse/hsse.php:208 +#: ../../include/conversation.php:1414 +msgid "Embed an image from your albums" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:402 ../../Zotlabs/Module/Profile_photo.php:506 +#: ../../Zotlabs/Module/Cover_photo.php:435 ../../addon/hsse/hsse.php:210 +#: ../../addon/hsse/hsse.php:257 ../../include/conversation.php:1416 +#: ../../include/conversation.php:1463 +msgid "OK" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:403 ../../Zotlabs/Module/Profile_photo.php:507 +#: ../../Zotlabs/Module/Cover_photo.php:436 ../../addon/hsse/hsse.php:139 +#: ../../include/conversation.php:1342 +msgid "Choose images to embed" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:404 ../../Zotlabs/Module/Profile_photo.php:508 +#: ../../Zotlabs/Module/Cover_photo.php:437 ../../addon/hsse/hsse.php:140 +#: ../../include/conversation.php:1343 +msgid "Choose an album" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:405 ../../Zotlabs/Module/Profile_photo.php:509 +#: ../../Zotlabs/Module/Cover_photo.php:438 +msgid "Choose a different album" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:406 ../../Zotlabs/Module/Profile_photo.php:510 +#: ../../Zotlabs/Module/Cover_photo.php:439 ../../addon/hsse/hsse.php:142 +#: ../../include/conversation.php:1345 +msgid "Error getting album list" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:407 ../../Zotlabs/Module/Profile_photo.php:511 +#: ../../Zotlabs/Module/Cover_photo.php:440 ../../addon/hsse/hsse.php:143 +#: ../../include/conversation.php:1346 +msgid "Error getting photo link" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:408 ../../Zotlabs/Module/Profile_photo.php:512 +#: ../../Zotlabs/Module/Cover_photo.php:441 ../../addon/hsse/hsse.php:144 +#: ../../include/conversation.php:1347 +msgid "Error getting album" +msgstr "" + #: ../../Zotlabs/Module/Wiki.php:410 msgid "History" msgstr "" @@ -11466,6 +5386,1995 @@ msgstr "" msgid "You must be authenticated." msgstr "" +#: ../../Zotlabs/Module/Share.php:103 ../../Zotlabs/Lib/Activity.php:1529 +#, php-format +msgid "🔁 Repeated %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Share.php:119 +msgid "Post repeated" +msgstr "" + +#: ../../Zotlabs/Module/Chanview.php:139 +msgid "toggle full screen mode" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:26 +msgid "Layout updated." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:42 +msgid "PDL Editor App" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:43 +msgid "Provides the ability to edit system page layouts" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:56 ../../Zotlabs/Module/Pdledit.php:99 +msgid "Edit System Page Description" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:77 +msgid "(modified)" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:77 ../../Zotlabs/Module/Lostpass.php:133 +msgid "Reset" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:94 +msgid "Layout not found." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:100 +msgid "Module Name:" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:101 +msgid "Layout Help" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:102 +msgid "Edit another layout" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:103 +msgid "System layout" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:165 +msgid "Poke App" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:166 +msgid "Poke somebody in your addressbook" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:199 ../../Zotlabs/Lib/Apps.php:350 +#: ../../include/conversation.php:1098 +msgid "Poke" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:200 +msgid "Poke somebody" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:203 +msgid "Poke/Prod" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:204 +msgid "Poke, prod or do other things to somebody" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:211 +msgid "Recipient" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:212 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:215 ../../Zotlabs/Module/Poke.php:216 +msgid "Make this post private" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:91 +#: ../../Zotlabs/Module/Cover_photo.php:83 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:145 +#: ../../Zotlabs/Module/Profile_photo.php:282 +#: ../../include/photo/photo_driver.php:367 +msgid "Profile Photos" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:164 +#: ../../Zotlabs/Module/Cover_photo.php:210 +msgid "Image resize failed." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:252 +#: ../../addon/openclipatar/openclipatar.php:298 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:259 +#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/photos.php:196 +msgid "Unable to process image" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:294 +#: ../../Zotlabs/Module/Cover_photo.php:263 +msgid "Image upload failed." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:313 +#: ../../Zotlabs/Module/Cover_photo.php:280 +msgid "Unable to process image." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:429 +#: ../../Zotlabs/Module/Cover_photo.php:373 +#: ../../Zotlabs/Module/Cover_photo.php:388 +msgid "Photo not available." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:493 +msgid "" +"Your default profile photo is visible to anybody on the internet. Profile " +"photos for alternate profiles will inherit the permissions of the profile" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:493 +msgid "" +"Your profile photo is visible to anybody on the internet and may be " +"distributed to other websites." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:495 +#: ../../Zotlabs/Module/Cover_photo.php:426 +msgid "Upload File:" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:496 +#: ../../Zotlabs/Module/Cover_photo.php:427 +msgid "Select a profile:" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:497 +msgid "Use Photo for Profile" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:497 +msgid "Change Profile Photo" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:498 +msgid "Use" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:503 +#: ../../Zotlabs/Module/Profile_photo.php:504 +#: ../../Zotlabs/Module/Cover_photo.php:432 +#: ../../Zotlabs/Module/Cover_photo.php:433 +msgid "Use a photo from your albums" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:514 +#: ../../Zotlabs/Module/Cover_photo.php:444 +msgid "Select existing photo" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:533 +#: ../../Zotlabs/Module/Cover_photo.php:461 +msgid "Crop Image" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:534 +#: ../../Zotlabs/Module/Cover_photo.php:462 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:536 +#: ../../Zotlabs/Module/Cover_photo.php:464 +msgid "Done Editing" +msgstr "" + +#: ../../Zotlabs/Module/Chatsvc.php:131 +msgid "Away" +msgstr "" + +#: ../../Zotlabs/Module/Chatsvc.php:136 +msgid "Online" +msgstr "" + +#: ../../Zotlabs/Module/Item.php:362 +msgid "Unable to locate original post." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:649 +msgid "Empty post discarded." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1058 +msgid "Duplicate post suppressed." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1203 +msgid "System error. Post not saved." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1239 +msgid "Your comment is awaiting approval." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1356 +msgid "Unable to obtain post information from database." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1363 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1370 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:338 +msgid "sent you a private message" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:394 +msgid "added your channel" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:419 +msgid "requires approval" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:429 +msgid "g A l F d" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:447 +msgid "[today]" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:457 +msgid "posted an event" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:491 +msgid "shared a file with you" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:673 +msgid "Private forum" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:673 +msgid "Public forum" +msgstr "" + +#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 +msgid "Invalid item." +msgstr "" + +#: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 +#: ../../Zotlabs/Module/Display.php:140 ../../Zotlabs/Module/Display.php:157 +#: ../../Zotlabs/Module/Display.php:174 ../../Zotlabs/Module/Display.php:180 +#: ../../Zotlabs/Lib/NativeWikiPage.php:521 ../../Zotlabs/Web/Router.php:185 +#: ../../addon/chess/Mod_Chess.php:447 ../../include/help.php:132 +msgid "Page not found." +msgstr "" + +#: ../../Zotlabs/Module/Page.php:173 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " +"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:81 ../../Zotlabs/Module/Defperms.php:67 +msgid "Could not access contact record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:112 +msgid "Could not locate selected profile." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:312 +msgid "is now connected to" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:437 +msgid "Could not access address book record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:485 ../../Zotlabs/Module/Connedit.php:489 +msgid "Refresh failed - channel is currently unavailable." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:504 ../../Zotlabs/Module/Connedit.php:513 +#: ../../Zotlabs/Module/Connedit.php:522 ../../Zotlabs/Module/Connedit.php:531 +#: ../../Zotlabs/Module/Connedit.php:544 +msgid "Unable to set address book parameters." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Connection has been removed." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:608 ../../Zotlabs/Lib/Apps.php:343 +#: ../../addon/openclipatar/openclipatar.php:57 +#: ../../include/conversation.php:1038 ../../include/nav.php:110 +msgid "View Profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:611 +#, php-format +msgid "View %s's profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:615 +msgid "Refresh Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:618 +msgid "Fetch updated permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "Refresh Photo" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:625 +msgid "Fetch updated photo" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/conversation.php:1048 +msgid "Recent Activity" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:632 +msgid "View recent posts and comments" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:639 +msgid "Block (or Unblock) all communications with this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:640 +msgid "This connection is blocked!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:644 +msgid "Unignore" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:647 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:648 +msgid "This connection is ignored!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:652 +msgid "Unarchive" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:652 +msgid "Archive" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:655 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:656 +msgid "This connection is archived!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:660 +msgid "Unhide" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:660 +msgid "Hide" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:663 +msgid "Hide or Unhide this connection from your other connections" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:664 +msgid "This connection is hidden!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:671 +msgid "Delete this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:679 +msgid "Fetch Vcard" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:682 +msgid "Fetch electronic calling card for this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:693 +msgid "Open Individual Permissions section by default" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:716 +msgid "Affinity" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:719 +msgid "Open Set Affinity section by default" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:723 ../../Zotlabs/Widget/Affinity.php:30 +msgid "Me" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:724 ../../Zotlabs/Widget/Affinity.php:31 +msgid "Family" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:726 ../../Zotlabs/Widget/Affinity.php:33 +msgid "Acquaintances" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:756 +msgid "Filter" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Open Custom Filter section by default" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:796 +msgid "Approve this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:796 +msgid "Accept connection to allow communication" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:801 +msgid "Set Affinity" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:804 +msgid "Set Profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:807 +msgid "Set Affinity & Profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:855 +msgid "This connection is unreachable from this location." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:856 +msgid "This connection may be unreachable from other channel locations." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:858 +msgid "Location independence is not supported by their network." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:864 +msgid "" +"This connection is unreachable from this location. Location independence is " +"not supported by their network." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:867 ../../Zotlabs/Module/Defperms.php:254 +msgid "Connection Default Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:867 ../../include/items.php:4328 +#, php-format +msgid "Connection: %s" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:868 ../../Zotlabs/Module/Defperms.php:255 +msgid "Apply these permissions automatically" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:868 +msgid "Connection requests will be approved without your interaction" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:869 ../../Zotlabs/Module/Defperms.php:256 +msgid "Permission role" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Defperms.php:257 +msgid "Add permission role" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:877 +msgid "This connection's primary address is" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:878 +msgid "Available locations:" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:883 ../../Zotlabs/Module/Defperms.php:261 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:884 +msgid "Connection Tools" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:886 +msgid "Slide to adjust your degree of friendship" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:887 ../../Zotlabs/Module/Rate.php:155 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:888 +msgid "Slide to adjust your rating" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:889 ../../Zotlabs/Module/Connedit.php:894 +msgid "Optionally explain your rating" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:891 +msgid "Custom Filter" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:892 +msgid "Only import posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:893 +msgid "Do not import posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:895 +msgid "This information is public!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:900 +msgid "Connection Pending Approval" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:905 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:912 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can change those settings here but they wont have " +"any impact unless the inherited setting changes." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:913 +msgid "Last update:" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:921 +msgid "Details" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:102 +msgid "Chatrooms App" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:103 +msgid "Access Controlled Chatrooms" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:196 +msgid "Room not found" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:212 +msgid "Leave Room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:213 +msgid "Delete Room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:214 +msgid "I am away right now" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:215 +msgid "I am online" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:217 +msgid "Bookmark this room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:220 ../../Zotlabs/Module/Mail.php:241 +#: ../../Zotlabs/Module/Mail.php:362 ../../addon/hsse/hsse.php:134 +#: ../../include/conversation.php:1337 +msgid "Please enter a link URL:" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:221 ../../Zotlabs/Module/Mail.php:294 +#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:810 +#: ../../addon/hsse/hsse.php:255 ../../include/conversation.php:1461 +msgid "Encrypt text" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:240 +msgid "New Chatroom" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:241 +msgid "Chatroom name" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:242 +msgid "Expiration of chats (minutes)" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:258 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:263 +msgid "No chatrooms available" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:267 +msgid "Expiration" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:268 +msgid "min" +msgstr "" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:344 +#: ../../include/features.php:383 ../../include/nav.php:446 +msgid "Photos" +msgstr "" + +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:339 +#: ../../Zotlabs/Storage/Browser.php:278 ../../include/nav.php:454 +msgid "Files" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:67 +msgid "Unable to update menu." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:78 +msgid "Unable to create menu." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:160 ../../Zotlabs/Module/Menu.php:173 +msgid "Menu Name" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:160 +msgid "Unique name (not visible on webpage) - required" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:161 ../../Zotlabs/Module/Menu.php:174 +msgid "Menu Title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:161 +msgid "Visible on webpage - leave empty for no title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:162 +msgid "Allow Bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 +msgid "Menu may be used to store saved bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:224 +msgid "Submit and proceed" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:170 ../../include/text.php:2559 +msgid "Menus" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:180 +msgid "Bookmarks allowed" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:182 +msgid "Delete this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:183 ../../Zotlabs/Module/Menu.php:218 +msgid "Edit menu contents" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:184 +msgid "Edit this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:200 +msgid "Menu could not be deleted." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:213 +msgid "Edit Menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:217 +msgid "Add or remove entries to this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:219 +msgid "Menu name" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:219 +msgid "Must be unique, only seen by you" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:220 +msgid "Menu title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:220 +msgid "Menu title as seen by others" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:221 +msgid "Allow bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2560 +msgid "Layouts" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:347 +#: ../../include/nav.php:172 ../../include/nav.php:322 +#: ../../include/help.php:117 ../../include/help.php:125 +msgid "Help" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:186 +msgid "Comanche page description language help" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:190 +msgid "Layout Description" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:195 +msgid "Download PDL file" +msgstr "" + +#: ../../Zotlabs/Module/Notes.php:56 +msgid "Notes App" +msgstr "" + +#: ../../Zotlabs/Module/Notes.php:57 +msgid "A simple notes app with a widget (note: notes are not encrypted)" +msgstr "" + +#: ../../Zotlabs/Module/Cloud.php:123 +msgid "Not found" +msgstr "" + +#: ../../Zotlabs/Module/Cloud.php:129 +msgid "Please refresh page" +msgstr "" + +#: ../../Zotlabs/Module/Cloud.php:132 +msgid "Unknown error" +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:24 +#: ../../Zotlabs/Module/Email_resend.php:12 +msgid "Token verification failed." +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:36 +msgid "Email Verification Required" +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:37 +#, php-format +msgid "" +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:38 +msgid "Resend Email" +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:41 +msgid "Validation token" +msgstr "" + +#: ../../Zotlabs/Module/Tagger.php:48 +msgid "Post not found." +msgstr "" + +#: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:200 +#: ../../include/bbcode.php:362 +msgid "post" +msgstr "" + +#: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 +#: ../../include/text.php:2123 +msgid "comment" +msgstr "" + +#: ../../Zotlabs/Module/Tagger.php:119 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + +#: ../../Zotlabs/Module/Pconfig.php:32 ../../Zotlabs/Module/Pconfig.php:68 +msgid "This setting requires special processing and editing has been blocked." +msgstr "" + +#: ../../Zotlabs/Module/Pconfig.php:57 +msgid "Configuration Editor" +msgstr "" + +#: ../../Zotlabs/Module/Pconfig.php:58 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please " +"leave this page unless you are comfortable with and knowledgeable about how " +"to correctly use this feature." +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:35 +msgid "Affinity Tool settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:47 +msgid "" +"This app presents a slider control in your connection editor and also on " +"your network page. The slider represents your degree of friendship " +"(affinity) with each connection. It allows you to zoom in or out and display " +"conversations from only your closest friends or everybody in your stream." +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:52 +msgid "Affinity Tool App" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:57 +msgid "" +"The numbers below represent the minimum and maximum slider default positions " +"for your network/stream page as a percentage." +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:64 +msgid "Default maximum affinity level" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:64 +msgid "0-99 default 99" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:70 +msgid "Default minimum affinity level" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:70 +msgid "0-99 - default 0" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:76 +msgid "Persistent affinity levels" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:76 +msgid "" +"If disabled the max and min levels will be reset to default after page reload" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:84 +msgid "Affinity Tool Settings" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:189 +msgid "Default Permissions App" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:190 +msgid "Set custom default permissions for new connections" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:262 +msgid "Automatic approval settings" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:270 +msgid "" +"Some individual permissions may have been preset or locked based on your " +"channel type and privacy settings." +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:17 +msgid "Unknown App" +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:29 +msgid "Authorize" +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:30 +#, php-format +msgid "Do you authorize the app %s to access your channel data?" +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:32 +msgid "Allow" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:45 +msgid "Privacy group created." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:48 +msgid "Could not create privacy group." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:61 ../../Zotlabs/Module/Group.php:213 +#: ../../include/items.php:4295 +msgid "Privacy group not found." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:80 +msgid "Privacy group updated." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:106 +msgid "Privacy Groups App" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:107 +msgid "Management of privacy groups" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:141 ../../Zotlabs/Module/Group.php:153 +#: ../../Zotlabs/Lib/Apps.php:363 ../../Zotlabs/Lib/Group.php:324 +#: ../../Zotlabs/Widget/Activity_filter.php:41 ../../include/nav.php:99 +#: ../../include/group.php:320 +msgid "Privacy Groups" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:142 +msgid "Add Group" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:146 +msgid "Privacy group name" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:147 ../../Zotlabs/Module/Group.php:256 +msgid "Members are visible to other channels" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:155 ../../Zotlabs/Module/Help.php:81 +msgid "Members" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:182 +msgid "Privacy group removed." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:185 +msgid "Unable to remove privacy group." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:251 +#, php-format +msgid "Privacy Group: %s" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:253 +msgid "Privacy group name: " +msgstr "" + +#: ../../Zotlabs/Module/Group.php:258 +msgid "Delete Group" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:269 +msgid "Group members" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:271 +msgid "Not in this group" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:303 +msgid "Click a channel to toggle membership" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 +#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 +msgid "Profile not found." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 +msgid "Profile-" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 +msgid "New profile created." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:111 +msgid "Profile unavailable to clone." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:146 +msgid "Profile unavailable to export." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:252 +msgid "Profile Name is required." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:459 +msgid "Marital Status" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:463 +msgid "Romantic Partner" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:772 +msgid "Likes" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:773 +msgid "Dislikes" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:780 +msgid "Work/Employment" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:478 +msgid "Religion" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:482 +msgid "Political Views" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:486 +#: ../../addon/openid/MysqlProvider.php:74 +msgid "Gender" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:490 +msgid "Sexual Preference" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:494 +msgid "Homepage" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:498 +msgid "Interests" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:594 +msgid "Profile updated." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:678 +msgid "Hide your connections list from viewers of this profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:722 +msgid "Edit Profile Details" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:724 +msgid "View this profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:725 ../../Zotlabs/Module/Profiles.php:824 +#: ../../include/channel.php:1441 +msgid "Edit visibility" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Profile Tools" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Change cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:728 ../../include/channel.php:1411 +msgid "Change profile photo" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:729 +msgid "Create a new profile using these settings" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Clone this profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Delete this profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Add profile things" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Personal" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Relationship" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:736 ../../Zotlabs/Widget/Newmember.php:51 +#: ../../include/datetime.php:58 +msgid "Miscellaneous" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Import profile from file" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Export profile to file" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Your gender" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Marital status" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Sexual preference" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "Profile name" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "This is your default profile." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:749 +msgid "Your full name" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:750 +msgid "Title/Description" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:753 +msgid "Street address" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:754 +msgid "Locality/City" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:755 +msgid "Region/State" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:756 +msgid "Postal/Zip code" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:762 +msgid "Who (if applicable)" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:762 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:763 +msgid "Since (date)" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:766 +msgid "Tell us about yourself" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:767 +#: ../../addon/openid/MysqlProvider.php:68 +msgid "Homepage URL" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:768 +msgid "Hometown" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:769 +msgid "Political views" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:770 +msgid "Religious views" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Keywords used in directory listings" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Example: fishing photography software" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:774 +msgid "Musical interests" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:775 +msgid "Books, literature" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:776 +msgid "Television" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:777 +msgid "Film/Dance/Culture/Entertainment" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Hobbies/Interests" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:779 +msgid "Love/Romance" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:781 +msgid "School/Education" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:782 +msgid "Contact information and social networks" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:783 +msgid "My other channels" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:785 +msgid "Communications" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:820 ../../include/channel.php:1437 +msgid "Profile Image" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:830 ../../include/channel.php:1418 +#: ../../include/nav.php:113 +msgid "Edit Profiles" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:21 +msgid "This page is available only to site members" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:27 +msgid "Welcome" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:29 +msgid "What would you like to do?" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:31 +msgid "" +"Please bookmark this page if you would like to return to it in the future" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:35 +msgid "Upload a profile photo" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:36 +msgid "Upload a cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:37 +msgid "Edit your default profile" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:41 +msgid "View friend suggestions" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:39 +msgid "View the channel directory" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:40 +msgid "View/edit your channel settings" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:41 +msgid "View the site or project documentation" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:42 +msgid "Visit your channel homepage" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:43 +msgid "" +"View your connections and/or add somebody whose address you already know" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:44 +msgid "" +"View your personal stream (this may be empty until you add some connections)" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:52 +msgid "View the public stream. Warning: this content is not moderated" +msgstr "" + +#: ../../Zotlabs/Module/Editwebpage.php:139 +msgid "Page link" +msgstr "" + +#: ../../Zotlabs/Module/Editwebpage.php:166 +msgid "Edit Webpage" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:145 +msgid "Create a new channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:336 +#: ../../include/nav.php:96 +msgid "Channel Manager" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:171 +msgid "Current Channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:173 +msgid "Switch to one of your channels by selecting it." +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:174 +msgid "Default Channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Make Default" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:178 +#, php-format +msgid "%d new messages" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:179 +#, php-format +msgid "%d new introductions" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:181 +msgid "Delegated Channel" +msgstr "" + +#: ../../Zotlabs/Module/Cards.php:51 +msgid "Cards App" +msgstr "" + +#: ../../Zotlabs/Module/Cards.php:52 +msgid "Create personal planning cards" +msgstr "" + +#: ../../Zotlabs/Module/Cards.php:112 +msgid "Add Card" +msgstr "" + +#: ../../Zotlabs/Module/Cards.php:207 ../../Zotlabs/Lib/Apps.php:325 +#: ../../include/nav.php:503 +msgid "Cards" +msgstr "" + +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:21 +msgid "About this site" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:22 +msgid "Site Name" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:26 +msgid "Administrator" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:28 ../../Zotlabs/Module/Register.php:239 +msgid "Terms of Service" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:29 +msgid "Software and Project information" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:30 +msgid "This site is powered by $Projectname" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:31 +msgid "" +"Federated and decentralised networking and identity services provided by Zot" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Additional federated transport protocols:" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:36 +#, php-format +msgid "Version %s" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:37 +msgid "Project homepage" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:38 +msgid "Developer homepage" +msgstr "" + +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "" + +#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 +#: ../../include/conversation.php:1088 +msgid "Ratings" +msgstr "" + +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "" + +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "" + +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:48 +msgid "Webpages App" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:49 +msgid "Provide managed web pages on your channel" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:69 +msgid "Import Webpage Elements" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:70 +msgid "Import selected" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:93 +msgid "Export Webpage Elements" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:94 +msgid "Export selected" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:252 ../../Zotlabs/Lib/Apps.php:340 +#: ../../include/nav.php:526 +msgid "Webpages" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:263 +msgid "Actions" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:264 +msgid "Page Link" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:265 +msgid "Page Title" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:295 +msgid "Invalid file type." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:307 +msgid "Error opening zip file" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:318 +msgid "Invalid folder path." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:345 +msgid "No webpage elements detected." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:420 +msgid "Import complete." +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:35 +msgid "" +"Channel name changes are not allowed within 48 hours of changing the account " +"password." +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:222 +#: ../../include/channel.php:655 +msgid "Reserved nickname. Please choose another." +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:227 +#: ../../include/channel.php:660 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:77 +msgid "Change channel nickname/address" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "Any/all connections on other networks will be lost!" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:80 +msgid "New channel address" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:81 +msgid "Rename Channel" +msgstr "" + +#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 +msgid "Item is not editable" +msgstr "" + +#: ../../Zotlabs/Module/Editpost.php:109 ../../Zotlabs/Module/Rpost.php:144 +msgid "Edit post" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:59 +msgid "Invalid message" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:93 +msgid "no results" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "channel sync processed" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:111 +msgid "queued" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:115 +msgid "posted" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:119 +msgid "accepted for delivery" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "updated" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "update ignored" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:129 +msgid "permission denied" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:133 +msgid "recipient not found" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:136 +msgid "mail recalled" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:139 +msgid "duplicate mail received" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:142 +msgid "mail delivered" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:162 +#, php-format +msgid "Delivery report for %1$s" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:166 ../../Zotlabs/Widget/Wiki_pages.php:41 +#: ../../Zotlabs/Widget/Wiki_pages.php:98 +msgid "Options" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:167 +msgid "Redeliver" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:41 +msgid "Failed to create source. No channel selected." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:57 +msgid "Source created." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:70 +msgid "Source updated." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:88 +msgid "Sources App" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:89 +msgid "Automatically import channel content from other channels or feeds" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:101 +msgid "*" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:107 ../../Zotlabs/Lib/Apps.php:367 +msgid "Channel Sources" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:108 +msgid "Manage remote sources of content for your channel." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:119 +msgid "New Source" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:120 ../../Zotlabs/Module/Sources.php:154 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 +msgid "Only import content with these words (one per line)" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 +msgid "Leave blank to import all public content" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:161 +msgid "Channel Name" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 +#: ../../Zotlabs/Module/Oauth.php:117 +msgid "Optional" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +msgid "Resend posts with this channel as author" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +msgid "Copyrights may apply" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:144 ../../Zotlabs/Module/Sources.php:174 +msgid "Source not found." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:151 +msgid "Edit Source" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:152 +msgid "Delete Source" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:182 +msgid "Source removed" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:184 +msgid "Unable to remove source." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:56 +msgid "Like/Dislike" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:61 +msgid "This action is restricted to members." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:62 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:111 ../../Zotlabs/Module/Like.php:137 +#: ../../Zotlabs/Module/Like.php:175 +msgid "Invalid request." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:123 ../../include/conversation.php:122 +msgid "channel" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:152 +msgid "thing" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:198 +msgid "Channel unavailable." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:246 +msgid "Previous action reversed." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:447 ../../Zotlabs/Lib/Activity.php:2054 +#: ../../addon/diaspora/Receiver.php:1505 ../../addon/pubcrawl/as.php:1594 +#: ../../include/conversation.php:160 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:449 ../../Zotlabs/Lib/Activity.php:2056 +#: ../../addon/pubcrawl/as.php:1596 ../../include/conversation.php:163 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:451 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:453 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:455 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:457 ../../addon/diaspora/Receiver.php:2151 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:459 ../../addon/diaspora/Receiver.php:2153 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:461 ../../addon/diaspora/Receiver.php:2155 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:572 +msgid "Action completed." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:573 +msgid "Thank you." +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:116 +msgid "No default suggestions were found." +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:270 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Directory.php:281 +msgid "Gender: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:283 +msgid "Status: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:285 +msgid "Homepage: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:334 ../../include/channel.php:1686 +msgid "Age:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:339 ../../include/channel.php:1513 +#: ../../include/event.php:61 ../../include/event.php:93 +msgid "Location:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:345 +msgid "Description:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:350 ../../include/channel.php:1715 +msgid "Hometown:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:352 ../../include/channel.php:1721 +msgid "About:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:353 ../../Zotlabs/Module/Suggest.php:71 +#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:46 +#: ../../include/conversation.php:1058 ../../include/channel.php:1498 +#: ../../include/connections.php:110 +msgid "Connect" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:354 +msgid "Public Forum:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:357 +msgid "Keywords: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:360 +msgid "Don't suggest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:362 +msgid "Common connections (estimated):" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:411 +msgid "Global Directory" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:411 +msgid "Local Directory" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:417 +msgid "Finding:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:420 ../../Zotlabs/Module/Suggest.php:79 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:422 +msgid "next page" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:422 +msgid "previous page" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:423 +msgid "Sort options" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:424 +msgid "Alphabetic" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:425 +msgid "Reverse Alphabetic" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:426 +msgid "Newest to Oldest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:427 +msgid "Oldest to Newest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:444 +msgid "No entries (some entries may be hidden)." +msgstr "" + #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" msgstr "" @@ -11474,10 +7383,1748 @@ msgstr "" msgid "Lookup xchan beginning with (or webbie): " msgstr "" +#: ../../Zotlabs/Module/Suggest.php:40 +msgid "Suggest Channels App" +msgstr "" + +#: ../../Zotlabs/Module/Suggest.php:41 +msgid "" +"Suggestions for channels in the $Projectname network you might be interested " +"in" +msgstr "" + +#: ../../Zotlabs/Module/Suggest.php:54 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: ../../Zotlabs/Module/Suggest.php:73 ../../Zotlabs/Widget/Suggestions.php:48 +msgid "Ignore/Hide" +msgstr "" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "" + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:73 +msgid "Unable to lookup recipient." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:80 +msgid "Unable to communicate with requested channel." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:87 +msgid "Cannot verify requested channel." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:105 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:160 +msgid "Messages" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:173 +msgid "message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:214 +msgid "Message recalled." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:227 +msgid "Conversation removed." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:270 +msgid "Requested channel is not in this network" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:278 +msgid "Send Private Message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 +msgid "To:" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 +msgid "Subject:" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 +msgid "Attach file" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:289 +msgid "Send" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 +#: ../../addon/hsse/hsse.php:250 ../../include/conversation.php:1456 +msgid "Set expiration date" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:393 +msgid "Delete message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:394 +msgid "Delivery report" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:395 +msgid "Recall message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:397 +msgid "Message has been recalled." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:414 +msgid "Delete Conversation" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:416 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:420 +msgid "Send Reply" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:425 +#, php-format +msgid "Your message for %s (%s):" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 +msgid "Public Hubs" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:49 +msgid "Rate" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:288 +msgid "webpage" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:294 +msgid "block" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:291 +msgid "layout" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:297 +msgid "menu" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:185 +#, php-format +msgid "%s element installed" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:188 +#, php-format +msgid "%s element installation failed" +msgstr "" + +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "" + +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "" + +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "" + +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Enter a folder name" +msgstr "" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "or select an existing folder (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:182 +msgid "Save to Folder" +msgstr "" + +#: ../../Zotlabs/Module/Probe.php:18 +msgid "Remote Diagnostics App" +msgstr "" + +#: ../../Zotlabs/Module/Probe.php:19 +msgid "Perform diagnostics on remote channels" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:52 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:58 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:92 +msgid "Passwords do not match." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:135 +msgid "Registration successful. Continue to create your first channel..." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:138 +msgid "" +"Registration successful. Please check your email for validation instructions." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:145 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:148 +msgid "Your registration can not be processed." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:195 +msgid "Registration on this hub is disabled." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:204 +msgid "Registration on this hub is by approval only." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:205 ../../Zotlabs/Module/Register.php:214 +msgid "Register at another affiliated hub." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:213 +msgid "Registration on this hub is by invitation only." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:224 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:245 +#, php-format +msgid "I accept the %s for this website" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:252 +#, php-format +msgid "I am over %s years of age and accept the %s for this website" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:257 +msgid "Your email address" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:258 +msgid "Choose a password" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:259 +msgid "Please re-enter your password" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:260 +msgid "Please enter your invitation code" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:261 +msgid "Your Name" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:261 +msgid "Real names are preferred." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:263 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address e." +"g. nickname%s" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:264 +msgid "" +"Select a channel permission role for your usage needs and privacy " +"requirements." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:265 +msgid "no" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:265 +msgid "yes" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:293 ../../boot.php:1610 +#: ../../include/nav.php:160 +msgid "Register" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:294 +msgid "" +"This site requires email verification. After completing this form, please " +"check your email for further instructions." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:194 +#: ../../Zotlabs/Module/Cover_photo.php:252 +msgid "Cover Photos" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:303 ../../include/items.php:4672 +msgid "female" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:304 ../../include/items.php:4673 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:305 ../../include/items.php:4674 +msgid "male" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:306 ../../include/items.php:4675 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:308 ../../include/items.php:4677 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:310 ../../include/channel.php:2207 +msgid "cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:424 +msgid "Your cover photo may be visible to anybody on the internet" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:428 +msgid "Change Cover Photo" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:23 +msgid "Documentation Search" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:80 ../../include/nav.php:436 +msgid "About" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:82 +msgid "Administrators" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:83 +msgid "Developers" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:84 +msgid "Tutorials" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:95 +msgid "$Projectname Documentation" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:96 +msgid "Contents" +msgstr "" + +#: ../../Zotlabs/Module/Display.php:396 +msgid "Article" +msgstr "" + +#: ../../Zotlabs/Module/Display.php:448 +msgid "Item has been removed." +msgstr "" + +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "" + +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "" + +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "" + +#: ../../Zotlabs/Module/Network.php:109 +msgid "No such group" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:158 +msgid "No such channel" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:242 +msgid "Privacy group is empty" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:252 +msgid "Privacy group: " +msgstr "" + +#: ../../Zotlabs/Module/Network.php:325 ../../addon/redred/Mod_Redred.php:29 +msgid "Invalid channel." +msgstr "" + +#: ../../Zotlabs/Module/Acl.php:360 +msgid "network" +msgstr "" + +#: ../../Zotlabs/Module/Home.php:72 ../../Zotlabs/Module/Home.php:80 +#: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 +msgid "$Projectname" +msgstr "" + +#: ../../Zotlabs/Module/Home.php:90 +#, php-format +msgid "Welcome to %s" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:152 +msgid "Permission Denied." +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:185 +msgid "Edit file permissions" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:197 +msgid "Set/edit permissions" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:198 +msgid "Include all files and sub folders" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:199 +msgid "Return to file list" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:201 +msgid "Copy/paste this code to attach file to a post" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:202 +msgid "Copy/paste this URL to link file from a web page" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:204 +msgid "Share this file" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:205 +msgid "Show URL to this file" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:206 +#: ../../Zotlabs/Storage/Browser.php:411 +msgid "Show in your contacts shared folder" +msgstr "" + +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "" + +#: ../../Zotlabs/Module/Common.php:45 +msgid "No connections in common." +msgstr "" + +#: ../../Zotlabs/Module/Common.php:65 +msgid "View Common Connections" +msgstr "" + +#: ../../Zotlabs/Module/Email_resend.php:30 +msgid "Email verification resent" +msgstr "" + +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:83 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:113 +msgid "View Connections" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:97 +msgid "Blocked accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:98 +msgid "Expired accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:99 +msgid "Expiring accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:120 +msgid "Message queues" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:134 +msgid "Your software should be updated" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:139 +msgid "Summary" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Registered accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:143 +msgid "Pending registrations" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:144 +msgid "Registered channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Active addons" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Version" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Repository version (master)" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Repository version (dev)" +msgstr "" + +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "" + +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "" + +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "" + +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "" + +#: ../../Zotlabs/Module/Card_edit.php:128 +msgid "Edit Card" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 +#, php-format +msgid "Site Member (%s)" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:68 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1639 +msgid "Password Reset" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your password has been reset as requested." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Your new password is" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "Save or copy your new password - and then" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "click here to login" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:96 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:117 +#, php-format +msgid "Your password has changed at %s" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Forgot your Password?" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:131 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:132 +msgid "Email Address" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:45 +msgid "Name is required" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:49 +msgid "Key and Secret are required" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:100 +msgid "OAuth Apps Manager App" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:101 +msgid "OAuth authentication tokens for mobile and remote apps" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:140 +#: ../../addon/statusnet/statusnet.php:596 ../../addon/twitter/twitter.php:614 +msgid "Consumer Key" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Oauth.php:143 +msgid "Icon url" +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:128 +msgid "Application not found." +msgstr "" + +#: ../../Zotlabs/Module/Oauth.php:171 +msgid "Connected OAuth Apps" +msgstr "" + +#: ../../Zotlabs/Module/Notifications.php:60 +#: ../../Zotlabs/Lib/ThreadItem.php:450 +msgid "Mark all seen" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1514 +#, php-format +msgid "Likes %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1517 +#, php-format +msgid "Doesn't like %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1520 +#, php-format +msgid "Will attend %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1523 +#, php-format +msgid "Will not attend %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1526 +#, php-format +msgid "May attend %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1865 ../../Zotlabs/Lib/Activity.php:2063 +#: ../../widget/Netselect/Netselect.php:42 ../../addon/pubcrawl/as.php:1268 +#: ../../addon/pubcrawl/as.php:1423 ../../addon/pubcrawl/as.php:1603 +#: ../../include/network.php:1730 +msgid "ActivityPub" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:10 +msgid "0. Beginner/Basic" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:11 +msgid "1. Novice - not skilled but willing to learn" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:12 +msgid "2. Intermediate - somewhat comfortable" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:13 +msgid "3. Advanced - very comfortable" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:14 +msgid "4. Expert - I can write computer code" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:15 +msgid "5. Wizard - I probably know more than you do" +msgstr "" + +#: ../../Zotlabs/Lib/Libzot.php:652 ../../include/zot.php:802 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:322 +msgid "Apps" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:323 +msgid "Affinity Tool" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:326 +msgid "Site Admin" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:327 ../../addon/buglink/buglink.php:16 +msgid "Report Bug" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:328 ../../include/nav.php:492 +msgid "Bookmarks" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:329 ../../Zotlabs/Widget/Chatroom_list.php:16 +#: ../../include/nav.php:479 ../../include/nav.php:482 +msgid "Chatrooms" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:330 +msgid "Content Filter" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:331 +#: ../../addon/content_import/Mod_content_import.php:135 +msgid "Content Import" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:333 +msgid "Remote Diagnostics" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:334 +msgid "Suggest Channels" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:335 ../../boot.php:1630 ../../include/nav.php:122 +#: ../../include/nav.php:126 +msgid "Login" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:337 +msgid "Stream" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:341 ../../include/nav.php:541 +msgid "Wiki" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:342 ../../include/features.php:96 +msgid "Channel Home" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:345 ../../Zotlabs/Storage/Browser.php:140 +#: ../../include/features.php:82 ../../include/nav.php:465 +#: ../../include/nav.php:468 +msgid "Calendar" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:346 ../../include/features.php:184 +msgid "Directory" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:348 +msgid "Mail" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:351 +msgid "Chat" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:353 +msgid "Probe" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:354 +msgid "Suggest" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:355 +msgid "Random Channel" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:356 +msgid "Invite" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:357 ../../Zotlabs/Widget/Admin.php:26 +msgid "Features" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:358 ../../addon/openid/MysqlProvider.php:69 +msgid "Language" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:359 +msgid "Post" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:360 ../../addon/openid/MysqlProvider.php:58 +#: ../../addon/openid/MysqlProvider.php:59 +#: ../../addon/openid/MysqlProvider.php:60 +msgid "Profile Photo" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:362 ../../include/features.php:397 +msgid "Profiles" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:364 +msgid "Notifications" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:365 +msgid "Order Apps" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:366 +msgid "CardDAV" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:368 +msgid "Guest Access" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:369 ../../Zotlabs/Widget/Notes.php:21 +msgid "Notes" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:370 +msgid "OAuth Apps Manager" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:371 +msgid "OAuth2 Apps Manager" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:372 +msgid "PDL Editor" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:374 +msgid "Premium Channel" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:376 +msgid "My Chatrooms" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:377 +msgid "Channel Export" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:554 +msgid "Purchase" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:559 +msgid "Undelete" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:568 +msgid "Add to app-tray" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:569 +msgid "Remove from app-tray" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:570 +msgid "Pin to navbar" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:571 +msgid "Unpin from navbar" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:82 +msgctxt "permcat" +msgid "default" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:133 +msgctxt "permcat" +msgid "follower" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:137 +msgctxt "permcat" +msgid "contributor" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:141 +msgctxt "permcat" +msgid "publisher" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:42 +#: ../../Zotlabs/Lib/NativeWikiPage.php:94 +msgid "(No Title)" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:109 +msgid "Wiki page create failed." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:122 +msgid "Wiki not found." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:133 +msgid "Destination name already exists" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:166 +#: ../../Zotlabs/Lib/NativeWikiPage.php:362 +msgid "Page not found" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:197 +msgid "Error reading page content" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:353 +#: ../../Zotlabs/Lib/NativeWikiPage.php:402 +#: ../../Zotlabs/Lib/NativeWikiPage.php:469 +#: ../../Zotlabs/Lib/NativeWikiPage.php:510 +msgid "Error reading wiki" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:390 +msgid "Page update failed." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:424 +msgid "Nothing deleted" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:490 +msgid "Compare: object not found." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:496 +msgid "Page updated" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:499 +msgid "Untitled" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:505 +msgid "Wiki resource_id required for git commit" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:562 +#: ../../Zotlabs/Widget/Wiki_page_history.php:23 +msgctxt "wiki_history" +msgid "Message" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:563 +#: ../../Zotlabs/Widget/Wiki_page_history.php:24 +msgid "Date" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:565 +#: ../../Zotlabs/Widget/Wiki_page_history.php:26 +msgid "Compare" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:603 ../../include/bbcode.php:754 +#: ../../include/bbcode.php:924 +msgid "Different viewers will see this text differently" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:34 +#: ../../include/acl_selectors.php:33 +msgid "Visible to your default audience" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +#: ../../include/acl_selectors.php:106 +msgid "Only me" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Public" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +msgid "Anybody in the $Projectname network" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +#, php-format +msgid "Any account on %s" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Any of my connections" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Only connections I specifically allow" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:114 +msgid "Any connections including those who haven't yet been approved" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:150 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:151 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "This is your default setting for who can view your connections" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for the audience of your webpages" +msgstr "" + +#: ../../Zotlabs/Lib/Libzotdir.php:160 ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "" + +#: ../../Zotlabs/Lib/Libzotdir.php:162 ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "" + +#: ../../Zotlabs/Lib/Libzotdir.php:163 ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "" + +#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "" + +#: ../../Zotlabs/Lib/Group.php:28 ../../include/group.php:22 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "" + +#: ../../Zotlabs/Lib/Group.php:270 ../../include/group.php:264 +msgid "Add new connections to this privacy group" +msgstr "" + +#: ../../Zotlabs/Lib/Group.php:302 ../../include/group.php:298 +msgid "edit" +msgstr "" + +#: ../../Zotlabs/Lib/Group.php:325 ../../include/group.php:321 +msgid "Edit group" +msgstr "" + +#: ../../Zotlabs/Lib/Group.php:326 ../../include/group.php:322 +msgid "Add privacy group" +msgstr "" + +#: ../../Zotlabs/Lib/Group.php:327 ../../include/group.php:323 +msgid "Channels not in any privacy group" +msgstr "" + +#: ../../Zotlabs/Lib/Group.php:329 ../../Zotlabs/Widget/Savedsearch.php:84 +#: ../../include/group.php:325 +msgid "add" +msgstr "" + +#: ../../Zotlabs/Lib/Chatroom.php:23 +msgid "Missing room name" +msgstr "" + +#: ../../Zotlabs/Lib/Chatroom.php:32 +msgid "Duplicate room name" +msgstr "" + +#: ../../Zotlabs/Lib/Chatroom.php:82 ../../Zotlabs/Lib/Chatroom.php:90 +msgid "Invalid room specifier." +msgstr "" + +#: ../../Zotlabs/Lib/Chatroom.php:122 +msgid "Room not found." +msgstr "" + +#: ../../Zotlabs/Lib/Chatroom.php:143 +msgid "Room is full" +msgstr "" + +#: ../../Zotlabs/Lib/Libsync.php:733 ../../include/zot.php:2611 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:60 +msgid "$Projectname Notification" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:336 +#: ../../addon/diaspora/util.php:349 ../../addon/diaspora/p.php:48 +msgid "$projectname" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:63 +msgid "Thank You," +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:65 ../../addon/hubwall/hubwall.php:33 +#, php-format +msgid "%s Administrator" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:66 +#, php-format +msgid "This email was sent by %1$s at %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:67 +#, php-format +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:68 +#, php-format +msgid "To stop receiving these messages, please adjust your %s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:123 +#, php-format +msgid "%s " +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:127 +#, php-format +msgid "[$Projectname:Notify] New mail received at %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:129 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:130 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:130 +msgid "a private message" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:131 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:144 +msgid "commented on" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:155 +msgid "liked" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:158 +msgid "disliked" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:201 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:209 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:218 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:233 +#, php-format +msgid "%1$s commented on an item/conversation you have been following." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:317 +#: ../../Zotlabs/Lib/Enotify.php:333 ../../Zotlabs/Lib/Enotify.php:358 +#: ../../Zotlabs/Lib/Enotify.php:375 ../../Zotlabs/Lib/Enotify.php:388 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 +#, php-format +msgid "Please visit %s to approve or reject this comment." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:299 +#, php-format +msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:313 +#, php-format +msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:314 +#, php-format +msgid "%1$s liked an item/conversation you created." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:325 +#, php-format +msgid "[$Projectname:Notify] %s posted to your profile wall" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:327 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:329 +#, php-format +msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:352 +#, php-format +msgid "[$Projectname:Notify] %s tagged you" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:353 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:354 +#, php-format +msgid "%1$s [zrl=%2$s]tagged you[/zrl]." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:365 +#, php-format +msgid "[$Projectname:Notify] %1$s poked you" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:366 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:367 +#, php-format +msgid "%1$s [zrl=%2$s]poked you[/zrl]." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:382 +#, php-format +msgid "[$Projectname:Notify] %s tagged your post" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:383 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:384 +#, php-format +msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:395 +msgid "[$Projectname:Notify] Introduction received" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:396 +#, php-format +msgid "You've received an new connection request from '%1$s' at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:397 +#, php-format +msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:400 ../../Zotlabs/Lib/Enotify.php:418 +#, php-format +msgid "You may visit their profile at %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:402 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:409 +msgid "[$Projectname:Notify] Friend suggestion received" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:410 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:411 +#, php-format +msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:416 +msgid "Name:" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:417 +msgid "Photo:" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:420 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:640 +msgid "[$Projectname:Notify]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:808 +msgid "created a new post" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:809 +#, php-format +msgid "commented on %s's post" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:816 +#, php-format +msgid "edited a post dated %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:820 +#, php-format +msgid "edited a comment dated %s" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWiki.php:143 +msgid "Wiki updated successfully" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWiki.php:197 +msgid "Wiki files deleted successfully" +msgstr "" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:67 +msgid "Source code of failed update: " +msgstr "" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:88 +#, php-format +msgid "Update Error at %s" +msgstr "" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:94 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:103 ../../include/conversation.php:700 +msgid "Private Message" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:130 +msgid "Privacy conflict. Discretion advised." +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:172 ../../Zotlabs/Storage/Browser.php:286 +msgid "Admin Delete" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:178 ../../include/conversation.php:690 +msgid "Select" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:203 +msgid "I will attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:203 +msgid "I will not attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:203 +msgid "I might attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:213 +msgid "I agree" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:213 +msgid "I disagree" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:213 +msgid "I abstain" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:267 ../../include/conversation.php:695 +msgid "Toggle Star Status" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:278 ../../include/conversation.php:707 +msgid "Message signature validated" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:279 ../../include/conversation.php:708 +msgid "Message signature incorrect" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:287 +msgid "Add Tag" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:291 ../../include/conversation.php:891 +msgid "Conversation Tools" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:307 ../../include/taxonomy.php:573 +msgid "like" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:308 ../../include/taxonomy.php:574 +msgid "dislike" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:309 +msgid "Reply on this comment" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:309 +msgid "reply" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:309 +msgid "Reply to" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:319 +msgid "Share This" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:319 +msgid "share" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:329 +msgid "Delivery Report" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:348 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Lib/ThreadItem.php:380 ../../Zotlabs/Lib/ThreadItem.php:381 +#, php-format +msgid "View %s's profile - %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:384 +msgid "to" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:385 +msgid "via" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:386 +msgid "Wall-to-Wall" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:387 +msgid "via Wall-To-Wall:" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:401 ../../include/conversation.php:766 +#, php-format +msgid "from %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:404 ../../include/conversation.php:769 +#, php-format +msgid "last edited: %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:405 ../../include/conversation.php:770 +#, php-format +msgid "Expires: %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:413 +msgid "Attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:414 +msgid "Attendance Options" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:415 +msgid "Vote" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:416 +msgid "Voting Options" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:431 +msgid "Go to previous comment" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:440 +#: ../../addon/bookmarker/bookmarker.php:38 +msgid "Save Bookmarks" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:441 +msgid "Add to Calendar" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:468 ../../include/conversation.php:483 +msgid "This is an unsaved preview" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:502 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:797 ../../addon/hsse/hsse.php:200 +#: ../../include/conversation.php:1406 +msgid "Bold" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:798 ../../addon/hsse/hsse.php:201 +#: ../../include/conversation.php:1407 +msgid "Italic" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:799 ../../addon/hsse/hsse.php:202 +#: ../../include/conversation.php:1408 +msgid "Underline" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:800 ../../addon/hsse/hsse.php:203 +#: ../../include/conversation.php:1409 +msgid "Quote" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:801 ../../addon/hsse/hsse.php:204 +#: ../../include/conversation.php:1410 +msgid "Code" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:802 +msgid "Image" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:803 ../../addon/hsse/hsse.php:205 +#: ../../include/conversation.php:1411 +msgid "Attach/Upload file" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:804 +msgid "Insert Link" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:805 +msgid "Video" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:815 +msgid "Your full name (required)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:816 +msgid "Your email address (required)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:817 +msgid "Your website URL (optional)" +msgstr "" + +#: ../../Zotlabs/Zot/Auth.php:152 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." +msgstr "" + +#: ../../Zotlabs/Zot/Auth.php:264 ../../addon/openid/Mod_Openid.php:76 +#: ../../addon/openid/Mod_Openid.php:178 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "" + #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:295 msgid "parent" msgstr "" +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2950 +msgid "Collection" +msgstr "" + #: ../../Zotlabs/Storage/Browser.php:134 msgid "Principal" msgstr "" @@ -11532,140 +9179,13 @@ msgstr "" msgid "Drop files here to immediately upload" msgstr "" -#: ../../Zotlabs/Widget/Activity.php:50 -msgctxt "widget" -msgid "Activity" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:36 -#, php-format -msgid "Show posts related to the %s privacy group" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:45 -msgid "Show my privacy groups" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:66 -msgid "Show posts to this forum" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:73 #: ../../Zotlabs/Widget/Forums.php:100 +#: ../../Zotlabs/Widget/Activity_filter.php:73 #: ../../Zotlabs/Widget/Notifications.php:119 #: ../../Zotlabs/Widget/Notifications.php:120 msgid "Forums" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:77 -msgid "Show forums" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:91 -msgid "Starred Posts" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:95 -msgid "Show posts that I have starred" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:106 -msgid "Personal Posts" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:110 -msgid "Show posts that mention or involve me" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:131 -#, php-format -msgid "Show posts that I have filed to %s" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:141 -msgid "Show filed post categories" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:155 -msgid "Panel search" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:165 -msgid "Filter by name" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:180 -msgid "Remove active filter" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:196 -msgid "Stream Filters" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_order.php:90 -msgid "Commented Date" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_order.php:94 -msgid "Order by last commented date" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_order.php:97 -msgid "Posted Date" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_order.php:101 -msgid "Order by last posted date" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_order.php:104 -msgid "Date Unthreaded" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_order.php:108 -msgid "Order unthreaded by date" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_order.php:123 -msgid "Stream Order" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 -msgid "Member registrations waiting for confirmation" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:29 -msgid "Inspect queue" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:31 -msgid "DB updates" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:56 -msgid "Addon Features" -msgstr "" - -#: ../../Zotlabs/Widget/Affinity.php:54 -msgid "Refresh" -msgstr "" - -#: ../../Zotlabs/Widget/Appstore.php:11 -msgid "App Collections" -msgstr "" - -#: ../../Zotlabs/Widget/Appstore.php:13 -msgid "Installed apps" -msgstr "" - -#: ../../Zotlabs/Widget/Archive.php:43 -msgid "Archives" -msgstr "" - -#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 -msgid "Bookmarked Chatrooms" -msgstr "" - #: ../../Zotlabs/Widget/Cdav.php:37 msgid "Select Channel" msgstr "" @@ -11678,100 +9198,75 @@ msgstr "" msgid "Read-only" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:117 -msgid "My Calendars" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:119 -msgid "Shared Calendars" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:123 -msgid "Share this calendar" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:125 -msgid "Calendar name and color" -msgstr "" - #: ../../Zotlabs/Widget/Cdav.php:127 -msgid "Create new calendar" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:129 -msgid "Calendar Name" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:130 -msgid "Calendar Tools" +msgid "Channel Calendar" msgstr "" #: ../../Zotlabs/Widget/Cdav.php:131 +msgid "Shared CalDAV Calendars" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:135 +msgid "Share this calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:137 +msgid "Calendar name and color" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:139 +msgid "Create new CalDAV calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:141 +msgid "Calendar Name" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:142 +msgid "Calendar Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:144 msgid "Import calendar" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:132 +#: ../../Zotlabs/Widget/Cdav.php:145 msgid "Select a calendar to import to" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:159 +#: ../../Zotlabs/Widget/Cdav.php:172 msgid "Addressbooks" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:161 +#: ../../Zotlabs/Widget/Cdav.php:174 msgid "Addressbook name" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:163 +#: ../../Zotlabs/Widget/Cdav.php:176 msgid "Create new addressbook" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:164 +#: ../../Zotlabs/Widget/Cdav.php:177 msgid "Addressbook Name" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:166 +#: ../../Zotlabs/Widget/Cdav.php:179 msgid "Addressbook Tools" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:167 +#: ../../Zotlabs/Widget/Cdav.php:180 msgid "Import addressbook" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:168 +#: ../../Zotlabs/Widget/Cdav.php:181 msgid "Select an addressbook to import to" msgstr "" -#: ../../Zotlabs/Widget/Chatroom_list.php:20 -msgid "Overview" -msgstr "" - -#: ../../Zotlabs/Widget/Chatroom_members.php:11 -msgid "Chat Members" -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:17 -msgid "Received Messages" -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:21 -msgid "Sent Messages" -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:25 -msgid "Conversations" -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:37 -msgid "No messages." -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:57 -msgid "Delete conversation" -msgstr "" - -#: ../../Zotlabs/Widget/Cover_photo.php:65 -msgid "Click to show more" +#: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 +#: ../../widget/Netselect/Netselect.php:26 ../../include/contact_widgets.php:56 +#: ../../include/contact_widgets.php:99 ../../include/contact_widgets.php:142 +#: ../../include/contact_widgets.php:187 +msgid "Everything" msgstr "" #: ../../Zotlabs/Widget/Eventstools.php:13 @@ -11786,21 +9281,8 @@ msgstr "" msgid "Import Calendar" msgstr "" -#: ../../Zotlabs/Widget/Follow.php:22 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "" - -#: ../../Zotlabs/Widget/Follow.php:29 -msgid "Add New Connection" -msgstr "" - -#: ../../Zotlabs/Widget/Follow.php:30 -msgid "Enter channel address" -msgstr "" - -#: ../../Zotlabs/Widget/Follow.php:31 -msgid "Examples: bob@example.com, https://example.com/barbara" +#: ../../Zotlabs/Widget/Suggestedchats.php:32 +msgid "Suggested Chatrooms" msgstr "" #: ../../Zotlabs/Widget/Hq_controls.php:14 @@ -11831,6 +9313,222 @@ msgstr "" msgid "New Message" msgstr "" +#: ../../Zotlabs/Widget/Chatroom_list.php:20 +msgid "Overview" +msgstr "" + +#: ../../Zotlabs/Widget/Rating.php:51 +msgid "Rating Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 +msgid "Rate Me" +msgstr "" + +#: ../../Zotlabs/Widget/Rating.php:60 +msgid "View Ratings" +msgstr "" + +#: ../../Zotlabs/Widget/Activity.php:50 +msgctxt "widget" +msgid "Activity" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:36 +#, php-format +msgid "Show posts related to the %s privacy group" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:45 +msgid "Show my privacy groups" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:66 +msgid "Show posts to this forum" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:77 +msgid "Show forums" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:91 +msgid "Starred Posts" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:95 +msgid "Show posts that I have starred" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:106 +msgid "Personal Posts" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:110 +msgid "Show posts that mention or involve me" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:131 +#, php-format +msgid "Show posts that I have filed to %s" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:137 +#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 +#: ../../include/features.php:333 +msgid "Saved Folders" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:141 +msgid "Show filed post categories" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:155 +msgid "Panel search" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:165 +msgid "Filter by name" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:180 +msgid "Remove active filter" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:196 +msgid "Stream Filters" +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:22 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:29 +msgid "Add New Connection" +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:30 +msgid "Enter channel address" +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:31 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "" + +#: ../../Zotlabs/Widget/Archive.php:43 +msgid "Archives" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:17 +msgid "Received Messages" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:21 +msgid "Sent Messages" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:25 +msgid "Conversations" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:37 +msgid "No messages." +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:57 +msgid "Delete conversation" +msgstr "" + +#: ../../Zotlabs/Widget/Chatroom_members.php:11 +msgid "Chat Members" +msgstr "" + +#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 +msgid "photo/image" +msgstr "" + +#: ../../Zotlabs/Widget/Savedsearch.php:75 +msgid "Remove term" +msgstr "" + +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:325 +msgid "Saved Searches" +msgstr "" + +#: ../../Zotlabs/Widget/Wiki_pages.php:34 +#: ../../Zotlabs/Widget/Wiki_pages.php:91 +msgid "Add new page" +msgstr "" + +#: ../../Zotlabs/Widget/Wiki_pages.php:85 +msgid "Wiki Pages" +msgstr "" + +#: ../../Zotlabs/Widget/Wiki_pages.php:96 +msgid "Page name" +msgstr "" + +#: ../../Zotlabs/Widget/Affinity.php:54 +msgid "Refresh" +msgstr "" + +#: ../../Zotlabs/Widget/Tasklist.php:23 +msgid "Tasks" +msgstr "" + +#: ../../Zotlabs/Widget/Suggestions.php:53 +msgid "Suggestions" +msgstr "" + +#: ../../Zotlabs/Widget/Suggestions.php:54 +msgid "See more..." +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:90 +msgid "Commented Date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:94 +msgid "Order by last commented date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:97 +msgid "Posted Date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:101 +msgid "Order by last posted date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:104 +msgid "Date Unthreaded" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:108 +msgid "Order unthreaded by date" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_order.php:123 +msgid "Stream Order" +msgstr "" + +#: ../../Zotlabs/Widget/Cover_photo.php:65 +msgid "Click to show more" +msgstr "" + +#: ../../Zotlabs/Widget/Tagcloud.php:22 ../../include/taxonomy.php:320 +#: ../../include/taxonomy.php:449 ../../include/taxonomy.php:470 +msgid "Tags" +msgstr "" + +#: ../../Zotlabs/Widget/Appstore.php:11 +msgid "App Collections" +msgstr "" + +#: ../../Zotlabs/Widget/Appstore.php:13 +msgid "Installed apps" +msgstr "" + #: ../../Zotlabs/Widget/Newmember.php:31 msgid "Profile Creation" msgstr "" @@ -11843,6 +9541,10 @@ msgstr "" msgid "Upload cover photo" msgstr "" +#: ../../Zotlabs/Widget/Newmember.php:35 ../../include/nav.php:115 +msgid "Edit your profile" +msgstr "" + #: ../../Zotlabs/Widget/Newmember.php:38 msgid "Find and Connect with others" msgstr "" @@ -11887,6 +9589,46 @@ msgstr "" msgid "View public stream" msgstr "" +#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 +msgid "Member registrations waiting for confirmation" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:29 +msgid "Inspect queue" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:31 +msgid "DB updates" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:192 +msgid "Admin" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:56 +msgid "Addon Features" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:32 +msgid "Account settings" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:38 +msgid "Channel settings" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:46 +msgid "Display settings" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:53 +msgid "Manage locations" +msgstr "" + +#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 +msgid "Bookmarked Chatrooms" +msgstr "" + #: ../../Zotlabs/Widget/Notifications.php:16 msgid "New Network Activity" msgstr "" @@ -12014,78 +9756,5671 @@ msgstr "" msgid "Sorry, you have got no notifications at the moment" msgstr "" -#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 -msgid "photo/image" +#: ../../util/nconfig.php:34 +msgid "Source channel not found." msgstr "" -#: ../../Zotlabs/Widget/Rating.php:51 -msgid "Rating Tools" +#: ../../widget/Netselect/Netselect.php:24 +msgid "Network/Protocol" msgstr "" -#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 -msgid "Rate Me" +#: ../../widget/Netselect/Netselect.php:28 ../../include/network.php:1734 +msgid "Zot" msgstr "" -#: ../../Zotlabs/Widget/Rating.php:60 -msgid "View Ratings" +#: ../../widget/Netselect/Netselect.php:31 ../../include/network.php:1732 +msgid "Diaspora" msgstr "" -#: ../../Zotlabs/Widget/Savedsearch.php:75 -msgid "Remove term" +#: ../../widget/Netselect/Netselect.php:33 ../../include/network.php:1725 +#: ../../include/network.php:1726 +msgid "Friendica" msgstr "" -#: ../../Zotlabs/Widget/Settings_menu.php:32 -msgid "Account settings" +#: ../../widget/Netselect/Netselect.php:38 ../../include/network.php:1727 +msgid "OStatus" msgstr "" -#: ../../Zotlabs/Widget/Settings_menu.php:38 -msgid "Channel settings" +#: ../../boot.php:1609 +msgid "Create an account to access services and applications" msgstr "" -#: ../../Zotlabs/Widget/Settings_menu.php:46 -msgid "Display settings" +#: ../../boot.php:1629 ../../include/nav.php:107 ../../include/nav.php:136 +#: ../../include/nav.php:155 +msgid "Logout" msgstr "" -#: ../../Zotlabs/Widget/Settings_menu.php:53 -msgid "Manage locations" +#: ../../boot.php:1633 +msgid "Login/Email" msgstr "" -#: ../../Zotlabs/Widget/Suggestedchats.php:32 -msgid "Suggested Chatrooms" +#: ../../boot.php:1634 +msgid "Password" msgstr "" -#: ../../Zotlabs/Widget/Suggestions.php:53 -msgid "Suggestions" +#: ../../boot.php:1635 +msgid "Remember me" msgstr "" -#: ../../Zotlabs/Widget/Suggestions.php:54 -msgid "See more..." +#: ../../boot.php:1638 +msgid "Forgot your password?" msgstr "" -#: ../../Zotlabs/Widget/Tasklist.php:23 -msgid "Tasks" -msgstr "" - -#: ../../Zotlabs/Widget/Wiki_pages.php:34 -#: ../../Zotlabs/Widget/Wiki_pages.php:91 -msgid "Add new page" -msgstr "" - -#: ../../Zotlabs/Widget/Wiki_pages.php:85 -msgid "Wiki Pages" -msgstr "" - -#: ../../Zotlabs/Widget/Wiki_pages.php:96 -msgid "Page name" -msgstr "" - -#: ../../Zotlabs/Zot/Auth.php:152 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." -msgstr "" - -#: ../../Zotlabs/Zot/Auth.php:264 +#: ../../boot.php:2434 #, php-format -msgid "Welcome %s. Remote authentication successful." +msgid "[$Projectname] Website SSL error for %s" +msgstr "" + +#: ../../boot.php:2439 +msgid "Website SSL certificate is not valid. Please correct." +msgstr "" + +#: ../../boot.php:2555 +#, php-format +msgid "[$Projectname] Cron tasks not running on %s" +msgstr "" + +#: ../../boot.php:2560 +msgid "Cron/Scheduled tasks not running." +msgstr "" + +#: ../../boot.php:2561 ../../include/datetime.php:238 +msgid "never" +msgstr "" + +#: ../../store/[data]/smarty3/compiled/a0a1289f91f53b2c12e4e0b45ffe8291540ba895_0.file.cover_photo.tpl.php:127 +msgid "Cover Photo" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:16 +#: ../../view/theme/redbasic_c/php/config.php:19 +#: ../../view/theme/redbasic/php/config.php:16 +#: ../../view/theme/redbasic/php/config.php:19 +msgid "Focus (Hubzilla default)" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:99 +#: ../../view/theme/redbasic/php/config.php:98 +msgid "Theme settings" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Narrow navbar" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:101 +#: ../../view/theme/redbasic/php/config.php:100 +msgid "Navigation bar background color" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:102 +#: ../../view/theme/redbasic/php/config.php:101 +msgid "Navigation bar icon color " +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Navigation bar active icon color " +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Link color" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Set font-color for banner" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Set the background color" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Set the background image" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Set the background color of items" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Set the background color of comments" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Set font-size for the entire application" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Examples: 1rem, 100%, 16px" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Set font-color for posts and comments" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Set radius of corners" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Example: 4px" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Set shadow depth of photos" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:113 +msgid "Set maximum width of content region in pixel" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:113 +msgid "Leave empty for default width" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:115 +msgid "Left align page content" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set size of conversation author photo" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:115 +msgid "Set size of followup author photos" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:116 +msgid "Show advanced settings" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:57 +msgid "Errors encountered deleting database table " +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:95 ../../addon/twitter/twitter.php:612 +msgid "Submit Settings" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "Drop tables when uninstalling?" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "" +"If checked, the Rendezvous database tables will be deleted when the plugin " +"is uninstalled." +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "Mapbox Access Token" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "" +"If you enter a Mapbox access token, it will be used to retrieve map tiles " +"from Mapbox instead of the default OpenStreetMap tile server." +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:162 +msgid "Rendezvous" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:167 +msgid "" +"This identity has been deleted by another member due to inactivity. Please " +"press the \"New identity\" button or refresh the page to register a new " +"identity. You may use the same name." +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:168 +msgid "Welcome to Rendezvous!" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:169 +msgid "" +"Enter your name to join this rendezvous. To begin sharing your location with " +"the other members, tap the GPS control. When your location is discovered, a " +"red dot will appear and others will be able to see you on the map." +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:171 +msgid "Let's meet here" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:174 +msgid "New marker" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:175 +msgid "Edit marker" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:176 +msgid "New identity" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:177 +msgid "Delete marker" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:178 +msgid "Delete member" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:179 +msgid "Edit proximity alert" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:180 +msgid "" +"A proximity alert will be issued when this member is within a certain radius " +"of you.

Enter a radius in meters (0 to disable):" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:180 +#: ../../addon/rendezvous/rendezvous.php:185 +msgid "distance" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:181 +msgid "Proximity alert distance (meters)" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:182 +#: ../../addon/rendezvous/rendezvous.php:184 +msgid "" +"A proximity alert will be issued when you are within a certain radius of the " +"marker location.

Enter a radius in meters (0 to disable):" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:183 +msgid "Marker proximity alert" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:186 +msgid "Reminder note" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:187 +msgid "" +"Enter a note to be displayed when you are within the specified proximity..." +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:199 +msgid "Add new rendezvous" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:200 +msgid "" +"Create a new rendezvous and share the access link with those you wish to " +"invite to the group. Those who open the link become members of the " +"rendezvous. They can view other member locations, add markers to the map, or " +"share their own locations with the group." +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:232 +msgid "You have no rendezvous. Press the button above to create a rendezvous!" +msgstr "" + +#: ../../addon/skeleton/Mod_Skeleton.php:32 +msgid "Skeleton App" +msgstr "" + +#: ../../addon/skeleton/Mod_Skeleton.php:33 +msgid "A skeleton for addons, you can copy/paste" +msgstr "" + +#: ../../addon/skeleton/Mod_Skeleton.php:40 +msgid "Some setting" +msgstr "" + +#: ../../addon/skeleton/Mod_Skeleton.php:40 +msgid "A setting" +msgstr "" + +#: ../../addon/skeleton/Mod_Skeleton.php:48 +msgid "Skeleton Settings" +msgstr "" + +#: ../../addon/gnusoc/Mod_Gnusoc.php:16 +msgid "" +"The GNU-Social protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "" + +#: ../../addon/gnusoc/Mod_Gnusoc.php:22 +msgid "GNU-Social Protocol App" +msgstr "" + +#: ../../addon/gnusoc/Mod_Gnusoc.php:34 +msgid "GNU-Social Protocol" +msgstr "" + +#: ../../addon/gnusoc/gnusoc.php:451 +msgid "Follow" +msgstr "" + +#: ../../addon/gnusoc/gnusoc.php:454 +#, php-format +msgid "%1$s is now following %2$s" +msgstr "" + +#: ../../addon/planets/Mod_Planets.php:20 +#: ../../addon/planets/Mod_Planets.php:23 +msgid "Random Planet App" +msgstr "" + +#: ../../addon/planets/Mod_Planets.php:23 +#: ../../addon/rainbowtag/Mod_Rainbowtag.php:26 +#: ../../addon/nsabait/Mod_Nsabait.php:24 ../../addon/hsse/Mod_Hsse.php:26 +#: ../../addon/authchoose/Mod_Authchoose.php:33 +msgid "Installed" +msgstr "" + +#: ../../addon/planets/Mod_Planets.php:25 +msgid "" +"Set a random planet from the Star Wars Empire as your location when posting" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:50 +#: ../../addon/openclipatar/openclipatar.php:128 +msgid "System defaults:" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:54 +msgid "Preferred Clipart IDs" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:54 +msgid "List of preferred clipart ids. These will be shown first." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "Default Search Term" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "The default search term. These will be shown second." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Return After" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Page to load after image selection." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1422 +#: ../../include/nav.php:115 +msgid "Edit Profile" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:59 +msgid "Profile List" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:61 +msgid "Order of Preferred" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:61 +msgid "Sort order of preferred clipart ids." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:62 +#: ../../addon/openclipatar/openclipatar.php:68 +msgid "Newest first" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:65 +msgid "As entered" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:67 +msgid "Order of other" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:67 +msgid "Sort order of other clipart ids." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:69 +msgid "Most downloaded first" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:70 +msgid "Most liked first" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:72 +msgid "Preferred IDs Message" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:72 +msgid "Message to display above preferred results." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:78 +msgid "Uploaded by: " +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:78 +msgid "Drawn by: " +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:182 +#: ../../addon/openclipatar/openclipatar.php:194 +msgid "Use this image" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:192 +msgid "Or select from a free OpenClipart.org image:" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:195 +msgid "Search Term" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:232 +msgid "Unknown error. Please try again later." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:308 +msgid "Profile photo updated successfully." +msgstr "" + +#: ../../addon/adultphotoflag/adultphotoflag.php:24 +msgid "Flag Adult Photos" +msgstr "" + +#: ../../addon/adultphotoflag/adultphotoflag.php:25 +msgid "" +"Provide photo edit option to hide inappropriate photos from default album " +"view" +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:90 +msgid "" +"You haven't set a TOTP secret yet.\n" +"Please click the button below to generate one and register this site\n" +"with your preferred authenticator app." +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:93 +msgid "Your TOTP secret is" +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:94 +msgid "" +"Be sure to save it somewhere in case you lose or replace your mobile " +"device.\n" +"Use your mobile device to scan the QR code below to register this site\n" +"with your preferred authenticator app." +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:99 +msgid "Test" +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:100 +msgid "Generate New Secret" +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:101 +msgid "Go" +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:102 +msgid "Enter your password" +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:103 +msgid "enter TOTP code from your device" +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:104 +msgid "Pass!" +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:105 +msgid "Fail" +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:106 +msgid "Incorrect password, try again." +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:107 +msgid "Record your new TOTP secret and rescan the QR code above." +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:115 +msgid "TOTP Settings" +msgstr "" + +#: ../../addon/totp/Mod_Totp.php:23 +msgid "TOTP Two-Step Verification" +msgstr "" + +#: ../../addon/totp/Mod_Totp.php:24 +msgid "Enter the 2-step verification generated by your authenticator app:" +msgstr "" + +#: ../../addon/totp/Mod_Totp.php:25 +msgid "Success!" +msgstr "" + +#: ../../addon/totp/Mod_Totp.php:26 +msgid "Invalid code, please try again." +msgstr "" + +#: ../../addon/totp/Mod_Totp.php:27 +msgid "Too many invalid codes..." +msgstr "" + +#: ../../addon/totp/Mod_Totp.php:28 +msgid "Verify" +msgstr "" + +#: ../../addon/wppost/Mod_Wppost.php:28 +msgid "Wordpress Settings saved." +msgstr "" + +#: ../../addon/wppost/Mod_Wppost.php:41 +msgid "Wordpress Post App" +msgstr "" + +#: ../../addon/wppost/Mod_Wppost.php:42 +msgid "Post to WordPress or anything else which uses the wordpress XMLRPC API" +msgstr "" + +#: ../../addon/wppost/Mod_Wppost.php:65 +msgid "WordPress username" +msgstr "" + +#: ../../addon/wppost/Mod_Wppost.php:69 +msgid "WordPress password" +msgstr "" + +#: ../../addon/wppost/Mod_Wppost.php:73 +msgid "WordPress API URL" +msgstr "" + +#: ../../addon/wppost/Mod_Wppost.php:74 +msgid "Typically https://your-blog.tld/xmlrpc.php" +msgstr "" + +#: ../../addon/wppost/Mod_Wppost.php:77 +msgid "WordPress blogid" +msgstr "" + +#: ../../addon/wppost/Mod_Wppost.php:78 +msgid "For multi-user sites such as wordpress.com, otherwise leave blank" +msgstr "" + +#: ../../addon/wppost/Mod_Wppost.php:82 +msgid "Post to WordPress by default" +msgstr "" + +#: ../../addon/wppost/Mod_Wppost.php:86 +msgid "Forward comments (requires hubzilla_wp plugin)" +msgstr "" + +#: ../../addon/wppost/Mod_Wppost.php:94 +msgid "Wordpress Post" +msgstr "" + +#: ../../addon/wppost/wppost.php:46 +msgid "Post to WordPress" +msgstr "" + +#: ../../addon/nsfw/nsfw.php:152 +msgid "Possible adult content" +msgstr "" + +#: ../../addon/nsfw/nsfw.php:167 +#, php-format +msgid "%s - view" +msgstr "" + +#: ../../addon/nsfw/Mod_Nsfw.php:22 +msgid "NSFW Settings saved." +msgstr "" + +#: ../../addon/nsfw/Mod_Nsfw.php:33 +msgid "NSFW App" +msgstr "" + +#: ../../addon/nsfw/Mod_Nsfw.php:34 +msgid "Collapse content that contains predefined words" +msgstr "" + +#: ../../addon/nsfw/Mod_Nsfw.php:44 +msgid "" +"This app looks in posts for the words/text you specify below, and collapses " +"any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and " +"can thereby be used as a general purpose content filter." +msgstr "" + +#: ../../addon/nsfw/Mod_Nsfw.php:49 +msgid "Comma separated list of keywords to hide" +msgstr "" + +#: ../../addon/nsfw/Mod_Nsfw.php:49 +msgid "Word, /regular-expression/, lang=xx, lang!=xx" +msgstr "" + +#: ../../addon/nsfw/Mod_Nsfw.php:58 +msgid "NSFW" +msgstr "" + +#: ../../addon/queueworker/Mod_Queueworker.php:73 +msgid "Max queueworker threads" +msgstr "" + +#: ../../addon/queueworker/Mod_Queueworker.php:87 +msgid "Assume workers dead after ___ seconds" +msgstr "" + +#: ../../addon/queueworker/Mod_Queueworker.php:99 +msgid "Queueworker Settings" +msgstr "" + +#: ../../addon/ijpost/Mod_Ijpost.php:23 +msgid "Insane Journal Crosspost Connector Settings saved." +msgstr "" + +#: ../../addon/ijpost/Mod_Ijpost.php:35 +msgid "Insane Journal Crosspost Connector App" +msgstr "" + +#: ../../addon/ijpost/Mod_Ijpost.php:36 +msgid "Relay public postings to Insane Journal" +msgstr "" + +#: ../../addon/ijpost/Mod_Ijpost.php:53 +msgid "InsaneJournal username" +msgstr "" + +#: ../../addon/ijpost/Mod_Ijpost.php:57 +msgid "InsaneJournal password" +msgstr "" + +#: ../../addon/ijpost/Mod_Ijpost.php:61 +msgid "Post to InsaneJournal by default" +msgstr "" + +#: ../../addon/ijpost/Mod_Ijpost.php:69 +msgid "Insane Journal Crosspost Connector" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:45 +msgid "Post to Insane Journal" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:48 +msgid "Post to Dreamwidth" +msgstr "" + +#: ../../addon/dwpost/Mod_Dwpost.php:24 +msgid "Dreamwidth Crosspost Connector Settings saved." +msgstr "" + +#: ../../addon/dwpost/Mod_Dwpost.php:36 +msgid "Dreamwidth Crosspost Connector App" +msgstr "" + +#: ../../addon/dwpost/Mod_Dwpost.php:37 +msgid "Relay public postings to Dreamwidth" +msgstr "" + +#: ../../addon/dwpost/Mod_Dwpost.php:52 +msgid "Dreamwidth username" +msgstr "" + +#: ../../addon/dwpost/Mod_Dwpost.php:56 +msgid "Dreamwidth password" +msgstr "" + +#: ../../addon/dwpost/Mod_Dwpost.php:60 +msgid "Post to Dreamwidth by default" +msgstr "" + +#: ../../addon/dwpost/Mod_Dwpost.php:68 +msgid "Dreamwidth Crosspost Connector" +msgstr "" + +#: ../../addon/notifyadmin/notifyadmin.php:34 +msgid "New registration" +msgstr "" + +#: ../../addon/notifyadmin/notifyadmin.php:42 +#, php-format +msgid "Message sent to %s. New account registration: %s" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:94 +msgid "Hubzilla Directory Stats" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:95 +msgid "Total Hubs" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:97 +msgid "Hubzilla Hubs" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:99 +msgid "Friendica Hubs" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:101 +msgid "Diaspora Pods" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:103 +msgid "Hubzilla Channels" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:105 +msgid "Friendica Channels" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:107 +msgid "Diaspora Channels" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:109 +msgid "Aged 35 and above" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:111 +msgid "Aged 34 and under" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:113 +msgid "Average Age" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:115 +msgid "Known Chatrooms" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:117 +msgid "Known Tags" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:119 +msgid "" +"Please note Diaspora and Friendica statistics are merely those **this " +"directory** is aware of, and not all those known in the network. This also " +"applies to chatrooms," +msgstr "" + +#: ../../addon/likebanner/likebanner.php:51 +msgid "Your Webbie:" +msgstr "" + +#: ../../addon/likebanner/likebanner.php:54 +msgid "Fontsize (px):" +msgstr "" + +#: ../../addon/likebanner/likebanner.php:68 +msgid "Link:" +msgstr "" + +#: ../../addon/likebanner/likebanner.php:70 +msgid "Like us on Hubzilla" +msgstr "" + +#: ../../addon/likebanner/likebanner.php:72 +msgid "Embed:" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:106 +msgid "Photos imported" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:129 +msgid "Redmatrix Photo Album Import" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:130 +msgid "This will import all your Redmatrix photo albums to this channel." +msgstr "" + +#: ../../addon/redphotos/redphotos.php:131 +#: ../../addon/redfiles/redfiles.php:121 +msgid "Redmatrix Server base URL" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:132 +#: ../../addon/redfiles/redfiles.php:122 +msgid "Redmatrix Login Username" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:133 +#: ../../addon/redfiles/redfiles.php:123 +msgid "Redmatrix Login Password" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:134 +msgid "Import just this album" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:134 +msgid "Leave blank to import all albums" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:135 +msgid "Maximum count to import" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:135 +msgid "0 or blank to import all available" +msgstr "" + +#: ../../addon/irc/Mod_Irc.php:23 ../../addon/irc/irc.php:41 +msgid "Popular Channels" +msgstr "" + +#: ../../addon/irc/irc.php:37 +msgid "Channels to auto connect" +msgstr "" + +#: ../../addon/irc/irc.php:37 ../../addon/irc/irc.php:41 +msgid "Comma separated list" +msgstr "" + +#: ../../addon/irc/irc.php:45 +msgid "IRC Settings" +msgstr "" + +#: ../../addon/irc/irc.php:54 +msgid "IRC settings saved." +msgstr "" + +#: ../../addon/irc/irc.php:58 +msgid "IRC Chatroom" +msgstr "" + +#: ../../addon/gallery/gallery.php:38 ../../addon/gallery/Mod_Gallery.php:136 +msgid "Gallery" +msgstr "" + +#: ../../addon/gallery/gallery.php:41 +msgid "Photo Gallery" +msgstr "" + +#: ../../addon/gallery/Mod_Gallery.php:58 +msgid "Gallery App" +msgstr "" + +#: ../../addon/gallery/Mod_Gallery.php:59 +msgid "A simple gallery for your photo albums" +msgstr "" + +#: ../../addon/ljpost/Mod_Ljpost.php:36 +msgid "Livejournal Crosspost Connector App" +msgstr "" + +#: ../../addon/ljpost/Mod_Ljpost.php:37 +msgid "Relay public posts to Livejournal" +msgstr "" + +#: ../../addon/ljpost/Mod_Ljpost.php:54 +msgid "Livejournal username" +msgstr "" + +#: ../../addon/ljpost/Mod_Ljpost.php:58 +msgid "Livejournal password" +msgstr "" + +#: ../../addon/ljpost/Mod_Ljpost.php:62 +msgid "Post to Livejournal by default" +msgstr "" + +#: ../../addon/ljpost/Mod_Ljpost.php:70 +msgid "Livejournal Crosspost Connector" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:45 +msgid "Post to Livejournal" +msgstr "" + +#: ../../addon/openid/openid.php:49 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: ../../addon/openid/openid.php:49 +msgid "The error message was:" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:52 +msgid "First Name" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:53 +msgid "Last Name" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/Mod_Redred.php:75 +msgid "Nickname" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:55 +msgid "Full Name" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:61 +msgid "Profile Photo 16px" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:62 +msgid "Profile Photo 32px" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:63 +msgid "Profile Photo 48px" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:64 +msgid "Profile Photo 64px" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:65 +msgid "Profile Photo 80px" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:66 +msgid "Profile Photo 128px" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:67 +msgid "Timezone" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:70 +msgid "Birth Year" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:71 +msgid "Birth Month" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:72 +msgid "Birth Day" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:73 +msgid "Birthdate" +msgstr "" + +#: ../../addon/openid/Mod_Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "" + +#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:317 +msgid "Login failed." +msgstr "" + +#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:60 +#: ../../include/selectors.php:77 ../../include/channel.php:1602 +msgid "Male" +msgstr "" + +#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:60 +#: ../../include/selectors.php:77 ../../include/channel.php:1600 +msgid "Female" +msgstr "" + +#: ../../addon/randpost/randpost.php:97 +msgid "You're welcome." +msgstr "" + +#: ../../addon/randpost/randpost.php:98 +msgid "Ah shucks..." +msgstr "" + +#: ../../addon/randpost/randpost.php:99 +msgid "Don't mention it." +msgstr "" + +#: ../../addon/randpost/randpost.php:100 +msgid "<blush>" +msgstr "" + +#: ../../addon/startpage/Mod_Startpage.php:50 +msgid "Startpage App" +msgstr "" + +#: ../../addon/startpage/Mod_Startpage.php:51 +msgid "Set a preferred page to load on login from home page" +msgstr "" + +#: ../../addon/startpage/Mod_Startpage.php:62 +msgid "Page to load after login" +msgstr "" + +#: ../../addon/startpage/Mod_Startpage.php:62 +msgid "" +"Examples: "apps", "network?f=&gid=37" (privacy " +"collection), "channel" or "notifications/system" (leave " +"blank for default network page (grid)." +msgstr "" + +#: ../../addon/startpage/Mod_Startpage.php:70 +msgid "Startpage" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "patent" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "patented" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "hug" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "hugged" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "murder" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "murdered" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "worship" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "worshipped" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "kiss" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "kissed" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempt" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "raise eyebrows at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "raised their eyebrows at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "insult" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "insulted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "praise" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "praised" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "be dubious of" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "was dubious of" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "eat" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "ate" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggle and fawn at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggled and fawned at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubt" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "glare" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "glared at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "fuck" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "fucked" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonk" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonked" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:37 +msgid "declare undying love for" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:37 +msgid "declared undying love for" +msgstr "" + +#: ../../addon/diaspora/Receiver.php:1509 +#, php-format +msgid "%1$s dislikes %2$s's %3$s" +msgstr "" + +#: ../../addon/diaspora/Mod_Diaspora.php:42 +msgid "Diaspora Protocol Settings updated." +msgstr "" + +#: ../../addon/diaspora/Mod_Diaspora.php:51 +msgid "" +"The diaspora protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "" + +#: ../../addon/diaspora/Mod_Diaspora.php:57 +msgid "Diaspora Protocol App" +msgstr "" + +#: ../../addon/diaspora/Mod_Diaspora.php:74 +msgid "Allow any Diaspora member to comment on your public posts" +msgstr "" + +#: ../../addon/diaspora/Mod_Diaspora.php:78 +msgid "Prevent your hashtags from being redirected to other sites" +msgstr "" + +#: ../../addon/diaspora/Mod_Diaspora.php:82 +msgid "Sign and forward posts and comments with no existing Diaspora signature" +msgstr "" + +#: ../../addon/diaspora/Mod_Diaspora.php:87 +msgid "Followed hashtags (comma separated, do not include the #)" +msgstr "" + +#: ../../addon/diaspora/Mod_Diaspora.php:96 +msgid "Diaspora Protocol" +msgstr "" + +#: ../../addon/diaspora/import_diaspora.php:18 +msgid "No username found in import file." +msgstr "" + +#: ../../addon/diaspora/import_diaspora.php:43 ../../include/import.php:73 +msgid "Unable to create a unique channel address. Import failed." +msgstr "" + +#: ../../addon/photocache/Mod_Photocache.php:27 +msgid "Photo Cache settings saved." +msgstr "" + +#: ../../addon/photocache/Mod_Photocache.php:36 +msgid "" +"Photo Cache addon saves a copy of images from external sites locally to " +"increase your anonymity in the web." +msgstr "" + +#: ../../addon/photocache/Mod_Photocache.php:42 +msgid "Photo Cache App" +msgstr "" + +#: ../../addon/photocache/Mod_Photocache.php:53 +msgid "Minimal photo size for caching" +msgstr "" + +#: ../../addon/photocache/Mod_Photocache.php:55 +msgid "In pixels. From 1 up to 1024, 0 will be replaced with system default." +msgstr "" + +#: ../../addon/photocache/Mod_Photocache.php:64 +msgid "Photo Cache" +msgstr "" + +#: ../../addon/testdrive/testdrive.php:104 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "" + +#: ../../addon/testdrive/testdrive.php:105 +msgid "Your $Productname test account is about to expire." +msgstr "" + +#: ../../addon/rainbowtag/Mod_Rainbowtag.php:15 +msgid "Add some colour to tag clouds" +msgstr "" + +#: ../../addon/rainbowtag/Mod_Rainbowtag.php:21 +#: ../../addon/rainbowtag/Mod_Rainbowtag.php:26 +msgid "Rainbow Tag App" +msgstr "" + +#: ../../addon/rainbowtag/Mod_Rainbowtag.php:34 +msgid "Rainbow Tag" +msgstr "" + +#: ../../addon/upload_limits/upload_limits.php:25 +msgid "Show Upload Limits" +msgstr "" + +#: ../../addon/upload_limits/upload_limits.php:27 +msgid "Hubzilla configured maximum size: " +msgstr "" + +#: ../../addon/upload_limits/upload_limits.php:28 +msgid "PHP upload_max_filesize: " +msgstr "" + +#: ../../addon/upload_limits/upload_limits.php:29 +msgid "PHP post_max_size (must be larger than upload_max_filesize): " +msgstr "" + +#: ../../addon/gravatar/gravatar.php:123 +msgid "generic profile image" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:124 +msgid "random geometric pattern" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:125 +msgid "monster face" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:126 +msgid "computer generated face" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:127 +msgid "retro arcade style face" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:128 +msgid "Hub default profile photo" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:143 +msgid "Information" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:143 +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 "" + +#: ../../addon/gravatar/gravatar.php:150 ../../addon/msgfooter/msgfooter.php:46 +#: ../../addon/xmpp/xmpp.php:43 +msgid "Save Settings" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:151 +msgid "Default avatar image" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:151 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:152 +msgid "Rating of images" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:152 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:165 +msgid "Gravatar settings updated." +msgstr "" + +#: ../../addon/hzfiles/hzfiles.php:81 +msgid "Hubzilla File Storage Import" +msgstr "" + +#: ../../addon/hzfiles/hzfiles.php:82 +msgid "This will import all your cloud files from another server." +msgstr "" + +#: ../../addon/hzfiles/hzfiles.php:83 +msgid "Hubzilla Server base URL" +msgstr "" + +#: ../../addon/hzfiles/hzfiles.php:84 +#: ../../addon/content_import/Mod_content_import.php:140 +msgid "Since modified date yyyy-mm-dd" +msgstr "" + +#: ../../addon/hzfiles/hzfiles.php:85 +#: ../../addon/content_import/Mod_content_import.php:141 +msgid "Until modified date yyyy-mm-dd" +msgstr "" + +#: ../../addon/visage/Mod_Visage.php:21 +msgid "Who viewed my channel/profile" +msgstr "" + +#: ../../addon/visage/Mod_Visage.php:25 +msgid "Recent Channel/Profile Viewers" +msgstr "" + +#: ../../addon/visage/Mod_Visage.php:36 +msgid "No entries." +msgstr "" + +#: ../../addon/nsabait/Mod_Nsabait.php:20 +#: ../../addon/nsabait/Mod_Nsabait.php:24 +msgid "NSA Bait App" +msgstr "" + +#: ../../addon/nsabait/Mod_Nsabait.php:26 +msgid "Make yourself a political target" +msgstr "" + +#: ../../addon/mailtest/mailtest.php:19 +msgid "Send test email" +msgstr "" + +#: ../../addon/mailtest/mailtest.php:50 ../../addon/hubwall/hubwall.php:50 +msgid "No recipients found." +msgstr "" + +#: ../../addon/mailtest/mailtest.php:66 +msgid "Mail sent." +msgstr "" + +#: ../../addon/mailtest/mailtest.php:68 +msgid "Sending of mail failed." +msgstr "" + +#: ../../addon/mailtest/mailtest.php:77 +msgid "Mail Test" +msgstr "" + +#: ../../addon/mailtest/mailtest.php:96 ../../addon/hubwall/hubwall.php:92 +msgid "Message subject" +msgstr "" + +#: ../../addon/mdpost/mdpost.php:42 +msgid "Use markdown for editing posts" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:146 +msgid "View Larger" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:170 +msgid "Tile Server URL" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:170 +msgid "" +"A list of public tile servers" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:171 +msgid "Nominatim (reverse geocoding) Server URL" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:171 +msgid "" +"A list of Nominatim servers" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:172 +msgid "Default zoom" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:172 +msgid "" +"The default zoom level. (1:world, 18:highest, also depends on tile server)" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:173 +msgid "Include marker on map" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:173 +msgid "Include a marker on the map." +msgstr "" + +#: ../../addon/msgfooter/msgfooter.php:47 +msgid "text to include in all outgoing posts from this site" +msgstr "" + +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:22 +msgid "Fuzzloc Settings updated." +msgstr "" + +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:34 +msgid "Fuzzy Location App" +msgstr "" + +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:35 +msgid "" +"Blur your precise location if your channel uses browser location mapping" +msgstr "" + +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:40 +msgid "Minimum offset in meters" +msgstr "" + +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:44 +msgid "Maximum offset in meters" +msgstr "" + +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:53 +msgid "Fuzzy Location" +msgstr "" + +#: ../../addon/rtof/rtof.php:51 +msgid "Post to Friendica" +msgstr "" + +#: ../../addon/rtof/Mod_Rtof.php:24 +msgid "Friendica Crosspost Connector Settings saved." +msgstr "" + +#: ../../addon/rtof/Mod_Rtof.php:36 +msgid "Friendica Crosspost Connector App" +msgstr "" + +#: ../../addon/rtof/Mod_Rtof.php:37 +msgid "Relay public postings to a connected Friendica account" +msgstr "" + +#: ../../addon/rtof/Mod_Rtof.php:49 +msgid "Send public postings to Friendica by default" +msgstr "" + +#: ../../addon/rtof/Mod_Rtof.php:53 +msgid "Friendica API Path" +msgstr "" + +#: ../../addon/rtof/Mod_Rtof.php:53 ../../addon/redred/Mod_Redred.php:67 +msgid "https://{sitename}/api" +msgstr "" + +#: ../../addon/rtof/Mod_Rtof.php:57 +msgid "Friendica login name" +msgstr "" + +#: ../../addon/rtof/Mod_Rtof.php:61 +msgid "Friendica password" +msgstr "" + +#: ../../addon/rtof/Mod_Rtof.php:69 +msgid "Friendica Crosspost Connector" +msgstr "" + +#: ../../addon/jappixmini/Mod_Jappixmini.php:96 +msgid "Jappixmini App" +msgstr "" + +#: ../../addon/jappixmini/Mod_Jappixmini.php:97 +msgid "Provides a Facebook-like chat using Jappix Mini" +msgstr "" + +#: ../../addon/jappixmini/Mod_Jappixmini.php:157 ../../include/channel.php:1518 +#: ../../include/channel.php:1689 +msgid "Status:" +msgstr "" + +#: ../../addon/jappixmini/Mod_Jappixmini.php:161 +msgid "Hide Jappixmini Chat-Widget from the webinterface" +msgstr "" + +#: ../../addon/jappixmini/Mod_Jappixmini.php:166 +msgid "Jabber username" +msgstr "" + +#: ../../addon/jappixmini/Mod_Jappixmini.php:172 +msgid "Jabber server" +msgstr "" + +#: ../../addon/jappixmini/Mod_Jappixmini.php:178 +msgid "Jabber BOSH host URL" +msgstr "" + +#: ../../addon/jappixmini/Mod_Jappixmini.php:185 +msgid "Jabber password" +msgstr "" + +#: ../../addon/jappixmini/Mod_Jappixmini.php:191 +msgid "Encrypt Jabber password with Hubzilla password" +msgstr "" + +#: ../../addon/jappixmini/Mod_Jappixmini.php:195 +#: ../../addon/redred/Mod_Redred.php:79 +msgid "Hubzilla password" +msgstr "" + +#: ../../addon/jappixmini/Mod_Jappixmini.php:199 +#: ../../addon/jappixmini/Mod_Jappixmini.php:203 +msgid "Approve subscription requests from Hubzilla contacts automatically" +msgstr "" + +#: ../../addon/jappixmini/Mod_Jappixmini.php:207 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "" + +#: ../../addon/jappixmini/Mod_Jappixmini.php:212 +msgid "Configuration Help" +msgstr "" + +#: ../../addon/jappixmini/Mod_Jappixmini.php:258 +msgid "Jappixmini Settings" +msgstr "" + +#: ../../addon/upgrade_info/upgrade_info.php:48 +msgid "Your channel has been upgraded to $Projectname version" +msgstr "" + +#: ../../addon/upgrade_info/upgrade_info.php:50 +msgid "Please have a look at the" +msgstr "" + +#: ../../addon/upgrade_info/upgrade_info.php:52 +msgid "git history" +msgstr "" + +#: ../../addon/upgrade_info/upgrade_info.php:54 +msgid "change log" +msgstr "" + +#: ../../addon/upgrade_info/upgrade_info.php:55 +msgid "for further infos." +msgstr "" + +#: ../../addon/upgrade_info/upgrade_info.php:60 +msgid "Upgrade Info" +msgstr "" + +#: ../../addon/upgrade_info/upgrade_info.php:64 +msgid "Do not show this again" +msgstr "" + +#: ../../addon/channelreputation/channelreputation.php:100 +#: ../../addon/channelreputation/channelreputation.php:101 +#: ../../addon/cart/myshop.php:141 ../../addon/cart/myshop.php:177 +#: ../../addon/cart/myshop.php:211 ../../addon/cart/myshop.php:259 +#: ../../addon/cart/myshop.php:294 ../../addon/cart/myshop.php:317 +msgid "Access Denied" +msgstr "" + +#: ../../addon/channelreputation/channelreputation.php:108 +msgid "Enable Community Moderation" +msgstr "" + +#: ../../addon/channelreputation/channelreputation.php:116 +msgid "Reputation automatically given to new members" +msgstr "" + +#: ../../addon/channelreputation/channelreputation.php:117 +msgid "Reputation will never fall below this value" +msgstr "" + +#: ../../addon/channelreputation/channelreputation.php:118 +msgid "Minimum reputation before posting is allowed" +msgstr "" + +#: ../../addon/channelreputation/channelreputation.php:119 +msgid "Minimum reputation before commenting is allowed" +msgstr "" + +#: ../../addon/channelreputation/channelreputation.php:120 +msgid "Minimum reputation before a member is able to moderate other posts" +msgstr "" + +#: ../../addon/channelreputation/channelreputation.php:121 +msgid "" +"Max ratio of moderator's reputation that can be added to/deducted from " +"reputation of person being moderated" +msgstr "" + +#: ../../addon/channelreputation/channelreputation.php:122 +msgid "Reputation \"cost\" to post" +msgstr "" + +#: ../../addon/channelreputation/channelreputation.php:123 +msgid "Reputation \"cost\" to comment" +msgstr "" + +#: ../../addon/channelreputation/channelreputation.php:124 +msgid "" +"Reputation automatically recovers at this rate per hour until it reaches " +"minimum_to_post" +msgstr "" + +#: ../../addon/channelreputation/channelreputation.php:125 +msgid "" +"When minimum_to_moderate > reputation > minimum_to_post reputation recovers " +"at this rate per hour" +msgstr "" + +#: ../../addon/channelreputation/channelreputation.php:139 +msgid "Community Moderation Settings" +msgstr "" + +#: ../../addon/channelreputation/channelreputation.php:229 +msgid "Channel Reputation" +msgstr "" + +#: ../../addon/channelreputation/channelreputation.php:233 +msgid "An Error has occurred." +msgstr "" + +#: ../../addon/channelreputation/channelreputation.php:251 +msgid "Upvote" +msgstr "" + +#: ../../addon/channelreputation/channelreputation.php:252 +msgid "Downvote" +msgstr "" + +#: ../../addon/channelreputation/channelreputation.php:374 +msgid "Can moderate reputation on my channel." +msgstr "" + +#: ../../addon/superblock/superblock.php:337 +msgid "Block Completely" +msgstr "" + +#: ../../addon/superblock/Mod_Superblock.php:20 +msgid "Superblock App" +msgstr "" + +#: ../../addon/superblock/Mod_Superblock.php:21 +msgid "Block channels" +msgstr "" + +#: ../../addon/superblock/Mod_Superblock.php:63 +msgid "superblock settings updated" +msgstr "" + +#: ../../addon/superblock/Mod_Superblock.php:87 +msgid "Currently blocked" +msgstr "" + +#: ../../addon/superblock/Mod_Superblock.php:89 +msgid "No channels currently blocked" +msgstr "" + +#: ../../addon/nofed/Mod_Nofed.php:21 +msgid "nofed Settings saved." +msgstr "" + +#: ../../addon/nofed/Mod_Nofed.php:33 +msgid "No Federation App" +msgstr "" + +#: ../../addon/nofed/Mod_Nofed.php:34 +msgid "" +"Prevent posting from being federated to anybody. It will exist only on your " +"channel page." +msgstr "" + +#: ../../addon/nofed/Mod_Nofed.php:42 +msgid "Federate posts by default" +msgstr "" + +#: ../../addon/nofed/Mod_Nofed.php:50 +msgid "No Federation" +msgstr "" + +#: ../../addon/nofed/nofed.php:47 +msgid "Federate" +msgstr "" + +#: ../../addon/redred/Mod_Redred.php:24 +msgid "Channel is required." +msgstr "" + +#: ../../addon/redred/Mod_Redred.php:38 +msgid "Hubzilla Crosspost Connector Settings saved." +msgstr "" + +#: ../../addon/redred/Mod_Redred.php:50 +#: ../../addon/statusnet/Mod_Statusnet.php:146 +msgid "Hubzilla Crosspost Connector App" +msgstr "" + +#: ../../addon/redred/Mod_Redred.php:51 +msgid "Relay public postings to another Hubzilla channel" +msgstr "" + +#: ../../addon/redred/Mod_Redred.php:63 +msgid "Send public postings to Hubzilla channel by default" +msgstr "" + +#: ../../addon/redred/Mod_Redred.php:67 +msgid "Hubzilla API Path" +msgstr "" + +#: ../../addon/redred/Mod_Redred.php:71 +msgid "Hubzilla login name" +msgstr "" + +#: ../../addon/redred/Mod_Redred.php:75 +msgid "Hubzilla channel name" +msgstr "" + +#: ../../addon/redred/Mod_Redred.php:87 +msgid "Hubzilla Crosspost Connector" +msgstr "" + +#: ../../addon/redred/redred.php:50 +msgid "Post to Hubzilla" +msgstr "" + +#: ../../addon/logrot/logrot.php:36 +msgid "Logfile archive directory" +msgstr "" + +#: ../../addon/logrot/logrot.php:36 +msgid "Directory to store rotated logs" +msgstr "" + +#: ../../addon/logrot/logrot.php:37 +msgid "Logfile size in bytes before rotating" +msgstr "" + +#: ../../addon/logrot/logrot.php:38 +msgid "Number of logfiles to retain" +msgstr "" + +#: ../../addon/content_import/Mod_content_import.php:27 +msgid "No server specified" +msgstr "" + +#: ../../addon/content_import/Mod_content_import.php:73 +msgid "Posts imported" +msgstr "" + +#: ../../addon/content_import/Mod_content_import.php:113 +msgid "Files imported" +msgstr "" + +#: ../../addon/content_import/Mod_content_import.php:122 +msgid "" +"This addon app copies existing content and file storage to a cloned/copied " +"channel. Once the app is installed, visit the newly installed app. This will " +"allow you to set the location of your original channel and an optional date " +"range of files/conversations to copy." +msgstr "" + +#: ../../addon/content_import/Mod_content_import.php:136 +msgid "" +"This will import all your conversations and cloud files from a cloned " +"channel on another server. This may take a while if you have lots of posts " +"and or files." +msgstr "" + +#: ../../addon/content_import/Mod_content_import.php:137 +msgid "Include posts" +msgstr "" + +#: ../../addon/content_import/Mod_content_import.php:137 +msgid "Conversations, Articles, Cards, and other posted content" +msgstr "" + +#: ../../addon/content_import/Mod_content_import.php:138 +msgid "Include files" +msgstr "" + +#: ../../addon/content_import/Mod_content_import.php:138 +msgid "Files, Photos and other cloud storage" +msgstr "" + +#: ../../addon/content_import/Mod_content_import.php:139 +msgid "Original Server base URL" +msgstr "" + +#: ../../addon/frphotos/frphotos.php:92 +msgid "Friendica Photo Album Import" +msgstr "" + +#: ../../addon/frphotos/frphotos.php:93 +msgid "This will import all your Friendica photo albums to this Red channel." +msgstr "" + +#: ../../addon/frphotos/frphotos.php:94 +msgid "Friendica Server base URL" +msgstr "" + +#: ../../addon/frphotos/frphotos.php:95 +msgid "Friendica Login Username" +msgstr "" + +#: ../../addon/frphotos/frphotos.php:96 +msgid "Friendica Login Password" +msgstr "" + +#: ../../addon/hsse/Mod_Hsse.php:15 +msgid "WYSIWYG status editor" +msgstr "" + +#: ../../addon/hsse/Mod_Hsse.php:21 ../../addon/hsse/Mod_Hsse.php:26 +msgid "WYSIWYG Status App" +msgstr "" + +#: ../../addon/hsse/Mod_Hsse.php:34 +msgid "WYSIWYG Status" +msgstr "" + +#: ../../addon/hsse/hsse.php:82 ../../include/conversation.php:1285 +msgid "Set your location" +msgstr "" + +#: ../../addon/hsse/hsse.php:83 ../../include/conversation.php:1286 +msgid "Clear browser location" +msgstr "" + +#: ../../addon/hsse/hsse.php:99 ../../include/conversation.php:1302 +msgid "Embed (existing) photo from your photo albums" +msgstr "" + +#: ../../addon/hsse/hsse.php:135 ../../include/conversation.php:1338 +msgid "Tag term:" +msgstr "" + +#: ../../addon/hsse/hsse.php:136 ../../include/conversation.php:1339 +msgid "Where are you right now?" +msgstr "" + +#: ../../addon/hsse/hsse.php:141 ../../include/conversation.php:1344 +msgid "Choose a different album..." +msgstr "" + +#: ../../addon/hsse/hsse.php:145 ../../include/conversation.php:1348 +msgid "Comments enabled" +msgstr "" + +#: ../../addon/hsse/hsse.php:146 ../../include/conversation.php:1349 +msgid "Comments disabled" +msgstr "" + +#: ../../addon/hsse/hsse.php:195 ../../include/conversation.php:1401 +msgid "Page link name" +msgstr "" + +#: ../../addon/hsse/hsse.php:198 ../../include/conversation.php:1404 +msgid "Post as" +msgstr "" + +#: ../../addon/hsse/hsse.php:212 ../../include/conversation.php:1418 +msgid "Toggle voting" +msgstr "" + +#: ../../addon/hsse/hsse.php:215 ../../include/conversation.php:1421 +msgid "Disable comments" +msgstr "" + +#: ../../addon/hsse/hsse.php:216 ../../include/conversation.php:1422 +msgid "Toggle comments" +msgstr "" + +#: ../../addon/hsse/hsse.php:224 ../../include/conversation.php:1430 +msgid "Categories (optional, comma-separated list)" +msgstr "" + +#: ../../addon/hsse/hsse.php:247 ../../include/conversation.php:1453 +msgid "Other networks and post services" +msgstr "" + +#: ../../addon/hsse/hsse.php:253 ../../include/conversation.php:1459 +msgid "Set publish date" +msgstr "" + +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:25 +msgid "ActivityPub Protocol Settings updated." +msgstr "" + +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:34 +msgid "" +"The activitypub protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "" + +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:40 +msgid "Activitypub Protocol App" +msgstr "" + +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:50 +msgid "Deliver to ActivityPub recipients in privacy groups" +msgstr "" + +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:50 +msgid "" +"May result in a large number of mentions and expose all the members of your " +"privacy group" +msgstr "" + +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:54 +msgid "Send multi-media HTML articles" +msgstr "" + +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:54 +msgid "Not supported by some microblog services such as Mastodon" +msgstr "" + +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:62 +msgid "Activitypub Protocol" +msgstr "" + +#: ../../addon/donate/donate.php:21 +msgid "Project Servers and Resources" +msgstr "" + +#: ../../addon/donate/donate.php:22 +msgid "Project Creator and Tech Lead" +msgstr "" + +#: ../../addon/donate/donate.php:49 +msgid "" +"And the hundreds of other people and organisations who helped make the " +"Hubzilla possible." +msgstr "" + +#: ../../addon/donate/donate.php:52 +msgid "" +"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " +"their time and expertise - and often paying out of pocket for services they " +"share with others." +msgstr "" + +#: ../../addon/donate/donate.php:53 +msgid "" +"There is no corporate funding and no ads, and we do not collect and sell " +"your personal information. (We don't control your personal information - " +"you do.)" +msgstr "" + +#: ../../addon/donate/donate.php:54 +msgid "" +"Help support our ground-breaking work in decentralisation, web identity, and " +"privacy." +msgstr "" + +#: ../../addon/donate/donate.php:56 +msgid "" +"Your donations keep servers and services running and also helps us to " +"provide innovative new features and continued development." +msgstr "" + +#: ../../addon/donate/donate.php:59 +msgid "Donate" +msgstr "" + +#: ../../addon/donate/donate.php:61 +msgid "" +"Choose a project, developer, or public hub to support with a one-time " +"donation" +msgstr "" + +#: ../../addon/donate/donate.php:62 +msgid "Donate Now" +msgstr "" + +#: ../../addon/donate/donate.php:63 +msgid "" +"Or become a project sponsor (Hubzilla Project only)" +msgstr "" + +#: ../../addon/donate/donate.php:64 +msgid "" +"Please indicate if you would like your first name or full name (or nothing) " +"to appear in our sponsor listing" +msgstr "" + +#: ../../addon/donate/donate.php:65 +msgid "Sponsor" +msgstr "" + +#: ../../addon/donate/donate.php:68 +msgid "Special thanks to: " +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:44 +msgid "" +"This is a fairly comprehensive and complete guitar chord dictionary which " +"will list most of the available ways to play a certain chord, starting from " +"the base of the fingerboard up to a few frets beyond the twelfth fret " +"(beyond which everything repeats). A couple of non-standard tunings are " +"provided for the benefit of slide players, etc." +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:46 +msgid "" +"Chord names start with a root note (A-G) and may include sharps (#) and " +"flats (b). This software will parse most of the standard naming conventions " +"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:48 +msgid "" +"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " +"E7b13b11 ..." +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:51 +msgid "Guitar Chords" +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:52 +msgid "The complete online chord dictionary" +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:57 +msgid "Tuning" +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:58 +msgid "Chord name: example: Em7" +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:59 +msgid "Show for left handed stringing" +msgstr "" + +#: ../../addon/chords/chords.php:33 +msgid "Quick Reference" +msgstr "" + +#: ../../addon/libertree/libertree.php:43 +msgid "Post to Libertree" +msgstr "" + +#: ../../addon/libertree/Mod_Libertree.php:25 +msgid "Libertree Crosspost Connector Settings saved." +msgstr "" + +#: ../../addon/libertree/Mod_Libertree.php:35 +msgid "Libertree Crosspost Connector App" +msgstr "" + +#: ../../addon/libertree/Mod_Libertree.php:36 +msgid "Relay public posts to Libertree" +msgstr "" + +#: ../../addon/libertree/Mod_Libertree.php:51 +msgid "Libertree API token" +msgstr "" + +#: ../../addon/libertree/Mod_Libertree.php:55 +msgid "Libertree site URL" +msgstr "" + +#: ../../addon/libertree/Mod_Libertree.php:59 +msgid "Post to Libertree by default" +msgstr "" + +#: ../../addon/libertree/Mod_Libertree.php:67 +msgid "Libertree Crosspost Connector" +msgstr "" + +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:41 +msgid "Flattr widget settings updated." +msgstr "" + +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:53 +msgid "Flattr Widget App" +msgstr "" + +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:54 +msgid "Add a Flattr button to your channel page" +msgstr "" + +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:65 +msgid "Flattr user" +msgstr "" + +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:69 +msgid "URL of the Thing to flattr" +msgstr "" + +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:69 +msgid "If empty channel URL is used" +msgstr "" + +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:73 +msgid "Title of the Thing to flattr" +msgstr "" + +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:73 +msgid "If empty \"channel name on The Hubzilla\" will be used" +msgstr "" + +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:77 +msgid "Static or dynamic flattr button" +msgstr "" + +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:77 +msgid "static" +msgstr "" + +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:77 +msgid "dynamic" +msgstr "" + +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:81 +msgid "Alignment of the widget" +msgstr "" + +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:81 +msgid "left" +msgstr "" + +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:81 +msgid "right" +msgstr "" + +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:89 +msgid "Flattr Widget" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:50 +msgid "Flattr this!" +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:61 +msgid "" +"Please contact your site administrator.
The provided API URL is not " +"valid." +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:98 +msgid "We could not contact the GNU social API with the Path you entered." +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:130 +msgid "GNU social settings updated." +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:147 +msgid "" +"Relay public postings to a connected GNU social account (formerly StatusNet)" +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:181 +msgid "Globally Available GNU social OAuthKeys" +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:183 +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 "" + +#: ../../addon/statusnet/Mod_Statusnet.php:198 +msgid "Provide your own OAuth Credentials" +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:200 +msgid "" +"No consumer key pair for GNU social found. Register your Hubzilla 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 " +"Hubzilla installation at your favourite GNU social installation." +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:204 +msgid "OAuth Consumer Key" +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:208 +msgid "OAuth Consumer Secret" +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:212 +msgid "Base API Path" +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:212 +msgid "Remember the trailing /" +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:216 +msgid "GNU social application name" +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:239 +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 "" + +#: ../../addon/statusnet/Mod_Statusnet.php:241 +msgid "Log in with GNU social" +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:244 +msgid "Copy the security code from GNU social here" +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:254 +msgid "Cancel Connection Process" +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:256 +msgid "Current GNU social API is" +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:260 +msgid "Cancel GNU social Connection" +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:272 +#: ../../addon/twitter/Mod_Twitter.php:147 +msgid "Currently connected to: " +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:277 +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 "" + +#: ../../addon/statusnet/Mod_Statusnet.php:282 +msgid "Post to GNU social by default" +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:282 +msgid "" +"If enabled your public postings will be posted to the associated GNU-social " +"account by default" +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:291 +#: ../../addon/twitter/Mod_Twitter.php:171 +msgid "Clear OAuth configuration" +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:303 +msgid "GNU-Social Crosspost Connector" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:145 +msgid "Post to GNU social" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:594 +msgid "API URL" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:597 +msgid "Application name" +msgstr "" + +#: ../../addon/qrator/qrator.php:48 +msgid "QR code" +msgstr "" + +#: ../../addon/qrator/qrator.php:63 +msgid "QR Generator" +msgstr "" + +#: ../../addon/qrator/qrator.php:64 +msgid "Enter some text" +msgstr "" + +#: ../../addon/chess/Mod_Chess.php:180 ../../addon/chess/Mod_Chess.php:377 +msgid "Invalid game." +msgstr "" + +#: ../../addon/chess/Mod_Chess.php:186 ../../addon/chess/Mod_Chess.php:417 +msgid "You are not a player in this game." +msgstr "" + +#: ../../addon/chess/Mod_Chess.php:242 +msgid "You must be a local channel to create a game." +msgstr "" + +#: ../../addon/chess/Mod_Chess.php:260 +msgid "You must select one opponent that is not yourself." +msgstr "" + +#: ../../addon/chess/Mod_Chess.php:271 +msgid "Random color chosen." +msgstr "" + +#: ../../addon/chess/Mod_Chess.php:279 +msgid "Error creating new game." +msgstr "" + +#: ../../addon/chess/Mod_Chess.php:306 ../../include/channel.php:1273 +msgid "Requested channel is not available." +msgstr "" + +#: ../../addon/chess/Mod_Chess.php:311 ../../addon/chess/Mod_Chess.php:333 +msgid "Chess not installed." +msgstr "" + +#: ../../addon/chess/Mod_Chess.php:326 +msgid "You must select a local channel /chess/channelname" +msgstr "" + +#: ../../addon/chess/chess.php:645 +msgid "Enable notifications" +msgstr "" + +#: ../../addon/twitter/Mod_Twitter.php:65 +msgid "Twitter settings updated." +msgstr "" + +#: ../../addon/twitter/Mod_Twitter.php:78 +msgid "Twitter Crosspost Connector App" +msgstr "" + +#: ../../addon/twitter/Mod_Twitter.php:79 +msgid "Relay public posts to Twitter" +msgstr "" + +#: ../../addon/twitter/Mod_Twitter.php:103 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "" + +#: ../../addon/twitter/Mod_Twitter.php:125 +msgid "" +"At this Hubzilla instance the Twitter plugin 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 "" + +#: ../../addon/twitter/Mod_Twitter.php:127 +msgid "Log in with Twitter" +msgstr "" + +#: ../../addon/twitter/Mod_Twitter.php:130 +msgid "Copy the PIN from Twitter here" +msgstr "" + +#: ../../addon/twitter/Mod_Twitter.php:152 +msgid "" +"Note: Due 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 "" + +#: ../../addon/twitter/Mod_Twitter.php:157 +msgid "Twitter post length" +msgstr "" + +#: ../../addon/twitter/Mod_Twitter.php:157 +msgid "Maximum tweet length" +msgstr "" + +#: ../../addon/twitter/Mod_Twitter.php:162 +msgid "Send public postings to Twitter by default" +msgstr "" + +#: ../../addon/twitter/Mod_Twitter.php:162 +msgid "" +"If enabled your public postings will be posted to the associated Twitter " +"account by default" +msgstr "" + +#: ../../addon/twitter/Mod_Twitter.php:181 +msgid "Twitter Crosspost Connector" +msgstr "" + +#: ../../addon/twitter/twitter.php:107 +msgid "Post to Twitter" +msgstr "" + +#: ../../addon/smileybutton/Mod_Smileybutton.php:35 +msgid "Smileybutton App" +msgstr "" + +#: ../../addon/smileybutton/Mod_Smileybutton.php:36 +msgid "Adds a smileybutton to the jot editor" +msgstr "" + +#: ../../addon/smileybutton/Mod_Smileybutton.php:44 +msgid "Hide the button and show the smilies directly." +msgstr "" + +#: ../../addon/smileybutton/Mod_Smileybutton.php:52 +msgid "Smileybutton Settings" +msgstr "" + +#: ../../addon/cart/Settings/Cart.php:56 +msgid "Enable Test Catalog" +msgstr "" + +#: ../../addon/cart/Settings/Cart.php:68 +msgid "Enable Manual Payments" +msgstr "" + +#: ../../addon/cart/Settings/Cart.php:88 +msgid "Base Merchant Currency" +msgstr "" + +#: ../../addon/cart/Settings/Cart.php:111 ../../addon/cart/cart.php:1263 +msgid "Cart Settings" +msgstr "" + +#: ../../addon/cart/myshop.php:30 +msgid "Access Denied." +msgstr "" + +#: ../../addon/cart/myshop.php:111 ../../addon/cart/cart.php:1334 +msgid "Order Not Found" +msgstr "" + +#: ../../addon/cart/myshop.php:186 ../../addon/cart/myshop.php:220 +#: ../../addon/cart/myshop.php:269 ../../addon/cart/myshop.php:327 +msgid "Invalid Item" +msgstr "" + +#: ../../addon/cart/cart.php:159 +msgid "DB Cleanup Failure" +msgstr "" + +#: ../../addon/cart/cart.php:565 +msgid "[cart] Item Added" +msgstr "" + +#: ../../addon/cart/cart.php:953 +msgid "Order already checked out." +msgstr "" + +#: ../../addon/cart/cart.php:1256 +msgid "Drop database tables when uninstalling." +msgstr "" + +#: ../../addon/cart/cart.php:1275 ../../addon/cart/cart.php:1278 +msgid "Shop" +msgstr "" + +#: ../../addon/cart/cart.php:1395 +msgid "Cart utilities for orders and payments" +msgstr "" + +#: ../../addon/cart/cart.php:1433 +msgid "You must be logged into the Grid to shop." +msgstr "" + +#: ../../addon/cart/cart.php:1466 +#: ../../addon/cart/submodules/paypalbutton.php:392 +#: ../../addon/cart/manual_payments.php:68 +msgid "Order not found." +msgstr "" + +#: ../../addon/cart/cart.php:1474 +msgid "Access denied." +msgstr "" + +#: ../../addon/cart/cart.php:1526 ../../addon/cart/cart.php:1669 +msgid "No Order Found" +msgstr "" + +#: ../../addon/cart/cart.php:1535 +msgid "An unknown error has occurred Please start again." +msgstr "" + +#: ../../addon/cart/cart.php:1702 +msgid "Invalid Payment Type. Please start again." +msgstr "" + +#: ../../addon/cart/cart.php:1709 +msgid "Order not found" +msgstr "" + +#: ../../addon/cart/submodules/paypalbutton.php:85 +msgid "Enable Paypal Button Module" +msgstr "" + +#: ../../addon/cart/submodules/paypalbutton.php:93 +msgid "Use Production Key" +msgstr "" + +#: ../../addon/cart/submodules/paypalbutton.php:100 +msgid "Paypal Sandbox Client Key" +msgstr "" + +#: ../../addon/cart/submodules/paypalbutton.php:107 +msgid "Paypal Sandbox Secret Key" +msgstr "" + +#: ../../addon/cart/submodules/paypalbutton.php:113 +msgid "Paypal Production Client Key" +msgstr "" + +#: ../../addon/cart/submodules/paypalbutton.php:120 +msgid "Paypal Production Secret Key" +msgstr "" + +#: ../../addon/cart/submodules/paypalbutton.php:252 +msgid "Paypal button payments are not enabled." +msgstr "" + +#: ../../addon/cart/submodules/paypalbutton.php:270 +msgid "" +"Paypal button payments are not properly configured. Please choose another " +"payment option." +msgstr "" + +#: ../../addon/cart/submodules/manualcat.php:61 +msgid "Enable Manual Cart Module" +msgstr "" + +#: ../../addon/cart/submodules/manualcat.php:173 +#: ../../addon/cart/submodules/hzservices.php:160 +msgid "New Sku" +msgstr "" + +#: ../../addon/cart/submodules/manualcat.php:209 +#: ../../addon/cart/submodules/hzservices.php:195 +msgid "Cannot save edits to locked item." +msgstr "" + +#: ../../addon/cart/submodules/manualcat.php:252 +#: ../../addon/cart/submodules/hzservices.php:644 +msgid "Changes Locked" +msgstr "" + +#: ../../addon/cart/submodules/manualcat.php:256 +#: ../../addon/cart/submodules/hzservices.php:648 +msgid "Item available for purchase." +msgstr "" + +#: ../../addon/cart/submodules/manualcat.php:263 +#: ../../addon/cart/submodules/hzservices.php:655 +msgid "Price" +msgstr "" + +#: ../../addon/cart/submodules/hzservices.php:62 +msgid "Enable Hubzilla Services Module" +msgstr "" + +#: ../../addon/cart/submodules/hzservices.php:243 +#: ../../addon/cart/submodules/hzservices.php:330 +msgid "SKU not found." +msgstr "" + +#: ../../addon/cart/submodules/hzservices.php:296 +#: ../../addon/cart/submodules/hzservices.php:300 +msgid "Invalid Activation Directive." +msgstr "" + +#: ../../addon/cart/submodules/hzservices.php:371 +#: ../../addon/cart/submodules/hzservices.php:375 +msgid "Invalid Deactivation Directive." +msgstr "" + +#: ../../addon/cart/submodules/hzservices.php:561 +msgid "Add to this privacy group" +msgstr "" + +#: ../../addon/cart/submodules/hzservices.php:577 +msgid "Set user service class" +msgstr "" + +#: ../../addon/cart/submodules/hzservices.php:604 +msgid "You must be using a local account to purchase this service." +msgstr "" + +#: ../../addon/cart/submodules/hzservices.php:659 +msgid "Add buyer to privacy group" +msgstr "" + +#: ../../addon/cart/submodules/hzservices.php:664 +msgid "Add buyer as connection" +msgstr "" + +#: ../../addon/cart/submodules/hzservices.php:672 +#: ../../addon/cart/submodules/hzservices.php:714 +msgid "Set Service Class" +msgstr "" + +#: ../../addon/cart/submodules/subscriptions.php:151 +msgid "Enable Subscription Management Module" +msgstr "" + +#: ../../addon/cart/submodules/subscriptions.php:223 +msgid "" +"Cannot include subscription items with different terms in the same order." +msgstr "" + +#: ../../addon/cart/submodules/subscriptions.php:372 +msgid "Select Subscription to Edit" +msgstr "" + +#: ../../addon/cart/submodules/subscriptions.php:380 +msgid "Edit Subscriptions" +msgstr "" + +#: ../../addon/cart/submodules/subscriptions.php:414 +msgid "Subscription SKU" +msgstr "" + +#: ../../addon/cart/submodules/subscriptions.php:419 +msgid "Catalog Description" +msgstr "" + +#: ../../addon/cart/submodules/subscriptions.php:423 +msgid "Subscription available for purchase." +msgstr "" + +#: ../../addon/cart/submodules/subscriptions.php:428 +msgid "Maximum active subscriptions to this item per account." +msgstr "" + +#: ../../addon/cart/submodules/subscriptions.php:431 +msgid "Subscription price." +msgstr "" + +#: ../../addon/cart/submodules/subscriptions.php:435 +msgid "Quantity" +msgstr "" + +#: ../../addon/cart/submodules/subscriptions.php:439 +msgid "Term" +msgstr "" + +#: ../../addon/cart/manual_payments.php:7 +msgid "Error: order mismatch. Please try again." +msgstr "" + +#: ../../addon/cart/manual_payments.php:61 +msgid "Manual payments are not enabled." +msgstr "" + +#: ../../addon/cart/manual_payments.php:77 +msgid "Finished" +msgstr "" + +#: ../../addon/piwik/piwik.php:85 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "" + +#: ../../addon/piwik/piwik.php:88 +#, php-format +msgid "" +"If you do not want that your visits are logged this way you can " +"set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." +msgstr "" + +#: ../../addon/piwik/piwik.php:96 +msgid "Piwik Base URL" +msgstr "" + +#: ../../addon/piwik/piwik.php:96 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" +msgstr "" + +#: ../../addon/piwik/piwik.php:97 +msgid "Site ID" +msgstr "" + +#: ../../addon/piwik/piwik.php:98 +msgid "Show opt-out cookie link?" +msgstr "" + +#: ../../addon/piwik/piwik.php:99 +msgid "Asynchronous tracking" +msgstr "" + +#: ../../addon/piwik/piwik.php:100 +msgid "Enable frontend JavaScript error tracking" +msgstr "" + +#: ../../addon/piwik/piwik.php:100 +msgid "This feature requires Piwik >= 2.2.0" +msgstr "" + +#: ../../addon/tour/tour.php:76 +msgid "Edit your profile and change settings." +msgstr "" + +#: ../../addon/tour/tour.php:77 +msgid "Click here to see activity from your connections." +msgstr "" + +#: ../../addon/tour/tour.php:78 +msgid "Click here to see your channel home." +msgstr "" + +#: ../../addon/tour/tour.php:79 +msgid "You can access your private messages from here." +msgstr "" + +#: ../../addon/tour/tour.php:80 +msgid "Create new events here." +msgstr "" + +#: ../../addon/tour/tour.php:81 +msgid "" +"You can accept new connections and change permissions for existing ones " +"here. You can also e.g. create groups of contacts." +msgstr "" + +#: ../../addon/tour/tour.php:82 +msgid "System notifications will arrive here" +msgstr "" + +#: ../../addon/tour/tour.php:83 +msgid "Search for content and users" +msgstr "" + +#: ../../addon/tour/tour.php:84 +msgid "Browse for new contacts" +msgstr "" + +#: ../../addon/tour/tour.php:85 +msgid "Launch installed apps" +msgstr "" + +#: ../../addon/tour/tour.php:86 +msgid "Looking for help? Click here." +msgstr "" + +#: ../../addon/tour/tour.php:87 +msgid "" +"New events have occurred in your network. Click here to see what has " +"happened!" +msgstr "" + +#: ../../addon/tour/tour.php:88 +msgid "You have received a new private message. Click here to see from who!" +msgstr "" + +#: ../../addon/tour/tour.php:89 +msgid "There are events this week. Click here too see which!" +msgstr "" + +#: ../../addon/tour/tour.php:90 +msgid "You have received a new introduction. Click here to see who!" +msgstr "" + +#: ../../addon/tour/tour.php:91 +msgid "" +"There is a new system notification. Click here to see what has happened!" +msgstr "" + +#: ../../addon/tour/tour.php:94 +msgid "Click here to share text, images, videos and sound." +msgstr "" + +#: ../../addon/tour/tour.php:95 +msgid "You can write an optional title for your update (good for long posts)." +msgstr "" + +#: ../../addon/tour/tour.php:96 +msgid "Entering some categories here makes it easier to find your post later." +msgstr "" + +#: ../../addon/tour/tour.php:97 +msgid "Share photos, links, location, etc." +msgstr "" + +#: ../../addon/tour/tour.php:98 +msgid "" +"Only want to share content for a while? Make it expire at a certain date." +msgstr "" + +#: ../../addon/tour/tour.php:99 +msgid "You can password protect content." +msgstr "" + +#: ../../addon/tour/tour.php:100 +msgid "Choose who you share with." +msgstr "" + +#: ../../addon/tour/tour.php:102 +msgid "Click here when you are done." +msgstr "" + +#: ../../addon/tour/tour.php:105 +msgid "Adjust from which channels posts should be displayed." +msgstr "" + +#: ../../addon/tour/tour.php:106 +msgid "Only show posts from channels in the specified privacy group." +msgstr "" + +#: ../../addon/tour/tour.php:110 +msgid "" +"Easily find posts containing tags (keywords preceded by the \"#\" symbol)." +msgstr "" + +#: ../../addon/tour/tour.php:111 +msgid "Easily find posts in given category." +msgstr "" + +#: ../../addon/tour/tour.php:112 +msgid "Easily find posts by date." +msgstr "" + +#: ../../addon/tour/tour.php:113 +msgid "" +"Suggested users who have volounteered to be shown as suggestions, and who we " +"think you might find interesting." +msgstr "" + +#: ../../addon/tour/tour.php:114 +msgid "Here you see channels you have connected to." +msgstr "" + +#: ../../addon/tour/tour.php:115 +msgid "Save your search so you can repeat it at a later date." +msgstr "" + +#: ../../addon/tour/tour.php:118 +msgid "" +"If you see this icon you can be sure that the sender is who it say it is. It " +"is normal that it is not always possible to verify the sender, so the icon " +"will be missing sometimes. There is usually no need to worry about that." +msgstr "" + +#: ../../addon/tour/tour.php:119 +msgid "" +"Danger! It seems someone tried to forge a message! This message is not " +"necessarily from who it says it is from!" +msgstr "" + +#: ../../addon/tour/tour.php:126 +msgid "" +"Welcome to Hubzilla! Would you like to see a tour of the UI?

You can " +"pause it at any time and continue where you left off by reloading the page, " +"or navigting to another page.

You can also advance by pressing the " +"return key" +msgstr "" + +#: ../../addon/sendzid/Mod_Sendzid.php:14 +msgid "Send your identity to all websites" +msgstr "" + +#: ../../addon/sendzid/Mod_Sendzid.php:20 +msgid "Sendzid App" +msgstr "" + +#: ../../addon/sendzid/Mod_Sendzid.php:32 +msgid "Send ZID" +msgstr "" + +#: ../../addon/tictac/tictac.php:21 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "" + +#: ../../addon/tictac/tictac.php:54 +msgid "3D Tic-Tac-Toe" +msgstr "" + +#: ../../addon/tictac/tictac.php:59 +msgid "New game" +msgstr "" + +#: ../../addon/tictac/tictac.php:60 +msgid "New game with handicap" +msgstr "" + +#: ../../addon/tictac/tictac.php:61 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " +msgstr "" + +#: ../../addon/tictac/tictac.php:62 +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 "" + +#: ../../addon/tictac/tictac.php:64 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." +msgstr "" + +#: ../../addon/tictac/tictac.php:183 +msgid "You go first..." +msgstr "" + +#: ../../addon/tictac/tictac.php:188 +msgid "I'm going first this time..." +msgstr "" + +#: ../../addon/tictac/tictac.php:194 +msgid "You won!" +msgstr "" + +#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 +msgid "\"Cat\" game!" +msgstr "" + +#: ../../addon/tictac/tictac.php:223 +msgid "I won!" +msgstr "" + +#: ../../addon/pageheader/Mod_Pageheader.php:22 +msgid "pageheader Settings saved." +msgstr "" + +#: ../../addon/pageheader/Mod_Pageheader.php:34 +msgid "Page Header App" +msgstr "" + +#: ../../addon/pageheader/Mod_Pageheader.php:35 +msgid "Inserts a page header" +msgstr "" + +#: ../../addon/pageheader/Mod_Pageheader.php:43 +msgid "Message to display on every page on this server" +msgstr "" + +#: ../../addon/pageheader/Mod_Pageheader.php:51 +msgid "Page Header" +msgstr "" + +#: ../../addon/authchoose/Mod_Authchoose.php:22 +msgid "" +"Allow magic authentication only to websites of your immediate connections" +msgstr "" + +#: ../../addon/authchoose/Mod_Authchoose.php:28 +#: ../../addon/authchoose/Mod_Authchoose.php:33 +msgid "Authchoose App" +msgstr "" + +#: ../../addon/authchoose/Mod_Authchoose.php:39 +msgid "Authchoose" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:19 +msgid "lonely" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:20 +msgid "drunk" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:21 +msgid "horny" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:22 +msgid "stoned" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:23 +msgid "fucked up" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:24 +msgid "clusterfucked" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:25 +msgid "crazy" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:26 +msgid "hurt" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:27 +msgid "sleepy" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:28 +msgid "grumpy" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:29 +msgid "high" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:30 +msgid "semi-conscious" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:31 +msgid "in love" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:32 +msgid "in lust" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:33 +msgid "naked" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:34 +msgid "stinky" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:35 +msgid "sweaty" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:36 +msgid "bleeding out" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:37 +msgid "victorious" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:38 +msgid "defeated" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:39 +msgid "envious" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:40 +msgid "jealous" +msgstr "" + +#: ../../addon/xmpp/Mod_Xmpp.php:23 +msgid "XMPP settings updated." +msgstr "" + +#: ../../addon/xmpp/Mod_Xmpp.php:35 +msgid "XMPP App" +msgstr "" + +#: ../../addon/xmpp/Mod_Xmpp.php:36 +msgid "Embedded XMPP (Jabber) client" +msgstr "" + +#: ../../addon/xmpp/Mod_Xmpp.php:52 +msgid "Individual credentials" +msgstr "" + +#: ../../addon/xmpp/Mod_Xmpp.php:58 +msgid "Jabber BOSH server" +msgstr "" + +#: ../../addon/xmpp/Mod_Xmpp.php:67 +msgid "XMPP Settings" +msgstr "" + +#: ../../addon/xmpp/xmpp.php:44 +msgid "Jabber BOSH host" +msgstr "" + +#: ../../addon/xmpp/xmpp.php:45 +msgid "Use central userbase" +msgstr "" + +#: ../../addon/xmpp/xmpp.php:45 +msgid "" +"If enabled, members will automatically login to an ejabberd server that has " +"to be installed on this machine with synchronized credentials via the " +"\"auth_ejabberd.php\" script." +msgstr "" + +#: ../../addon/wholikesme/wholikesme.php:29 +msgid "Who likes me?" +msgstr "" + +#: ../../addon/pumpio/Mod_Pumpio.php:40 +msgid "Pump.io Settings saved." +msgstr "" + +#: ../../addon/pumpio/Mod_Pumpio.php:53 +msgid "Pump.io Crosspost Connector App" +msgstr "" + +#: ../../addon/pumpio/Mod_Pumpio.php:54 +msgid "Relay public posts to pump.io" +msgstr "" + +#: ../../addon/pumpio/Mod_Pumpio.php:73 +msgid "Pump.io servername" +msgstr "" + +#: ../../addon/pumpio/Mod_Pumpio.php:73 +msgid "Without \"http://\" or \"https://\"" +msgstr "" + +#: ../../addon/pumpio/Mod_Pumpio.php:77 +msgid "Pump.io username" +msgstr "" + +#: ../../addon/pumpio/Mod_Pumpio.php:77 +msgid "Without the servername" +msgstr "" + +#: ../../addon/pumpio/Mod_Pumpio.php:88 +msgid "You are not authenticated to pumpio" +msgstr "" + +#: ../../addon/pumpio/Mod_Pumpio.php:90 +msgid "(Re-)Authenticate your pump.io connection" +msgstr "" + +#: ../../addon/pumpio/Mod_Pumpio.php:94 +msgid "Post to pump.io by default" +msgstr "" + +#: ../../addon/pumpio/Mod_Pumpio.php:98 +msgid "Should posts be public" +msgstr "" + +#: ../../addon/pumpio/Mod_Pumpio.php:102 +msgid "Mirror all public posts" +msgstr "" + +#: ../../addon/pumpio/Mod_Pumpio.php:112 +msgid "Pump.io Crosspost Connector" +msgstr "" + +#: ../../addon/pumpio/pumpio.php:152 +msgid "You are now authenticated to pumpio." +msgstr "" + +#: ../../addon/pumpio/pumpio.php:153 +msgid "return to the featured settings page" +msgstr "" + +#: ../../addon/pumpio/pumpio.php:168 +msgid "Post to Pump.io" +msgstr "" + +#: ../../addon/ldapauth/ldapauth.php:70 +msgid "An account has been created for you." +msgstr "" + +#: ../../addon/ldapauth/ldapauth.php:77 +msgid "Authentication successful but rejected: account creation is disabled." +msgstr "" + +#: ../../addon/opensearch/opensearch.php:26 +#, php-format +msgctxt "opensearch" +msgid "Search %1$s (%2$s)" +msgstr "" + +#: ../../addon/opensearch/opensearch.php:28 +msgctxt "opensearch" +msgid "$Projectname" +msgstr "" + +#: ../../addon/opensearch/opensearch.php:43 +msgid "Search $Projectname" +msgstr "" + +#: ../../addon/redfiles/redfiles.php:119 +msgid "Redmatrix File Storage Import" +msgstr "" + +#: ../../addon/redfiles/redfiles.php:120 +msgid "This will import all your Redmatrix cloud files to this channel." +msgstr "" + +#: ../../addon/redfiles/redfilehelper.php:64 +msgid "file" +msgstr "" + +#: ../../addon/hubwall/hubwall.php:19 +msgid "Send email to all members" +msgstr "" + +#: ../../addon/hubwall/hubwall.php:73 +#, php-format +msgid "%1$d of %2$d messages sent." +msgstr "" + +#: ../../addon/hubwall/hubwall.php:81 +msgid "Send email to all hub members." +msgstr "" + +#: ../../addon/hubwall/hubwall.php:93 +msgid "Sender Email address" +msgstr "" + +#: ../../addon/hubwall/hubwall.php:94 +msgid "Test mode (only send to hub administrator)" +msgstr "" + +#: ../../include/selectors.php:18 +msgid "Profile to assign new connections" +msgstr "" + +#: ../../include/selectors.php:41 +msgid "Frequently" +msgstr "" + +#: ../../include/selectors.php:42 +msgid "Hourly" +msgstr "" + +#: ../../include/selectors.php:43 +msgid "Twice daily" +msgstr "" + +#: ../../include/selectors.php:44 +msgid "Daily" +msgstr "" + +#: ../../include/selectors.php:45 +msgid "Weekly" +msgstr "" + +#: ../../include/selectors.php:46 +msgid "Monthly" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Currently Male" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Currently Female" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Mostly Male" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Mostly Female" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Transgender" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Intersex" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Transsexual" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Hermaphrodite" +msgstr "" + +#: ../../include/selectors.php:60 ../../include/channel.php:1606 +msgid "Neuter" +msgstr "" + +#: ../../include/selectors.php:60 ../../include/channel.php:1608 +msgid "Non-specific" +msgstr "" + +#: ../../include/selectors.php:60 +msgid "Undecided" +msgstr "" + +#: ../../include/selectors.php:96 ../../include/selectors.php:115 +msgid "Males" +msgstr "" + +#: ../../include/selectors.php:96 ../../include/selectors.php:115 +msgid "Females" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Gay" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Lesbian" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "No Preference" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Bisexual" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Autosexual" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Abstinent" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Virgin" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Deviant" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Fetish" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Oodles" +msgstr "" + +#: ../../include/selectors.php:96 +msgid "Nonsexual" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Single" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Lonely" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Available" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Unavailable" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Has crush" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Infatuated" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Dating" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Unfaithful" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Sex Addict" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Friends/Benefits" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Casual" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Engaged" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Married" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Imaginarily married" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Partners" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Cohabiting" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Common law" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Happy" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Not looking" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Swinger" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Betrayed" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Separated" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Unstable" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Divorced" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Imaginarily divorced" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Widowed" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Uncertain" +msgstr "" + +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "It's complicated" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Don't care" +msgstr "" + +#: ../../include/selectors.php:134 +msgid "Ask me" +msgstr "" + +#: ../../include/conversation.php:169 +#, php-format +msgid "likes %1$s's %2$s" +msgstr "" + +#: ../../include/conversation.php:172 +#, php-format +msgid "doesn't like %1$s's %2$s" +msgstr "" + +#: ../../include/conversation.php:212 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "" + +#: ../../include/conversation.php:247 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:251 ../../include/text.php:1195 +#: ../../include/text.php:1199 +msgid "poked" +msgstr "" + +#: ../../include/conversation.php:739 +#, php-format +msgid "View %s's profile @ %s" +msgstr "" + +#: ../../include/conversation.php:759 +msgid "Categories:" +msgstr "" + +#: ../../include/conversation.php:760 +msgid "Filed under:" +msgstr "" + +#: ../../include/conversation.php:785 +msgid "View in context" +msgstr "" + +#: ../../include/conversation.php:886 +msgid "remove" +msgstr "" + +#: ../../include/conversation.php:890 +msgid "Loading..." +msgstr "" + +#: ../../include/conversation.php:892 +msgid "Delete Selected Items" +msgstr "" + +#: ../../include/conversation.php:935 +msgid "View Source" +msgstr "" + +#: ../../include/conversation.php:945 +msgid "Follow Thread" +msgstr "" + +#: ../../include/conversation.php:954 +msgid "Unfollow Thread" +msgstr "" + +#: ../../include/conversation.php:1068 +msgid "Edit Connection" +msgstr "" + +#: ../../include/conversation.php:1078 +msgid "Message" +msgstr "" + +#: ../../include/conversation.php:1212 +#, php-format +msgid "%s likes this." +msgstr "" + +#: ../../include/conversation.php:1212 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: ../../include/conversation.php:1216 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1218 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1224 +msgid "and" +msgstr "" + +#: ../../include/conversation.php:1227 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1228 +#, php-format +msgid "%s like this." +msgstr "" + +#: ../../include/conversation.php:1228 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: ../../include/conversation.php:1708 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1711 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1714 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1717 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1720 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1723 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/bookmarks.php:34 +#, php-format +msgid "%1$s's bookmarks" +msgstr "" + +#: ../../include/import.php:26 +msgid "Unable to import a removed channel." +msgstr "" + +#: ../../include/import.php:52 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "" + +#: ../../include/import.php:118 +msgid "Cloned channel not found. Import failed." +msgstr "" + +#: ../../include/text.php:520 +msgid "prev" +msgstr "" + +#: ../../include/text.php:522 +msgid "first" +msgstr "" + +#: ../../include/text.php:551 +msgid "last" +msgstr "" + +#: ../../include/text.php:554 +msgid "next" +msgstr "" + +#: ../../include/text.php:572 +msgid "older" +msgstr "" + +#: ../../include/text.php:574 +msgid "newer" +msgstr "" + +#: ../../include/text.php:998 +msgid "No connections" +msgstr "" + +#: ../../include/text.php:1030 +#, php-format +msgid "View all %s connections" +msgstr "" + +#: ../../include/text.php:1092 +#, php-format +msgid "Network: %s" +msgstr "" + +#: ../../include/text.php:1195 ../../include/text.php:1199 +msgid "poke" +msgstr "" + +#: ../../include/text.php:1200 +msgid "ping" +msgstr "" + +#: ../../include/text.php:1200 +msgid "pinged" +msgstr "" + +#: ../../include/text.php:1201 +msgid "prod" +msgstr "" + +#: ../../include/text.php:1201 +msgid "prodded" +msgstr "" + +#: ../../include/text.php:1202 +msgid "slap" +msgstr "" + +#: ../../include/text.php:1202 +msgid "slapped" +msgstr "" + +#: ../../include/text.php:1203 +msgid "finger" +msgstr "" + +#: ../../include/text.php:1203 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:1204 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:1204 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:1227 +msgid "happy" +msgstr "" + +#: ../../include/text.php:1228 +msgid "sad" +msgstr "" + +#: ../../include/text.php:1229 +msgid "mellow" +msgstr "" + +#: ../../include/text.php:1230 +msgid "tired" +msgstr "" + +#: ../../include/text.php:1231 +msgid "perky" +msgstr "" + +#: ../../include/text.php:1232 +msgid "angry" +msgstr "" + +#: ../../include/text.php:1233 +msgid "stupefied" +msgstr "" + +#: ../../include/text.php:1234 +msgid "puzzled" +msgstr "" + +#: ../../include/text.php:1235 +msgid "interested" +msgstr "" + +#: ../../include/text.php:1236 +msgid "bitter" +msgstr "" + +#: ../../include/text.php:1237 +msgid "cheerful" +msgstr "" + +#: ../../include/text.php:1238 +msgid "alive" +msgstr "" + +#: ../../include/text.php:1239 +msgid "annoyed" +msgstr "" + +#: ../../include/text.php:1240 +msgid "anxious" +msgstr "" + +#: ../../include/text.php:1241 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:1242 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:1243 +msgid "frustrated" +msgstr "" + +#: ../../include/text.php:1244 +msgid "depressed" +msgstr "" + +#: ../../include/text.php:1245 +msgid "motivated" +msgstr "" + +#: ../../include/text.php:1246 +msgid "relaxed" +msgstr "" + +#: ../../include/text.php:1247 +msgid "surprised" +msgstr "" + +#: ../../include/text.php:1435 ../../include/js_strings.php:96 +msgid "Monday" +msgstr "" + +#: ../../include/text.php:1435 ../../include/js_strings.php:97 +msgid "Tuesday" +msgstr "" + +#: ../../include/text.php:1435 ../../include/js_strings.php:98 +msgid "Wednesday" +msgstr "" + +#: ../../include/text.php:1435 ../../include/js_strings.php:99 +msgid "Thursday" +msgstr "" + +#: ../../include/text.php:1435 ../../include/js_strings.php:100 +msgid "Friday" +msgstr "" + +#: ../../include/text.php:1435 ../../include/js_strings.php:101 +msgid "Saturday" +msgstr "" + +#: ../../include/text.php:1435 ../../include/js_strings.php:95 +msgid "Sunday" +msgstr "" + +#: ../../include/text.php:1439 ../../include/js_strings.php:71 +msgid "January" +msgstr "" + +#: ../../include/text.php:1439 ../../include/js_strings.php:72 +msgid "February" +msgstr "" + +#: ../../include/text.php:1439 ../../include/js_strings.php:73 +msgid "March" +msgstr "" + +#: ../../include/text.php:1439 ../../include/js_strings.php:74 +msgid "April" +msgstr "" + +#: ../../include/text.php:1439 +msgid "May" +msgstr "" + +#: ../../include/text.php:1439 ../../include/js_strings.php:76 +msgid "June" +msgstr "" + +#: ../../include/text.php:1439 ../../include/js_strings.php:77 +msgid "July" +msgstr "" + +#: ../../include/text.php:1439 ../../include/js_strings.php:78 +msgid "August" +msgstr "" + +#: ../../include/text.php:1439 ../../include/js_strings.php:79 +msgid "September" +msgstr "" + +#: ../../include/text.php:1439 ../../include/js_strings.php:80 +msgid "October" +msgstr "" + +#: ../../include/text.php:1439 ../../include/js_strings.php:81 +msgid "November" +msgstr "" + +#: ../../include/text.php:1439 ../../include/js_strings.php:82 +msgid "December" +msgstr "" + +#: ../../include/text.php:1513 +msgid "Unknown Attachment" +msgstr "" + +#: ../../include/text.php:1515 ../../include/feedutils.php:858 +msgid "unknown" +msgstr "" + +#: ../../include/text.php:1551 +msgid "remove category" +msgstr "" + +#: ../../include/text.php:1625 +msgid "remove from file" +msgstr "" + +#: ../../include/text.php:1789 ../../include/message.php:13 +msgid "Download binary/encrypted content" +msgstr "" + +#: ../../include/text.php:1959 ../../include/language.php:423 +msgid "default" +msgstr "" + +#: ../../include/text.php:1967 +msgid "Page layout" +msgstr "" + +#: ../../include/text.php:1967 +msgid "You can create your own with the layouts tool" +msgstr "" + +#: ../../include/text.php:1978 +msgid "HTML" +msgstr "" + +#: ../../include/text.php:1981 +msgid "Comanche Layout" +msgstr "" + +#: ../../include/text.php:1986 +msgid "PHP" +msgstr "" + +#: ../../include/text.php:1995 +msgid "Page content type" +msgstr "" + +#: ../../include/text.php:2128 +msgid "activity" +msgstr "" + +#: ../../include/text.php:2229 +msgid "a-z, 0-9, -, and _ only" +msgstr "" + +#: ../../include/text.php:2555 +msgid "Design Tools" +msgstr "" + +#: ../../include/text.php:2561 +msgid "Pages" +msgstr "" + +#: ../../include/text.php:2574 +msgid "Import website..." +msgstr "" + +#: ../../include/text.php:2575 +msgid "Select folder to import" +msgstr "" + +#: ../../include/text.php:2576 +msgid "Import from a zipped folder:" +msgstr "" + +#: ../../include/text.php:2577 +msgid "Import from cloud files:" +msgstr "" + +#: ../../include/text.php:2578 +msgid "/cloud/channel/path/to/folder" +msgstr "" + +#: ../../include/text.php:2579 +msgid "Enter path to website files" +msgstr "" + +#: ../../include/text.php:2580 +msgid "Select folder" +msgstr "" + +#: ../../include/text.php:2581 +msgid "Export website..." +msgstr "" + +#: ../../include/text.php:2582 +msgid "Export to a zip file" +msgstr "" + +#: ../../include/text.php:2583 +msgid "website.zip" +msgstr "" + +#: ../../include/text.php:2584 +msgid "Enter a name for the zip file." +msgstr "" + +#: ../../include/text.php:2585 +msgid "Export to cloud files" +msgstr "" + +#: ../../include/text.php:2586 +msgid "/path/to/export/folder" +msgstr "" + +#: ../../include/text.php:2587 +msgid "Enter a path to a cloud files destination." +msgstr "" + +#: ../../include/text.php:2588 +msgid "Specify folder" +msgstr "" + +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "" + +#: ../../include/contact_widgets.php:218 +msgid "Common Connections" +msgstr "" + +#: ../../include/contact_widgets.php:222 +#, php-format +msgid "View all %d common connections" +msgstr "" + +#: ../../include/markdown.php:198 ../../include/bbcode.php:366 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "" + +#: ../../include/follow.php:37 +msgid "Channel is blocked on this site." +msgstr "" + +#: ../../include/follow.php:42 +msgid "Channel location missing." +msgstr "" + +#: ../../include/follow.php:84 +msgid "Response from remote channel was incomplete." +msgstr "" + +#: ../../include/follow.php:96 +msgid "Premium channel - please visit:" +msgstr "" + +#: ../../include/follow.php:110 +msgid "Channel was deleted and no longer exists." +msgstr "" + +#: ../../include/follow.php:166 +msgid "Remote channel or protocol unavailable." +msgstr "" + +#: ../../include/follow.php:190 +msgid "Channel discovery failed." +msgstr "" + +#: ../../include/follow.php:202 +msgid "Protocol disabled." +msgstr "" + +#: ../../include/follow.php:213 +msgid "Cannot connect to yourself." +msgstr "" + +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "" + +#: ../../include/js_strings.php:8 +#, php-format +msgid "%s show less" +msgstr "" + +#: ../../include/js_strings.php:9 +#, php-format +msgid "%s expand" +msgstr "" + +#: ../../include/js_strings.php:10 +#, php-format +msgid "%s collapse" +msgstr "" + +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "" + +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "" + +#: ../../include/js_strings.php:13 +msgid "everybody" +msgstr "" + +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "" + +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "" + +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "" + +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "" + +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "" + +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "" + +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "" + +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "" + +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "" + +#: ../../include/js_strings.php:26 +msgid "lovely" +msgstr "" + +#: ../../include/js_strings.php:27 +msgid "wonderful" +msgstr "" + +#: ../../include/js_strings.php:28 +msgid "fantastic" +msgstr "" + +#: ../../include/js_strings.php:29 +msgid "great" +msgstr "" + +#: ../../include/js_strings.php:30 +msgid "" +"Your chosen nickname was either already taken or not valid. Please use our " +"suggestion (" +msgstr "" + +#: ../../include/js_strings.php:31 +msgid ") or enter a new one." +msgstr "" + +#: ../../include/js_strings.php:32 +msgid "Thank you, this nickname is valid." +msgstr "" + +#: ../../include/js_strings.php:33 +msgid "A channel name is required." +msgstr "" + +#: ../../include/js_strings.php:34 +msgid "This is a " +msgstr "" + +#: ../../include/js_strings.php:35 +msgid " channel name" +msgstr "" + +#: ../../include/js_strings.php:36 +msgid "Back to reply" +msgstr "" + +#: ../../include/js_strings.php:42 +#, php-format +msgid "%d minutes" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:43 +#, php-format +msgid "about %d hours" +msgid_plural "about %d hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:44 +#, php-format +msgid "%d days" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:45 +#, php-format +msgid "%d months" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:46 +#, php-format +msgid "%d years" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:51 +msgid "timeago.prefixAgo" +msgstr "" + +#: ../../include/js_strings.php:52 +msgid "timeago.prefixFromNow" +msgstr "" + +#: ../../include/js_strings.php:53 +msgid "timeago.suffixAgo" +msgstr "" + +#: ../../include/js_strings.php:54 +msgid "timeago.suffixFromNow" +msgstr "" + +#: ../../include/js_strings.php:57 +msgid "less than a minute" +msgstr "" + +#: ../../include/js_strings.php:58 +msgid "about a minute" +msgstr "" + +#: ../../include/js_strings.php:60 +msgid "about an hour" +msgstr "" + +#: ../../include/js_strings.php:62 +msgid "a day" +msgstr "" + +#: ../../include/js_strings.php:64 +msgid "about a month" +msgstr "" + +#: ../../include/js_strings.php:66 +msgid "about a year" +msgstr "" + +#: ../../include/js_strings.php:68 +msgid " " +msgstr "" + +#: ../../include/js_strings.php:69 +msgid "timeago.numbers" +msgstr "" + +#: ../../include/js_strings.php:75 +msgctxt "long" +msgid "May" +msgstr "" + +#: ../../include/js_strings.php:83 +msgid "Jan" +msgstr "" + +#: ../../include/js_strings.php:84 +msgid "Feb" +msgstr "" + +#: ../../include/js_strings.php:85 +msgid "Mar" +msgstr "" + +#: ../../include/js_strings.php:86 +msgid "Apr" +msgstr "" + +#: ../../include/js_strings.php:87 +msgctxt "short" +msgid "May" +msgstr "" + +#: ../../include/js_strings.php:88 +msgid "Jun" +msgstr "" + +#: ../../include/js_strings.php:89 +msgid "Jul" +msgstr "" + +#: ../../include/js_strings.php:90 +msgid "Aug" +msgstr "" + +#: ../../include/js_strings.php:91 +msgid "Sep" +msgstr "" + +#: ../../include/js_strings.php:92 +msgid "Oct" +msgstr "" + +#: ../../include/js_strings.php:93 +msgid "Nov" +msgstr "" + +#: ../../include/js_strings.php:94 +msgid "Dec" +msgstr "" + +#: ../../include/js_strings.php:102 +msgid "Sun" +msgstr "" + +#: ../../include/js_strings.php:103 +msgid "Mon" +msgstr "" + +#: ../../include/js_strings.php:104 +msgid "Tue" +msgstr "" + +#: ../../include/js_strings.php:105 +msgid "Wed" +msgstr "" + +#: ../../include/js_strings.php:106 +msgid "Thu" +msgstr "" + +#: ../../include/js_strings.php:107 +msgid "Fri" +msgstr "" + +#: ../../include/js_strings.php:108 +msgid "Sat" +msgstr "" + +#: ../../include/js_strings.php:109 +msgctxt "calendar" +msgid "today" +msgstr "" + +#: ../../include/js_strings.php:110 +msgctxt "calendar" +msgid "month" +msgstr "" + +#: ../../include/js_strings.php:111 +msgctxt "calendar" +msgid "week" +msgstr "" + +#: ../../include/js_strings.php:112 +msgctxt "calendar" +msgid "day" +msgstr "" + +#: ../../include/js_strings.php:113 +msgctxt "calendar" +msgid "All day" +msgstr "" + +#: ../../include/message.php:41 +msgid "Unable to determine sender." +msgstr "" + +#: ../../include/message.php:80 +msgid "No recipient provided." +msgstr "" + +#: ../../include/message.php:85 +msgid "[no subject]" +msgstr "" + +#: ../../include/message.php:215 +msgid "Stored post could not be verified." +msgstr "" + +#: ../../include/activities.php:42 +msgid " and " +msgstr "" + +#: ../../include/activities.php:50 +msgid "public profile" +msgstr "" + +#: ../../include/activities.php:59 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: ../../include/activities.php:60 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "" + +#: ../../include/activities.php:63 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: ../../include/attach.php:267 ../../include/attach.php:375 +msgid "Item was not found." +msgstr "" + +#: ../../include/attach.php:284 +msgid "Unknown error." +msgstr "" + +#: ../../include/attach.php:568 +msgid "No source file." +msgstr "" + +#: ../../include/attach.php:590 +msgid "Cannot locate file to replace" +msgstr "" + +#: ../../include/attach.php:609 +msgid "Cannot locate file to revise/update" +msgstr "" + +#: ../../include/attach.php:751 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "" + +#: ../../include/attach.php:772 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "" + +#: ../../include/attach.php:954 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "" + +#: ../../include/attach.php:983 +msgid "Stored file could not be verified. Upload failed." +msgstr "" + +#: ../../include/attach.php:1057 ../../include/attach.php:1073 +msgid "Path not available." +msgstr "" + +#: ../../include/attach.php:1122 ../../include/attach.php:1285 +msgid "Empty pathname" +msgstr "" + +#: ../../include/attach.php:1148 +msgid "duplicate filename or path" +msgstr "" + +#: ../../include/attach.php:1173 +msgid "Path not found." +msgstr "" + +#: ../../include/attach.php:1241 +msgid "mkdir failed." +msgstr "" + +#: ../../include/attach.php:1245 +msgid "database storage failed." +msgstr "" + +#: ../../include/attach.php:1291 +msgid "Empty path" +msgstr "" + +#: ../../include/security.php:607 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + +#: ../../include/items.php:965 ../../include/items.php:1025 +msgid "(Unknown)" +msgstr "" + +#: ../../include/items.php:1213 +msgid "Visible to anybody on the internet." +msgstr "" + +#: ../../include/items.php:1215 +msgid "Visible to you only." +msgstr "" + +#: ../../include/items.php:1217 +msgid "Visible to anybody in this network." +msgstr "" + +#: ../../include/items.php:1219 +msgid "Visible to anybody authenticated." +msgstr "" + +#: ../../include/items.php:1221 +#, php-format +msgid "Visible to anybody on %s." +msgstr "" + +#: ../../include/items.php:1223 +msgid "Visible to all connections." +msgstr "" + +#: ../../include/items.php:1225 +msgid "Visible to approved connections." +msgstr "" + +#: ../../include/items.php:1227 +msgid "Visible to specific connections." +msgstr "" + +#: ../../include/items.php:4311 +msgid "Privacy group is empty." +msgstr "" + +#: ../../include/items.php:4318 +#, php-format +msgid "Privacy group: %s" +msgstr "" + +#: ../../include/items.php:4330 +msgid "Connection not found." +msgstr "" + +#: ../../include/items.php:4679 +msgid "profile photo" +msgstr "" + +#: ../../include/items.php:4871 +#, php-format +msgid "[Edited %s]" +msgstr "" + +#: ../../include/items.php:4871 +msgctxt "edit_activity" +msgid "Post" +msgstr "" + +#: ../../include/items.php:4871 +msgctxt "edit_activity" +msgid "Comment" +msgstr "" + +#: ../../include/channel.php:43 +msgid "Unable to obtain identity information from database" +msgstr "" + +#: ../../include/channel.php:76 +msgid "Empty name" +msgstr "" + +#: ../../include/channel.php:79 +msgid "Name too long" +msgstr "" + +#: ../../include/channel.php:196 +msgid "No account identifier" +msgstr "" + +#: ../../include/channel.php:208 +msgid "Nickname is required." +msgstr "" + +#: ../../include/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "" + +#: ../../include/channel.php:429 +msgid "Default Profile" +msgstr "" + +#: ../../include/channel.php:588 ../../include/channel.php:677 +msgid "Unable to retrieve modified identity" +msgstr "" + +#: ../../include/channel.php:1419 +msgid "Create New Profile" +msgstr "" + +#: ../../include/channel.php:1440 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/channel.php:1517 ../../include/channel.php:1645 +msgid "Gender:" +msgstr "" + +#: ../../include/channel.php:1519 ../../include/channel.php:1713 +msgid "Homepage:" +msgstr "" + +#: ../../include/channel.php:1520 +msgid "Online Now" +msgstr "" + +#: ../../include/channel.php:1573 +msgid "Change your profile photo" +msgstr "" + +#: ../../include/channel.php:1604 +msgid "Trans" +msgstr "" + +#: ../../include/channel.php:1650 +msgid "Like this channel" +msgstr "" + +#: ../../include/channel.php:1674 +msgid "j F, Y" +msgstr "" + +#: ../../include/channel.php:1675 +msgid "j F" +msgstr "" + +#: ../../include/channel.php:1682 +msgid "Birthday:" +msgstr "" + +#: ../../include/channel.php:1695 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: ../../include/channel.php:1707 +msgid "Tags:" +msgstr "" + +#: ../../include/channel.php:1711 +msgid "Sexual Preference:" +msgstr "" + +#: ../../include/channel.php:1717 +msgid "Political Views:" +msgstr "" + +#: ../../include/channel.php:1719 +msgid "Religion:" +msgstr "" + +#: ../../include/channel.php:1723 +msgid "Hobbies/Interests:" +msgstr "" + +#: ../../include/channel.php:1725 +msgid "Likes:" +msgstr "" + +#: ../../include/channel.php:1727 +msgid "Dislikes:" +msgstr "" + +#: ../../include/channel.php:1729 +msgid "Contact information and Social Networks:" +msgstr "" + +#: ../../include/channel.php:1731 +msgid "My other channels:" +msgstr "" + +#: ../../include/channel.php:1733 +msgid "Musical interests:" +msgstr "" + +#: ../../include/channel.php:1735 +msgid "Books, literature:" +msgstr "" + +#: ../../include/channel.php:1737 +msgid "Television:" +msgstr "" + +#: ../../include/channel.php:1739 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: ../../include/channel.php:1741 +msgid "Love/Romance:" +msgstr "" + +#: ../../include/channel.php:1743 +msgid "Work/employment:" +msgstr "" + +#: ../../include/channel.php:1745 +msgid "School/education:" +msgstr "" + +#: ../../include/channel.php:1768 +msgid "Like this thing" +msgstr "" + +#: ../../include/event.php:31 ../../include/event.php:78 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: ../../include/event.php:39 ../../include/event.php:82 +msgid "Starts:" +msgstr "" + +#: ../../include/event.php:49 ../../include/event.php:86 +msgid "Finishes:" +msgstr "" + +#: ../../include/event.php:1023 +msgid "This event has been added to your calendar." +msgstr "" + +#: ../../include/event.php:1244 +msgid "Not specified" +msgstr "" + +#: ../../include/event.php:1245 +msgid "Needs Action" +msgstr "" + +#: ../../include/event.php:1246 +msgid "Completed" +msgstr "" + +#: ../../include/event.php:1247 +msgid "In Process" +msgstr "" + +#: ../../include/event.php:1248 +msgid "Cancelled" +msgstr "" + +#: ../../include/event.php:1331 ../../include/connections.php:725 +msgid "Home, Voice" +msgstr "" + +#: ../../include/event.php:1332 ../../include/connections.php:726 +msgid "Home, Fax" +msgstr "" + +#: ../../include/event.php:1334 ../../include/connections.php:728 +msgid "Work, Voice" +msgstr "" + +#: ../../include/event.php:1335 ../../include/connections.php:729 +msgid "Work, Fax" +msgstr "" + +#: ../../include/network.php:1728 +msgid "GNU-Social" +msgstr "" + +#: ../../include/network.php:1729 +msgid "RSS/Atom" +msgstr "" + +#: ../../include/network.php:1733 +msgid "Facebook" +msgstr "" + +#: ../../include/network.php:1735 +msgid "LinkedIn" +msgstr "" + +#: ../../include/network.php:1736 +msgid "XMPP/IM" +msgstr "" + +#: ../../include/network.php:1737 +msgid "MySpace" +msgstr "" + +#: ../../include/language.php:436 +msgid "Select an alternate language" +msgstr "" + +#: ../../include/acl_selectors.php:113 +msgid "Who can see this?" +msgstr "" + +#: ../../include/acl_selectors.php:114 +msgid "Custom selection" +msgstr "" + +#: ../../include/acl_selectors.php:115 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " +"the scope of \"Show\"." +msgstr "" + +#: ../../include/acl_selectors.php:116 +msgid "Show" +msgstr "" + +#: ../../include/acl_selectors.php:117 +msgid "Don't show" +msgstr "" + +#: ../../include/acl_selectors.php:150 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These " +"permissions set who is allowed to view the post." +msgstr "" + +#: ../../include/bbcode.php:219 ../../include/bbcode.php:1211 +#: ../../include/bbcode.php:1214 ../../include/bbcode.php:1219 +#: ../../include/bbcode.php:1222 ../../include/bbcode.php:1225 +#: ../../include/bbcode.php:1228 ../../include/bbcode.php:1233 +#: ../../include/bbcode.php:1236 ../../include/bbcode.php:1241 +#: ../../include/bbcode.php:1244 ../../include/bbcode.php:1247 +#: ../../include/bbcode.php:1250 +msgid "Image/photo" +msgstr "" + +#: ../../include/bbcode.php:258 ../../include/bbcode.php:1261 +msgid "Encrypted content" +msgstr "" + +#: ../../include/bbcode.php:274 +#, php-format +msgid "Install %1$s element %2$s" +msgstr "" + +#: ../../include/bbcode.php:278 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "" + +#: ../../include/bbcode.php:358 +msgid "card" +msgstr "" + +#: ../../include/bbcode.php:360 +msgid "article" +msgstr "" + +#: ../../include/bbcode.php:443 ../../include/bbcode.php:451 +msgid "Click to open/close" +msgstr "" + +#: ../../include/bbcode.php:451 +msgid "spoiler" +msgstr "" + +#: ../../include/bbcode.php:464 +msgid "View article" +msgstr "" + +#: ../../include/bbcode.php:464 +msgid "View summary" +msgstr "" + +#: ../../include/bbcode.php:1199 +msgid "$1 wrote:" +msgstr "" + +#: ../../include/oembed.php:153 +msgid "View PDF" +msgstr "" + +#: ../../include/oembed.php:357 +msgid " by " +msgstr "" + +#: ../../include/oembed.php:358 +msgid " on " +msgstr "" + +#: ../../include/oembed.php:387 +msgid "Embedded content" +msgstr "" + +#: ../../include/oembed.php:396 +msgid "Embedding disabled" +msgstr "" + +#: ../../include/zid.php:363 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + +#: ../../include/features.php:86 ../../include/features.php:281 +msgid "Start calendar week on Monday" +msgstr "" + +#: ../../include/features.php:87 ../../include/features.php:282 +msgid "Default is Sunday" +msgstr "" + +#: ../../include/features.php:100 +msgid "Search by Date" +msgstr "" + +#: ../../include/features.php:101 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: ../../include/features.php:108 +msgid "Tag Cloud" +msgstr "" + +#: ../../include/features.php:109 +msgid "Provide a personal tag cloud on your channel page" +msgstr "" + +#: ../../include/features.php:116 ../../include/features.php:373 +msgid "Use blog/list mode" +msgstr "" + +#: ../../include/features.php:117 ../../include/features.php:374 +msgid "Comments will be displayed separately" +msgstr "" + +#: ../../include/features.php:129 +msgid "Connection Filtering" +msgstr "" + +#: ../../include/features.php:130 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "" + +#: ../../include/features.php:138 +msgid "Conversation" +msgstr "" + +#: ../../include/features.php:142 +msgid "Community Tagging" +msgstr "" + +#: ../../include/features.php:143 +msgid "Ability to tag existing posts" +msgstr "" + +#: ../../include/features.php:150 +msgid "Emoji Reactions" +msgstr "" + +#: ../../include/features.php:151 +msgid "Add emoji reaction ability to posts" +msgstr "" + +#: ../../include/features.php:158 +msgid "Dislike Posts" +msgstr "" + +#: ../../include/features.php:159 +msgid "Ability to dislike posts/comments" +msgstr "" + +#: ../../include/features.php:166 +msgid "Star Posts" +msgstr "" + +#: ../../include/features.php:167 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: ../../include/features.php:174 +msgid "Reply on comment" +msgstr "" + +#: ../../include/features.php:175 +msgid "Ability to reply on selected comment" +msgstr "" + +#: ../../include/features.php:188 +msgid "Advanced Directory Search" +msgstr "" + +#: ../../include/features.php:189 +msgid "Allows creation of complex directory search queries" +msgstr "" + +#: ../../include/features.php:198 +msgid "Editor" +msgstr "" + +#: ../../include/features.php:202 +msgid "Post Categories" +msgstr "" + +#: ../../include/features.php:203 +msgid "Add categories to your posts" +msgstr "" + +#: ../../include/features.php:211 +msgid "Large Photos" +msgstr "" + +#: ../../include/features.php:212 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "" + +#: ../../include/features.php:219 +msgid "Even More Encryption" +msgstr "" + +#: ../../include/features.php:220 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "" + +#: ../../include/features.php:227 +msgid "Enable Voting Tools" +msgstr "" + +#: ../../include/features.php:228 +msgid "Provide a class of post which others can vote on" +msgstr "" + +#: ../../include/features.php:235 +msgid "Disable Comments" +msgstr "" + +#: ../../include/features.php:236 +msgid "Provide the option to disable comments for a post" +msgstr "" + +#: ../../include/features.php:243 +msgid "Delayed Posting" +msgstr "" + +#: ../../include/features.php:244 +msgid "Allow posts to be published at a later date" +msgstr "" + +#: ../../include/features.php:251 +msgid "Content Expiration" +msgstr "" + +#: ../../include/features.php:252 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "" + +#: ../../include/features.php:259 +msgid "Suppress Duplicate Posts/Comments" +msgstr "" + +#: ../../include/features.php:260 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "" + +#: ../../include/features.php:267 +msgid "Auto-save drafts of posts and comments" +msgstr "" + +#: ../../include/features.php:268 +msgid "" +"Automatically saves post and comment drafts in local browser storage to help " +"prevent accidental loss of compositions" +msgstr "" + +#: ../../include/features.php:277 +msgid "Events" +msgstr "" + +#: ../../include/features.php:289 +msgid "Smart Birthdays" +msgstr "" + +#: ../../include/features.php:290 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "" + +#: ../../include/features.php:297 +msgid "Event Timezone Selection" +msgstr "" + +#: ../../include/features.php:298 +msgid "Allow event creation in timezones other than your own." +msgstr "" + +#: ../../include/features.php:307 +msgid "Manage" +msgstr "" + +#: ../../include/features.php:311 +msgid "Navigation Channel Select" +msgstr "" + +#: ../../include/features.php:312 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "" + +#: ../../include/features.php:326 +msgid "Save search terms for re-use" +msgstr "" + +#: ../../include/features.php:334 +msgid "Ability to file posts under folders" +msgstr "" + +#: ../../include/features.php:341 +msgid "Alternate Stream Order" +msgstr "" + +#: ../../include/features.php:342 +msgid "" +"Ability to order the stream by last post date, last comment date or " +"unthreaded activities" +msgstr "" + +#: ../../include/features.php:349 +msgid "Contact Filter" +msgstr "" + +#: ../../include/features.php:350 +msgid "Ability to display only posts of a selected contact" +msgstr "" + +#: ../../include/features.php:357 +msgid "Forum Filter" +msgstr "" + +#: ../../include/features.php:358 +msgid "Ability to display only posts of a specific forum" +msgstr "" + +#: ../../include/features.php:365 +msgid "Personal Posts Filter" +msgstr "" + +#: ../../include/features.php:366 +msgid "Ability to display only posts that you've interacted on" +msgstr "" + +#: ../../include/features.php:387 +msgid "Photo Location" +msgstr "" + +#: ../../include/features.php:388 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "" + +#: ../../include/features.php:401 +msgid "Advanced Profiles" +msgstr "" + +#: ../../include/features.php:402 +msgid "Additional profile sections and selections" +msgstr "" + +#: ../../include/features.php:409 +msgid "Profile Import/Export" +msgstr "" + +#: ../../include/features.php:410 +msgid "Save and load profile details across sites/channels" +msgstr "" + +#: ../../include/features.php:417 +msgid "Multiple Profiles" +msgstr "" + +#: ../../include/features.php:418 +msgid "Ability to create multiple profiles" +msgstr "" + +#: ../../include/taxonomy.php:320 +msgid "Trending" +msgstr "" + +#: ../../include/taxonomy.php:550 +msgid "Keywords" +msgstr "" + +#: ../../include/taxonomy.php:571 +msgid "have" +msgstr "" + +#: ../../include/taxonomy.php:571 +msgid "has" +msgstr "" + +#: ../../include/taxonomy.php:572 +msgid "want" +msgstr "" + +#: ../../include/taxonomy.php:572 +msgid "wants" +msgstr "" + +#: ../../include/taxonomy.php:573 +msgid "likes" +msgstr "" + +#: ../../include/taxonomy.php:574 +msgid "dislikes" +msgstr "" + +#: ../../include/account.php:36 +msgid "Not a valid email address" +msgstr "" + +#: ../../include/account.php:38 +msgid "Your email domain is not among those allowed on this site" +msgstr "" + +#: ../../include/account.php:44 +msgid "Your email address is already registered at this site." +msgstr "" + +#: ../../include/account.php:76 +msgid "An invitation is required." +msgstr "" + +#: ../../include/account.php:80 +msgid "Invitation could not be verified." +msgstr "" + +#: ../../include/account.php:156 +msgid "Please enter the required information." +msgstr "" + +#: ../../include/account.php:223 +msgid "Failed to store account information." +msgstr "" + +#: ../../include/account.php:311 +#, php-format +msgid "Registration confirmation for %s" +msgstr "" + +#: ../../include/account.php:380 +#, php-format +msgid "Registration request at %s" +msgstr "" + +#: ../../include/account.php:402 +msgid "your registration password" +msgstr "" + +#: ../../include/account.php:408 ../../include/account.php:471 +#, php-format +msgid "Registration details for %s" +msgstr "" + +#: ../../include/account.php:482 +msgid "Account approved." +msgstr "" + +#: ../../include/account.php:522 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: ../../include/account.php:803 ../../include/account.php:805 +msgid "Click here to upgrade." +msgstr "" + +#: ../../include/account.php:811 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/account.php:816 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../include/datetime.php:140 +msgid "Birthday" +msgstr "" + +#: ../../include/datetime.php:140 +msgid "Age: " +msgstr "" + +#: ../../include/datetime.php:140 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: ../../include/datetime.php:244 +msgid "less than a second ago" +msgstr "" + +#: ../../include/datetime.php:262 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "" + +#: ../../include/datetime.php:273 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:276 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:279 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:282 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:285 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:288 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:291 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:520 +#, php-format +msgid "%1$s's birthday" +msgstr "" + +#: ../../include/datetime.php:521 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "" + +#: ../../include/nav.php:90 +msgid "Remote authentication" +msgstr "" + +#: ../../include/nav.php:90 +msgid "Click to authenticate to your home hub" +msgstr "" + +#: ../../include/nav.php:96 +msgid "Manage your channels" +msgstr "" + +#: ../../include/nav.php:99 +msgid "Manage your privacy groups" +msgstr "" + +#: ../../include/nav.php:101 +msgid "Account/Channel Settings" +msgstr "" + +#: ../../include/nav.php:107 ../../include/nav.php:136 +msgid "End this session" +msgstr "" + +#: ../../include/nav.php:110 +msgid "Your profile page" +msgstr "" + +#: ../../include/nav.php:113 +msgid "Manage/Edit profiles" +msgstr "" + +#: ../../include/nav.php:122 ../../include/nav.php:126 +msgid "Sign in" +msgstr "" + +#: ../../include/nav.php:153 +msgid "Take me home" +msgstr "" + +#: ../../include/nav.php:155 +msgid "Log me out of this site" +msgstr "" + +#: ../../include/nav.php:160 +msgid "Create an account" +msgstr "" + +#: ../../include/nav.php:172 +msgid "Help and documentation" +msgstr "" + +#: ../../include/nav.php:186 +msgid "Search site @name, !forum, #tag, ?docs, content" +msgstr "" + +#: ../../include/nav.php:192 +msgid "Site Setup and Configuration" +msgstr "" + +#: ../../include/nav.php:332 +msgid "@name, !forum, #tag, ?doc, content" +msgstr "" + +#: ../../include/nav.php:333 +msgid "Please wait..." +msgstr "" + +#: ../../include/nav.php:339 +msgid "Add Apps" +msgstr "" + +#: ../../include/nav.php:340 +msgid "Arrange Apps" +msgstr "" + +#: ../../include/nav.php:341 +msgid "Toggle System Apps" +msgstr "" + +#: ../../include/nav.php:426 +msgid "Status Messages and Posts" +msgstr "" + +#: ../../include/nav.php:439 +msgid "Profile Details" +msgstr "" + +#: ../../include/nav.php:449 ../../include/photos.php:666 +msgid "Photo Albums" +msgstr "" + +#: ../../include/nav.php:457 +msgid "Files and Storage" +msgstr "" + +#: ../../include/nav.php:495 +msgid "Saved Bookmarks" +msgstr "" + +#: ../../include/nav.php:506 +msgid "View Cards" +msgstr "" + +#: ../../include/nav.php:517 +msgid "View Articles" +msgstr "" + +#: ../../include/nav.php:529 +msgid "View Webpages" +msgstr "" + +#: ../../include/photos.php:151 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "" + +#: ../../include/photos.php:162 +msgid "Image file is empty." +msgstr "" + +#: ../../include/photos.php:324 +msgid "Photo storage failed." +msgstr "" + +#: ../../include/photos.php:373 +msgid "a new photo" +msgstr "" + +#: ../../include/photos.php:377 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "" + +#: ../../include/photos.php:671 +msgid "Upload New Photos" +msgstr "" + +#: ../../include/zot.php:775 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:4308 +msgid "invalid target signature" +msgstr "" + +#: ../../include/connections.php:133 +msgid "New window" +msgstr "" + +#: ../../include/connections.php:134 +msgid "Open the selected location in a different window or browser tab" +msgstr "" + +#: ../../include/auth.php:192 +msgid "Delegation session ended." +msgstr "" + +#: ../../include/auth.php:196 +msgid "Logged out." +msgstr "" + +#: ../../include/auth.php:291 +msgid "Email validation is incomplete. Please check your email." +msgstr "" + +#: ../../include/auth.php:307 +msgid "Failed authentication" +msgstr "" + +#: ../../include/help.php:80 +msgid "Help:" +msgstr "" + +#: ../../include/help.php:129 +msgid "Not Found" msgstr "" From 6f7e38b94c330a7b0923923d61fdf4df5d177ccf Mon Sep 17 00:00:00 2001 From: harukin Date: Sun, 9 Jun 2019 22:46:17 +0900 Subject: [PATCH 06/18] edit translation --- view/ja/hmessages.po | 66 ++++++++++++++++++++++---------------------- view/ja/hstrings.php | 66 ++++++++++++++++++++++---------------------- 2 files changed, 66 insertions(+), 66 deletions(-) diff --git a/view/ja/hmessages.po b/view/ja/hmessages.po index 99a04420a..74799485d 100644 --- a/view/ja/hmessages.po +++ b/view/ja/hmessages.po @@ -3963,7 +3963,7 @@ msgstr "" #: ../../Zotlabs/Lib/Apps.php:337 msgid "Stream" -msgstr "" +msgstr "ストリーム" #: ../../Zotlabs/Lib/Apps.php:348 msgid "Mail" @@ -4056,7 +4056,7 @@ msgstr "" #: ../../Zotlabs/Lib/Apps.php:376 ../../Zotlabs/Module/Pubstream.php:109 #: ../../Zotlabs/Widget/Notifications.php:142 msgid "Public Stream" -msgstr "" +msgstr "連合ストリーム" #: ../../Zotlabs/Lib/Apps.php:377 msgid "My Chatrooms" @@ -4174,7 +4174,7 @@ msgstr "" #: ../../Zotlabs/Lib/Enotify.php:68 #: ../../Zotlabs/Module/Settings/Channel.php:545 msgid "Notification Settings" -msgstr "" +msgstr "通知設定" #: ../../Zotlabs/Lib/Enotify.php:123 #, php-format @@ -4893,7 +4893,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Account_edit.php:46 msgid "Account settings updated." -msgstr "" +msgstr "アカウント設定は更新されました。" #: ../../Zotlabs/Module/Admin/Account_edit.php:61 msgid "Account not found." @@ -5175,7 +5175,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Logs.php:28 msgid "Log settings updated." -msgstr "" +msgstr "ログ設定が更新されました。" #: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 #: ../../Zotlabs/Widget/Admin.php:58 @@ -5433,7 +5433,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Site.php:161 msgid "Site settings updated." -msgstr "" +msgstr "サイトの設定は更新されました。" #: ../../Zotlabs/Module/Admin/Site.php:198 #: ../../Zotlabs/Module/Settings/Display.php:119 @@ -5475,7 +5475,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Site.php:279 msgid "Default permission role for new accounts" -msgstr "" +msgstr "新しいアカウントへのデフォルトの権限定義" #: ../../Zotlabs/Module/Admin/Site.php:279 msgid "" @@ -5484,28 +5484,28 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Site.php:288 ../../Zotlabs/Widget/Admin.php:22 msgid "Site" -msgstr "" +msgstr "サイト" #: ../../Zotlabs/Module/Admin/Site.php:290 #: ../../Zotlabs/Module/Register.php:273 msgid "Registration" -msgstr "" +msgstr "登録" #: ../../Zotlabs/Module/Admin/Site.php:291 msgid "File upload" -msgstr "" +msgstr "ファイルをアップロード" #: ../../Zotlabs/Module/Admin/Site.php:292 msgid "Policies" -msgstr "" +msgstr "ポリシー" #: ../../Zotlabs/Module/Admin/Site.php:297 msgid "Site name" -msgstr "" +msgstr "サイト名" #: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Banner/Logo" -msgstr "" +msgstr "バナー/ロゴ" #: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Unfiltered HTML/CSS/JS is allowed" @@ -5513,7 +5513,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Site.php:300 msgid "Administrator Information" -msgstr "" +msgstr "管理者情報" #: ../../Zotlabs/Module/Admin/Site.php:300 msgid "" @@ -5523,7 +5523,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Site.php:301 ../../Zotlabs/Module/Siteinfo.php:24 msgid "Site Information" -msgstr "" +msgstr "サイト情報" #: ../../Zotlabs/Module/Admin/Site.php:301 msgid "" @@ -5533,11 +5533,11 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Site.php:302 msgid "System language" -msgstr "" +msgstr "システム言語" #: ../../Zotlabs/Module/Admin/Site.php:303 msgid "System theme" -msgstr "" +msgstr "システムテーマ" #: ../../Zotlabs/Module/Admin/Site.php:303 msgid "" @@ -5863,7 +5863,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Site.php:352 msgid "Optional: site location" -msgstr "" +msgstr "サイトの所在地:オプション" #: ../../Zotlabs/Module/Admin/Site.php:352 msgid "Region or country" @@ -5871,32 +5871,32 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Themes.php:26 msgid "Theme settings updated." -msgstr "" +msgstr "テーマ設定は保存されました。" #: ../../Zotlabs/Module/Admin/Themes.php:61 msgid "No themes found." -msgstr "" +msgstr "テーマが見つかりませんでした。" #: ../../Zotlabs/Module/Admin/Themes.php:116 msgid "Screenshot" -msgstr "" +msgstr "スクリーンショット" #: ../../Zotlabs/Module/Admin/Themes.php:123 #: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 msgid "Themes" -msgstr "" +msgstr "テーマ" #: ../../Zotlabs/Module/Admin/Themes.php:162 msgid "[Experimental]" -msgstr "" +msgstr "[実験的]" #: ../../Zotlabs/Module/Admin/Themes.php:163 msgid "[Unsupported]" -msgstr "" +msgstr "[サポート無し]" #: ../../Zotlabs/Module/Admin.php:97 msgid "Blocked accounts" -msgstr "" +msgstr "ブロックされたアカウント" #: ../../Zotlabs/Module/Admin.php:98 msgid "Expired accounts" @@ -5908,11 +5908,11 @@ msgstr "" #: ../../Zotlabs/Module/Admin.php:120 msgid "Message queues" -msgstr "" +msgstr "メッセージのキュー" #: ../../Zotlabs/Module/Admin.php:134 msgid "Your software should be updated" -msgstr "" +msgstr "ソフトのアップデートをしてください。" #: ../../Zotlabs/Module/Admin.php:139 msgid "Summary" @@ -5920,7 +5920,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin.php:142 msgid "Registered accounts" -msgstr "" +msgstr "登録されているアカウント" #: ../../Zotlabs/Module/Admin.php:143 msgid "Pending registrations" @@ -5928,23 +5928,23 @@ msgstr "" #: ../../Zotlabs/Module/Admin.php:144 msgid "Registered channels" -msgstr "" +msgstr "登録されているチャンネル" #: ../../Zotlabs/Module/Admin.php:145 msgid "Active addons" -msgstr "" +msgstr "有効なアドオン" #: ../../Zotlabs/Module/Admin.php:146 msgid "Version" -msgstr "" +msgstr "バージョン" #: ../../Zotlabs/Module/Admin.php:147 msgid "Repository version (master)" -msgstr "" +msgstr "リポジトリバージョン(master)" #: ../../Zotlabs/Module/Admin.php:148 msgid "Repository version (dev)" -msgstr "" +msgstr "リポジトリバージョン(dev)" #: ../../Zotlabs/Module/Affinity.php:35 msgid "Affinity Tool settings updated." diff --git a/view/ja/hstrings.php b/view/ja/hstrings.php index cdd14027f..f81b73e75 100644 --- a/view/ja/hstrings.php +++ b/view/ja/hstrings.php @@ -914,7 +914,7 @@ App::$strings["Content Filter"] = ""; App::$strings["Content Import"] = ""; App::$strings["Remote Diagnostics"] = ""; App::$strings["Suggest Channels"] = ""; -App::$strings["Stream"] = ""; +App::$strings["Stream"] = "ストリーム"; App::$strings["Mail"] = ""; App::$strings["Mood"] = ""; App::$strings["Chat"] = ""; @@ -937,7 +937,7 @@ App::$strings["OAuth2 Apps Manager"] = ""; App::$strings["PDL Editor"] = ""; App::$strings["Permission Categories"] = ""; App::$strings["Premium Channel"] = ""; -App::$strings["Public Stream"] = ""; +App::$strings["Public Stream"] = "連合ストリーム"; App::$strings["My Chatrooms"] = ""; App::$strings["Channel Export"] = ""; App::$strings["Update"] = ""; @@ -963,7 +963,7 @@ App::$strings["This email was sent by %1\$s at %2\$s."] = ""; App::$strings["\$Projectname"] = ""; App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = ""; App::$strings["To stop receiving these messages, please adjust your %s."] = ""; -App::$strings["Notification Settings"] = ""; +App::$strings["Notification Settings"] = "通知設定"; App::$strings["%s "] = ""; App::$strings["[\$Projectname:Notify] New mail received at %s"] = ""; App::$strings["%1\$s sent you a new private message at %2\$s."] = ""; @@ -1126,7 +1126,7 @@ App::$strings["Service Class"] = ""; App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; App::$strings["Password changed for account %d."] = ""; -App::$strings["Account settings updated."] = ""; +App::$strings["Account settings updated."] = "アカウント設定は更新されました。"; App::$strings["Account not found."] = ""; App::$strings["Account Edit"] = ""; App::$strings["New Password"] = ""; @@ -1196,7 +1196,7 @@ App::$strings["Attempt to execute this update step automatically"] = ""; App::$strings["No failed updates."] = ""; App::$strings["Lock feature %s"] = ""; App::$strings["Manage Additional Features"] = ""; -App::$strings["Log settings updated."] = ""; +App::$strings["Log settings updated."] = "ログ設定が更新されました。"; App::$strings["Logs"] = ""; App::$strings["Clear"] = ""; App::$strings["Debugging"] = ""; @@ -1253,7 +1253,7 @@ App::$strings["Only allow embeds from secure (SSL) websites and links."] = ""; App::$strings["Allow unfiltered embedded HTML content only from these domains"] = ""; App::$strings["One site per line. By default embedded content is filtered."] = ""; App::$strings["Block embedded HTML from these domains"] = ""; -App::$strings["Site settings updated."] = ""; +App::$strings["Site settings updated."] = "サイトの設定は更新されました。"; App::$strings["%s - (Incompatible)"] = ""; App::$strings["mobile"] = ""; App::$strings["experimental"] = ""; @@ -1263,21 +1263,21 @@ App::$strings["My site is not a public server"] = ""; App::$strings["My site has paid access only"] = ""; App::$strings["My site has free access only"] = ""; App::$strings["My site offers free accounts with optional paid upgrades"] = ""; -App::$strings["Default permission role for new accounts"] = ""; +App::$strings["Default permission role for new accounts"] = "新しいアカウントへのデフォルトの権限定義"; App::$strings["This role will be used for the first channel created after registration."] = ""; -App::$strings["Site"] = ""; -App::$strings["Registration"] = ""; -App::$strings["File upload"] = ""; -App::$strings["Policies"] = ""; -App::$strings["Site name"] = ""; -App::$strings["Banner/Logo"] = ""; +App::$strings["Site"] = "サイト"; +App::$strings["Registration"] = "登録"; +App::$strings["File upload"] = "ファイルをアップロード"; +App::$strings["Policies"] = "ポリシー"; +App::$strings["Site name"] = "サイト名"; +App::$strings["Banner/Logo"] = "バナー/ロゴ"; App::$strings["Unfiltered HTML/CSS/JS is allowed"] = ""; -App::$strings["Administrator Information"] = ""; +App::$strings["Administrator Information"] = "管理者情報"; App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = ""; -App::$strings["Site Information"] = ""; +App::$strings["Site Information"] = "サイト情報"; App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = ""; -App::$strings["System language"] = ""; -App::$strings["System theme"] = ""; +App::$strings["System language"] = "システム言語"; +App::$strings["System theme"] = "システムテーマ"; App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; App::$strings["Allow Feeds as Connections"] = ""; App::$strings["(Heavy system resource usage)"] = ""; @@ -1347,27 +1347,27 @@ App::$strings["Public servers: Optional landing (marketing) webpage for new regi App::$strings["Create this page first. Default is %s/register"] = ""; App::$strings["Page to display after creating a new channel"] = ""; App::$strings["Default: profiles"] = ""; -App::$strings["Optional: site location"] = ""; +App::$strings["Optional: site location"] = "サイトの所在地:オプション"; App::$strings["Region or country"] = ""; -App::$strings["Theme settings updated."] = ""; -App::$strings["No themes found."] = ""; -App::$strings["Screenshot"] = ""; -App::$strings["Themes"] = ""; -App::$strings["[Experimental]"] = ""; -App::$strings["[Unsupported]"] = ""; -App::$strings["Blocked accounts"] = ""; +App::$strings["Theme settings updated."] = "テーマ設定は保存されました。"; +App::$strings["No themes found."] = "テーマが見つかりませんでした。"; +App::$strings["Screenshot"] = "スクリーンショット"; +App::$strings["Themes"] = "テーマ"; +App::$strings["[Experimental]"] = "[実験的]"; +App::$strings["[Unsupported]"] = "[サポート無し]"; +App::$strings["Blocked accounts"] = "ブロックされたアカウント"; App::$strings["Expired accounts"] = ""; App::$strings["Expiring accounts"] = ""; -App::$strings["Message queues"] = ""; -App::$strings["Your software should be updated"] = ""; +App::$strings["Message queues"] = "メッセージのキュー"; +App::$strings["Your software should be updated"] = "ソフトのアップデートをしてください。"; App::$strings["Summary"] = ""; -App::$strings["Registered accounts"] = ""; +App::$strings["Registered accounts"] = "登録されているアカウント"; App::$strings["Pending registrations"] = ""; -App::$strings["Registered channels"] = ""; -App::$strings["Active addons"] = ""; -App::$strings["Version"] = ""; -App::$strings["Repository version (master)"] = ""; -App::$strings["Repository version (dev)"] = ""; +App::$strings["Registered channels"] = "登録されているチャンネル"; +App::$strings["Active addons"] = "有効なアドオン"; +App::$strings["Version"] = "バージョン"; +App::$strings["Repository version (master)"] = "リポジトリバージョン(master)"; +App::$strings["Repository version (dev)"] = "リポジトリバージョン(dev)"; App::$strings["Affinity Tool settings updated."] = ""; App::$strings["This app presents a slider control in your connection editor and also on your network page. The slider represents your degree of friendship (affinity) with each connection. It allows you to zoom in or out and display conversations from only your closest friends or everybody in your stream."] = ""; App::$strings["Affinity Tool App"] = ""; From 32eb81d4ae5bcde98e2b42cf5262ab24effe8f3e Mon Sep 17 00:00:00 2001 From: harukin Date: Sun, 9 Jun 2019 22:50:56 +0900 Subject: [PATCH 07/18] edit translation --- view/ja/hmessages.po | 14 +++++++------- view/ja/hstrings.php | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/view/ja/hmessages.po b/view/ja/hmessages.po index 74799485d..ab77d3fe7 100644 --- a/view/ja/hmessages.po +++ b/view/ja/hmessages.po @@ -2243,12 +2243,12 @@ msgstr "" #: ../../include/js_strings.php:7 ../../Zotlabs/Lib/ThreadItem.php:501 #, php-format msgid "%s show all" -msgstr "" +msgstr "%s 全て見る" #: ../../include/js_strings.php:8 #, php-format msgid "%s show less" -msgstr "" +msgstr "%s 畳む" #: ../../include/js_strings.php:9 #, php-format @@ -2262,23 +2262,23 @@ msgstr "" #: ../../include/js_strings.php:11 msgid "Password too short" -msgstr "" +msgstr "パスワードが短すぎます。" #: ../../include/js_strings.php:12 msgid "Passwords do not match" -msgstr "" +msgstr "パスワードが一致しません。" #: ../../include/js_strings.php:13 msgid "everybody" -msgstr "" +msgstr "誰でも" #: ../../include/js_strings.php:14 msgid "Secret Passphrase" -msgstr "" +msgstr "シークレットパスフレーズ" #: ../../include/js_strings.php:15 msgid "Passphrase hint" -msgstr "" +msgstr "パスフレーズヒント" #: ../../include/js_strings.php:16 msgid "Notice: Permissions have changed but have not yet been submitted." diff --git a/view/ja/hstrings.php b/view/ja/hstrings.php index f81b73e75..2baaaf213 100644 --- a/view/ja/hstrings.php +++ b/view/ja/hstrings.php @@ -503,15 +503,15 @@ App::$strings["__ctx:edit_activity__ Post"] = ""; App::$strings["__ctx:edit_activity__ Comment"] = ""; App::$strings["Delete this item?"] = ""; App::$strings["Comment"] = ""; -App::$strings["%s show all"] = ""; -App::$strings["%s show less"] = ""; +App::$strings["%s show all"] = "%s 全て見る"; +App::$strings["%s show less"] = "%s 畳む"; App::$strings["%s expand"] = ""; App::$strings["%s collapse"] = ""; -App::$strings["Password too short"] = ""; -App::$strings["Passwords do not match"] = ""; -App::$strings["everybody"] = ""; -App::$strings["Secret Passphrase"] = ""; -App::$strings["Passphrase hint"] = ""; +App::$strings["Password too short"] = "パスワードが短すぎます。"; +App::$strings["Passwords do not match"] = "パスワードが一致しません。"; +App::$strings["everybody"] = "誰でも"; +App::$strings["Secret Passphrase"] = "シークレットパスフレーズ"; +App::$strings["Passphrase hint"] = "パスフレーズヒント"; App::$strings["Notice: Permissions have changed but have not yet been submitted."] = ""; App::$strings["close all"] = ""; App::$strings["Nothing new here"] = ""; From 99cdc7af32a5bb8c9403d538f728e2b10d882ffc Mon Sep 17 00:00:00 2001 From: harukin Date: Wed, 12 Jun 2019 09:45:14 +0900 Subject: [PATCH 08/18] edit translation --- view/ja/hmessages.po | 26 +++++++++++++------------- view/ja/hstrings.php | 26 +++++++++++++------------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/view/ja/hmessages.po b/view/ja/hmessages.po index ab77d3fe7..90f24f82e 100644 --- a/view/ja/hmessages.po +++ b/view/ja/hmessages.po @@ -4662,11 +4662,11 @@ msgstr "" #: ../../Zotlabs/Lib/ThreadItem.php:317 msgid "share" -msgstr "" +msgstr "共有" #: ../../Zotlabs/Lib/ThreadItem.php:327 msgid "Delivery Report" -msgstr "" +msgstr "転送状況" #: ../../Zotlabs/Lib/ThreadItem.php:347 #, php-format @@ -11628,7 +11628,7 @@ msgstr "" #: ../../Zotlabs/Widget/Activity_order.php:123 msgid "Stream Order" -msgstr "" +msgstr "投稿の並べ替え" #: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 msgid "Member registrations waiting for confirmation" @@ -11889,49 +11889,49 @@ msgstr "" #: ../../Zotlabs/Widget/Notifications.php:16 msgid "New Network Activity" -msgstr "" +msgstr "ホーム" #: ../../Zotlabs/Widget/Notifications.php:17 msgid "New Network Activity Notifications" -msgstr "" +msgstr "ホームへの通知" #: ../../Zotlabs/Widget/Notifications.php:20 msgid "View your network activity" -msgstr "" +msgstr "ホームを見る" #: ../../Zotlabs/Widget/Notifications.php:23 msgid "Mark all notifications read" -msgstr "" +msgstr "全部既読する" #: ../../Zotlabs/Widget/Notifications.php:26 #: ../../Zotlabs/Widget/Notifications.php:45 #: ../../Zotlabs/Widget/Notifications.php:152 msgid "Show new posts only" -msgstr "" +msgstr "新しい投稿のみ表示" #: ../../Zotlabs/Widget/Notifications.php:27 #: ../../Zotlabs/Widget/Notifications.php:46 #: ../../Zotlabs/Widget/Notifications.php:122 #: ../../Zotlabs/Widget/Notifications.php:153 msgid "Filter by name or address" -msgstr "" +msgstr "名前やアドレスでフィルタリング" #: ../../Zotlabs/Widget/Notifications.php:35 msgid "New Home Activity" -msgstr "" +msgstr "自分への新しいアクティビティ" #: ../../Zotlabs/Widget/Notifications.php:36 msgid "New Home Activity Notifications" -msgstr "" +msgstr "自分への新しいアクティビティ通知" #: ../../Zotlabs/Widget/Notifications.php:39 msgid "View your home activity" -msgstr "" +msgstr "自分の投稿を見る" #: ../../Zotlabs/Widget/Notifications.php:42 #: ../../Zotlabs/Widget/Notifications.php:149 msgid "Mark all notifications seen" -msgstr "" +msgstr "全部既読にする" #: ../../Zotlabs/Widget/Notifications.php:54 msgid "New Mails" diff --git a/view/ja/hstrings.php b/view/ja/hstrings.php index 2baaaf213..1c01aa4fd 100644 --- a/view/ja/hstrings.php +++ b/view/ja/hstrings.php @@ -1068,8 +1068,8 @@ App::$strings["Add Tag"] = ""; App::$strings["I like this (toggle)"] = ""; App::$strings["I don't like this (toggle)"] = ""; App::$strings["Share This"] = ""; -App::$strings["share"] = ""; -App::$strings["Delivery Report"] = ""; +App::$strings["share"] = "共有"; +App::$strings["Delivery Report"] = "転送状況"; App::$strings["%d comment"] = array( 0 => "", 1 => "", @@ -2679,7 +2679,7 @@ App::$strings["Posted Date"] = ""; App::$strings["Order by last posted date"] = ""; App::$strings["Date Unthreaded"] = ""; App::$strings["Order unthreaded by date"] = ""; -App::$strings["Stream Order"] = ""; +App::$strings["Stream Order"] = "投稿の並べ替え"; App::$strings["Member registrations waiting for confirmation"] = ""; App::$strings["Inspect queue"] = ""; App::$strings["DB updates"] = ""; @@ -2744,16 +2744,16 @@ App::$strings["Missing Features?"] = ""; App::$strings["Pin apps to navigation bar"] = ""; App::$strings["Install more apps"] = ""; App::$strings["View public stream"] = ""; -App::$strings["New Network Activity"] = ""; -App::$strings["New Network Activity Notifications"] = ""; -App::$strings["View your network activity"] = ""; -App::$strings["Mark all notifications read"] = ""; -App::$strings["Show new posts only"] = ""; -App::$strings["Filter by name or address"] = ""; -App::$strings["New Home Activity"] = ""; -App::$strings["New Home Activity Notifications"] = ""; -App::$strings["View your home activity"] = ""; -App::$strings["Mark all notifications seen"] = ""; +App::$strings["New Network Activity"] = "ホーム"; +App::$strings["New Network Activity Notifications"] = "ホームへの通知"; +App::$strings["View your network activity"] = "ホームを見る"; +App::$strings["Mark all notifications read"] = "全部既読する"; +App::$strings["Show new posts only"] = "新しい投稿のみ表示"; +App::$strings["Filter by name or address"] = "名前やアドレスでフィルタリング"; +App::$strings["New Home Activity"] = "自分への新しいアクティビティ"; +App::$strings["New Home Activity Notifications"] = "自分への新しいアクティビティ通知"; +App::$strings["View your home activity"] = "自分の投稿を見る"; +App::$strings["Mark all notifications seen"] = "全部既読にする"; App::$strings["New Mails"] = ""; App::$strings["New Mails Notifications"] = ""; App::$strings["View your private mails"] = ""; From f4361818e0e1c3a0f609b372fa7fa40a96dfbbff Mon Sep 17 00:00:00 2001 From: harukin Date: Thu, 13 Jun 2019 21:34:18 +0900 Subject: [PATCH 09/18] edit translation --- view/ja/hmessages.po | 48 ++++++++++++++++++++++---------------------- view/ja/hstrings.php | 48 ++++++++++++++++++++++---------------------- 2 files changed, 48 insertions(+), 48 deletions(-) diff --git a/view/ja/hmessages.po b/view/ja/hmessages.po index 90f24f82e..88f293a49 100644 --- a/view/ja/hmessages.po +++ b/view/ja/hmessages.po @@ -1336,12 +1336,12 @@ msgstr "" #: ../../include/conversation.php:1345 ../../Zotlabs/Module/Cover_photo.php:430 #: ../../Zotlabs/Module/Profile_photo.php:470 ../../Zotlabs/Module/Wiki.php:406 msgid "Error getting album list" -msgstr "" +msgstr "アルバムリストの取得に失敗" #: ../../include/conversation.php:1346 ../../Zotlabs/Module/Cover_photo.php:431 #: ../../Zotlabs/Module/Profile_photo.php:471 ../../Zotlabs/Module/Wiki.php:407 msgid "Error getting photo link" -msgstr "" +msgstr "フォトリンクの取得に失敗" #: ../../include/conversation.php:1347 ../../Zotlabs/Module/Cover_photo.php:432 #: ../../Zotlabs/Module/Profile_photo.php:472 ../../Zotlabs/Module/Wiki.php:408 @@ -1350,60 +1350,60 @@ msgstr "" #: ../../include/conversation.php:1348 msgid "Comments enabled" -msgstr "" +msgstr "コメント有効" #: ../../include/conversation.php:1349 msgid "Comments disabled" -msgstr "" +msgstr "コメント無効" #: ../../include/conversation.php:1359 ../../Zotlabs/Lib/ThreadItem.php:805 #: ../../Zotlabs/Module/Events.php:480 ../../Zotlabs/Module/Photos.php:1139 #: ../../Zotlabs/Module/Webpages.php:262 msgid "Preview" -msgstr "" +msgstr "プレビュー" #: ../../include/conversation.php:1392 ../../Zotlabs/Module/Blocks.php:161 #: ../../Zotlabs/Module/Layouts.php:194 ../../Zotlabs/Module/Photos.php:1117 #: ../../Zotlabs/Module/Webpages.php:256 ../../Zotlabs/Module/Wiki.php:301 #: ../../Zotlabs/Widget/Cdav.php:124 msgid "Share" -msgstr "" +msgstr "共有" #: ../../include/conversation.php:1401 msgid "Page link name" -msgstr "" +msgstr "ページリンク名" #: ../../include/conversation.php:1404 msgid "Post as" -msgstr "" +msgstr "として投稿" #: ../../include/conversation.php:1406 ../../Zotlabs/Lib/ThreadItem.php:796 msgid "Bold" -msgstr "" +msgstr "太字" #: ../../include/conversation.php:1407 ../../Zotlabs/Lib/ThreadItem.php:797 msgid "Italic" -msgstr "" +msgstr "斜体" #: ../../include/conversation.php:1408 ../../Zotlabs/Lib/ThreadItem.php:798 msgid "Underline" -msgstr "" +msgstr "下線" #: ../../include/conversation.php:1409 ../../Zotlabs/Lib/ThreadItem.php:799 msgid "Quote" -msgstr "" +msgstr "代入" #: ../../include/conversation.php:1410 ../../Zotlabs/Lib/ThreadItem.php:800 msgid "Code" -msgstr "" +msgstr "コード" #: ../../include/conversation.php:1411 ../../Zotlabs/Lib/ThreadItem.php:802 msgid "Attach/Upload file" -msgstr "" +msgstr "ファイルのアップロード" #: ../../include/conversation.php:1414 ../../Zotlabs/Module/Wiki.php:400 msgid "Embed an image from your albums" -msgstr "" +msgstr "アルバムから画像を追加" #: ../../include/conversation.php:1415 ../../include/conversation.php:1464 #: ../../Zotlabs/Module/Admin/Addons.php:426 @@ -1423,7 +1423,7 @@ msgstr "" #: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:368 #: ../../Zotlabs/Module/Wiki.php:401 msgid "Cancel" -msgstr "" +msgstr "キャンセル" #: ../../include/conversation.php:1416 ../../include/conversation.php:1463 #: ../../Zotlabs/Module/Cover_photo.php:426 @@ -1433,15 +1433,15 @@ msgstr "" #: ../../include/conversation.php:1418 msgid "Toggle voting" -msgstr "" +msgstr "投票のトグル" #: ../../include/conversation.php:1421 msgid "Disable comments" -msgstr "" +msgstr "コメントの無効化" #: ../../include/conversation.php:1422 msgid "Toggle comments" -msgstr "" +msgstr "コメントのトグル" #: ../../include/conversation.php:1427 #: ../../Zotlabs/Module/Article_edit.php:117 @@ -1449,19 +1449,19 @@ msgstr "" #: ../../Zotlabs/Module/Card_edit.php:117 ../../Zotlabs/Module/Photos.php:713 #: ../../Zotlabs/Module/Photos.php:1083 msgid "Title (optional)" -msgstr "" +msgstr "タイトル(任意)" #: ../../include/conversation.php:1430 msgid "Categories (optional, comma-separated list)" -msgstr "" +msgstr "カテゴリー(任意、カンマで仕切り)" #: ../../include/conversation.php:1431 ../../Zotlabs/Module/Events.php:481 msgid "Permission settings" -msgstr "" +msgstr "権限設定" #: ../../include/conversation.php:1453 msgid "Other networks and post services" -msgstr "" +msgstr "他のネットワークと投稿サービス" #: ../../include/conversation.php:1456 ../../Zotlabs/Module/Mail.php:292 #: ../../Zotlabs/Module/Mail.php:434 @@ -1554,7 +1554,7 @@ msgstr "" #: ../../include/datetime.php:244 msgid "less than a second ago" -msgstr "" +msgstr "ちょっと前" #: ../../include/datetime.php:262 #, php-format diff --git a/view/ja/hstrings.php b/view/ja/hstrings.php index 1c01aa4fd..c8753be2d 100644 --- a/view/ja/hstrings.php +++ b/view/ja/hstrings.php @@ -268,31 +268,31 @@ App::$strings["Where are you right now?"] = ""; App::$strings["Choose images to embed"] = ""; App::$strings["Choose an album"] = ""; App::$strings["Choose a different album..."] = ""; -App::$strings["Error getting album list"] = ""; -App::$strings["Error getting photo link"] = ""; +App::$strings["Error getting album list"] = "アルバムリストの取得に失敗"; +App::$strings["Error getting photo link"] = "フォトリンクの取得に失敗"; App::$strings["Error getting album"] = ""; -App::$strings["Comments enabled"] = ""; -App::$strings["Comments disabled"] = ""; -App::$strings["Preview"] = ""; -App::$strings["Share"] = ""; -App::$strings["Page link name"] = ""; -App::$strings["Post as"] = ""; -App::$strings["Bold"] = ""; -App::$strings["Italic"] = ""; -App::$strings["Underline"] = ""; -App::$strings["Quote"] = ""; -App::$strings["Code"] = ""; -App::$strings["Attach/Upload file"] = ""; -App::$strings["Embed an image from your albums"] = ""; -App::$strings["Cancel"] = ""; +App::$strings["Comments enabled"] = "コメント有効"; +App::$strings["Comments disabled"] = "コメント無効"; +App::$strings["Preview"] = "プレビュー"; +App::$strings["Share"] = "共有"; +App::$strings["Page link name"] = "ページリンク名"; +App::$strings["Post as"] = "として投稿"; +App::$strings["Bold"] = "太字"; +App::$strings["Italic"] = "斜体"; +App::$strings["Underline"] = "下線"; +App::$strings["Quote"] = "代入"; +App::$strings["Code"] = "コード"; +App::$strings["Attach/Upload file"] = "ファイルのアップロード"; +App::$strings["Embed an image from your albums"] = "アルバムから画像を追加"; +App::$strings["Cancel"] = "キャンセル"; App::$strings["OK"] = ""; -App::$strings["Toggle voting"] = ""; -App::$strings["Disable comments"] = ""; -App::$strings["Toggle comments"] = ""; -App::$strings["Title (optional)"] = ""; -App::$strings["Categories (optional, comma-separated list)"] = ""; -App::$strings["Permission settings"] = ""; -App::$strings["Other networks and post services"] = ""; +App::$strings["Toggle voting"] = "投票のトグル"; +App::$strings["Disable comments"] = "コメントの無効化"; +App::$strings["Toggle comments"] = "コメントのトグル"; +App::$strings["Title (optional)"] = "タイトル(任意)"; +App::$strings["Categories (optional, comma-separated list)"] = "カテゴリー(任意、カンマで仕切り)"; +App::$strings["Permission settings"] = "権限設定"; +App::$strings["Other networks and post services"] = "他のネットワークと投稿サービス"; App::$strings["Set expiration date"] = ""; App::$strings["Set publish date"] = ""; App::$strings["Encrypt text"] = ""; @@ -329,7 +329,7 @@ App::$strings["Birthday"] = ""; App::$strings["Age: "] = ""; App::$strings["YYYY-MM-DD or MM-DD"] = ""; App::$strings["Required"] = ""; -App::$strings["less than a second ago"] = ""; +App::$strings["less than a second ago"] = "ちょっと前"; App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = ""; App::$strings["__ctx:relative_date__ year"] = array( 0 => "", From 5434b53a99e3df31f65c49b07bbd3fbe1d9a4e3b Mon Sep 17 00:00:00 2001 From: harukin Date: Thu, 13 Jun 2019 21:50:53 +0900 Subject: [PATCH 10/18] edit translation --- view/ja/hmessages.po | 88 ++++++++++++++++++++++---------------------- view/ja/hstrings.php | 88 ++++++++++++++++++++++---------------------- 2 files changed, 88 insertions(+), 88 deletions(-) diff --git a/view/ja/hmessages.po b/view/ja/hmessages.po index 88f293a49..5274bd5fe 100644 --- a/view/ja/hmessages.po +++ b/view/ja/hmessages.po @@ -2470,27 +2470,27 @@ msgstr "" #: ../../include/js_strings.php:56 msgid "less than a minute" -msgstr "" +msgstr "ちょっと前" #: ../../include/js_strings.php:57 msgid "about a minute" -msgstr "" +msgstr "1分前" #: ../../include/js_strings.php:59 msgid "about an hour" -msgstr "" +msgstr "一時間前" #: ../../include/js_strings.php:61 msgid "a day" -msgstr "" +msgstr "一日前" #: ../../include/js_strings.php:63 msgid "about a month" -msgstr "" +msgstr "一ヶ月前" #: ../../include/js_strings.php:65 msgid "about a year" -msgstr "" +msgstr "一年前" #: ../../include/js_strings.php:67 msgid " " @@ -2502,157 +2502,157 @@ msgstr "" #: ../../include/js_strings.php:70 ../../include/text.php:1428 msgid "January" -msgstr "" +msgstr "1月" #: ../../include/js_strings.php:71 ../../include/text.php:1428 msgid "February" -msgstr "" +msgstr "2月" #: ../../include/js_strings.php:72 ../../include/text.php:1428 msgid "March" -msgstr "" +msgstr "3月" #: ../../include/js_strings.php:73 ../../include/text.php:1428 msgid "April" -msgstr "" +msgstr "4月" #: ../../include/js_strings.php:74 msgctxt "long" msgid "May" -msgstr "" +msgstr "5月" #: ../../include/js_strings.php:75 ../../include/text.php:1428 msgid "June" -msgstr "" +msgstr "6月" #: ../../include/js_strings.php:76 ../../include/text.php:1428 msgid "July" -msgstr "" +msgstr "7月" #: ../../include/js_strings.php:77 ../../include/text.php:1428 msgid "August" -msgstr "" +msgstr "8月" #: ../../include/js_strings.php:78 ../../include/text.php:1428 msgid "September" -msgstr "" +msgstr "9月" #: ../../include/js_strings.php:79 ../../include/text.php:1428 msgid "October" -msgstr "" +msgstr "10月" #: ../../include/js_strings.php:80 ../../include/text.php:1428 msgid "November" -msgstr "" +msgstr "11月" #: ../../include/js_strings.php:81 ../../include/text.php:1428 msgid "December" -msgstr "" +msgstr "12月" #: ../../include/js_strings.php:82 msgid "Jan" -msgstr "" +msgstr "1" #: ../../include/js_strings.php:83 msgid "Feb" -msgstr "" +msgstr "2" #: ../../include/js_strings.php:84 msgid "Mar" -msgstr "" +msgstr "3" #: ../../include/js_strings.php:85 msgid "Apr" -msgstr "" +msgstr "4" #: ../../include/js_strings.php:86 msgctxt "short" msgid "May" -msgstr "" +msgstr "5" #: ../../include/js_strings.php:87 msgid "Jun" -msgstr "" +msgstr "6" #: ../../include/js_strings.php:88 msgid "Jul" -msgstr "" +msgstr "7" #: ../../include/js_strings.php:89 msgid "Aug" -msgstr "" +msgstr "8" #: ../../include/js_strings.php:90 msgid "Sep" -msgstr "" +msgstr "9" #: ../../include/js_strings.php:91 msgid "Oct" -msgstr "" +msgstr "10" #: ../../include/js_strings.php:92 msgid "Nov" -msgstr "" +msgstr "11" #: ../../include/js_strings.php:93 msgid "Dec" -msgstr "" +msgstr "12" #: ../../include/js_strings.php:94 ../../include/text.php:1424 msgid "Sunday" -msgstr "" +msgstr "日曜日" #: ../../include/js_strings.php:95 ../../include/text.php:1424 msgid "Monday" -msgstr "" +msgstr "月曜日" #: ../../include/js_strings.php:96 ../../include/text.php:1424 msgid "Tuesday" -msgstr "" +msgstr "火曜日" #: ../../include/js_strings.php:97 ../../include/text.php:1424 msgid "Wednesday" -msgstr "" +msgstr "水曜日" #: ../../include/js_strings.php:98 ../../include/text.php:1424 msgid "Thursday" -msgstr "" +msgstr "木曜日" #: ../../include/js_strings.php:99 ../../include/text.php:1424 msgid "Friday" -msgstr "" +msgstr "金曜日" #: ../../include/js_strings.php:100 ../../include/text.php:1424 msgid "Saturday" -msgstr "" +msgstr "土曜日" #: ../../include/js_strings.php:101 msgid "Sun" -msgstr "" +msgstr "日" #: ../../include/js_strings.php:102 msgid "Mon" -msgstr "" +msgstr "月" #: ../../include/js_strings.php:103 msgid "Tue" -msgstr "" +msgstr "火" #: ../../include/js_strings.php:104 msgid "Wed" -msgstr "" +msgstr "水" #: ../../include/js_strings.php:105 msgid "Thu" -msgstr "" +msgstr "木" #: ../../include/js_strings.php:106 msgid "Fri" -msgstr "" +msgstr "金" #: ../../include/js_strings.php:107 msgid "Sat" -msgstr "" +msgstr "土" #: ../../include/js_strings.php:108 msgctxt "calendar" diff --git a/view/ja/hstrings.php b/view/ja/hstrings.php index c8753be2d..e4c3d7c35 100644 --- a/view/ja/hstrings.php +++ b/view/ja/hstrings.php @@ -556,52 +556,52 @@ App::$strings["timeago.prefixAgo"] = ""; App::$strings["timeago.prefixFromNow"] = ""; App::$strings["timeago.suffixAgo"] = ""; App::$strings["timeago.suffixFromNow"] = ""; -App::$strings["less than a minute"] = ""; -App::$strings["about a minute"] = ""; -App::$strings["about an hour"] = ""; -App::$strings["a day"] = ""; -App::$strings["about a month"] = ""; -App::$strings["about a year"] = ""; +App::$strings["less than a minute"] = "ちょっと前"; +App::$strings["about a minute"] = "1分前"; +App::$strings["about an hour"] = "一時間前"; +App::$strings["a day"] = "一日前"; +App::$strings["about a month"] = "一ヶ月前"; +App::$strings["about a year"] = "一年前"; App::$strings[" "] = ""; App::$strings["timeago.numbers"] = ""; -App::$strings["January"] = ""; -App::$strings["February"] = ""; -App::$strings["March"] = ""; -App::$strings["April"] = ""; -App::$strings["__ctx:long__ May"] = ""; -App::$strings["June"] = ""; -App::$strings["July"] = ""; -App::$strings["August"] = ""; -App::$strings["September"] = ""; -App::$strings["October"] = ""; -App::$strings["November"] = ""; -App::$strings["December"] = ""; -App::$strings["Jan"] = ""; -App::$strings["Feb"] = ""; -App::$strings["Mar"] = ""; -App::$strings["Apr"] = ""; -App::$strings["__ctx:short__ May"] = ""; -App::$strings["Jun"] = ""; -App::$strings["Jul"] = ""; -App::$strings["Aug"] = ""; -App::$strings["Sep"] = ""; -App::$strings["Oct"] = ""; -App::$strings["Nov"] = ""; -App::$strings["Dec"] = ""; -App::$strings["Sunday"] = ""; -App::$strings["Monday"] = ""; -App::$strings["Tuesday"] = ""; -App::$strings["Wednesday"] = ""; -App::$strings["Thursday"] = ""; -App::$strings["Friday"] = ""; -App::$strings["Saturday"] = ""; -App::$strings["Sun"] = ""; -App::$strings["Mon"] = ""; -App::$strings["Tue"] = ""; -App::$strings["Wed"] = ""; -App::$strings["Thu"] = ""; -App::$strings["Fri"] = ""; -App::$strings["Sat"] = ""; +App::$strings["January"] = "1月"; +App::$strings["February"] = "2月"; +App::$strings["March"] = "3月"; +App::$strings["April"] = "4月"; +App::$strings["__ctx:long__ May"] = "5月"; +App::$strings["June"] = "6月"; +App::$strings["July"] = "7月"; +App::$strings["August"] = "8月"; +App::$strings["September"] = "9月"; +App::$strings["October"] = "10月"; +App::$strings["November"] = "11月"; +App::$strings["December"] = "12月"; +App::$strings["Jan"] = "1"; +App::$strings["Feb"] = "2"; +App::$strings["Mar"] = "3"; +App::$strings["Apr"] = "4"; +App::$strings["__ctx:short__ May"] = "5"; +App::$strings["Jun"] = "6"; +App::$strings["Jul"] = "7"; +App::$strings["Aug"] = "8"; +App::$strings["Sep"] = "9"; +App::$strings["Oct"] = "10"; +App::$strings["Nov"] = "11"; +App::$strings["Dec"] = "12"; +App::$strings["Sunday"] = "日曜日"; +App::$strings["Monday"] = "月曜日"; +App::$strings["Tuesday"] = "火曜日"; +App::$strings["Wednesday"] = "水曜日"; +App::$strings["Thursday"] = "木曜日"; +App::$strings["Friday"] = "金曜日"; +App::$strings["Saturday"] = "土曜日"; +App::$strings["Sun"] = "日"; +App::$strings["Mon"] = "月"; +App::$strings["Tue"] = "火"; +App::$strings["Wed"] = "水"; +App::$strings["Thu"] = "木"; +App::$strings["Fri"] = "金"; +App::$strings["Sat"] = "土"; App::$strings["__ctx:calendar__ today"] = ""; App::$strings["__ctx:calendar__ month"] = ""; App::$strings["__ctx:calendar__ week"] = ""; From 110af3b52495d469a42b37e7187dbbd68cc9395e Mon Sep 17 00:00:00 2001 From: harukin Date: Fri, 14 Jun 2019 15:07:12 +0900 Subject: [PATCH 11/18] edit translation --- view/ja/hmessages.po | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/view/ja/hmessages.po b/view/ja/hmessages.po index 5274bd5fe..8cb05472d 100644 --- a/view/ja/hmessages.po +++ b/view/ja/hmessages.po @@ -2754,39 +2754,39 @@ msgstr "" #: ../../include/nav.php:115 ../../Zotlabs/Widget/Newmember.php:35 msgid "Edit your profile" -msgstr "" +msgstr "プロフィールを編集" #: ../../include/nav.php:122 ../../include/nav.php:126 msgid "Sign in" -msgstr "" +msgstr "サインイン" #: ../../include/nav.php:153 msgid "Take me home" -msgstr "" +msgstr "ホームへ戻る" #: ../../include/nav.php:155 msgid "Log me out of this site" -msgstr "" +msgstr "このサイトからログアウトする" #: ../../include/nav.php:160 msgid "Create an account" -msgstr "" +msgstr "アカウントを作成" #: ../../include/nav.php:172 msgid "Help and documentation" -msgstr "" +msgstr "ヘルプとドキュメント" #: ../../include/nav.php:186 msgid "Search site @name, !forum, #tag, ?docs, content" -msgstr "" +msgstr "@name, !forum, #tag, ?docs, content でサイトを検索" #: ../../include/nav.php:192 ../../Zotlabs/Widget/Admin.php:55 msgid "Admin" -msgstr "" +msgstr "管理者" #: ../../include/nav.php:192 msgid "Site Setup and Configuration" -msgstr "" +msgstr "サイトセットアップと設定" #: ../../include/nav.php:326 ../../Zotlabs/Module/Connedit.php:869 #: ../../Zotlabs/Module/Defperms.php:256 @@ -2794,7 +2794,7 @@ msgstr "" #: ../../Zotlabs/Module/New_channel.php:164 #: ../../Zotlabs/Widget/Notifications.php:162 msgid "Loading" -msgstr "" +msgstr "読み込み中" #: ../../include/nav.php:332 msgid "@name, !forum, #tag, ?doc, content" @@ -2802,11 +2802,11 @@ msgstr "" #: ../../include/nav.php:333 msgid "Please wait..." -msgstr "" +msgstr "お待ちください...." #: ../../include/nav.php:339 msgid "Add Apps" -msgstr "" +msgstr "アプリの追加" #: ../../include/nav.php:340 msgid "Arrange Apps" @@ -2818,11 +2818,11 @@ msgstr "" #: ../../include/nav.php:423 ../../Zotlabs/Module/Admin/Channels.php:154 msgid "Channel" -msgstr "" +msgstr "チャンネル" #: ../../include/nav.php:426 msgid "Status Messages and Posts" -msgstr "" +msgstr "ステータスメッセージと投稿" #: ../../include/nav.php:436 ../../Zotlabs/Module/Help.php:80 msgid "About" From 8d70b3b79ea945565a26957b38d1de09cc787805 Mon Sep 17 00:00:00 2001 From: harukin Date: Fri, 21 Jun 2019 10:39:25 +0900 Subject: [PATCH 12/18] edit translation --- view/ja/hmessages.po | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/view/ja/hmessages.po b/view/ja/hmessages.po index 8cb05472d..7d174e76c 100644 --- a/view/ja/hmessages.po +++ b/view/ja/hmessages.po @@ -2834,21 +2834,21 @@ msgstr "" #: ../../include/nav.php:449 ../../include/photos.php:669 msgid "Photo Albums" -msgstr "" +msgstr "フォトアルバム" #: ../../include/nav.php:454 ../../Zotlabs/Lib/Apps.php:339 #: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Storage/Browser.php:278 msgid "Files" -msgstr "" +msgstr "ファイル" #: ../../include/nav.php:457 msgid "Files and Storage" -msgstr "" +msgstr "ファイルとストレージ" #: ../../include/nav.php:465 ../../include/nav.php:468 #: ../../Zotlabs/Storage/Browser.php:140 msgid "Calendar" -msgstr "" +msgstr "カレンダー" #: ../../include/nav.php:479 ../../include/nav.php:482 #: ../../Zotlabs/Lib/Apps.php:329 ../../Zotlabs/Widget/Chatroom_list.php:16 @@ -11600,31 +11600,31 @@ msgstr "" #: ../../Zotlabs/Widget/Activity_filter.php:196 msgid "Stream Filters" -msgstr "" +msgstr "投稿のフィルタリング" #: ../../Zotlabs/Widget/Activity_order.php:90 msgid "Commented Date" -msgstr "" +msgstr "最新のコメント順" #: ../../Zotlabs/Widget/Activity_order.php:94 msgid "Order by last commented date" -msgstr "" +msgstr "コメントが新しい投稿の順に並べます。" #: ../../Zotlabs/Widget/Activity_order.php:97 msgid "Posted Date" -msgstr "" +msgstr "投稿日時順" #: ../../Zotlabs/Widget/Activity_order.php:101 msgid "Order by last posted date" -msgstr "" +msgstr "投稿本体の時間が新しい順に並べます。" #: ../../Zotlabs/Widget/Activity_order.php:104 msgid "Date Unthreaded" -msgstr "" +msgstr "スレッド化しない" #: ../../Zotlabs/Widget/Activity_order.php:108 msgid "Order unthreaded by date" -msgstr "" +msgstr "投稿とコメントを分けずに最新の順に一緒に並べます。" #: ../../Zotlabs/Widget/Activity_order.php:123 msgid "Stream Order" @@ -11636,43 +11636,43 @@ msgstr "" #: ../../Zotlabs/Widget/Admin.php:29 msgid "Inspect queue" -msgstr "" +msgstr "待機中のキュー" #: ../../Zotlabs/Widget/Admin.php:31 msgid "DB updates" -msgstr "" +msgstr "DBアップデート" #: ../../Zotlabs/Widget/Admin.php:56 msgid "Addon Features" -msgstr "" +msgstr "アドオンの機能" #: ../../Zotlabs/Widget/Affinity.php:54 msgid "Refresh" -msgstr "" +msgstr "更新" #: ../../Zotlabs/Widget/Appstore.php:11 msgid "App Collections" -msgstr "" +msgstr "アプリコレクション" #: ../../Zotlabs/Widget/Appstore.php:13 msgid "Installed apps" -msgstr "" +msgstr "インストール済みアプリ" #: ../../Zotlabs/Widget/Archive.php:43 msgid "Archives" -msgstr "" +msgstr "アーカイブ" #: ../../Zotlabs/Widget/Bookmarkedchats.php:24 msgid "Bookmarked Chatrooms" -msgstr "" +msgstr "ブックマーク済みチャットルーム" #: ../../Zotlabs/Widget/Cdav.php:37 msgid "Select Channel" -msgstr "" +msgstr "チャンネルの選択" #: ../../Zotlabs/Widget/Cdav.php:42 msgid "Read-write" -msgstr "" +msgstr "読みー書き" #: ../../Zotlabs/Widget/Cdav.php:43 msgid "Read-only" From ad30d35663f858502f44a783f197f6962b6c9391 Mon Sep 17 00:00:00 2001 From: harukin Date: Fri, 21 Jun 2019 11:02:14 +0900 Subject: [PATCH 13/18] edit translation --- view/ja/hmessages.po | 2 +- view/ja/hstrings.php | 70 ++++++++++++++++++++++---------------------- 2 files changed, 36 insertions(+), 36 deletions(-) diff --git a/view/ja/hmessages.po b/view/ja/hmessages.po index 7d174e76c..72e9aa188 100644 --- a/view/ja/hmessages.po +++ b/view/ja/hmessages.po @@ -11599,7 +11599,7 @@ msgid "Remove active filter" msgstr "" #: ../../Zotlabs/Widget/Activity_filter.php:196 -msgid "Stream Filters" +msgid "ters" msgstr "投稿のフィルタリング" #: ../../Zotlabs/Widget/Activity_order.php:90 diff --git a/view/ja/hstrings.php b/view/ja/hstrings.php index e4c3d7c35..4f7bdd74b 100644 --- a/view/ja/hstrings.php +++ b/view/ja/hstrings.php @@ -624,29 +624,29 @@ App::$strings["Account/Channel Settings"] = ""; App::$strings["End this session"] = ""; App::$strings["Your profile page"] = ""; App::$strings["Manage/Edit profiles"] = ""; -App::$strings["Edit your profile"] = ""; -App::$strings["Sign in"] = ""; -App::$strings["Take me home"] = ""; -App::$strings["Log me out of this site"] = ""; -App::$strings["Create an account"] = ""; -App::$strings["Help and documentation"] = ""; -App::$strings["Search site @name, !forum, #tag, ?docs, content"] = ""; -App::$strings["Admin"] = ""; -App::$strings["Site Setup and Configuration"] = ""; -App::$strings["Loading"] = ""; +App::$strings["Edit your profile"] = "プロフィールを編集"; +App::$strings["Sign in"] = "サインイン"; +App::$strings["Take me home"] = "ホームへ戻る"; +App::$strings["Log me out of this site"] = "このサイトからログアウトする"; +App::$strings["Create an account"] = "アカウントを作成"; +App::$strings["Help and documentation"] = "ヘルプとドキュメント"; +App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "@name, !forum, #tag, ?docs, content でサイトを検索"; +App::$strings["Admin"] = "管理者"; +App::$strings["Site Setup and Configuration"] = "サイトセットアップと設定"; +App::$strings["Loading"] = "読み込み中"; App::$strings["@name, !forum, #tag, ?doc, content"] = ""; -App::$strings["Please wait..."] = ""; -App::$strings["Add Apps"] = ""; +App::$strings["Please wait..."] = "お待ちください...."; +App::$strings["Add Apps"] = "アプリの追加"; App::$strings["Arrange Apps"] = ""; App::$strings["Toggle System Apps"] = ""; -App::$strings["Channel"] = ""; -App::$strings["Status Messages and Posts"] = ""; +App::$strings["Channel"] = "チャンネル"; +App::$strings["Status Messages and Posts"] = "ステータスメッセージと投稿"; App::$strings["About"] = ""; App::$strings["Profile Details"] = ""; -App::$strings["Photo Albums"] = ""; -App::$strings["Files"] = ""; -App::$strings["Files and Storage"] = ""; -App::$strings["Calendar"] = ""; +App::$strings["Photo Albums"] = "フォトアルバム"; +App::$strings["Files"] = "ファイル"; +App::$strings["Files and Storage"] = "ファイルとストレージ"; +App::$strings["Calendar"] = "カレンダー"; App::$strings["Chatrooms"] = ""; App::$strings["Bookmarks"] = ""; App::$strings["Saved Bookmarks"] = ""; @@ -2672,25 +2672,25 @@ App::$strings["Show filed post categories"] = ""; App::$strings["Panel search"] = ""; App::$strings["Filter by name"] = ""; App::$strings["Remove active filter"] = ""; -App::$strings["Stream Filters"] = ""; -App::$strings["Commented Date"] = ""; -App::$strings["Order by last commented date"] = ""; -App::$strings["Posted Date"] = ""; -App::$strings["Order by last posted date"] = ""; -App::$strings["Date Unthreaded"] = ""; -App::$strings["Order unthreaded by date"] = ""; +App::$strings["ters"] = "投稿のフィルタリング"; +App::$strings["Commented Date"] = "最新のコメント順"; +App::$strings["Order by last commented date"] = "コメントが新しい投稿の順に並べます。"; +App::$strings["Posted Date"] = "投稿日時順"; +App::$strings["Order by last posted date"] = "投稿本体の時間が新しい順に並べます。"; +App::$strings["Date Unthreaded"] = "スレッド化しない"; +App::$strings["Order unthreaded by date"] = "投稿とコメントを分けずに最新の順に一緒に並べます。"; App::$strings["Stream Order"] = "投稿の並べ替え"; App::$strings["Member registrations waiting for confirmation"] = ""; -App::$strings["Inspect queue"] = ""; -App::$strings["DB updates"] = ""; -App::$strings["Addon Features"] = ""; -App::$strings["Refresh"] = ""; -App::$strings["App Collections"] = ""; -App::$strings["Installed apps"] = ""; -App::$strings["Archives"] = ""; -App::$strings["Bookmarked Chatrooms"] = ""; -App::$strings["Select Channel"] = ""; -App::$strings["Read-write"] = ""; +App::$strings["Inspect queue"] = "待機中のキュー"; +App::$strings["DB updates"] = "DBアップデート"; +App::$strings["Addon Features"] = "アドオンの機能"; +App::$strings["Refresh"] = "更新"; +App::$strings["App Collections"] = "アプリコレクション"; +App::$strings["Installed apps"] = "インストール済みアプリ"; +App::$strings["Archives"] = "アーカイブ"; +App::$strings["Bookmarked Chatrooms"] = "ブックマーク済みチャットルーム"; +App::$strings["Select Channel"] = "チャンネルの選択"; +App::$strings["Read-write"] = "読みー書き"; App::$strings["Read-only"] = ""; App::$strings["My Calendars"] = ""; App::$strings["Shared Calendars"] = ""; From 037da34e5d0b3616b484f51ceb98ed37c25d7f9d Mon Sep 17 00:00:00 2001 From: harukin Date: Fri, 21 Jun 2019 11:34:37 +0900 Subject: [PATCH 14/18] edit translation --- view/ja/hmessages.po | 52 ++++++++++++++++++++++---------------------- view/ja/hstrings.php | 52 ++++++++++++++++++++++---------------------- 2 files changed, 52 insertions(+), 52 deletions(-) diff --git a/view/ja/hmessages.po b/view/ja/hmessages.po index 72e9aa188..348222ddc 100644 --- a/view/ja/hmessages.po +++ b/view/ja/hmessages.po @@ -2054,7 +2054,7 @@ msgstr "" #: ../../Zotlabs/Module/Group.php:141 ../../Zotlabs/Module/Group.php:153 #: ../../Zotlabs/Widget/Activity_filter.php:41 msgid "Privacy Groups" -msgstr "" +msgstr "プライバシーグループ" #: ../../include/group.php:321 ../../Zotlabs/Lib/Group.php:325 msgid "Edit group" @@ -2726,7 +2726,7 @@ msgstr "" #: ../../include/nav.php:99 msgid "Manage your privacy groups" -msgstr "" +msgstr "プライバシーグループを管理する" #: ../../include/nav.php:101 ../../Zotlabs/Lib/Apps.php:338 #: ../../Zotlabs/Module/Admin/Addons.php:344 @@ -7687,11 +7687,11 @@ msgstr "" #: ../../Zotlabs/Module/Group.php:106 msgid "Privacy Groups App" -msgstr "" +msgstr "プライバシーグループアプリ" #: ../../Zotlabs/Module/Group.php:107 msgid "Management of privacy groups" -msgstr "" +msgstr "プライバシーグループを管理する" #: ../../Zotlabs/Module/Group.php:142 msgid "Add Group" @@ -11544,7 +11544,7 @@ msgstr "" #: ../../Zotlabs/Widget/Activity_filter.php:45 msgid "Show my privacy groups" -msgstr "" +msgstr "自分のプライバシーグループを表示する" #: ../../Zotlabs/Widget/Activity_filter.php:66 msgid "Show posts to this forum" @@ -11984,39 +11984,39 @@ msgstr "" #: ../../Zotlabs/Widget/Notifications.php:104 #: ../../Zotlabs/Widget/Notifications.php:105 msgid "Notices" -msgstr "" +msgstr "通知" #: ../../Zotlabs/Widget/Notifications.php:108 msgid "View all notices" -msgstr "" +msgstr "全ての通知を表示する" #: ../../Zotlabs/Widget/Notifications.php:111 msgid "Mark all notices seen" -msgstr "" +msgstr "全ての通知を既読扱いにする" #: ../../Zotlabs/Widget/Notifications.php:132 msgid "New Registrations" -msgstr "" +msgstr "新規登録" #: ../../Zotlabs/Widget/Notifications.php:133 msgid "New Registrations Notifications" -msgstr "" +msgstr "新規登録通知" #: ../../Zotlabs/Widget/Notifications.php:143 msgid "Public Stream Notifications" -msgstr "" +msgstr "連合ストリーム通知" #: ../../Zotlabs/Widget/Notifications.php:146 msgid "View the public stream" -msgstr "" +msgstr "連合ストリームを表示する" #: ../../Zotlabs/Widget/Notifications.php:161 msgid "Sorry, you have got no notifications at the moment" -msgstr "" +msgstr "今" #: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 msgid "photo/image" -msgstr "" +msgstr "画像/イメージ" #: ../../Zotlabs/Widget/Rating.php:51 msgid "Rating Tools" @@ -12036,48 +12036,48 @@ msgstr "" #: ../../Zotlabs/Widget/Settings_menu.php:32 msgid "Account settings" -msgstr "" +msgstr "アカウント設定" #: ../../Zotlabs/Widget/Settings_menu.php:38 msgid "Channel settings" -msgstr "" +msgstr "チャンネル設定" #: ../../Zotlabs/Widget/Settings_menu.php:46 msgid "Display settings" -msgstr "" +msgstr "表示設定" #: ../../Zotlabs/Widget/Settings_menu.php:53 msgid "Manage locations" -msgstr "" +msgstr "所在地の管理" #: ../../Zotlabs/Widget/Suggestedchats.php:32 msgid "Suggested Chatrooms" -msgstr "" +msgstr "チャットルームの提案" #: ../../Zotlabs/Widget/Suggestions.php:53 msgid "Suggestions" -msgstr "" +msgstr "提案" #: ../../Zotlabs/Widget/Suggestions.php:54 msgid "See more..." -msgstr "" +msgstr "もっと見る..." #: ../../Zotlabs/Widget/Tasklist.php:23 msgid "Tasks" -msgstr "" +msgstr "タスク" #: ../../Zotlabs/Widget/Wiki_pages.php:34 #: ../../Zotlabs/Widget/Wiki_pages.php:91 msgid "Add new page" -msgstr "" +msgstr "新しいページの追加" #: ../../Zotlabs/Widget/Wiki_pages.php:85 msgid "Wiki Pages" -msgstr "" +msgstr "ウィキページ" #: ../../Zotlabs/Widget/Wiki_pages.php:96 msgid "Page name" -msgstr "" +msgstr "ページ名" #: ../../Zotlabs/Zot/Auth.php:152 msgid "" @@ -12088,4 +12088,4 @@ msgstr "" #: ../../Zotlabs/Zot/Auth.php:264 #, php-format msgid "Welcome %s. Remote authentication successful." -msgstr "" +msgstr "ようこそ%s!!リモートログインは成功しました!" diff --git a/view/ja/hstrings.php b/view/ja/hstrings.php index 4f7bdd74b..11a010d6f 100644 --- a/view/ja/hstrings.php +++ b/view/ja/hstrings.php @@ -463,7 +463,7 @@ App::$strings["Cannot connect to yourself."] = ""; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = ""; App::$strings["Add new connections to this privacy group"] = ""; App::$strings["edit"] = ""; -App::$strings["Privacy Groups"] = ""; +App::$strings["Privacy Groups"] = "プライバシーグループ"; App::$strings["Edit group"] = ""; App::$strings["Add privacy group"] = ""; App::$strings["Channels not in any privacy group"] = ""; @@ -618,7 +618,7 @@ App::$strings["Remote authentication"] = ""; App::$strings["Click to authenticate to your home hub"] = ""; App::$strings["Channel Manager"] = ""; App::$strings["Manage your channels"] = ""; -App::$strings["Manage your privacy groups"] = ""; +App::$strings["Manage your privacy groups"] = "プライバシーグループを管理する"; App::$strings["Settings"] = ""; App::$strings["Account/Channel Settings"] = ""; App::$strings["End this session"] = ""; @@ -1763,8 +1763,8 @@ App::$strings["View the public stream. Warning: this content is not moderated"] App::$strings["Privacy group created."] = ""; App::$strings["Could not create privacy group."] = ""; App::$strings["Privacy group updated."] = ""; -App::$strings["Privacy Groups App"] = ""; -App::$strings["Management of privacy groups"] = ""; +App::$strings["Privacy Groups App"] = "プライバシーグループアプリ"; +App::$strings["Management of privacy groups"] = "プライバシーグループを管理する"; App::$strings["Add Group"] = ""; App::$strings["Privacy group name"] = ""; App::$strings["Members are visible to other channels"] = ""; @@ -2659,7 +2659,7 @@ App::$strings["Upload file"] = ""; App::$strings["Drop files here to immediately upload"] = ""; App::$strings["__ctx:widget__ Activity"] = ""; App::$strings["Show posts related to the %s privacy group"] = ""; -App::$strings["Show my privacy groups"] = ""; +App::$strings["Show my privacy groups"] = "自分のプライバシーグループを表示する"; App::$strings["Show posts to this forum"] = ""; App::$strings["Forums"] = ""; App::$strings["Show forums"] = ""; @@ -2766,29 +2766,29 @@ App::$strings["New Connections Notifications"] = ""; App::$strings["View all connections"] = ""; App::$strings["New Files"] = ""; App::$strings["New Files Notifications"] = ""; -App::$strings["Notices"] = ""; -App::$strings["View all notices"] = ""; -App::$strings["Mark all notices seen"] = ""; -App::$strings["New Registrations"] = ""; -App::$strings["New Registrations Notifications"] = ""; -App::$strings["Public Stream Notifications"] = ""; -App::$strings["View the public stream"] = ""; -App::$strings["Sorry, you have got no notifications at the moment"] = ""; -App::$strings["photo/image"] = ""; +App::$strings["Notices"] = "通知"; +App::$strings["View all notices"] = "全ての通知を表示する"; +App::$strings["Mark all notices seen"] = "全ての通知を既読扱いにする"; +App::$strings["New Registrations"] = "新規登録"; +App::$strings["New Registrations Notifications"] = "新規登録通知"; +App::$strings["Public Stream Notifications"] = "連合ストリーム通知"; +App::$strings["View the public stream"] = "連合ストリームを表示する"; +App::$strings["Sorry, you have got no notifications at the moment"] = "今"; +App::$strings["photo/image"] = "画像/イメージ"; App::$strings["Rating Tools"] = ""; App::$strings["Rate Me"] = ""; App::$strings["View Ratings"] = ""; App::$strings["Remove term"] = ""; -App::$strings["Account settings"] = ""; -App::$strings["Channel settings"] = ""; -App::$strings["Display settings"] = ""; -App::$strings["Manage locations"] = ""; -App::$strings["Suggested Chatrooms"] = ""; -App::$strings["Suggestions"] = ""; -App::$strings["See more..."] = ""; -App::$strings["Tasks"] = ""; -App::$strings["Add new page"] = ""; -App::$strings["Wiki Pages"] = ""; -App::$strings["Page name"] = ""; +App::$strings["Account settings"] = "アカウント設定"; +App::$strings["Channel settings"] = "チャンネル設定"; +App::$strings["Display settings"] = "表示設定"; +App::$strings["Manage locations"] = "所在地の管理"; +App::$strings["Suggested Chatrooms"] = "チャットルームの提案"; +App::$strings["Suggestions"] = "提案"; +App::$strings["See more..."] = "もっと見る..."; +App::$strings["Tasks"] = "タスク"; +App::$strings["Add new page"] = "新しいページの追加"; +App::$strings["Wiki Pages"] = "ウィキページ"; +App::$strings["Page name"] = "ページ名"; App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = ""; -App::$strings["Welcome %s. Remote authentication successful."] = ""; +App::$strings["Welcome %s. Remote authentication successful."] = "ようこそ%s!!リモートログインは成功しました!"; From dde0c41c84710d7a43ead6c1f0a1c2471ceac285 Mon Sep 17 00:00:00 2001 From: harukin Date: Sun, 23 Jun 2019 10:01:54 +0900 Subject: [PATCH 15/18] edit translation --- view/ja/hmessages.po | 50 +++++++++++++++++++++---------------------- view/ja/hstrings.php | 51 +++++++++++++++++++++----------------------- 2 files changed, 48 insertions(+), 53 deletions(-) diff --git a/view/ja/hmessages.po b/view/ja/hmessages.po index 348222ddc..ad3d82482 100644 --- a/view/ja/hmessages.po +++ b/view/ja/hmessages.po @@ -2358,7 +2358,7 @@ msgstr "" #: ../../Zotlabs/Widget/Wiki_pages.php:42 #: ../../Zotlabs/Widget/Wiki_pages.php:99 msgid "Submit" -msgstr "" +msgstr "送信" #: ../../include/js_strings.php:23 msgid "Please enter a link URL" @@ -3499,7 +3499,7 @@ msgstr "" #: ../../include/text.php:1926 ../../Zotlabs/Module/Cal.php:314 #: ../../Zotlabs/Module/Events.php:663 msgid "Link to Source" -msgstr "" +msgstr "元記事へのリンク" #: ../../include/text.php:1956 msgid "Page layout" @@ -4609,48 +4609,48 @@ msgstr "" #: ../../Zotlabs/Lib/ThreadItem.php:171 ../../Zotlabs/Storage/Browser.php:286 msgid "Admin Delete" -msgstr "" +msgstr "管理者権限で消去" #: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Module/Filer.php:54 msgid "Save to Folder" -msgstr "" +msgstr "フォルダーへ保存" #: ../../Zotlabs/Lib/ThreadItem.php:202 msgid "I will attend" -msgstr "" +msgstr "参加予定" #: ../../Zotlabs/Lib/ThreadItem.php:202 msgid "I will not attend" -msgstr "" +msgstr "参加しない予定" #: ../../Zotlabs/Lib/ThreadItem.php:202 msgid "I might attend" -msgstr "" +msgstr "たぶん参加する" #: ../../Zotlabs/Lib/ThreadItem.php:212 msgid "I agree" -msgstr "" +msgstr "肯定" #: ../../Zotlabs/Lib/ThreadItem.php:212 msgid "I disagree" -msgstr "" +msgstr "否定" #: ../../Zotlabs/Lib/ThreadItem.php:212 msgid "I abstain" -msgstr "" +msgstr "棄権" #: ../../Zotlabs/Lib/ThreadItem.php:231 ../../Zotlabs/Lib/ThreadItem.php:243 #: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Photos.php:1185 msgid "View all" -msgstr "" +msgstr "すべて表示" #: ../../Zotlabs/Lib/ThreadItem.php:286 msgid "Add Tag" -msgstr "" +msgstr "タグの追加" #: ../../Zotlabs/Lib/ThreadItem.php:306 ../../Zotlabs/Module/Photos.php:1115 msgid "I like this (toggle)" -msgstr "" +msgstr "好き(トグル)" #: ../../Zotlabs/Lib/ThreadItem.php:307 ../../Zotlabs/Module/Photos.php:1116 msgid "I don't like this (toggle)" @@ -4658,7 +4658,7 @@ msgstr "" #: ../../Zotlabs/Lib/ThreadItem.php:317 msgid "Share This" -msgstr "" +msgstr "この投稿を再共有" #: ../../Zotlabs/Lib/ThreadItem.php:317 msgid "share" @@ -4671,14 +4671,12 @@ msgstr "転送状況" #: ../../Zotlabs/Lib/ThreadItem.php:347 #, php-format msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" +msgstr "%d件のコメント" #: ../../Zotlabs/Lib/ThreadItem.php:381 ../../Zotlabs/Lib/ThreadItem.php:382 #, php-format msgid "View %s's profile - %s" -msgstr "" +msgstr "%sのプロファイルを見る - %s" #: ../../Zotlabs/Lib/ThreadItem.php:385 msgid "to" @@ -4698,7 +4696,7 @@ msgstr "" #: ../../Zotlabs/Lib/ThreadItem.php:414 msgid "Attend" -msgstr "" +msgstr "参加" #: ../../Zotlabs/Lib/ThreadItem.php:415 msgid "Attendance Options" @@ -4706,34 +4704,34 @@ msgstr "" #: ../../Zotlabs/Lib/ThreadItem.php:416 msgid "Vote" -msgstr "" +msgstr "投票" #: ../../Zotlabs/Lib/ThreadItem.php:417 msgid "Voting Options" -msgstr "" +msgstr "投票オプション" #: ../../Zotlabs/Lib/ThreadItem.php:439 msgid "Save Bookmarks" -msgstr "" +msgstr "ブックマークを保存" #: ../../Zotlabs/Lib/ThreadItem.php:440 msgid "Add to Calendar" -msgstr "" +msgstr "カレンダーへ追加" #: ../../Zotlabs/Lib/ThreadItem.php:450 #: ../../Zotlabs/Module/Notifications.php:60 msgid "Mark all seen" -msgstr "" +msgstr "全てを既読にする" #: ../../Zotlabs/Lib/ThreadItem.php:457 ../../Zotlabs/Module/Photos.php:1310 msgctxt "noun" msgid "Likes" -msgstr "" +msgstr "好き" #: ../../Zotlabs/Lib/ThreadItem.php:458 ../../Zotlabs/Module/Photos.php:1311 msgctxt "noun" msgid "Dislikes" -msgstr "" +msgstr "嫌い" #: ../../Zotlabs/Lib/ThreadItem.php:792 ../../Zotlabs/Module/Photos.php:1135 #: ../../Zotlabs/Module/Photos.php:1254 diff --git a/view/ja/hstrings.php b/view/ja/hstrings.php index 11a010d6f..4d5d1afcd 100644 --- a/view/ja/hstrings.php +++ b/view/ja/hstrings.php @@ -518,7 +518,7 @@ App::$strings["Nothing new here"] = ""; App::$strings["Rate This Channel (this is public)"] = ""; App::$strings["Rating"] = ""; App::$strings["Describe (optional)"] = ""; -App::$strings["Submit"] = ""; +App::$strings["Submit"] = "送信"; App::$strings["Please enter a link URL"] = ""; App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = ""; App::$strings["Location"] = ""; @@ -802,7 +802,7 @@ App::$strings["Unknown Attachment"] = ""; App::$strings["Size"] = ""; App::$strings["remove category"] = ""; App::$strings["remove from file"] = ""; -App::$strings["Link to Source"] = ""; +App::$strings["Link to Source"] = "元記事へのリンク"; App::$strings["Page layout"] = ""; App::$strings["You can create your own with the layouts tool"] = ""; App::$strings["BBcode"] = ""; @@ -1055,39 +1055,36 @@ App::$strings["3. Advanced - very comfortable"] = ""; App::$strings["4. Expert - I can write computer code"] = ""; App::$strings["5. Wizard - I probably know more than you do"] = ""; App::$strings["Privacy conflict. Discretion advised."] = ""; -App::$strings["Admin Delete"] = ""; -App::$strings["Save to Folder"] = ""; -App::$strings["I will attend"] = ""; -App::$strings["I will not attend"] = ""; -App::$strings["I might attend"] = ""; -App::$strings["I agree"] = ""; -App::$strings["I disagree"] = ""; -App::$strings["I abstain"] = ""; -App::$strings["View all"] = ""; -App::$strings["Add Tag"] = ""; -App::$strings["I like this (toggle)"] = ""; +App::$strings["Admin Delete"] = "管理者権限で消去"; +App::$strings["Save to Folder"] = "フォルダーへ保存"; +App::$strings["I will attend"] = "参加予定"; +App::$strings["I will not attend"] = "参加しない予定"; +App::$strings["I might attend"] = "たぶん参加する"; +App::$strings["I agree"] = "肯定"; +App::$strings["I disagree"] = "否定"; +App::$strings["I abstain"] = "棄権"; +App::$strings["View all"] = "すべて表示"; +App::$strings["Add Tag"] = "タグの追加"; +App::$strings["I like this (toggle)"] = "好き(トグル)"; App::$strings["I don't like this (toggle)"] = ""; -App::$strings["Share This"] = ""; +App::$strings["Share This"] = "この投稿を再共有"; App::$strings["share"] = "共有"; App::$strings["Delivery Report"] = "転送状況"; -App::$strings["%d comment"] = array( - 0 => "", - 1 => "", -); -App::$strings["View %s's profile - %s"] = ""; +App::$strings["%d comment"] = "%d件のコメント"; +App::$strings["View %s's profile - %s"] = "%sのプロファイルを見る - %s"; App::$strings["to"] = ""; App::$strings["via"] = ""; App::$strings["Wall-to-Wall"] = ""; App::$strings["via Wall-To-Wall:"] = ""; -App::$strings["Attend"] = ""; +App::$strings["Attend"] = "参加"; App::$strings["Attendance Options"] = ""; -App::$strings["Vote"] = ""; -App::$strings["Voting Options"] = ""; -App::$strings["Save Bookmarks"] = ""; -App::$strings["Add to Calendar"] = ""; -App::$strings["Mark all seen"] = ""; -App::$strings["__ctx:noun__ Likes"] = ""; -App::$strings["__ctx:noun__ Dislikes"] = ""; +App::$strings["Vote"] = "投票"; +App::$strings["Voting Options"] = "投票オプション"; +App::$strings["Save Bookmarks"] = "ブックマークを保存"; +App::$strings["Add to Calendar"] = "カレンダーへ追加"; +App::$strings["Mark all seen"] = "全てを既読にする"; +App::$strings["__ctx:noun__ Likes"] = "好き"; +App::$strings["__ctx:noun__ Dislikes"] = "嫌い"; App::$strings["This is you"] = ""; App::$strings["Image"] = ""; App::$strings["Insert Link"] = ""; From a598e1fc2c160a39a79928b0a26df6dbc073a95e Mon Sep 17 00:00:00 2001 From: harukin Date: Fri, 6 Sep 2019 10:53:54 +0900 Subject: [PATCH 16/18] =?UTF-8?q?google=E7=BF=BB=E8=A8=B3=E3=81=A7?= =?UTF-8?q?=E4=B8=80=E6=8B=AC=E5=87=A6=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- view/ja/hmessages.po | 5001 +++++++++++++++++++++--------------------- view/ja/hstrings.php | 5000 ++++++++++++++++++++--------------------- 2 files changed, 5001 insertions(+), 5000 deletions(-) diff --git a/view/ja/hmessages.po b/view/ja/hmessages.po index ad3d82482..13a86ba06 100644 --- a/view/ja/hmessages.po +++ b/view/ja/hmessages.po @@ -76,7 +76,7 @@ msgstr "記憶する" #: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Wiki.php:228 #: ../../Zotlabs/Storage/Browser.php:411 msgid "No" -msgstr "" +msgstr "いいえ" #: ../../boot.php:1635 ../../include/dir_fns.php:143 #: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 @@ -100,7 +100,7 @@ msgstr "" #: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Wiki.php:228 #: ../../Zotlabs/Storage/Browser.php:411 msgid "Yes" -msgstr "" +msgstr "はい" #: ../../boot.php:1638 msgid "Forgot your password?" @@ -113,7 +113,7 @@ msgstr "パスワードのリセット" #: ../../boot.php:2434 #, php-format msgid "[$Projectname] Website SSL error for %s" -msgstr "" +msgstr "[$ Projectname] %s WebサイトSSLエラー" #: ../../boot.php:2439 msgid "Website SSL certificate is not valid. Please correct." @@ -122,7 +122,7 @@ msgstr "ウェブサイトのssl認証ができません。修正してくださ #: ../../boot.php:2555 #, php-format msgid "[$Projectname] Cron tasks not running on %s" -msgstr "" +msgstr "[$ Projectname] Cronタスクが%s実行されていません" #: ../../boot.php:2560 msgid "Cron/Scheduled tasks not running." @@ -130,7 +130,7 @@ msgstr "Cron/スケジュール済みタスクが実行されていません。" #: ../../boot.php:2561 ../../include/datetime.php:238 msgid "never" -msgstr "全く" +msgstr "一度もなし" #: ../../include/account.php:36 msgid "Not a valid email address" @@ -138,7 +138,7 @@ msgstr "未認証のメールアドレス" #: ../../include/account.php:38 msgid "Your email domain is not among those allowed on this site" -msgstr "あなたのメールドメインはこのサイトでは許可されていません。" +msgstr "あなたのメールアドレスのドメインはこのサイトでは許可されていません。" #: ../../include/account.php:44 msgid "Your email address is already registered at this site." @@ -146,11 +146,11 @@ msgstr "あなたのメールアドレスは既にこのサイトに登録され #: ../../include/account.php:76 msgid "An invitation is required." -msgstr "招待が必要です。" +msgstr "招待状が必要です。" #: ../../include/account.php:80 msgid "Invitation could not be verified." -msgstr "招待が認証されませんでした。" +msgstr "招待状が認証されませんでした。" #: ../../include/account.php:156 msgid "Please enter the required information." @@ -163,12 +163,12 @@ msgstr "アカウント情報の保存に失敗しました。" #: ../../include/account.php:311 #, php-format msgid "Registration confirmation for %s" -msgstr "" +msgstr "登録確認: %s" #: ../../include/account.php:380 #, php-format msgid "Registration request at %s" -msgstr "" +msgstr "登録リクエスト: %s" #: ../../include/account.php:402 msgid "your registration password" @@ -177,16 +177,16 @@ msgstr "あなたの登録されているパスワード" #: ../../include/account.php:408 ../../include/account.php:471 #, php-format msgid "Registration details for %s" -msgstr "" +msgstr "登録の詳細: %s" #: ../../include/account.php:482 msgid "Account approved." -msgstr "" +msgstr "アカウントが承認されました。" #: ../../include/account.php:522 #, php-format msgid "Registration revoked for %s" -msgstr "" +msgstr "%sの登録が取り消されました" #: ../../include/account.php:803 ../../include/account.php:805 msgid "Click here to upgrade." @@ -194,16 +194,16 @@ msgstr "ここをクリックしてアップグレード" #: ../../include/account.php:811 msgid "This action exceeds the limits set by your subscription plan." -msgstr "" +msgstr "このアクションは、サブスクリプションプランで設定された制限を超えています。" #: ../../include/account.php:816 msgid "This action is not available under your subscription plan." -msgstr "" +msgstr "このアクションは、サブスクリプションプランでは使用できません。" #: ../../include/acl_selectors.php:33 #: ../../Zotlabs/Lib/PermissionDescription.php:34 msgid "Visible to your default audience" -msgstr "" +msgstr "デフォルトの視聴者に表示されます" #: ../../include/acl_selectors.php:88 ../../Zotlabs/Module/Acl.php:121 #: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 @@ -218,25 +218,25 @@ msgstr "自分のみ" #: ../../include/acl_selectors.php:113 msgid "Who can see this?" -msgstr "誰が見れる?" +msgstr "表示できる人" #: ../../include/acl_selectors.php:114 msgid "Custom selection" -msgstr "" +msgstr "カスタム選択" #: ../../include/acl_selectors.php:115 msgid "" "Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " "the scope of \"Show\"." -msgstr "" +msgstr "表示を許可するには、「表示」を選択します。 「表示しない」を使用すると、「表示」の範囲を上書きおよび制限できます" #: ../../include/acl_selectors.php:116 msgid "Show" -msgstr "" +msgstr "表示" #: ../../include/acl_selectors.php:117 msgid "Don't show" -msgstr "" +msgstr "非表示" #: ../../include/acl_selectors.php:118 ../../include/nav.php:186 #: ../../include/text.php:1084 ../../include/text.php:1096 @@ -245,7 +245,7 @@ msgstr "" #: ../../Zotlabs/Widget/Activity_filter.php:151 #: ../../Zotlabs/Widget/Sitesearch.php:31 msgid "Search" -msgstr "" +msgstr "検索" #: ../../include/acl_selectors.php:123 ../../Zotlabs/Module/Chat.php:243 #: ../../Zotlabs/Module/Connedit.php:690 @@ -253,42 +253,42 @@ msgstr "" #: ../../Zotlabs/Module/Photos.php:1086 ../../Zotlabs/Module/Thing.php:319 #: ../../Zotlabs/Module/Thing.php:372 msgid "Permissions" -msgstr "" +msgstr "権限" #: ../../include/acl_selectors.php:125 ../../Zotlabs/Lib/ThreadItem.php:463 #: ../../Zotlabs/Module/Photos.php:1316 msgid "Close" -msgstr "" +msgstr "閉じる" #: ../../include/acl_selectors.php:150 #, php-format msgid "" "Post permissions %s cannot be changed %s after a post is shared.
These " "permissions set who is allowed to view the post." -msgstr "" +msgstr "投稿を共有した後、投稿%s権限%sを%sに変更することはできません。これらの権限は、投稿の閲覧を許可するユーザーを設定します。" #: ../../include/activities.php:42 msgid " and " -msgstr "" +msgstr "そして" #: ../../include/activities.php:50 msgid "public profile" -msgstr "" +msgstr "公開プロフィール" #: ../../include/activities.php:59 #, php-format msgid "%1$s changed %2$s to “%3$s”" -msgstr "" +msgstr "%1$sが%2$sを&ldquo;に変更しました%3$s &rdquo;" #: ../../include/activities.php:60 #, php-format msgid "Visit %1$s's %2$s" -msgstr "" +msgstr "%1$sの%2$sアクセス" #: ../../include/activities.php:63 #, php-format msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" +msgstr "%1$sには更新された%2$s 、 %3$s変更しています。" #: ../../include/attach.php:150 ../../include/attach.php:199 #: ../../include/attach.php:272 ../../include/attach.php:380 @@ -356,93 +356,93 @@ msgstr "" #: ../../Zotlabs/Module/Wiki.php:59 ../../Zotlabs/Module/Wiki.php:285 #: ../../Zotlabs/Module/Wiki.php:428 ../../Zotlabs/Web/WebServer.php:123 msgid "Permission denied." -msgstr "" +msgstr "アクセス拒否。" #: ../../include/attach.php:267 ../../include/attach.php:375 msgid "Item was not found." -msgstr "" +msgstr "アイテムが見つかりませんでした。" #: ../../include/attach.php:284 msgid "Unknown error." -msgstr "" +msgstr "未知のエラー。" #: ../../include/attach.php:568 msgid "No source file." -msgstr "" +msgstr "ソースファイルがありません。" #: ../../include/attach.php:590 msgid "Cannot locate file to replace" -msgstr "" +msgstr "置き換えるファイルが見つかりません" #: ../../include/attach.php:609 msgid "Cannot locate file to revise/update" -msgstr "" +msgstr "修正/更新するファイルが見つかりません" #: ../../include/attach.php:751 #, php-format msgid "File exceeds size limit of %d" -msgstr "" +msgstr "ファイルはサイズ制限%dを超えています" #: ../../include/attach.php:772 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "" +msgstr "%1 $ .0fメガバイトの添付ファイルストレージの制限に達しました。" #: ../../include/attach.php:954 msgid "File upload failed. Possible system limit or action terminated." -msgstr "" +msgstr "ファイルのアップロードに失敗しました。可能なシステム制限またはアクションが終了しました。" #: ../../include/attach.php:983 msgid "Stored file could not be verified. Upload failed." -msgstr "" +msgstr "保存されたファイルを確認できませんでした。アップロードに失敗しました。" #: ../../include/attach.php:1057 ../../include/attach.php:1073 msgid "Path not available." -msgstr "" +msgstr "パスが利用できません。" #: ../../include/attach.php:1122 ../../include/attach.php:1285 msgid "Empty pathname" -msgstr "" +msgstr "空のパス名" #: ../../include/attach.php:1148 msgid "duplicate filename or path" -msgstr "" +msgstr "ファイル名またはパスが重複しています" #: ../../include/attach.php:1173 msgid "Path not found." -msgstr "" +msgstr "パスが見つかりません。" #: ../../include/attach.php:1241 msgid "mkdir failed." -msgstr "" +msgstr "mkdirが失敗しました。" #: ../../include/attach.php:1245 msgid "database storage failed." -msgstr "" +msgstr "データベースストレージが失敗しました。" #: ../../include/attach.php:1291 msgid "Empty path" -msgstr "" +msgstr "空のパス" #: ../../include/auth.php:192 msgid "Delegation session ended." -msgstr "" +msgstr "委任セッションは終了しました。" #: ../../include/auth.php:196 msgid "Logged out." -msgstr "" +msgstr "ログアウトしました。" #: ../../include/auth.php:291 msgid "Email validation is incomplete. Please check your email." -msgstr "" +msgstr "メールの検証が不完全です。メールを確認してください。" #: ../../include/auth.php:307 msgid "Failed authentication" -msgstr "" +msgstr "認証失敗" #: ../../include/auth.php:317 msgid "Login failed." -msgstr "" +msgstr "ログインに失敗しました。" #: ../../include/bbcode.php:220 ../../include/bbcode.php:1210 #: ../../include/bbcode.php:1213 ../../include/bbcode.php:1218 @@ -452,126 +452,126 @@ msgstr "" #: ../../include/bbcode.php:1243 ../../include/bbcode.php:1246 #: ../../include/bbcode.php:1249 msgid "Image/photo" -msgstr "" +msgstr "画像/写真" #: ../../include/bbcode.php:259 ../../include/bbcode.php:1260 msgid "Encrypted content" -msgstr "" +msgstr "暗号化されたコンテンツ" #: ../../include/bbcode.php:275 #, php-format msgid "Install %1$s element %2$s" -msgstr "" +msgstr "%1$s要素%2$sをインストール" #: ../../include/bbcode.php:279 #, php-format msgid "" "This post contains an installable %s element, however you lack permissions " "to install it on this site." -msgstr "" +msgstr "この投稿にはインストール可能な%s要素が含まれていますが、このサイトにインストールする権限がありません。" #: ../../include/bbcode.php:289 ../../Zotlabs/Module/Impel.php:43 msgid "webpage" -msgstr "" +msgstr "ウェブページ" #: ../../include/bbcode.php:292 ../../Zotlabs/Module/Impel.php:53 msgid "layout" -msgstr "" +msgstr "レイアウト" #: ../../include/bbcode.php:295 ../../Zotlabs/Module/Impel.php:48 msgid "block" -msgstr "" +msgstr "ブロック" #: ../../include/bbcode.php:298 ../../Zotlabs/Module/Impel.php:60 msgid "menu" -msgstr "" +msgstr "メニュー" #: ../../include/bbcode.php:359 msgid "card" -msgstr "" +msgstr "カード" #: ../../include/bbcode.php:361 msgid "article" -msgstr "" +msgstr "記事" #: ../../include/bbcode.php:363 ../../include/markdown.php:200 #: ../../Zotlabs/Module/Tagger.php:77 msgid "post" -msgstr "" +msgstr "役職" #: ../../include/bbcode.php:367 ../../include/markdown.php:198 #, php-format msgid "%1$s wrote the following %2$s %3$s" -msgstr "" +msgstr "%1$sは次の%2$s %3$s書きました" #: ../../include/bbcode.php:444 ../../include/bbcode.php:452 msgid "Click to open/close" -msgstr "" +msgstr "クリックして開閉" #: ../../include/bbcode.php:452 msgid "spoiler" -msgstr "" +msgstr "スポイラー" #: ../../include/bbcode.php:465 msgid "View article" -msgstr "" +msgstr "記事を見る" #: ../../include/bbcode.php:465 msgid "View summary" -msgstr "" +msgstr "概要を見る" #: ../../include/bbcode.php:755 ../../include/bbcode.php:925 #: ../../Zotlabs/Lib/NativeWikiPage.php:603 msgid "Different viewers will see this text differently" -msgstr "" +msgstr "視聴者が異なれば、このテキストの見方も異なります" #: ../../include/bbcode.php:1198 msgid "$1 wrote:" -msgstr "" +msgstr "$ 1の書き込み:" #: ../../include/bookmarks.php:34 #, php-format msgid "%1$s's bookmarks" -msgstr "" +msgstr "%1$sのブックマーク" #: ../../include/channel.php:43 msgid "Unable to obtain identity information from database" -msgstr "" +msgstr "データベースからID情報を取得できません" #: ../../include/channel.php:76 msgid "Empty name" -msgstr "" +msgstr "空の名前" #: ../../include/channel.php:79 msgid "Name too long" -msgstr "" +msgstr "名前が長すぎます" #: ../../include/channel.php:196 msgid "No account identifier" -msgstr "" +msgstr "アカウント識別子なし" #: ../../include/channel.php:208 msgid "Nickname is required." -msgstr "" +msgstr "ニックネームが必要です。" #: ../../include/channel.php:222 ../../include/channel.php:655 #: ../../Zotlabs/Module/Changeaddr.php:46 msgid "Reserved nickname. Please choose another." -msgstr "" +msgstr "予約済みのニックネーム。別のものを選択してください。" #: ../../include/channel.php:227 ../../include/channel.php:660 #: ../../Zotlabs/Module/Changeaddr.php:51 msgid "" "Nickname has unsupported characters or is already being used on this site." -msgstr "" +msgstr "ニックネームにサポートされていない文字が含まれているか、このサイトで既に使用されています。" #: ../../include/channel.php:287 msgid "Unable to retrieve created identity" -msgstr "" +msgstr "作成されたIDを取得できません" #: ../../include/channel.php:429 msgid "Default Profile" -msgstr "" +msgstr "デフォルトプロファイル" #: ../../include/channel.php:493 ../../include/channel.php:494 #: ../../include/channel.php:501 ../../include/selectors.php:134 @@ -583,15 +583,15 @@ msgstr "" #: ../../Zotlabs/Module/Settings/Channel.php:89 #: ../../Zotlabs/Widget/Affinity.php:32 msgid "Friends" -msgstr "" +msgstr "友だち" #: ../../include/channel.php:588 ../../include/channel.php:677 msgid "Unable to retrieve modified identity" -msgstr "" +msgstr "変更されたIDを取得できません" #: ../../include/channel.php:1273 msgid "Requested channel is not available." -msgstr "" +msgstr "要求されたチャンネルは利用できません。" #: ../../include/channel.php:1319 ../../Zotlabs/Module/Achievements.php:15 #: ../../Zotlabs/Module/Articles.php:42 ../../Zotlabs/Module/Blocks.php:33 @@ -602,16 +602,16 @@ msgstr "" #: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Menu.php:91 #: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Webpages.php:39 msgid "Requested profile is not available." -msgstr "" +msgstr "要求されたプロファイルは利用できません。" #: ../../include/channel.php:1411 ../../Zotlabs/Module/Profiles.php:728 msgid "Change profile photo" -msgstr "" +msgstr "プロフィール写真を変更" #: ../../include/channel.php:1418 ../../include/nav.php:113 #: ../../Zotlabs/Module/Profiles.php:830 msgid "Edit Profiles" -msgstr "" +msgstr "プロファイルを編集する" #: ../../include/channel.php:1418 ../../include/channel.php:1422 #: ../../include/menu.php:118 ../../Zotlabs/Lib/Apps.php:558 @@ -631,90 +631,90 @@ msgstr "" #: ../../Zotlabs/Module/Wiki.php:384 ../../Zotlabs/Storage/Browser.php:296 #: ../../Zotlabs/Widget/Cdav.php:126 ../../Zotlabs/Widget/Cdav.php:162 msgid "Edit" -msgstr "" +msgstr "編集" #: ../../include/channel.php:1419 msgid "Create New Profile" -msgstr "" +msgstr "新しいプロファイルを作成" #: ../../include/channel.php:1422 ../../include/nav.php:115 msgid "Edit Profile" -msgstr "" +msgstr "プロファイル編集" #: ../../include/channel.php:1437 ../../Zotlabs/Module/Profiles.php:820 msgid "Profile Image" -msgstr "" +msgstr "プロフィール画像" #: ../../include/channel.php:1440 msgid "Visible to everybody" -msgstr "" +msgstr "みんなに見える" #: ../../include/channel.php:1441 ../../Zotlabs/Module/Profiles.php:725 #: ../../Zotlabs/Module/Profiles.php:824 msgid "Edit visibility" -msgstr "" +msgstr "可視性を編集" #: ../../include/channel.php:1498 ../../include/connections.php:110 #: ../../include/conversation.php:1058 ../../Zotlabs/Module/Directory.php:342 #: ../../Zotlabs/Module/Suggest.php:71 ../../Zotlabs/Widget/Follow.php:32 #: ../../Zotlabs/Widget/Suggestions.php:46 msgid "Connect" -msgstr "" +msgstr "つなぐ" #: ../../include/channel.php:1513 ../../include/event.php:61 #: ../../include/event.php:93 ../../Zotlabs/Module/Directory.php:328 msgid "Location:" -msgstr "" +msgstr "ロケーション:" #: ../../include/channel.php:1517 ../../include/channel.php:1645 msgid "Gender:" -msgstr "" +msgstr "性別:" #: ../../include/channel.php:1518 ../../include/channel.php:1689 msgid "Status:" -msgstr "" +msgstr "状態:" #: ../../include/channel.php:1519 ../../include/channel.php:1713 msgid "Homepage:" -msgstr "" +msgstr "ホームページ:" #: ../../include/channel.php:1520 msgid "Online Now" -msgstr "" +msgstr "今オンラインです" #: ../../include/channel.php:1573 msgid "Change your profile photo" -msgstr "" +msgstr "プロフィール写真を変更する" #: ../../include/channel.php:1600 ../../include/selectors.php:60 #: ../../include/selectors.php:77 msgid "Female" -msgstr "" +msgstr "女性" #: ../../include/channel.php:1602 ../../include/selectors.php:60 #: ../../include/selectors.php:77 msgid "Male" -msgstr "" +msgstr "男性" #: ../../include/channel.php:1604 msgid "Trans" -msgstr "" +msgstr "トランス" #: ../../include/channel.php:1606 ../../include/selectors.php:60 msgid "Neuter" -msgstr "" +msgstr "中性" #: ../../include/channel.php:1608 ../../include/selectors.php:60 msgid "Non-specific" -msgstr "" +msgstr "非特異的" #: ../../include/channel.php:1643 ../../Zotlabs/Module/Settings/Channel.php:499 msgid "Full Name:" -msgstr "" +msgstr "フルネーム:" #: ../../include/channel.php:1650 msgid "Like this channel" -msgstr "" +msgstr "このチャンネルのように" #: ../../include/channel.php:1661 ../../include/conversation.php:1702 #: ../../include/taxonomy.php:659 ../../Zotlabs/Lib/ThreadItem.php:235 @@ -722,174 +722,174 @@ msgstr "" msgctxt "noun" msgid "Like" msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "いいね" +msgstr[1] "いいね" #: ../../include/channel.php:1674 msgid "j F, Y" -msgstr "" +msgstr "j F、Y" #: ../../include/channel.php:1675 msgid "j F" -msgstr "" +msgstr "j F" #: ../../include/channel.php:1682 msgid "Birthday:" -msgstr "" +msgstr "お誕生日:" #: ../../include/channel.php:1686 ../../Zotlabs/Module/Directory.php:323 msgid "Age:" -msgstr "" +msgstr "年齢:" #: ../../include/channel.php:1695 #, php-format msgid "for %1$d %2$s" -msgstr "" +msgstr "%1$d %2$s" #: ../../include/channel.php:1707 msgid "Tags:" -msgstr "" +msgstr "タグ:" #: ../../include/channel.php:1711 msgid "Sexual Preference:" -msgstr "" +msgstr "性的嗜好:" #: ../../include/channel.php:1715 ../../Zotlabs/Module/Directory.php:339 msgid "Hometown:" -msgstr "" +msgstr "出身地:" #: ../../include/channel.php:1717 msgid "Political Views:" -msgstr "" +msgstr "政見:" #: ../../include/channel.php:1719 msgid "Religion:" -msgstr "" +msgstr "宗教:" #: ../../include/channel.php:1721 ../../Zotlabs/Module/Directory.php:341 msgid "About:" -msgstr "" +msgstr "約:" #: ../../include/channel.php:1723 msgid "Hobbies/Interests:" -msgstr "" +msgstr "趣味/興味:" #: ../../include/channel.php:1725 msgid "Likes:" -msgstr "" +msgstr "好きなもの:" #: ../../include/channel.php:1727 msgid "Dislikes:" -msgstr "" +msgstr "嫌いなもの:" #: ../../include/channel.php:1729 msgid "Contact information and Social Networks:" -msgstr "" +msgstr "連絡先情報とソーシャルネットワーク:" #: ../../include/channel.php:1731 msgid "My other channels:" -msgstr "" +msgstr "私の他のチャンネル:" #: ../../include/channel.php:1733 msgid "Musical interests:" -msgstr "" +msgstr "音楽的興味:" #: ../../include/channel.php:1735 msgid "Books, literature:" -msgstr "" +msgstr "書籍、文学:" #: ../../include/channel.php:1737 msgid "Television:" -msgstr "" +msgstr "テレビ:" #: ../../include/channel.php:1739 msgid "Film/dance/culture/entertainment:" -msgstr "" +msgstr "映画/ダンス/文化/エンターテイメント:" #: ../../include/channel.php:1741 msgid "Love/Romance:" -msgstr "" +msgstr "愛/ロマンス:" #: ../../include/channel.php:1743 msgid "Work/employment:" -msgstr "" +msgstr "仕事/雇用:" #: ../../include/channel.php:1745 msgid "School/education:" -msgstr "" +msgstr "学校教育:" #: ../../include/channel.php:1766 ../../Zotlabs/Lib/Apps.php:361 #: ../../Zotlabs/Module/Profperm.php:113 msgid "Profile" -msgstr "" +msgstr "プロフィール" #: ../../include/channel.php:1768 msgid "Like this thing" -msgstr "" +msgstr "このように" #: ../../include/channel.php:1769 ../../Zotlabs/Module/Cal.php:340 #: ../../Zotlabs/Module/Events.php:692 msgid "Export" -msgstr "" +msgstr "輸出する" #: ../../include/channel.php:2207 ../../Zotlabs/Module/Cover_photo.php:301 msgid "cover photo" -msgstr "" +msgstr "カバー写真" #: ../../include/channel.php:2476 ../../Zotlabs/Module/Rmagic.php:94 msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "" +msgstr "チャンネルアドレスを入力します(例:channel@example.com)" #: ../../include/channel.php:2477 ../../Zotlabs/Module/Rmagic.php:95 msgid "Authenticate" -msgstr "" +msgstr "認証する" #: ../../include/channel.php:2632 ../../Zotlabs/Module/Admin/Accounts.php:91 #, php-format msgid "Account '%s' deleted" -msgstr "" +msgstr "アカウント「 %s 」を削除しました" #: ../../include/connections.php:133 msgid "New window" -msgstr "" +msgstr "新しい窓" #: ../../include/connections.php:134 msgid "Open the selected location in a different window or browser tab" -msgstr "" +msgstr "選択した場所を別のウィンドウまたはブラウザタブで開きます" #: ../../include/connections.php:696 ../../include/event.php:1325 #: ../../Zotlabs/Module/Cdav.php:1251 ../../Zotlabs/Module/Connedit.php:932 #: ../../Zotlabs/Module/Profiles.php:792 msgid "Mobile" -msgstr "" +msgstr "モバイル" #: ../../include/connections.php:697 ../../include/event.php:1326 #: ../../Zotlabs/Module/Cdav.php:1252 ../../Zotlabs/Module/Connedit.php:933 #: ../../Zotlabs/Module/Profiles.php:793 msgid "Home" -msgstr "" +msgstr "ホーム" #: ../../include/connections.php:698 ../../include/event.php:1327 msgid "Home, Voice" -msgstr "" +msgstr "ホーム、ボイス" #: ../../include/connections.php:699 ../../include/event.php:1328 msgid "Home, Fax" -msgstr "" +msgstr "ホーム、ファックス" #: ../../include/connections.php:700 ../../include/event.php:1329 #: ../../Zotlabs/Module/Cdav.php:1253 ../../Zotlabs/Module/Connedit.php:934 #: ../../Zotlabs/Module/Profiles.php:794 msgid "Work" -msgstr "" +msgstr "作業" #: ../../include/connections.php:701 ../../include/event.php:1330 msgid "Work, Voice" -msgstr "" +msgstr "仕事、声" #: ../../include/connections.php:702 ../../include/event.php:1331 msgid "Work, Fax" -msgstr "" +msgstr "仕事、ファックス" #: ../../include/connections.php:703 ../../include/connections.php:710 #: ../../include/event.php:1332 ../../include/event.php:1339 @@ -899,204 +899,204 @@ msgstr "" #: ../../Zotlabs/Module/Cdav.php:1254 ../../Zotlabs/Module/Connedit.php:935 #: ../../Zotlabs/Module/Profiles.php:795 msgid "Other" -msgstr "" +msgstr "その他" #: ../../include/contact_widgets.php:11 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d招待可能" +msgstr[1] "%d招待可能" #: ../../include/contact_widgets.php:16 ../../Zotlabs/Module/Admin/Site.php:293 msgid "Advanced" -msgstr "" +msgstr "高度な" #: ../../include/contact_widgets.php:19 msgid "Find Channels" -msgstr "" +msgstr "チャンネルを探す" #: ../../include/contact_widgets.php:20 msgid "Enter name or interest" -msgstr "" +msgstr "名前または興味を入力してください" #: ../../include/contact_widgets.php:21 msgid "Connect/Follow" -msgstr "" +msgstr "接続/フォロー" #: ../../include/contact_widgets.php:22 msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" +msgstr "例:Robert Morgenstein、釣り" #: ../../include/contact_widgets.php:23 #: ../../Zotlabs/Module/Connections.php:355 #: ../../Zotlabs/Module/Directory.php:405 #: ../../Zotlabs/Module/Directory.php:410 msgid "Find" -msgstr "" +msgstr "見つける" #: ../../include/contact_widgets.php:24 ../../Zotlabs/Module/Directory.php:409 #: ../../Zotlabs/Module/Suggest.php:79 msgid "Channel Suggestions" -msgstr "" +msgstr "チャンネルの提案" #: ../../include/contact_widgets.php:26 msgid "Random Profile" -msgstr "" +msgstr "ランダムプロファイル" #: ../../include/contact_widgets.php:27 msgid "Invite Friends" -msgstr "" +msgstr "友達を招待" #: ../../include/contact_widgets.php:29 msgid "Advanced example: name=fred and country=iceland" -msgstr "" +msgstr "高度な例:name = fredおよびcountry = iceland" #: ../../include/contact_widgets.php:53 ../../include/features.php:325 #: ../../Zotlabs/Widget/Activity_filter.php:137 #: ../../Zotlabs/Widget/Filer.php:28 msgid "Saved Folders" -msgstr "" +msgstr "保存されたフォルダー" #: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:99 #: ../../include/contact_widgets.php:142 ../../include/contact_widgets.php:187 #: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 msgid "Everything" -msgstr "" +msgstr "すべて" #: ../../include/contact_widgets.php:96 ../../include/contact_widgets.php:139 #: ../../include/contact_widgets.php:184 ../../include/taxonomy.php:409 #: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511 #: ../../include/taxonomy.php:532 ../../Zotlabs/Widget/Appcategories.php:43 msgid "Categories" -msgstr "" +msgstr "カテゴリー" #: ../../include/contact_widgets.php:218 msgid "Common Connections" -msgstr "" +msgstr "共通接続" #: ../../include/contact_widgets.php:222 #, php-format msgid "View all %d common connections" -msgstr "" +msgstr "すべての%d共通接続を表示" #: ../../include/conversation.php:116 ../../include/text.php:2104 #: ../../Zotlabs/Lib/Activity.php:2002 ../../Zotlabs/Module/Like.php:392 #: ../../Zotlabs/Module/Subthread.php:112 ../../Zotlabs/Module/Tagger.php:69 msgid "photo" -msgstr "" +msgstr "写真" #: ../../include/conversation.php:119 ../../include/event.php:1169 #: ../../include/text.php:2107 ../../Zotlabs/Module/Events.php:260 #: ../../Zotlabs/Module/Like.php:394 ../../Zotlabs/Module/Tagger.php:73 msgid "event" -msgstr "" +msgstr "出来事" #: ../../include/conversation.php:122 ../../Zotlabs/Module/Like.php:123 msgid "channel" -msgstr "" +msgstr "チャネル" #: ../../include/conversation.php:144 ../../include/text.php:2110 #: ../../Zotlabs/Lib/Activity.php:2002 ../../Zotlabs/Module/Like.php:392 #: ../../Zotlabs/Module/Subthread.php:112 msgid "status" -msgstr "" +msgstr "状態" #: ../../include/conversation.php:146 ../../include/text.php:2112 #: ../../Zotlabs/Module/Tagger.php:79 msgid "comment" -msgstr "" +msgstr "コメント" #: ../../include/conversation.php:160 ../../Zotlabs/Lib/Activity.php:2037 #: ../../Zotlabs/Module/Like.php:447 #, php-format msgid "%1$s likes %2$s's %3$s" -msgstr "" +msgstr "%1$sが%2$sの%3$s気に入っています" #: ../../include/conversation.php:163 ../../Zotlabs/Lib/Activity.php:2039 #: ../../Zotlabs/Module/Like.php:449 #, php-format msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" +msgstr "%1$sは%2$sの%3$s好きではありません" #: ../../include/conversation.php:169 #, php-format msgid "likes %1$s's %2$s" -msgstr "" +msgstr "%1$sの%2$sが好き" #: ../../include/conversation.php:172 #, php-format msgid "doesn't like %1$s's %2$s" -msgstr "" +msgstr "%1$sの%2$sが気に入らない" #: ../../include/conversation.php:212 #, php-format msgid "%1$s is now connected with %2$s" -msgstr "" +msgstr "%1$sは%2$s接続されました" #: ../../include/conversation.php:247 #, php-format msgid "%1$s poked %2$s" -msgstr "" +msgstr "%1$s %2$sを突破しました" #: ../../include/conversation.php:251 ../../include/text.php:1176 #: ../../include/text.php:1180 msgid "poked" -msgstr "" +msgstr "突く" #: ../../include/conversation.php:268 ../../Zotlabs/Module/Mood.php:76 #, php-format msgctxt "mood" msgid "%1$s is %2$s" -msgstr "" +msgstr "%1$sは%2$s" #: ../../include/conversation.php:483 ../../Zotlabs/Lib/ThreadItem.php:468 msgid "This is an unsaved preview" -msgstr "" +msgstr "これは未保存のプレビューです" #: ../../include/conversation.php:619 ../../Zotlabs/Module/Photos.php:1154 msgctxt "title" msgid "Likes" -msgstr "" +msgstr "いいね" #: ../../include/conversation.php:619 ../../Zotlabs/Module/Photos.php:1154 msgctxt "title" msgid "Dislikes" -msgstr "" +msgstr "嫌い" #: ../../include/conversation.php:620 ../../Zotlabs/Module/Photos.php:1155 msgctxt "title" msgid "Agree" -msgstr "" +msgstr "同意する" #: ../../include/conversation.php:620 ../../Zotlabs/Module/Photos.php:1155 msgctxt "title" msgid "Disagree" -msgstr "" +msgstr "同意しない" #: ../../include/conversation.php:620 ../../Zotlabs/Module/Photos.php:1155 msgctxt "title" msgid "Abstain" -msgstr "" +msgstr "棄権" #: ../../include/conversation.php:621 ../../Zotlabs/Module/Photos.php:1156 msgctxt "title" msgid "Attending" -msgstr "" +msgstr "出席中" #: ../../include/conversation.php:621 ../../Zotlabs/Module/Photos.php:1156 msgctxt "title" msgid "Not attending" -msgstr "" +msgstr "出席しない" #: ../../include/conversation.php:621 ../../Zotlabs/Module/Photos.php:1156 msgctxt "title" msgid "Might attend" -msgstr "" +msgstr "出席するかもしれない" #: ../../include/conversation.php:690 ../../Zotlabs/Lib/ThreadItem.php:177 msgid "Select" -msgstr "" +msgstr "選択してください" #: ../../include/conversation.php:691 ../../include/conversation.php:736 #: ../../Zotlabs/Lib/Apps.php:559 ../../Zotlabs/Lib/ThreadItem.php:167 @@ -1115,121 +1115,121 @@ msgstr "" #: ../../Zotlabs/Module/Thing.php:267 ../../Zotlabs/Module/Webpages.php:257 #: ../../Zotlabs/Storage/Browser.php:297 msgid "Delete" -msgstr "" +msgstr "削除する" #: ../../include/conversation.php:695 ../../Zotlabs/Lib/ThreadItem.php:266 msgid "Toggle Star Status" -msgstr "" +msgstr "スターステータスの切り替え" #: ../../include/conversation.php:700 ../../Zotlabs/Lib/ThreadItem.php:102 msgid "Private Message" -msgstr "" +msgstr "プライベートメッセージ" #: ../../include/conversation.php:707 ../../Zotlabs/Lib/ThreadItem.php:277 msgid "Message signature validated" -msgstr "" +msgstr "検証されたメッセージ署名" #: ../../include/conversation.php:708 ../../Zotlabs/Lib/ThreadItem.php:278 msgid "Message signature incorrect" -msgstr "" +msgstr "メッセージ署名が正しくありません" #: ../../include/conversation.php:735 #: ../../Zotlabs/Module/Admin/Accounts.php:173 #: ../../Zotlabs/Module/Connections.php:320 msgid "Approve" -msgstr "" +msgstr "承認する" #: ../../include/conversation.php:739 #, php-format msgid "View %s's profile @ %s" -msgstr "" +msgstr "%sのプロフィール@ %s" #: ../../include/conversation.php:759 msgid "Categories:" -msgstr "" +msgstr "カテゴリー:" #: ../../include/conversation.php:760 msgid "Filed under:" -msgstr "" +msgstr "下に提出:" #: ../../include/conversation.php:766 ../../Zotlabs/Lib/ThreadItem.php:402 #, php-format msgid "from %s" -msgstr "" +msgstr "%sから" #: ../../include/conversation.php:769 ../../Zotlabs/Lib/ThreadItem.php:405 #, php-format msgid "last edited: %s" -msgstr "" +msgstr "最終編集: %s" #: ../../include/conversation.php:770 ../../Zotlabs/Lib/ThreadItem.php:406 #, php-format msgid "Expires: %s" -msgstr "" +msgstr "有効期限: %s" #: ../../include/conversation.php:785 msgid "View in context" -msgstr "" +msgstr "コンテキストで表示" #: ../../include/conversation.php:787 ../../Zotlabs/Lib/ThreadItem.php:469 #: ../../Zotlabs/Module/Photos.php:1118 msgid "Please wait" -msgstr "" +msgstr "お待ちください" #: ../../include/conversation.php:886 msgid "remove" -msgstr "" +msgstr "取り除く" #: ../../include/conversation.php:890 msgid "Loading..." -msgstr "" +msgstr "読み込み中..." #: ../../include/conversation.php:891 ../../Zotlabs/Lib/ThreadItem.php:290 msgid "Conversation Tools" -msgstr "" +msgstr "会話ツール" #: ../../include/conversation.php:892 msgid "Delete Selected Items" -msgstr "" +msgstr "選択したアイテムを削除" #: ../../include/conversation.php:935 msgid "View Source" -msgstr "" +msgstr "ソースを見る" #: ../../include/conversation.php:945 msgid "Follow Thread" -msgstr "" +msgstr "スレッドをフォロー" #: ../../include/conversation.php:954 msgid "Unfollow Thread" -msgstr "" +msgstr "スレッドをフォロー解除" #: ../../include/conversation.php:1038 ../../include/nav.php:110 #: ../../Zotlabs/Lib/Apps.php:343 ../../Zotlabs/Module/Connedit.php:608 msgid "View Profile" -msgstr "" +msgstr "プロフィールを見る" #: ../../include/conversation.php:1048 ../../Zotlabs/Module/Connedit.php:629 msgid "Recent Activity" -msgstr "" +msgstr "最近の活動" #: ../../include/conversation.php:1068 msgid "Edit Connection" -msgstr "" +msgstr "接続を編集" #: ../../include/conversation.php:1078 msgid "Message" -msgstr "" +msgstr "メッセージ" #: ../../include/conversation.php:1088 ../../Zotlabs/Module/Pubsites.php:35 #: ../../Zotlabs/Module/Ratings.php:97 msgid "Ratings" -msgstr "" +msgstr "評価" #: ../../include/conversation.php:1098 ../../Zotlabs/Lib/Apps.php:350 #: ../../Zotlabs/Module/Poke.php:199 msgid "Poke" -msgstr "" +msgstr "ポーク" #: ../../include/conversation.php:1166 ../../Zotlabs/Lib/Activity.php:1053 #: ../../Zotlabs/Lib/Apps.php:1115 ../../Zotlabs/Lib/Apps.php:1199 @@ -1239,60 +1239,60 @@ msgstr "" #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Album.php:84 #: ../../Zotlabs/Widget/Portfolio.php:95 msgid "Unknown" -msgstr "" +msgstr "道の" #: ../../include/conversation.php:1212 #, php-format msgid "%s likes this." -msgstr "" +msgstr "%sはこれが好きです。" #: ../../include/conversation.php:1212 #, php-format msgid "%s doesn't like this." -msgstr "" +msgstr "%sはこれを%sません。" #: ../../include/conversation.php:1216 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" +msgstr[0] " %2$d人このように。" +msgstr[1] " %2$d人このように。" #: ../../include/conversation.php:1218 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "" +msgstr[0] " %2$d人はこれが好きではありません。" +msgstr[1] " %2$d人はこれが好きではありません。" #: ../../include/conversation.php:1224 msgid "and" -msgstr "" +msgstr "そして" #: ../../include/conversation.php:1227 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "、他%d人" +msgstr[1] "、他%d人" #: ../../include/conversation.php:1228 #, php-format msgid "%s like this." -msgstr "" +msgstr "このような%s 。" #: ../../include/conversation.php:1228 #, php-format msgid "%s don't like this." -msgstr "" +msgstr "%sはこれが好きではありません。" #: ../../include/conversation.php:1285 msgid "Set your location" -msgstr "" +msgstr "場所を設定する" #: ../../include/conversation.php:1286 msgid "Clear browser location" -msgstr "" +msgstr "ブラウザの場所をクリア" #: ../../include/conversation.php:1298 #: ../../Zotlabs/Module/Article_edit.php:101 ../../Zotlabs/Module/Chat.php:222 @@ -1300,38 +1300,38 @@ msgstr "" #: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 #: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 msgid "Insert web link" -msgstr "" +msgstr "Webリンクを挿入" #: ../../include/conversation.php:1302 msgid "Embed (existing) photo from your photo albums" -msgstr "" +msgstr "フォトアルバムから(既存の)写真を埋め込む" #: ../../include/conversation.php:1337 ../../Zotlabs/Module/Chat.php:220 #: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Mail.php:362 msgid "Please enter a link URL:" -msgstr "" +msgstr "リンクURLを入力してください:" #: ../../include/conversation.php:1338 msgid "Tag term:" -msgstr "" +msgstr "タグ用語:" #: ../../include/conversation.php:1339 msgid "Where are you right now?" -msgstr "" +msgstr "今どこにいますか?" #: ../../include/conversation.php:1342 ../../Zotlabs/Module/Cover_photo.php:427 #: ../../Zotlabs/Module/Profile_photo.php:467 ../../Zotlabs/Module/Wiki.php:403 msgid "Choose images to embed" -msgstr "" +msgstr "埋め込む画像を選択" #: ../../include/conversation.php:1343 ../../Zotlabs/Module/Cover_photo.php:428 #: ../../Zotlabs/Module/Profile_photo.php:468 ../../Zotlabs/Module/Wiki.php:404 msgid "Choose an album" -msgstr "" +msgstr "アルバムを選択してください" #: ../../include/conversation.php:1344 msgid "Choose a different album..." -msgstr "" +msgstr "別のアルバムを選択..." #: ../../include/conversation.php:1345 ../../Zotlabs/Module/Cover_photo.php:430 #: ../../Zotlabs/Module/Profile_photo.php:470 ../../Zotlabs/Module/Wiki.php:406 @@ -1346,7 +1346,7 @@ msgstr "フォトリンクの取得に失敗" #: ../../include/conversation.php:1347 ../../Zotlabs/Module/Cover_photo.php:432 #: ../../Zotlabs/Module/Profile_photo.php:472 ../../Zotlabs/Module/Wiki.php:408 msgid "Error getting album" -msgstr "" +msgstr "アルバムの取得エラー" #: ../../include/conversation.php:1348 msgid "Comments enabled" @@ -1429,7 +1429,7 @@ msgstr "キャンセル" #: ../../Zotlabs/Module/Cover_photo.php:426 #: ../../Zotlabs/Module/Profile_photo.php:466 ../../Zotlabs/Module/Wiki.php:402 msgid "OK" -msgstr "" +msgstr "OK" #: ../../include/conversation.php:1418 msgid "Toggle voting" @@ -1466,91 +1466,91 @@ msgstr "他のネットワークと投稿サービス" #: ../../include/conversation.php:1456 ../../Zotlabs/Module/Mail.php:292 #: ../../Zotlabs/Module/Mail.php:434 msgid "Set expiration date" -msgstr "" +msgstr "有効期限を設定する" #: ../../include/conversation.php:1459 msgid "Set publish date" -msgstr "" +msgstr "公開日を設定する" #: ../../include/conversation.php:1461 ../../Zotlabs/Lib/ThreadItem.php:809 #: ../../Zotlabs/Module/Chat.php:221 ../../Zotlabs/Module/Mail.php:294 #: ../../Zotlabs/Module/Mail.php:436 msgid "Encrypt text" -msgstr "" +msgstr "テキストを暗号化する" #: ../../include/conversation.php:1705 ../../Zotlabs/Lib/ThreadItem.php:240 #: ../../Zotlabs/Module/Photos.php:1182 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "嫌い" +msgstr[1] "嫌い" #: ../../include/conversation.php:1708 msgctxt "noun" msgid "Attending" msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "出席中" +msgstr[1] "出席中" #: ../../include/conversation.php:1711 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "出席しない" +msgstr[1] "出席しない" #: ../../include/conversation.php:1714 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "未定" +msgstr[1] "未定" #: ../../include/conversation.php:1717 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "同意する" +msgstr[1] "同意する" #: ../../include/conversation.php:1720 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "同意しない" +msgstr[1] "同意しない" #: ../../include/conversation.php:1723 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "棄権" +msgstr[1] "棄権" #: ../../include/datetime.php:58 ../../Zotlabs/Module/Profiles.php:736 #: ../../Zotlabs/Widget/Newmember.php:51 msgid "Miscellaneous" -msgstr "" +msgstr "雑多" #: ../../include/datetime.php:140 msgid "Birthday" -msgstr "" +msgstr "お誕生日" #: ../../include/datetime.php:140 msgid "Age: " -msgstr "" +msgstr "年齢:" #: ../../include/datetime.php:140 msgid "YYYY-MM-DD or MM-DD" -msgstr "" +msgstr "YYYY-MM-DDまたはMM-DD" #: ../../include/datetime.php:211 ../../Zotlabs/Module/Appman.php:143 #: ../../Zotlabs/Module/Appman.php:144 ../../Zotlabs/Module/Events.php:462 #: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Profiles.php:745 #: ../../Zotlabs/Module/Profiles.php:749 msgid "Required" -msgstr "" +msgstr "必須" #: ../../include/datetime.php:244 msgid "less than a second ago" @@ -1560,494 +1560,494 @@ msgstr "ちょっと前" #, php-format msgctxt "e.g. 22 hours ago, 1 minute ago" msgid "%1$d %2$s ago" -msgstr "" +msgstr "%1$d %2$s前" #: ../../include/datetime.php:273 msgctxt "relative_date" msgid "year" msgid_plural "years" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "年" +msgstr[1] "年" #: ../../include/datetime.php:276 msgctxt "relative_date" msgid "month" msgid_plural "months" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "月" +msgstr[1] "月" #: ../../include/datetime.php:279 msgctxt "relative_date" msgid "week" msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "週間" +msgstr[1] "週間" #: ../../include/datetime.php:282 msgctxt "relative_date" msgid "day" msgid_plural "days" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "日" +msgstr[1] "日" #: ../../include/datetime.php:285 msgctxt "relative_date" msgid "hour" msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "時" +msgstr[1] "時" #: ../../include/datetime.php:288 msgctxt "relative_date" msgid "minute" msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "分" +msgstr[1] "分" #: ../../include/datetime.php:291 msgctxt "relative_date" msgid "second" msgid_plural "seconds" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "第二" +msgstr[1] "第二" #: ../../include/datetime.php:520 #, php-format msgid "%1$s's birthday" -msgstr "" +msgstr "%1$sの誕生日" #: ../../include/datetime.php:521 #, php-format msgid "Happy Birthday %1$s" -msgstr "" +msgstr "お誕生日おめでとう%1$s" #: ../../include/dir_fns.php:141 ../../Zotlabs/Lib/Libzotdir.php:160 msgid "Directory Options" -msgstr "" +msgstr "ディレクトリオプション" #: ../../include/dir_fns.php:143 ../../Zotlabs/Lib/Libzotdir.php:162 msgid "Safe Mode" -msgstr "" +msgstr "セーフモード" #: ../../include/dir_fns.php:144 ../../Zotlabs/Lib/Libzotdir.php:163 msgid "Public Forums Only" -msgstr "" +msgstr "公開フォーラムのみ" #: ../../include/dir_fns.php:145 ../../Zotlabs/Lib/Libzotdir.php:165 msgid "This Website Only" -msgstr "" +msgstr "このウェブサイトのみ" #: ../../include/event.php:31 ../../include/event.php:78 msgid "l F d, Y \\@ g:i A" -msgstr "" +msgstr "l F d、Y \\ @ g:i A" #: ../../include/event.php:39 ../../include/event.php:82 msgid "Starts:" -msgstr "" +msgstr "開始:" #: ../../include/event.php:49 ../../include/event.php:86 msgid "Finishes:" -msgstr "" +msgstr "仕上げ:" #: ../../include/event.php:1023 msgid "This event has been added to your calendar." -msgstr "" +msgstr "このイベントはカレンダーに追加されました。" #: ../../include/event.php:1244 msgid "Not specified" -msgstr "" +msgstr "指定されていない" #: ../../include/event.php:1245 msgid "Needs Action" -msgstr "" +msgstr "アクションが必要" #: ../../include/event.php:1246 msgid "Completed" -msgstr "" +msgstr "完成しました" #: ../../include/event.php:1247 msgid "In Process" -msgstr "" +msgstr "処理中" #: ../../include/event.php:1248 msgid "Cancelled" -msgstr "" +msgstr "キャンセル" #: ../../include/features.php:55 ../../Zotlabs/Module/Admin/Features.php:55 #: ../../Zotlabs/Module/Admin/Features.php:56 #: ../../Zotlabs/Module/Settings/Features.php:36 msgid "Off" -msgstr "" +msgstr "オフ" #: ../../include/features.php:55 ../../Zotlabs/Module/Admin/Features.php:55 #: ../../Zotlabs/Module/Admin/Features.php:56 #: ../../Zotlabs/Module/Settings/Features.php:36 msgid "On" -msgstr "" +msgstr "に" #: ../../include/features.php:82 ../../Zotlabs/Lib/Apps.php:366 msgid "CalDAV" -msgstr "" +msgstr "CalDAV" #: ../../include/features.php:86 ../../include/features.php:273 msgid "Start calendar week on Monday" -msgstr "" +msgstr "月曜日に週を開始" #: ../../include/features.php:87 ../../include/features.php:274 msgid "Default is Sunday" -msgstr "" +msgstr "デフォルトは日曜日です" #: ../../include/features.php:96 ../../Zotlabs/Lib/Apps.php:342 msgid "Channel Home" -msgstr "" +msgstr "チャンネルホーム" #: ../../include/features.php:100 msgid "Search by Date" -msgstr "" +msgstr "日付で検索" #: ../../include/features.php:101 msgid "Ability to select posts by date ranges" -msgstr "" +msgstr "日付範囲で投稿を選択する機能" #: ../../include/features.php:108 msgid "Tag Cloud" -msgstr "" +msgstr "タグクラウド" #: ../../include/features.php:109 msgid "Provide a personal tag cloud on your channel page" -msgstr "" +msgstr "チャンネルページで個人タグクラウドを提供する" #: ../../include/features.php:116 ../../include/features.php:365 msgid "Use blog/list mode" -msgstr "" +msgstr "ブログ/リストモードを使用する" #: ../../include/features.php:117 ../../include/features.php:366 msgid "Comments will be displayed separately" -msgstr "" +msgstr "コメントは個別に表示されます" #: ../../include/features.php:125 ../../include/text.php:991 #: ../../Zotlabs/Lib/Apps.php:332 ../../Zotlabs/Module/Connections.php:348 msgid "Connections" -msgstr "" +msgstr "接続" #: ../../include/features.php:129 msgid "Connection Filtering" -msgstr "" +msgstr "接続フィルタリング" #: ../../include/features.php:130 msgid "Filter incoming posts from connections based on keywords/content" -msgstr "" +msgstr "キーワード/コンテンツに基づいて接続からの受信投稿をフィルタリングする" #: ../../include/features.php:138 msgid "Conversation" -msgstr "" +msgstr "会話" #: ../../include/features.php:142 msgid "Community Tagging" -msgstr "" +msgstr "コミュニティのタグ付け" #: ../../include/features.php:143 msgid "Ability to tag existing posts" -msgstr "" +msgstr "既存の投稿にタグを付ける機能" #: ../../include/features.php:150 msgid "Emoji Reactions" -msgstr "" +msgstr "絵文字反応" #: ../../include/features.php:151 msgid "Add emoji reaction ability to posts" -msgstr "" +msgstr "絵文字反応機能を投稿に追加する" #: ../../include/features.php:158 msgid "Dislike Posts" -msgstr "" +msgstr "投稿を嫌う" #: ../../include/features.php:159 msgid "Ability to dislike posts/comments" -msgstr "" +msgstr "投稿/コメントを嫌う能力" #: ../../include/features.php:166 msgid "Star Posts" -msgstr "" +msgstr "スター投稿" #: ../../include/features.php:167 msgid "Ability to mark special posts with a star indicator" -msgstr "" +msgstr "星印で特別な投稿をマークする機能" #: ../../include/features.php:176 ../../Zotlabs/Lib/Apps.php:346 msgid "Directory" -msgstr "" +msgstr "ディレクトリ" #: ../../include/features.php:180 msgid "Advanced Directory Search" -msgstr "" +msgstr "高度なディレクトリ検索" #: ../../include/features.php:181 msgid "Allows creation of complex directory search queries" -msgstr "" +msgstr "複雑なディレクトリ検索クエリを作成できます" #: ../../include/features.php:190 msgid "Editor" -msgstr "" +msgstr "編集者" #: ../../include/features.php:194 msgid "Post Categories" -msgstr "" +msgstr "投稿カテゴリ" #: ../../include/features.php:195 msgid "Add categories to your posts" -msgstr "" +msgstr "投稿にカテゴリを追加する" #: ../../include/features.php:203 msgid "Large Photos" -msgstr "" +msgstr "大きい写真" #: ../../include/features.php:204 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" -msgstr "" +msgstr "投稿に大きな(1024px)写真のサムネイルを含める。有効になっていない場合は、小さい(640ピクセル)写真のサムネイルを使用します" #: ../../include/features.php:211 msgid "Even More Encryption" -msgstr "" +msgstr "さらに暗号化" #: ../../include/features.php:212 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" -msgstr "" +msgstr "共有秘密鍵を使用して、エンドツーエンドのコンテンツのオプションの暗号化を許可します" #: ../../include/features.php:219 msgid "Enable Voting Tools" -msgstr "" +msgstr "投票ツールを有効にする" #: ../../include/features.php:220 msgid "Provide a class of post which others can vote on" -msgstr "" +msgstr "他の人が投票できる投稿のクラスを提供する" #: ../../include/features.php:227 msgid "Disable Comments" -msgstr "" +msgstr "コメントを無効にする" #: ../../include/features.php:228 msgid "Provide the option to disable comments for a post" -msgstr "" +msgstr "投稿のコメントを無効にするオプションを提供します" #: ../../include/features.php:235 msgid "Delayed Posting" -msgstr "" +msgstr "遅延投稿" #: ../../include/features.php:236 msgid "Allow posts to be published at a later date" -msgstr "" +msgstr "投稿を後日公開することを許可する" #: ../../include/features.php:243 msgid "Content Expiration" -msgstr "" +msgstr "コンテンツの有効期限" #: ../../include/features.php:244 msgid "Remove posts/comments and/or private messages at a future time" -msgstr "" +msgstr "将来、投稿/コメントやプライベートメッセージを削除する" #: ../../include/features.php:251 msgid "Suppress Duplicate Posts/Comments" -msgstr "" +msgstr "重複する投稿/コメントを抑制する" #: ../../include/features.php:252 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." -msgstr "" +msgstr "同一のコンテンツを含む投稿が、送信と送信の間に2分未満で公開されるのを防ぎます。" #: ../../include/features.php:259 msgid "Auto-save drafts of posts and comments" -msgstr "" +msgstr "投稿とコメントの下書きを自動保存する" #: ../../include/features.php:260 msgid "" "Automatically saves post and comment drafts in local browser storage to help " "prevent accidental loss of compositions" -msgstr "" +msgstr "投稿やコメントの下書きをローカルのブラウザストレージに自動的に保存して、誤って楽曲を失うのを防ぎます" #: ../../include/features.php:269 ../../Zotlabs/Lib/Apps.php:345 msgid "Events" -msgstr "" +msgstr "イベント" #: ../../include/features.php:281 msgid "Smart Birthdays" -msgstr "" +msgstr "スマートバースデー" #: ../../include/features.php:282 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." -msgstr "" +msgstr "友人が地球上に散らばっている場合に備えて、誕生日イベントのタイムゾーンを認識させます。" #: ../../include/features.php:289 msgid "Event Timezone Selection" -msgstr "" +msgstr "イベントタイムゾーンの選択" #: ../../include/features.php:290 msgid "Allow event creation in timezones other than your own." -msgstr "" +msgstr "自分以外のタイムゾーンでのイベント作成を許可します。" #: ../../include/features.php:299 msgid "Manage" -msgstr "" +msgstr "管理する" #: ../../include/features.php:303 msgid "Navigation Channel Select" -msgstr "" +msgstr "ナビゲーションチャネルの選択" #: ../../include/features.php:304 msgid "Change channels directly from within the navigation dropdown menu" -msgstr "" +msgstr "ナビゲーションドロップダウンメニューから直接チャネルを変更します" #: ../../include/features.php:313 ../../Zotlabs/Module/Connections.php:310 msgid "Network" -msgstr "" +msgstr "ネットワーク" #: ../../include/features.php:317 ../../Zotlabs/Widget/Savedsearch.php:83 msgid "Saved Searches" -msgstr "" +msgstr "保存された検索" #: ../../include/features.php:318 msgid "Save search terms for re-use" -msgstr "" +msgstr "再利用のために検索語を保存する" #: ../../include/features.php:326 msgid "Ability to file posts under folders" -msgstr "" +msgstr "フォルダーの下に投稿をファイルする機能" #: ../../include/features.php:333 msgid "Alternate Stream Order" -msgstr "" +msgstr "代替ストリーム順序" #: ../../include/features.php:334 msgid "" "Ability to order the stream by last post date, last comment date or " "unthreaded activities" -msgstr "" +msgstr "最終投稿日、最終コメント日、またはスレッド化されていないアクティビティでストリームを順序付けする機能" #: ../../include/features.php:341 msgid "Contact Filter" -msgstr "" +msgstr "連絡先フィルター" #: ../../include/features.php:342 msgid "Ability to display only posts of a selected contact" -msgstr "" +msgstr "選択した連絡先の投稿のみを表示する機能" #: ../../include/features.php:349 msgid "Forum Filter" -msgstr "" +msgstr "フォーラムフィルター" #: ../../include/features.php:350 msgid "Ability to display only posts of a specific forum" -msgstr "" +msgstr "特定のフォーラムの投稿のみを表示する機能" #: ../../include/features.php:357 msgid "Personal Posts Filter" -msgstr "" +msgstr "個人投稿フィルター" #: ../../include/features.php:358 msgid "Ability to display only posts that you've interacted on" -msgstr "" +msgstr "やり取りした投稿のみを表示する機能" #: ../../include/features.php:375 ../../include/nav.php:446 #: ../../Zotlabs/Lib/Apps.php:344 ../../Zotlabs/Module/Fbrowser.php:29 msgid "Photos" -msgstr "" +msgstr "写真" #: ../../include/features.php:379 msgid "Photo Location" -msgstr "" +msgstr "写真の場所" #: ../../include/features.php:380 msgid "If location data is available on uploaded photos, link this to a map." -msgstr "" +msgstr "アップロードされた写真で位置データが利用できる場合、これを地図にリンクします。" #: ../../include/features.php:389 ../../Zotlabs/Lib/Apps.php:362 msgid "Profiles" -msgstr "" +msgstr "プロフィール" #: ../../include/features.php:393 msgid "Advanced Profiles" -msgstr "" +msgstr "高度なプロファイル" #: ../../include/features.php:394 msgid "Additional profile sections and selections" -msgstr "" +msgstr "追加のプロファイルセクションと選択" #: ../../include/features.php:401 msgid "Profile Import/Export" -msgstr "" +msgstr "プロファイルのインポート/エクスポート" #: ../../include/features.php:402 msgid "Save and load profile details across sites/channels" -msgstr "" +msgstr "サイト/チャネル全体でプロファイルの詳細を保存およびロードします" #: ../../include/features.php:409 msgid "Multiple Profiles" -msgstr "" +msgstr "複数のプロファイル" #: ../../include/features.php:410 msgid "Ability to create multiple profiles" -msgstr "" +msgstr "複数のプロファイルを作成する機能" #: ../../include/feedutils.php:858 ../../include/text.php:1504 msgid "unknown" -msgstr "" +msgstr "道の" #: ../../include/follow.php:37 msgid "Channel is blocked on this site." -msgstr "" +msgstr "このサイトでチャンネルがブロックされています。" #: ../../include/follow.php:42 msgid "Channel location missing." -msgstr "" +msgstr "チャンネルの場所がありません。" #: ../../include/follow.php:84 msgid "Response from remote channel was incomplete." -msgstr "" +msgstr "リモートチャネルからの応答が不完全でした。" #: ../../include/follow.php:96 msgid "Premium channel - please visit:" -msgstr "" +msgstr "プレミアムチャンネル-をご覧ください:" #: ../../include/follow.php:110 msgid "Channel was deleted and no longer exists." -msgstr "" +msgstr "チャンネルは削除され、存在しなくなりました。" #: ../../include/follow.php:166 msgid "Remote channel or protocol unavailable." -msgstr "" +msgstr "リモートチャネルまたはプロトコルが利用できません。" #: ../../include/follow.php:189 msgid "Channel discovery failed." -msgstr "" +msgstr "チャネルの検出に失敗しました。" #: ../../include/follow.php:201 msgid "Protocol disabled." -msgstr "" +msgstr "プロトコルが無効です。" #: ../../include/follow.php:212 msgid "Cannot connect to yourself." -msgstr "" +msgstr "自分に接続できません。" #: ../../include/group.php:22 ../../Zotlabs/Lib/Group.php:28 msgid "" "A deleted group with this name was revived. Existing item permissions " "may apply to this group and any future members. If this is " "not what you intended, please create another group with a different name." -msgstr "" +msgstr "この名前の削除されたグループが復活しました。既存のアイテムの権限は、このグループと将来のメンバーに適用される可能性があります 。これが意図したものでない場合は、別の名前で別のグループを作成してください。" #: ../../include/group.php:264 ../../Zotlabs/Lib/Group.php:270 msgid "Add new connections to this privacy group" -msgstr "" +msgstr "このプライバシーグループに新しい接続を追加します" #: ../../include/group.php:298 ../../Zotlabs/Lib/Group.php:302 msgid "edit" -msgstr "" +msgstr "編集する" #: ../../include/group.php:320 ../../include/nav.php:99 #: ../../Zotlabs/Lib/Apps.php:363 ../../Zotlabs/Lib/Group.php:324 @@ -2058,34 +2058,34 @@ msgstr "プライバシーグループ" #: ../../include/group.php:321 ../../Zotlabs/Lib/Group.php:325 msgid "Edit group" -msgstr "" +msgstr "グループを編集" #: ../../include/group.php:322 ../../Zotlabs/Lib/Group.php:326 msgid "Add privacy group" -msgstr "" +msgstr "プライバシーグループを追加" #: ../../include/group.php:323 ../../Zotlabs/Lib/Group.php:327 msgid "Channels not in any privacy group" -msgstr "" +msgstr "プライバシーグループに属さないチャンネル" #: ../../include/group.php:325 ../../Zotlabs/Lib/Group.php:329 #: ../../Zotlabs/Widget/Savedsearch.php:84 msgid "add" -msgstr "" +msgstr "加える" #: ../../include/help.php:80 msgid "Help:" -msgstr "" +msgstr "助けて:" #: ../../include/help.php:117 ../../include/help.php:125 #: ../../include/nav.php:172 ../../include/nav.php:322 #: ../../Zotlabs/Lib/Apps.php:347 ../../Zotlabs/Module/Layouts.php:186 msgid "Help" -msgstr "" +msgstr "助けて" #: ../../include/help.php:129 msgid "Not Found" -msgstr "" +msgstr "見つかりません" #: ../../include/help.php:132 ../../Zotlabs/Lib/NativeWikiPage.php:521 #: ../../Zotlabs/Module/Block.php:77 ../../Zotlabs/Module/Display.php:140 @@ -2093,24 +2093,24 @@ msgstr "" #: ../../Zotlabs/Module/Display.php:180 ../../Zotlabs/Module/Page.php:136 #: ../../Zotlabs/Web/Router.php:185 msgid "Page not found." -msgstr "" +msgstr "ページが見つかりません。" #: ../../include/import.php:26 msgid "Unable to import a removed channel." -msgstr "" +msgstr "削除されたチャンネルをインポートできません。" #: ../../include/import.php:52 msgid "" "Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "" +msgstr "このシステムに重複したチャネル識別子を作成できません。インポートに失敗しました。" #: ../../include/import.php:73 msgid "Unable to create a unique channel address. Import failed." -msgstr "" +msgstr "一意のチャネルアドレスを作成できません。インポートに失敗しました。" #: ../../include/import.php:117 msgid "Cloned channel not found. Import failed." -msgstr "" +msgstr "複製されたチャンネルが見つかりません。インポートに失敗しました。" #: ../../include/items.php:416 ../../Zotlabs/Module/Cloud.php:126 #: ../../Zotlabs/Module/Group.php:98 ../../Zotlabs/Module/Import_items.php:120 @@ -2119,44 +2119,44 @@ msgstr "" #: ../../Zotlabs/Module/Share.php:71 ../../Zotlabs/Module/Subthread.php:86 #: ../../Zotlabs/Web/WebServer.php:122 msgid "Permission denied" -msgstr "" +msgstr "アクセス拒否" #: ../../include/items.php:965 ../../include/items.php:1025 msgid "(Unknown)" -msgstr "" +msgstr "(道の)" #: ../../include/items.php:1213 msgid "Visible to anybody on the internet." -msgstr "" +msgstr "インターネット上の誰でも閲覧できます。" #: ../../include/items.php:1215 msgid "Visible to you only." -msgstr "" +msgstr "あなただけに表示されます。" #: ../../include/items.php:1217 msgid "Visible to anybody in this network." -msgstr "" +msgstr "このネットワーク内のすべてのユーザーに表示されます。" #: ../../include/items.php:1219 msgid "Visible to anybody authenticated." -msgstr "" +msgstr "認証されたすべてのユーザーに表示されます。" #: ../../include/items.php:1221 #, php-format msgid "Visible to anybody on %s." -msgstr "" +msgstr "%s誰でも閲覧できます。" #: ../../include/items.php:1223 msgid "Visible to all connections." -msgstr "" +msgstr "すべての接続に表示されます。" #: ../../include/items.php:1225 msgid "Visible to approved connections." -msgstr "" +msgstr "承認された接続に表示されます。" #: ../../include/items.php:1227 msgid "Visible to specific connections." -msgstr "" +msgstr "特定の接続に表示されます。" #: ../../include/items.php:3713 ../../Zotlabs/Module/Admin/Addons.php:259 #: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Admin.php:62 @@ -2164,81 +2164,81 @@ msgstr "" #: ../../Zotlabs/Module/Filestorage.php:26 ../../Zotlabs/Module/Thing.php:94 #: ../../Zotlabs/Module/Viewsrc.php:25 msgid "Item not found." -msgstr "" +msgstr "アイテムが見つかりません。" #: ../../include/items.php:4295 ../../Zotlabs/Module/Group.php:61 #: ../../Zotlabs/Module/Group.php:213 msgid "Privacy group not found." -msgstr "" +msgstr "プライバシーグループが見つかりません。" #: ../../include/items.php:4311 msgid "Privacy group is empty." -msgstr "" +msgstr "プライバシーグループが空です。" #: ../../include/items.php:4318 #, php-format msgid "Privacy group: %s" -msgstr "" +msgstr "プライバシーグループ: %s" #: ../../include/items.php:4328 ../../Zotlabs/Module/Connedit.php:867 #, php-format msgid "Connection: %s" -msgstr "" +msgstr "接続: %s" #: ../../include/items.php:4330 msgid "Connection not found." -msgstr "" +msgstr "接続が見つかりません。" #: ../../include/items.php:4672 ../../Zotlabs/Module/Cover_photo.php:294 msgid "female" -msgstr "" +msgstr "女性" #: ../../include/items.php:4673 ../../Zotlabs/Module/Cover_photo.php:295 #, php-format msgid "%1$s updated her %2$s" -msgstr "" +msgstr "%1$s彼女の%2$s更新しました" #: ../../include/items.php:4674 ../../Zotlabs/Module/Cover_photo.php:296 msgid "male" -msgstr "" +msgstr "男性" #: ../../include/items.php:4675 ../../Zotlabs/Module/Cover_photo.php:297 #, php-format msgid "%1$s updated his %2$s" -msgstr "" +msgstr "%1$s彼の%2$s更新しました" #: ../../include/items.php:4677 ../../Zotlabs/Module/Cover_photo.php:299 #, php-format msgid "%1$s updated their %2$s" -msgstr "" +msgstr "%1$sが%2$s更新しました" #: ../../include/items.php:4679 msgid "profile photo" -msgstr "" +msgstr "プロフィール写真" #: ../../include/items.php:4871 #, php-format msgid "[Edited %s]" -msgstr "" +msgstr "[ %s編集]" #: ../../include/items.php:4871 msgctxt "edit_activity" msgid "Post" -msgstr "" +msgstr "役職" #: ../../include/items.php:4871 msgctxt "edit_activity" msgid "Comment" -msgstr "" +msgstr "コメント" #: ../../include/js_strings.php:5 msgid "Delete this item?" -msgstr "" +msgstr "このアイテムを削除しますか?" #: ../../include/js_strings.php:6 ../../Zotlabs/Lib/ThreadItem.php:794 #: ../../Zotlabs/Module/Photos.php:1137 ../../Zotlabs/Module/Photos.php:1256 msgid "Comment" -msgstr "" +msgstr "コメント" #: ../../include/js_strings.php:7 ../../Zotlabs/Lib/ThreadItem.php:501 #, php-format @@ -2253,12 +2253,12 @@ msgstr "%s 畳む" #: ../../include/js_strings.php:9 #, php-format msgid "%s expand" -msgstr "" +msgstr "%s展開します" #: ../../include/js_strings.php:10 #, php-format msgid "%s collapse" -msgstr "" +msgstr "%s崩壊" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -2282,28 +2282,28 @@ msgstr "パスフレーズヒント" #: ../../include/js_strings.php:16 msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "" +msgstr "注意:権限は変更されましたが、まだ送信されていません。" #: ../../include/js_strings.php:17 msgid "close all" -msgstr "" +msgstr "すべて閉じる" #: ../../include/js_strings.php:18 msgid "Nothing new here" -msgstr "" +msgstr "ここに新しいものはありません" #: ../../include/js_strings.php:19 msgid "Rate This Channel (this is public)" -msgstr "" +msgstr "このチャンネルを評価(これは公開です)" #: ../../include/js_strings.php:20 ../../Zotlabs/Module/Connedit.php:887 #: ../../Zotlabs/Module/Rate.php:155 msgid "Rating" -msgstr "" +msgstr "格付け" #: ../../include/js_strings.php:21 msgid "Describe (optional)" -msgstr "" +msgstr "説明(オプション)" #: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:94 #: ../../Zotlabs/Lib/ThreadItem.php:795 @@ -2362,111 +2362,111 @@ msgstr "送信" #: ../../include/js_strings.php:23 msgid "Please enter a link URL" -msgstr "" +msgstr "リンクURLを入力してください" #: ../../include/js_strings.php:24 msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "" +msgstr "未保存の変更。このページから移動してもよろしいですか?" #: ../../include/js_strings.php:25 ../../Zotlabs/Module/Cdav.php:940 #: ../../Zotlabs/Module/Events.php:477 ../../Zotlabs/Module/Locs.php:117 #: ../../Zotlabs/Module/Profiles.php:509 ../../Zotlabs/Module/Profiles.php:734 #: ../../Zotlabs/Module/Pubsites.php:52 msgid "Location" -msgstr "" +msgstr "ロケーション" #: ../../include/js_strings.php:26 msgid "lovely" -msgstr "" +msgstr "素敵な" #: ../../include/js_strings.php:27 msgid "wonderful" -msgstr "" +msgstr "素晴らしい" #: ../../include/js_strings.php:28 msgid "fantastic" -msgstr "" +msgstr "幻想的" #: ../../include/js_strings.php:29 msgid "great" -msgstr "" +msgstr "すばらしいです" #: ../../include/js_strings.php:30 msgid "" "Your chosen nickname was either already taken or not valid. Please use our " "suggestion (" -msgstr "" +msgstr "選択したニックネームはすでに使用されているか、無効です。提案を使用してください(" #: ../../include/js_strings.php:31 msgid ") or enter a new one." -msgstr "" +msgstr ")または新しいものを入力します。" #: ../../include/js_strings.php:32 msgid "Thank you, this nickname is valid." -msgstr "" +msgstr "ありがとう、このニックネームは有効です。" #: ../../include/js_strings.php:33 msgid "A channel name is required." -msgstr "" +msgstr "チャンネル名が必要です。" #: ../../include/js_strings.php:34 msgid "This is a " -msgstr "" +msgstr "これは" #: ../../include/js_strings.php:35 msgid " channel name" -msgstr "" +msgstr "チャンネル名" #: ../../include/js_strings.php:41 #, php-format msgid "%d minutes" msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d分" +msgstr[1] "%d分" #: ../../include/js_strings.php:42 #, php-format msgid "about %d hours" msgid_plural "about %d hours" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "約%d時間" +msgstr[1] "約%d時間" #: ../../include/js_strings.php:43 #, php-format msgid "%d days" msgid_plural "%d days" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d日" +msgstr[1] "%d日" #: ../../include/js_strings.php:44 #, php-format msgid "%d months" msgid_plural "%d months" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%dか月" +msgstr[1] "%dか月" #: ../../include/js_strings.php:45 #, php-format msgid "%d years" msgid_plural "%d years" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d年" +msgstr[1] "%d年" #: ../../include/js_strings.php:50 msgid "timeago.prefixAgo" -msgstr "" +msgstr "timeago.prefixAgo" #: ../../include/js_strings.php:51 msgid "timeago.prefixFromNow" -msgstr "" +msgstr "timeago.prefixFromNow" #: ../../include/js_strings.php:52 msgid "timeago.suffixAgo" -msgstr "" +msgstr "timeago.suffixAgo" #: ../../include/js_strings.php:53 msgid "timeago.suffixFromNow" -msgstr "" +msgstr "timeago.suffixFromNow" #: ../../include/js_strings.php:56 msgid "less than a minute" @@ -2494,11 +2494,11 @@ msgstr "一年前" #: ../../include/js_strings.php:67 msgid " " -msgstr "" +msgstr " " #: ../../include/js_strings.php:68 msgid "timeago.numbers" -msgstr "" +msgstr "timeago.numbers" #: ../../include/js_strings.php:70 ../../include/text.php:1428 msgid "January" @@ -2657,72 +2657,72 @@ msgstr "土" #: ../../include/js_strings.php:108 msgctxt "calendar" msgid "today" -msgstr "" +msgstr "今日" #: ../../include/js_strings.php:109 msgctxt "calendar" msgid "month" -msgstr "" +msgstr "月" #: ../../include/js_strings.php:110 msgctxt "calendar" msgid "week" -msgstr "" +msgstr "週間" #: ../../include/js_strings.php:111 msgctxt "calendar" msgid "day" -msgstr "" +msgstr "日" #: ../../include/js_strings.php:112 msgctxt "calendar" msgid "All day" -msgstr "" +msgstr "一日中" #: ../../include/language.php:423 ../../include/text.php:1948 msgid "default" -msgstr "" +msgstr "デフォルト" #: ../../include/language.php:436 msgid "Select an alternate language" -msgstr "" +msgstr "別の言語を選択してください" #: ../../include/message.php:13 ../../include/text.php:1778 msgid "Download binary/encrypted content" -msgstr "" +msgstr "バイナリ/暗号化コンテンツをダウンロードする" #: ../../include/message.php:41 msgid "Unable to determine sender." -msgstr "" +msgstr "送信者を特定できません。" #: ../../include/message.php:80 msgid "No recipient provided." -msgstr "" +msgstr "受信者が指定されていません。" #: ../../include/message.php:85 msgid "[no subject]" -msgstr "" +msgstr "[件名なし]" #: ../../include/message.php:215 msgid "Stored post could not be verified." -msgstr "" +msgstr "保存された投稿を確認できませんでした。" #: ../../include/nav.php:90 msgid "Remote authentication" -msgstr "" +msgstr "リモート認証" #: ../../include/nav.php:90 msgid "Click to authenticate to your home hub" -msgstr "" +msgstr "クリックしてホームハブの認証を行います" #: ../../include/nav.php:96 ../../Zotlabs/Lib/Apps.php:336 #: ../../Zotlabs/Module/Manage.php:170 msgid "Channel Manager" -msgstr "" +msgstr "チャンネルマネージャー" #: ../../include/nav.php:96 msgid "Manage your channels" -msgstr "" +msgstr "チャンネルを管理する" #: ../../include/nav.php:99 msgid "Manage your privacy groups" @@ -2734,23 +2734,23 @@ msgstr "プライバシーグループを管理する" #: ../../Zotlabs/Widget/Newmember.php:53 #: ../../Zotlabs/Widget/Settings_menu.php:61 msgid "Settings" -msgstr "" +msgstr "設定" #: ../../include/nav.php:101 msgid "Account/Channel Settings" -msgstr "" +msgstr "アカウント/チャンネル設定" #: ../../include/nav.php:107 ../../include/nav.php:136 msgid "End this session" -msgstr "" +msgstr "このセッションを終了" #: ../../include/nav.php:110 msgid "Your profile page" -msgstr "" +msgstr "あなたのプロフィールページ" #: ../../include/nav.php:113 msgid "Manage/Edit profiles" -msgstr "" +msgstr "プロファイルの管理/編集" #: ../../include/nav.php:115 ../../Zotlabs/Widget/Newmember.php:35 msgid "Edit your profile" @@ -2798,7 +2798,7 @@ msgstr "読み込み中" #: ../../include/nav.php:332 msgid "@name, !forum, #tag, ?doc, content" -msgstr "" +msgstr "@name、!forum、#tag、?doc、content" #: ../../include/nav.php:333 msgid "Please wait..." @@ -2810,11 +2810,11 @@ msgstr "アプリの追加" #: ../../include/nav.php:340 msgid "Arrange Apps" -msgstr "" +msgstr "アプリを配置する" #: ../../include/nav.php:341 msgid "Toggle System Apps" -msgstr "" +msgstr "システムアプリの切り替え" #: ../../include/nav.php:423 ../../Zotlabs/Module/Admin/Channels.php:154 msgid "Channel" @@ -2826,11 +2826,11 @@ msgstr "ステータスメッセージと投稿" #: ../../include/nav.php:436 ../../Zotlabs/Module/Help.php:80 msgid "About" -msgstr "" +msgstr "約" #: ../../include/nav.php:439 msgid "Profile Details" -msgstr "" +msgstr "プロファイルの詳細" #: ../../include/nav.php:449 ../../include/photos.php:669 msgid "Photo Albums" @@ -2853,491 +2853,491 @@ msgstr "カレンダー" #: ../../include/nav.php:479 ../../include/nav.php:482 #: ../../Zotlabs/Lib/Apps.php:329 ../../Zotlabs/Widget/Chatroom_list.php:16 msgid "Chatrooms" -msgstr "" +msgstr "チャットルーム" #: ../../include/nav.php:492 ../../Zotlabs/Lib/Apps.php:328 msgid "Bookmarks" -msgstr "" +msgstr "しおり" #: ../../include/nav.php:495 msgid "Saved Bookmarks" -msgstr "" +msgstr "保存したブックマーク" #: ../../include/nav.php:503 ../../Zotlabs/Lib/Apps.php:325 #: ../../Zotlabs/Module/Cards.php:207 msgid "Cards" -msgstr "" +msgstr "カード" #: ../../include/nav.php:506 msgid "View Cards" -msgstr "" +msgstr "カードを見る" #: ../../include/nav.php:514 ../../Zotlabs/Lib/Apps.php:324 #: ../../Zotlabs/Module/Articles.php:222 msgid "Articles" -msgstr "" +msgstr "記事" #: ../../include/nav.php:517 msgid "View Articles" -msgstr "" +msgstr "記事を見る" #: ../../include/nav.php:526 ../../Zotlabs/Lib/Apps.php:340 #: ../../Zotlabs/Module/Webpages.php:252 msgid "Webpages" -msgstr "" +msgstr "ウェブページ" #: ../../include/nav.php:529 msgid "View Webpages" -msgstr "" +msgstr "Webページを表示" #: ../../include/nav.php:538 ../../Zotlabs/Module/Wiki.php:206 #: ../../Zotlabs/Widget/Wiki_list.php:15 msgid "Wikis" -msgstr "" +msgstr "ウィキ" #: ../../include/nav.php:541 ../../Zotlabs/Lib/Apps.php:341 msgid "Wiki" -msgstr "" +msgstr "Wiki" #: ../../include/network.php:1725 ../../include/network.php:1726 msgid "Friendica" -msgstr "" +msgstr "フレンドカ" #: ../../include/network.php:1727 msgid "OStatus" -msgstr "" +msgstr "OStatus" #: ../../include/network.php:1728 msgid "GNU-Social" -msgstr "" +msgstr "GNUソーシャル" #: ../../include/network.php:1729 msgid "RSS/Atom" -msgstr "" +msgstr "RSS / Atom" #: ../../include/network.php:1730 ../../Zotlabs/Lib/Activity.php:1848 #: ../../Zotlabs/Lib/Activity.php:2046 msgid "ActivityPub" -msgstr "" +msgstr "ActivityPub" #: ../../include/network.php:1731 ../../Zotlabs/Module/Admin/Accounts.php:171 #: ../../Zotlabs/Module/Admin/Accounts.php:183 #: ../../Zotlabs/Module/Cdav.php:1246 ../../Zotlabs/Module/Connedit.php:927 #: ../../Zotlabs/Module/Profiles.php:787 msgid "Email" -msgstr "" +msgstr "Eメール" #: ../../include/network.php:1732 msgid "Diaspora" -msgstr "" +msgstr "ディアスポラ" #: ../../include/network.php:1733 msgid "Facebook" -msgstr "" +msgstr "フェイスブック" #: ../../include/network.php:1734 msgid "Zot" -msgstr "" +msgstr "ゾット" #: ../../include/network.php:1735 msgid "LinkedIn" -msgstr "" +msgstr "LinkedIn" #: ../../include/network.php:1736 msgid "XMPP/IM" -msgstr "" +msgstr "XMPP / IM" #: ../../include/network.php:1737 msgid "MySpace" -msgstr "" +msgstr "私のスペース" #: ../../include/oembed.php:226 msgid "View PDF" -msgstr "" +msgstr "PDFを見る" #: ../../include/oembed.php:356 msgid " by " -msgstr "" +msgstr "によって" #: ../../include/oembed.php:357 msgid " on " -msgstr "" +msgstr "に" #: ../../include/oembed.php:386 msgid "Embedded content" -msgstr "" +msgstr "埋め込みコンテンツ" #: ../../include/oembed.php:395 msgid "Embedding disabled" -msgstr "" +msgstr "埋め込みが無効です" #: ../../include/photo/photo_driver.php:367 #: ../../Zotlabs/Module/Profile_photo.php:120 #: ../../Zotlabs/Module/Profile_photo.php:248 msgid "Profile Photos" -msgstr "" +msgstr "プロフィール写真" #: ../../include/photos.php:151 #, php-format msgid "Image exceeds website size limit of %lu bytes" -msgstr "" +msgstr "画像がウェブサイトのサイズ制限%luバイトを超えています" #: ../../include/photos.php:162 msgid "Image file is empty." -msgstr "" +msgstr "画像ファイルが空です。" #: ../../include/photos.php:196 ../../Zotlabs/Module/Cover_photo.php:230 #: ../../Zotlabs/Module/Profile_photo.php:225 msgid "Unable to process image" -msgstr "" +msgstr "画像を処理できません" #: ../../include/photos.php:327 msgid "Photo storage failed." -msgstr "" +msgstr "写真の保存に失敗しました。" #: ../../include/photos.php:376 msgid "a new photo" -msgstr "" +msgstr "新しい写真" #: ../../include/photos.php:380 #, php-format msgctxt "photo_upload" msgid "%1$s posted %2$s to %3$s" -msgstr "" +msgstr "%1$sが%2$sから%3$s投稿しました" #: ../../include/photos.php:670 ../../Zotlabs/Module/Photos.php:1389 #: ../../Zotlabs/Module/Photos.php:1402 ../../Zotlabs/Module/Photos.php:1403 msgid "Recent Photos" -msgstr "" +msgstr "最近の写真" #: ../../include/photos.php:674 msgid "Upload New Photos" -msgstr "" +msgstr "新しい写真をアップロード" #: ../../include/security.php:607 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." -msgstr "" +msgstr "フォームセキュリティトークンが正しくありませんでした。これは、フォームを送信する前にフォームが長時間(3時間以上)開かれたために発生した可能性があります。" #: ../../include/selectors.php:18 msgid "Profile to assign new connections" -msgstr "" +msgstr "新しい接続を割り当てるプロファイル" #: ../../include/selectors.php:41 msgid "Frequently" -msgstr "" +msgstr "よく" #: ../../include/selectors.php:42 msgid "Hourly" -msgstr "" +msgstr "毎時" #: ../../include/selectors.php:43 msgid "Twice daily" -msgstr "" +msgstr "1日2回" #: ../../include/selectors.php:44 msgid "Daily" -msgstr "" +msgstr "毎日" #: ../../include/selectors.php:45 msgid "Weekly" -msgstr "" +msgstr "毎週" #: ../../include/selectors.php:46 msgid "Monthly" -msgstr "" +msgstr "毎月" #: ../../include/selectors.php:60 msgid "Currently Male" -msgstr "" +msgstr "現在男性" #: ../../include/selectors.php:60 msgid "Currently Female" -msgstr "" +msgstr "現在女性" #: ../../include/selectors.php:60 msgid "Mostly Male" -msgstr "" +msgstr "主に男性" #: ../../include/selectors.php:60 msgid "Mostly Female" -msgstr "" +msgstr "主に女性" #: ../../include/selectors.php:60 msgid "Transgender" -msgstr "" +msgstr "トランスジェンダー" #: ../../include/selectors.php:60 msgid "Intersex" -msgstr "" +msgstr "インターセックス" #: ../../include/selectors.php:60 msgid "Transsexual" -msgstr "" +msgstr "性転換" #: ../../include/selectors.php:60 msgid "Hermaphrodite" -msgstr "" +msgstr "ふたなり" #: ../../include/selectors.php:60 msgid "Undecided" -msgstr "" +msgstr "未定" #: ../../include/selectors.php:96 ../../include/selectors.php:115 msgid "Males" -msgstr "" +msgstr "男性" #: ../../include/selectors.php:96 ../../include/selectors.php:115 msgid "Females" -msgstr "" +msgstr "女性" #: ../../include/selectors.php:96 msgid "Gay" -msgstr "" +msgstr "ゲイ" #: ../../include/selectors.php:96 msgid "Lesbian" -msgstr "" +msgstr "レズビアン" #: ../../include/selectors.php:96 msgid "No Preference" -msgstr "" +msgstr "指定なし" #: ../../include/selectors.php:96 msgid "Bisexual" -msgstr "" +msgstr "バイセクシャル" #: ../../include/selectors.php:96 msgid "Autosexual" -msgstr "" +msgstr "性欲" #: ../../include/selectors.php:96 msgid "Abstinent" -msgstr "" +msgstr "禁欲" #: ../../include/selectors.php:96 msgid "Virgin" -msgstr "" +msgstr "バージン" #: ../../include/selectors.php:96 msgid "Deviant" -msgstr "" +msgstr "逸脱" #: ../../include/selectors.php:96 msgid "Fetish" -msgstr "" +msgstr "フェチ" #: ../../include/selectors.php:96 msgid "Oodles" -msgstr "" +msgstr "ウードル" #: ../../include/selectors.php:96 msgid "Nonsexual" -msgstr "" +msgstr "非性的" #: ../../include/selectors.php:134 ../../include/selectors.php:151 msgid "Single" -msgstr "" +msgstr "シングル" #: ../../include/selectors.php:134 msgid "Lonely" -msgstr "" +msgstr "寂しい" #: ../../include/selectors.php:134 msgid "Available" -msgstr "" +msgstr "利用可能" #: ../../include/selectors.php:134 msgid "Unavailable" -msgstr "" +msgstr "利用できません" #: ../../include/selectors.php:134 msgid "Has crush" -msgstr "" +msgstr "クラッシュしている" #: ../../include/selectors.php:134 msgid "Infatuated" -msgstr "" +msgstr "夢中" #: ../../include/selectors.php:134 ../../include/selectors.php:151 msgid "Dating" -msgstr "" +msgstr "デート" #: ../../include/selectors.php:134 msgid "Unfaithful" -msgstr "" +msgstr "不誠実な" #: ../../include/selectors.php:134 msgid "Sex Addict" -msgstr "" +msgstr "性中毒" #: ../../include/selectors.php:134 msgid "Friends/Benefits" -msgstr "" +msgstr "友達/特典" #: ../../include/selectors.php:134 msgid "Casual" -msgstr "" +msgstr "カジュアル" #: ../../include/selectors.php:134 msgid "Engaged" -msgstr "" +msgstr "従事" #: ../../include/selectors.php:134 ../../include/selectors.php:151 msgid "Married" -msgstr "" +msgstr "既婚" #: ../../include/selectors.php:134 msgid "Imaginarily married" -msgstr "" +msgstr "想像上の結婚" #: ../../include/selectors.php:134 msgid "Partners" -msgstr "" +msgstr "パートナー" #: ../../include/selectors.php:134 ../../include/selectors.php:151 msgid "Cohabiting" -msgstr "" +msgstr "同ha" #: ../../include/selectors.php:134 msgid "Common law" -msgstr "" +msgstr "コモンロー" #: ../../include/selectors.php:134 msgid "Happy" -msgstr "" +msgstr "ハッピー" #: ../../include/selectors.php:134 msgid "Not looking" -msgstr "" +msgstr "見てない" #: ../../include/selectors.php:134 msgid "Swinger" -msgstr "" +msgstr "ウィンガー" #: ../../include/selectors.php:134 msgid "Betrayed" -msgstr "" +msgstr "裏切られた" #: ../../include/selectors.php:134 ../../include/selectors.php:151 msgid "Separated" -msgstr "" +msgstr "離れた" #: ../../include/selectors.php:134 msgid "Unstable" -msgstr "" +msgstr "不安定" #: ../../include/selectors.php:134 ../../include/selectors.php:151 msgid "Divorced" -msgstr "" +msgstr "離婚した" #: ../../include/selectors.php:134 msgid "Imaginarily divorced" -msgstr "" +msgstr "想像上の離婚" #: ../../include/selectors.php:134 ../../include/selectors.php:151 msgid "Widowed" -msgstr "" +msgstr "未亡人" #: ../../include/selectors.php:134 msgid "Uncertain" -msgstr "" +msgstr "不確実" #: ../../include/selectors.php:134 ../../include/selectors.php:151 msgid "It's complicated" -msgstr "" +msgstr "それは複雑です" #: ../../include/selectors.php:134 msgid "Don't care" -msgstr "" +msgstr "気にしない" #: ../../include/selectors.php:134 msgid "Ask me" -msgstr "" +msgstr "私に聞いて" #: ../../include/taxonomy.php:320 msgid "Trending" -msgstr "" +msgstr "トレンド" #: ../../include/taxonomy.php:320 ../../include/taxonomy.php:449 #: ../../include/taxonomy.php:470 ../../Zotlabs/Widget/Tagcloud.php:22 msgid "Tags" -msgstr "" +msgstr "タグ" #: ../../include/taxonomy.php:550 msgid "Keywords" -msgstr "" +msgstr "キーワード" #: ../../include/taxonomy.php:571 msgid "have" -msgstr "" +msgstr "持ってる" #: ../../include/taxonomy.php:571 msgid "has" -msgstr "" +msgstr "持っている" #: ../../include/taxonomy.php:572 msgid "want" -msgstr "" +msgstr "欲しいです" #: ../../include/taxonomy.php:572 msgid "wants" -msgstr "" +msgstr "望む" #: ../../include/taxonomy.php:573 ../../Zotlabs/Lib/ThreadItem.php:306 msgid "like" -msgstr "" +msgstr "のような" #: ../../include/taxonomy.php:573 msgid "likes" -msgstr "" +msgstr "好き" #: ../../include/taxonomy.php:574 ../../Zotlabs/Lib/ThreadItem.php:307 msgid "dislike" -msgstr "" +msgstr "嫌い" #: ../../include/taxonomy.php:574 msgid "dislikes" -msgstr "" +msgstr "嫌い" #: ../../include/text.php:501 msgid "prev" -msgstr "" +msgstr "前の" #: ../../include/text.php:503 msgid "first" -msgstr "" +msgstr "最初" #: ../../include/text.php:532 msgid "last" -msgstr "" +msgstr "最終" #: ../../include/text.php:535 msgid "next" -msgstr "" +msgstr "次" #: ../../include/text.php:553 msgid "older" -msgstr "" +msgstr "年上の" #: ../../include/text.php:555 msgid "newer" -msgstr "" +msgstr "より新しい" #: ../../include/text.php:979 msgid "No connections" -msgstr "" +msgstr "接続なし" #: ../../include/text.php:1011 #, php-format msgid "View all %s connections" -msgstr "" +msgstr "すべての%s接続を表示" #: ../../include/text.php:1073 #, php-format msgid "Network: %s" -msgstr "" +msgstr "ネットワーク: %s" #: ../../include/text.php:1085 ../../include/text.php:1097 #: ../../Zotlabs/Module/Admin/Profs.php:94 @@ -3345,156 +3345,156 @@ msgstr "" #: ../../Zotlabs/Module/Rbmark.php:32 ../../Zotlabs/Module/Rbmark.php:104 #: ../../Zotlabs/Widget/Notes.php:23 msgid "Save" -msgstr "" +msgstr "保存する" #: ../../include/text.php:1176 ../../include/text.php:1180 msgid "poke" -msgstr "" +msgstr "ポーク" #: ../../include/text.php:1181 msgid "ping" -msgstr "" +msgstr "ping" #: ../../include/text.php:1181 msgid "pinged" -msgstr "" +msgstr "pingされた" #: ../../include/text.php:1182 msgid "prod" -msgstr "" +msgstr "製品" #: ../../include/text.php:1182 msgid "prodded" -msgstr "" +msgstr "突っ込んだ" #: ../../include/text.php:1183 msgid "slap" -msgstr "" +msgstr "平手打ち" #: ../../include/text.php:1183 msgid "slapped" -msgstr "" +msgstr "平手打ち" #: ../../include/text.php:1184 msgid "finger" -msgstr "" +msgstr "指" #: ../../include/text.php:1184 msgid "fingered" -msgstr "" +msgstr "手マン" #: ../../include/text.php:1185 msgid "rebuff" -msgstr "" +msgstr "拒絶" #: ../../include/text.php:1185 msgid "rebuffed" -msgstr "" +msgstr "拒否された" #: ../../include/text.php:1208 msgid "happy" -msgstr "" +msgstr "ハッピー" #: ../../include/text.php:1209 msgid "sad" -msgstr "" +msgstr "悲しい" #: ../../include/text.php:1210 msgid "mellow" -msgstr "" +msgstr "まろやかな" #: ../../include/text.php:1211 msgid "tired" -msgstr "" +msgstr "疲れた" #: ../../include/text.php:1212 msgid "perky" -msgstr "" +msgstr "はつらつと" #: ../../include/text.php:1213 msgid "angry" -msgstr "" +msgstr "怒っている" #: ../../include/text.php:1214 msgid "stupefied" -msgstr "" +msgstr "st然たる" #: ../../include/text.php:1215 msgid "puzzled" -msgstr "" +msgstr "困惑した" #: ../../include/text.php:1216 msgid "interested" -msgstr "" +msgstr "興味がある" #: ../../include/text.php:1217 msgid "bitter" -msgstr "" +msgstr "苦い" #: ../../include/text.php:1218 msgid "cheerful" -msgstr "" +msgstr "陽気な" #: ../../include/text.php:1219 msgid "alive" -msgstr "" +msgstr "生きている" #: ../../include/text.php:1220 msgid "annoyed" -msgstr "" +msgstr "イライラする" #: ../../include/text.php:1221 msgid "anxious" -msgstr "" +msgstr "気になる" #: ../../include/text.php:1222 msgid "cranky" -msgstr "" +msgstr "気難しい" #: ../../include/text.php:1223 msgid "disturbed" -msgstr "" +msgstr "乱れた" #: ../../include/text.php:1224 msgid "frustrated" -msgstr "" +msgstr "欲求不満" #: ../../include/text.php:1225 msgid "depressed" -msgstr "" +msgstr "落ち込んでいる" #: ../../include/text.php:1226 msgid "motivated" -msgstr "" +msgstr "やる気" #: ../../include/text.php:1227 msgid "relaxed" -msgstr "" +msgstr "リラックスした" #: ../../include/text.php:1228 msgid "surprised" -msgstr "" +msgstr "びっくりした" #: ../../include/text.php:1428 msgid "May" -msgstr "" +msgstr "5月" #: ../../include/text.php:1502 msgid "Unknown Attachment" -msgstr "" +msgstr "不明な添付ファイル" #: ../../include/text.php:1504 ../../Zotlabs/Module/Sharedwithme.php:106 #: ../../Zotlabs/Storage/Browser.php:293 msgid "Size" -msgstr "" +msgstr "サイズ" #: ../../include/text.php:1540 msgid "remove category" -msgstr "" +msgstr "カテゴリーを削除" #: ../../include/text.php:1614 msgid "remove from file" -msgstr "" +msgstr "ファイルから削除" #: ../../include/text.php:1926 ../../Zotlabs/Module/Cal.php:314 #: ../../Zotlabs/Module/Events.php:663 @@ -3503,463 +3503,463 @@ msgstr "元記事へのリンク" #: ../../include/text.php:1956 msgid "Page layout" -msgstr "" +msgstr "ページレイアウト" #: ../../include/text.php:1956 msgid "You can create your own with the layouts tool" -msgstr "" +msgstr "レイアウトツールを使用して独自に作成できます" #: ../../include/text.php:1966 ../../Zotlabs/Module/Wiki.php:217 #: ../../Zotlabs/Module/Wiki.php:371 ../../Zotlabs/Widget/Wiki_pages.php:38 #: ../../Zotlabs/Widget/Wiki_pages.php:95 msgid "BBcode" -msgstr "" +msgstr "BBcode" #: ../../include/text.php:1967 msgid "HTML" -msgstr "" +msgstr "HTML" #: ../../include/text.php:1968 ../../Zotlabs/Module/Wiki.php:217 #: ../../Zotlabs/Module/Wiki.php:371 ../../Zotlabs/Widget/Wiki_pages.php:38 #: ../../Zotlabs/Widget/Wiki_pages.php:95 msgid "Markdown" -msgstr "" +msgstr "マークダウン" #: ../../include/text.php:1969 ../../Zotlabs/Module/Wiki.php:217 #: ../../Zotlabs/Widget/Wiki_pages.php:38 #: ../../Zotlabs/Widget/Wiki_pages.php:95 msgid "Text" -msgstr "" +msgstr "テキスト" #: ../../include/text.php:1970 msgid "Comanche Layout" -msgstr "" +msgstr "コマンチレイアウト" #: ../../include/text.php:1975 msgid "PHP" -msgstr "" +msgstr "PHP" #: ../../include/text.php:1984 msgid "Page content type" -msgstr "" +msgstr "ページコンテンツタイプ" #: ../../include/text.php:2117 msgid "activity" -msgstr "" +msgstr "アクティビティ" #: ../../include/text.php:2218 msgid "a-z, 0-9, -, and _ only" -msgstr "" +msgstr "az、0-9、-、および_のみ" #: ../../include/text.php:2544 msgid "Design Tools" -msgstr "" +msgstr "設計ツール" #: ../../include/text.php:2547 ../../Zotlabs/Module/Blocks.php:154 msgid "Blocks" -msgstr "" +msgstr "ブロック" #: ../../include/text.php:2548 ../../Zotlabs/Module/Menu.php:170 msgid "Menus" -msgstr "" +msgstr "メニュー" #: ../../include/text.php:2549 ../../Zotlabs/Module/Layouts.php:184 msgid "Layouts" -msgstr "" +msgstr "レイアウト" #: ../../include/text.php:2550 msgid "Pages" -msgstr "" +msgstr "Pages" #: ../../include/text.php:2562 ../../Zotlabs/Module/Cal.php:343 msgid "Import" -msgstr "" +msgstr "インポート" #: ../../include/text.php:2563 msgid "Import website..." -msgstr "" +msgstr "ウェブサイトをインポート..." #: ../../include/text.php:2564 msgid "Select folder to import" -msgstr "" +msgstr "インポートするフォルダーを選択" #: ../../include/text.php:2565 msgid "Import from a zipped folder:" -msgstr "" +msgstr "zipフォルダーからインポート:" #: ../../include/text.php:2566 msgid "Import from cloud files:" -msgstr "" +msgstr "クラウドファイルからインポート:" #: ../../include/text.php:2567 msgid "/cloud/channel/path/to/folder" -msgstr "" +msgstr "/ cloud / channel / path / to / folder" #: ../../include/text.php:2568 msgid "Enter path to website files" -msgstr "" +msgstr "ウェブサイトのファイルへのパスを入力してください" #: ../../include/text.php:2569 msgid "Select folder" -msgstr "" +msgstr "フォルダーを選択" #: ../../include/text.php:2570 msgid "Export website..." -msgstr "" +msgstr "ウェブサイトをエクスポート..." #: ../../include/text.php:2571 msgid "Export to a zip file" -msgstr "" +msgstr "zipファイルにエクスポートする" #: ../../include/text.php:2572 msgid "website.zip" -msgstr "" +msgstr "website.zip" #: ../../include/text.php:2573 msgid "Enter a name for the zip file." -msgstr "" +msgstr "zipファイルの名前を入力します。" #: ../../include/text.php:2574 msgid "Export to cloud files" -msgstr "" +msgstr "クラウドファイルにエクスポートする" #: ../../include/text.php:2575 msgid "/path/to/export/folder" -msgstr "" +msgstr "/ path / to / export / folder" #: ../../include/text.php:2576 msgid "Enter a path to a cloud files destination." -msgstr "" +msgstr "クラウドファイルの保存先へのパスを入力します。" #: ../../include/text.php:2577 msgid "Specify folder" -msgstr "" +msgstr "フォルダーを指定" #: ../../include/text.php:2939 ../../Zotlabs/Storage/Browser.php:131 msgid "Collection" -msgstr "" +msgstr "コレクション" #: ../../include/text.php:3208 ../../view/theme/redbasic/php/config.php:15 #: ../../Zotlabs/Module/Admin/Site.php:187 msgid "Default" -msgstr "" +msgstr "デフォルト" #: ../../include/zid.php:363 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "" +msgstr "OpenWebAuth: %1$sは%2$s歓迎します" #: ../../include/zot.php:775 msgid "Invalid data packet" -msgstr "" +msgstr "無効なデータパケット" #: ../../include/zot.php:802 ../../Zotlabs/Lib/Libzot.php:652 msgid "Unable to verify channel signature" -msgstr "" +msgstr "チャンネルの署名を確認できません" #: ../../include/zot.php:2595 ../../Zotlabs/Lib/Libsync.php:733 #, php-format msgid "Unable to verify site signature for %s" -msgstr "" +msgstr "%sサイト署名を確認できません" #: ../../include/zot.php:4292 msgid "invalid target signature" -msgstr "" +msgstr "無効なターゲット署名" #: ../../util/nconfig.php:34 msgid "Source channel not found." -msgstr "" +msgstr "ソースチャネルが見つかりません。" #: ../../view/theme/redbasic/php/config.php:16 #: ../../view/theme/redbasic/php/config.php:19 msgid "Focus (Hubzilla default)" -msgstr "" +msgstr "フォーカス(Hubzillaのデフォルト)" #: ../../view/theme/redbasic/php/config.php:98 msgid "Theme settings" -msgstr "" +msgstr "テーマ設定" #: ../../view/theme/redbasic/php/config.php:99 msgid "Narrow navbar" -msgstr "" +msgstr "狭いナビゲーションバー" #: ../../view/theme/redbasic/php/config.php:100 msgid "Navigation bar background color" -msgstr "" +msgstr "ナビゲーションバーの背景色" #: ../../view/theme/redbasic/php/config.php:101 msgid "Navigation bar icon color " -msgstr "" +msgstr "ナビゲーションバーのアイコンの色" #: ../../view/theme/redbasic/php/config.php:102 msgid "Navigation bar active icon color " -msgstr "" +msgstr "ナビゲーションバーのアクティブなアイコンの色" #: ../../view/theme/redbasic/php/config.php:103 msgid "Link color" -msgstr "" +msgstr "リンクの色" #: ../../view/theme/redbasic/php/config.php:104 msgid "Set font-color for banner" -msgstr "" +msgstr "バナーのフォント色を設定" #: ../../view/theme/redbasic/php/config.php:105 msgid "Set the background color" -msgstr "" +msgstr "背景色を設定する" #: ../../view/theme/redbasic/php/config.php:106 msgid "Set the background image" -msgstr "" +msgstr "背景画像を設定する" #: ../../view/theme/redbasic/php/config.php:107 msgid "Set the background color of items" -msgstr "" +msgstr "アイテムの背景色を設定する" #: ../../view/theme/redbasic/php/config.php:108 msgid "Set the background color of comments" -msgstr "" +msgstr "コメントの背景色を設定する" #: ../../view/theme/redbasic/php/config.php:109 msgid "Set font-size for the entire application" -msgstr "" +msgstr "アプリケーション全体のフォントサイズを設定する" #: ../../view/theme/redbasic/php/config.php:109 msgid "Examples: 1rem, 100%, 16px" -msgstr "" +msgstr "例:1rem、100%、16px" #: ../../view/theme/redbasic/php/config.php:110 msgid "Set font-color for posts and comments" -msgstr "" +msgstr "投稿とコメントのフォント色を設定する" #: ../../view/theme/redbasic/php/config.php:111 msgid "Set radius of corners" -msgstr "" +msgstr "角の半径を設定する" #: ../../view/theme/redbasic/php/config.php:111 msgid "Example: 4px" -msgstr "" +msgstr "例:4px" #: ../../view/theme/redbasic/php/config.php:112 msgid "Set shadow depth of photos" -msgstr "" +msgstr "写真の影の深さを設定する" #: ../../view/theme/redbasic/php/config.php:113 msgid "Set maximum width of content region in pixel" -msgstr "" +msgstr "コンテンツ領域の最大幅をピクセル単位で設定します" #: ../../view/theme/redbasic/php/config.php:113 msgid "Leave empty for default width" -msgstr "" +msgstr "デフォルトの幅の場合は空のままにします" #: ../../view/theme/redbasic/php/config.php:114 msgid "Set size of conversation author photo" -msgstr "" +msgstr "会話の著者の写真のサイズを設定する" #: ../../view/theme/redbasic/php/config.php:115 msgid "Set size of followup author photos" -msgstr "" +msgstr "フォローアップ著者の写真のサイズを設定する" #: ../../view/theme/redbasic/php/config.php:116 msgid "Show advanced settings" -msgstr "" +msgstr "詳細設定を表示する" #: ../../Zotlabs/Access/PermissionRoles.php:283 msgid "Social Networking" -msgstr "" +msgstr "ソーシャルネットワーキング" #: ../../Zotlabs/Access/PermissionRoles.php:284 msgid "Social - Federation" -msgstr "" +msgstr "ソーシャル-フェデレーション" #: ../../Zotlabs/Access/PermissionRoles.php:285 msgid "Social - Mostly Public" -msgstr "" +msgstr "ソーシャル-ほとんど公開" #: ../../Zotlabs/Access/PermissionRoles.php:286 msgid "Social - Restricted" -msgstr "" +msgstr "ソーシャル-制限付き" #: ../../Zotlabs/Access/PermissionRoles.php:287 msgid "Social - Private" -msgstr "" +msgstr "ソーシャル-プライベート" #: ../../Zotlabs/Access/PermissionRoles.php:290 msgid "Community Forum" -msgstr "" +msgstr "コミュニティフォーラム" #: ../../Zotlabs/Access/PermissionRoles.php:291 msgid "Forum - Mostly Public" -msgstr "" +msgstr "フォーラム-ほとんど公開" #: ../../Zotlabs/Access/PermissionRoles.php:292 msgid "Forum - Restricted" -msgstr "" +msgstr "フォーラム-制限付き" #: ../../Zotlabs/Access/PermissionRoles.php:293 msgid "Forum - Private" -msgstr "" +msgstr "フォーラム-プライベート" #: ../../Zotlabs/Access/PermissionRoles.php:296 msgid "Feed Republish" -msgstr "" +msgstr "フィードの再公開" #: ../../Zotlabs/Access/PermissionRoles.php:297 msgid "Feed - Mostly Public" -msgstr "" +msgstr "フィード-ほとんど公開" #: ../../Zotlabs/Access/PermissionRoles.php:298 msgid "Feed - Restricted" -msgstr "" +msgstr "フィード-制限付き" #: ../../Zotlabs/Access/PermissionRoles.php:301 msgid "Special Purpose" -msgstr "" +msgstr "特別な目的" #: ../../Zotlabs/Access/PermissionRoles.php:302 msgid "Special - Celebrity/Soapbox" -msgstr "" +msgstr "スペシャル-セレブ/ソープボックス" #: ../../Zotlabs/Access/PermissionRoles.php:303 msgid "Special - Group Repository" -msgstr "" +msgstr "特別-グループリポジトリ" #: ../../Zotlabs/Access/PermissionRoles.php:307 msgid "Custom/Expert Mode" -msgstr "" +msgstr "カスタム/エキスパートモード" #: ../../Zotlabs/Access/Permissions.php:56 msgid "Can view my channel stream and posts" -msgstr "" +msgstr "チャンネルストリームと投稿を表示できます" #: ../../Zotlabs/Access/Permissions.php:57 msgid "Can send me their channel stream and posts" -msgstr "" +msgstr "チャンネルストリームと投稿を送信できます" #: ../../Zotlabs/Access/Permissions.php:58 msgid "Can view my default channel profile" -msgstr "" +msgstr "デフォルトのチャンネルプロファイルを表示できます" #: ../../Zotlabs/Access/Permissions.php:59 msgid "Can view my connections" -msgstr "" +msgstr "接続を表示できます" #: ../../Zotlabs/Access/Permissions.php:60 msgid "Can view my file storage and photos" -msgstr "" +msgstr "ファイルストレージと写真を表示できます" #: ../../Zotlabs/Access/Permissions.php:61 msgid "Can upload/modify my file storage and photos" -msgstr "" +msgstr "ファイルストレージと写真をアップロード/変更できます" #: ../../Zotlabs/Access/Permissions.php:62 msgid "Can view my channel webpages" -msgstr "" +msgstr "チャンネルのウェブページを表示できます" #: ../../Zotlabs/Access/Permissions.php:63 msgid "Can view my wiki pages" -msgstr "" +msgstr "Wikiページを表示できます" #: ../../Zotlabs/Access/Permissions.php:64 msgid "Can create/edit my channel webpages" -msgstr "" +msgstr "チャンネルWebページを作成/編集できます" #: ../../Zotlabs/Access/Permissions.php:65 msgid "Can write to my wiki pages" -msgstr "" +msgstr "wikiページに書き込むことができます" #: ../../Zotlabs/Access/Permissions.php:66 msgid "Can post on my channel (wall) page" -msgstr "" +msgstr "チャンネル(ウォール)ページに投稿できます" #: ../../Zotlabs/Access/Permissions.php:67 msgid "Can comment on or like my posts" -msgstr "" +msgstr "自分の投稿にコメントしたり、いいねをしたりできます" #: ../../Zotlabs/Access/Permissions.php:68 msgid "Can send me private mail messages" -msgstr "" +msgstr "プライベートメールメッセージを送信できます" #: ../../Zotlabs/Access/Permissions.php:69 msgid "Can like/dislike profiles and profile things" -msgstr "" +msgstr "好き嫌いのあるプロファイルとプロファイルのもの" #: ../../Zotlabs/Access/Permissions.php:70 msgid "Can forward to all my channel connections via ! mentions in posts" -msgstr "" +msgstr "経由ですべてのチャンネル接続に転送できます!投稿のメンション" #: ../../Zotlabs/Access/Permissions.php:71 msgid "Can chat with me" -msgstr "" +msgstr "私とチャットできます" #: ../../Zotlabs/Access/Permissions.php:72 msgid "Can source my public posts in derived channels" -msgstr "" +msgstr "派生チャンネルで公開投稿を入手できますか" #: ../../Zotlabs/Access/Permissions.php:73 msgid "Can administer my channel" -msgstr "" +msgstr "チャンネルを管理できますか" #: ../../Zotlabs/Lib/Activity.php:1500 #, php-format msgid "Likes %1$s's %2$s" -msgstr "" +msgstr "%1$sの%2$s好きです" #: ../../Zotlabs/Lib/Activity.php:1503 #, php-format msgid "Doesn't like %1$s's %2$s" -msgstr "" +msgstr "%1$sの%2$s気に入らない" #: ../../Zotlabs/Lib/Activity.php:1506 #, php-format msgid "Will attend %1$s's %2$s" -msgstr "" +msgstr "%1$sの%2$s" #: ../../Zotlabs/Lib/Activity.php:1509 #, php-format msgid "Will not attend %1$s's %2$s" -msgstr "" +msgstr "%1$sの%2$s参加しません" #: ../../Zotlabs/Lib/Activity.php:1512 #, php-format msgid "May attend %1$s's %2$s" -msgstr "" +msgstr "%1$sの%2$s" #: ../../Zotlabs/Lib/Activity.php:1515 ../../Zotlabs/Module/Share.php:103 #, php-format msgid "🔁 Repeated %1$s's %2$s" -msgstr "" +msgstr "&#x1f501; %1$sの%2$s繰り返しました" #: ../../Zotlabs/Lib/Apps.php:322 msgid "Apps" -msgstr "" +msgstr "アプリ" #: ../../Zotlabs/Lib/Apps.php:323 msgid "Affinity Tool" -msgstr "" +msgstr "アフィニティツール" #: ../../Zotlabs/Lib/Apps.php:326 msgid "Site Admin" -msgstr "" +msgstr "サイト管理者" #: ../../Zotlabs/Lib/Apps.php:327 msgid "Report Bug" -msgstr "" +msgstr "バグを報告" #: ../../Zotlabs/Lib/Apps.php:330 msgid "Content Filter" -msgstr "" +msgstr "コンテンツフィルター" #: ../../Zotlabs/Lib/Apps.php:331 msgid "Content Import" -msgstr "" +msgstr "コンテンツのインポート" #: ../../Zotlabs/Lib/Apps.php:333 msgid "Remote Diagnostics" -msgstr "" +msgstr "リモート診断" #: ../../Zotlabs/Lib/Apps.php:334 msgid "Suggest Channels" -msgstr "" +msgstr "チャンネルを提案する" #: ../../Zotlabs/Lib/Apps.php:337 msgid "Stream" @@ -3967,91 +3967,91 @@ msgstr "ストリーム" #: ../../Zotlabs/Lib/Apps.php:348 msgid "Mail" -msgstr "" +msgstr "郵便物" #: ../../Zotlabs/Lib/Apps.php:349 ../../Zotlabs/Module/Mood.php:154 msgid "Mood" -msgstr "" +msgstr "気分" #: ../../Zotlabs/Lib/Apps.php:351 msgid "Chat" -msgstr "" +msgstr "チャット" #: ../../Zotlabs/Lib/Apps.php:353 msgid "Probe" -msgstr "" +msgstr "プローブ" #: ../../Zotlabs/Lib/Apps.php:354 msgid "Suggest" -msgstr "" +msgstr "提案する" #: ../../Zotlabs/Lib/Apps.php:355 msgid "Random Channel" -msgstr "" +msgstr "ランダムチャンネル" #: ../../Zotlabs/Lib/Apps.php:356 msgid "Invite" -msgstr "" +msgstr "招待する" #: ../../Zotlabs/Lib/Apps.php:357 ../../Zotlabs/Widget/Admin.php:26 msgid "Features" -msgstr "" +msgstr "特徴" #: ../../Zotlabs/Lib/Apps.php:358 msgid "Language" -msgstr "" +msgstr "言語" #: ../../Zotlabs/Lib/Apps.php:359 msgid "Post" -msgstr "" +msgstr "役職" #: ../../Zotlabs/Lib/Apps.php:360 msgid "Profile Photo" -msgstr "" +msgstr "プロフィール写真" #: ../../Zotlabs/Lib/Apps.php:364 msgid "Notifications" -msgstr "" +msgstr "通知" #: ../../Zotlabs/Lib/Apps.php:365 msgid "Order Apps" -msgstr "" +msgstr "アプリを注文する" #: ../../Zotlabs/Lib/Apps.php:367 msgid "CardDAV" -msgstr "" +msgstr "CardDAV" #: ../../Zotlabs/Lib/Apps.php:368 ../../Zotlabs/Module/Sources.php:107 msgid "Channel Sources" -msgstr "" +msgstr "チャンネルソース" #: ../../Zotlabs/Lib/Apps.php:369 msgid "Guest Access" -msgstr "" +msgstr "ゲストアクセス" #: ../../Zotlabs/Lib/Apps.php:370 ../../Zotlabs/Widget/Notes.php:21 msgid "Notes" -msgstr "" +msgstr "ノート" #: ../../Zotlabs/Lib/Apps.php:371 msgid "OAuth Apps Manager" -msgstr "" +msgstr "OAuthアプリマネージャー" #: ../../Zotlabs/Lib/Apps.php:372 msgid "OAuth2 Apps Manager" -msgstr "" +msgstr "OAuth2アプリマネージャー" #: ../../Zotlabs/Lib/Apps.php:373 msgid "PDL Editor" -msgstr "" +msgstr "PDLエディター" #: ../../Zotlabs/Lib/Apps.php:374 ../../Zotlabs/Module/Permcats.php:112 msgid "Permission Categories" -msgstr "" +msgstr "許可カテゴリ" #: ../../Zotlabs/Lib/Apps.php:375 msgid "Premium Channel" -msgstr "" +msgstr "プレミアムチャンネル" #: ../../Zotlabs/Lib/Apps.php:376 ../../Zotlabs/Module/Pubstream.php:109 #: ../../Zotlabs/Widget/Notifications.php:142 @@ -4060,11 +4060,11 @@ msgstr "連合ストリーム" #: ../../Zotlabs/Lib/Apps.php:377 msgid "My Chatrooms" -msgstr "" +msgstr "私のチャットルーム" #: ../../Zotlabs/Lib/Apps.php:378 msgid "Channel Export" -msgstr "" +msgstr "チャンネルのエクスポート" #: ../../Zotlabs/Lib/Apps.php:537 ../../Zotlabs/Module/Admin/Addons.php:456 #: ../../Zotlabs/Module/Cdav.php:1258 ../../Zotlabs/Module/Connedit.php:939 @@ -4072,104 +4072,104 @@ msgstr "" #: ../../Zotlabs/Module/Oauth2.php:58 ../../Zotlabs/Module/Oauth2.php:144 #: ../../Zotlabs/Module/Profiles.php:799 msgid "Update" -msgstr "" +msgstr "更新" #: ../../Zotlabs/Lib/Apps.php:537 ../../Zotlabs/Module/Admin/Addons.php:425 msgid "Install" -msgstr "" +msgstr "インストール" #: ../../Zotlabs/Lib/Apps.php:555 msgid "Purchase" -msgstr "" +msgstr "購入" #: ../../Zotlabs/Lib/Apps.php:560 msgid "Undelete" -msgstr "" +msgstr "元に戻す" #: ../../Zotlabs/Lib/Apps.php:569 msgid "Add to app-tray" -msgstr "" +msgstr "アプリトレイに追加" #: ../../Zotlabs/Lib/Apps.php:570 msgid "Remove from app-tray" -msgstr "" +msgstr "アプリトレイから削除" #: ../../Zotlabs/Lib/Apps.php:571 msgid "Pin to navbar" -msgstr "" +msgstr "navbarに固定" #: ../../Zotlabs/Lib/Apps.php:572 msgid "Unpin from navbar" -msgstr "" +msgstr "navbarから固定解除" #: ../../Zotlabs/Lib/Chatroom.php:23 msgid "Missing room name" -msgstr "" +msgstr "部屋名がありません" #: ../../Zotlabs/Lib/Chatroom.php:32 msgid "Duplicate room name" -msgstr "" +msgstr "部屋名が重複しています" #: ../../Zotlabs/Lib/Chatroom.php:82 ../../Zotlabs/Lib/Chatroom.php:90 msgid "Invalid room specifier." -msgstr "" +msgstr "無効な部屋指定子。" #: ../../Zotlabs/Lib/Chatroom.php:122 msgid "Room not found." -msgstr "" +msgstr "部屋が見つかりません。" #: ../../Zotlabs/Lib/Chatroom.php:143 msgid "Room is full" -msgstr "" +msgstr "部屋がいっぱいです" #: ../../Zotlabs/Lib/DB_Upgrade.php:83 #, php-format msgid "Update Error at %s" -msgstr "" +msgstr "%s更新エラー" #: ../../Zotlabs/Lib/DB_Upgrade.php:89 #, php-format msgid "Update %s failed. See error logs." -msgstr "" +msgstr "%s更新に失敗しました。エラーログを参照してください。" #: ../../Zotlabs/Lib/Enotify.php:60 msgid "$Projectname Notification" -msgstr "" +msgstr "$ Projectname通知" #: ../../Zotlabs/Lib/Enotify.php:61 msgid "$projectname" -msgstr "" +msgstr "$ projectname" #: ../../Zotlabs/Lib/Enotify.php:63 msgid "Thank You," -msgstr "" +msgstr "ありがとうございました、" #: ../../Zotlabs/Lib/Enotify.php:65 #, php-format msgid "%s Administrator" -msgstr "" +msgstr "%s管理者" #: ../../Zotlabs/Lib/Enotify.php:66 #, php-format msgid "This email was sent by %1$s at %2$s." -msgstr "" +msgstr "このメールは%1$sが%2$sに送信しました。" #: ../../Zotlabs/Lib/Enotify.php:66 ../../Zotlabs/Module/Home.php:72 #: ../../Zotlabs/Module/Home.php:80 msgid "$Projectname" -msgstr "" +msgstr "$ Projectname" #: ../../Zotlabs/Lib/Enotify.php:67 #, php-format msgid "" "To stop receiving these messages, please adjust your Notification Settings " "at %s" -msgstr "" +msgstr "これらのメッセージの受信を停止するには、通知設定を%sで調整してください" #: ../../Zotlabs/Lib/Enotify.php:68 #, php-format msgid "To stop receiving these messages, please adjust your %s." -msgstr "" +msgstr "これらのメッセージの受信を停止するには、 %sを調整してください。" #: ../../Zotlabs/Lib/Enotify.php:68 #: ../../Zotlabs/Module/Settings/Channel.php:545 @@ -4179,299 +4179,299 @@ msgstr "通知設定" #: ../../Zotlabs/Lib/Enotify.php:123 #, php-format msgid "%s " -msgstr "" +msgstr "%s <!item_type!>" #: ../../Zotlabs/Lib/Enotify.php:127 #, php-format msgid "[$Projectname:Notify] New mail received at %s" -msgstr "" +msgstr "[$ Projectname:Notify] %s受信した新しいメール" #: ../../Zotlabs/Lib/Enotify.php:129 #, php-format msgid "%1$s sent you a new private message at %2$s." -msgstr "" +msgstr "%1$sから%2$s新しいプライベートメッセージが送信されました。" #: ../../Zotlabs/Lib/Enotify.php:130 #, php-format msgid "%1$s sent you %2$s." -msgstr "" +msgstr "%1$sから%2$s送信されました。" #: ../../Zotlabs/Lib/Enotify.php:130 msgid "a private message" -msgstr "" +msgstr "プライベートメッセージ" #: ../../Zotlabs/Lib/Enotify.php:131 #, php-format msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" +msgstr "プライベートメッセージを表示または返信するには、 %sにアクセスしてください。" #: ../../Zotlabs/Lib/Enotify.php:144 msgid "commented on" -msgstr "" +msgstr "コメントした" #: ../../Zotlabs/Lib/Enotify.php:155 msgid "liked" -msgstr "" +msgstr "好きだった" #: ../../Zotlabs/Lib/Enotify.php:158 msgid "disliked" -msgstr "" +msgstr "嫌い" #: ../../Zotlabs/Lib/Enotify.php:201 #, php-format msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" -msgstr "" +msgstr "%1$s %2$s [zrl = %3$s ] a %4$s [/ zrl]" #: ../../Zotlabs/Lib/Enotify.php:209 #, php-format msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "" +msgstr "%1$s %2$s [zrl = %3$s ] %4$sの%5$s [/ zrl]" #: ../../Zotlabs/Lib/Enotify.php:218 #, php-format msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" -msgstr "" +msgstr "%1$s %2$s [zrl = %3$s ] %4$s [/ zrl]" #: ../../Zotlabs/Lib/Enotify.php:230 #, php-format msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" -msgstr "" +msgstr "[$ Projectname:Notify]会話へのモデレートされたコメント# %1$d by %2$s" #: ../../Zotlabs/Lib/Enotify.php:232 #, php-format msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" +msgstr "[$ Projectname:Notify]会話へのコメント# %1$d by %2$s" #: ../../Zotlabs/Lib/Enotify.php:233 #, php-format msgid "%1$s commented on an item/conversation you have been following." -msgstr "" +msgstr "%1$sあなたがフォローしているアイテム/会話にコメントしました。" #: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:317 #: ../../Zotlabs/Lib/Enotify.php:333 ../../Zotlabs/Lib/Enotify.php:358 #: ../../Zotlabs/Lib/Enotify.php:375 ../../Zotlabs/Lib/Enotify.php:388 #, php-format msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" +msgstr "会話を表示または返信するには、 %sにアクセスしてください。" #: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 #, php-format msgid "Please visit %s to approve or reject this comment." -msgstr "" +msgstr "このコメントを承認または拒否するには、 %sにアクセスしてください。" #: ../../Zotlabs/Lib/Enotify.php:299 #, php-format msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" -msgstr "" +msgstr "%1$sが[zrl = %2$s ] %3$s [/ zrl]を高く評価しました" #: ../../Zotlabs/Lib/Enotify.php:313 #, php-format msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" -msgstr "" +msgstr "[$ Projectname:Notify]会話# %1$dから%2$s受け取ったようです" #: ../../Zotlabs/Lib/Enotify.php:314 #, php-format msgid "%1$s liked an item/conversation you created." -msgstr "" +msgstr "%1$sがあなたが作成したアイテム/会話を気に入りました。" #: ../../Zotlabs/Lib/Enotify.php:325 #, php-format msgid "[$Projectname:Notify] %s posted to your profile wall" -msgstr "" +msgstr "[$ Projectname:Notify] %sプロフィールウォールに投稿されました" #: ../../Zotlabs/Lib/Enotify.php:327 #, php-format msgid "%1$s posted to your profile wall at %2$s" -msgstr "" +msgstr "%1$sがあなたのプロフィールウォールに%2$s投稿されました" #: ../../Zotlabs/Lib/Enotify.php:329 #, php-format msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" -msgstr "" +msgstr "%1$sが[zrl = %2$s ]壁[/ zrl]に投稿しました" #: ../../Zotlabs/Lib/Enotify.php:352 #, php-format msgid "[$Projectname:Notify] %s tagged you" -msgstr "" +msgstr "[$ Projectname:Notify] %sがあなたにタグを付けました" #: ../../Zotlabs/Lib/Enotify.php:353 #, php-format msgid "%1$s tagged you at %2$s" -msgstr "" +msgstr "%1$sがあなたを%2$sでタグ付けしました" #: ../../Zotlabs/Lib/Enotify.php:354 #, php-format msgid "%1$s [zrl=%2$s]tagged you[/zrl]." -msgstr "" +msgstr "%1$s [zrl = %2$s ]あなたにタグを付けました[/ zrl]。" #: ../../Zotlabs/Lib/Enotify.php:365 #, php-format msgid "[$Projectname:Notify] %1$s poked you" -msgstr "" +msgstr "[$ Projectname:Notify] %1$sあなたを突きました" #: ../../Zotlabs/Lib/Enotify.php:366 #, php-format msgid "%1$s poked you at %2$s" -msgstr "" +msgstr "%1$s %2$sであなたを突きました" #: ../../Zotlabs/Lib/Enotify.php:367 #, php-format msgid "%1$s [zrl=%2$s]poked you[/zrl]." -msgstr "" +msgstr "%1$s [zrl = %2$s ]があなたを突きました[/ zrl]。" #: ../../Zotlabs/Lib/Enotify.php:382 #, php-format msgid "[$Projectname:Notify] %s tagged your post" -msgstr "" +msgstr "[$ Projectname:Notify] %sがあなたの投稿にタグを付けました" #: ../../Zotlabs/Lib/Enotify.php:383 #, php-format msgid "%1$s tagged your post at %2$s" -msgstr "" +msgstr "%1$sがあなたの投稿を%2$sでタグ付けしました" #: ../../Zotlabs/Lib/Enotify.php:384 #, php-format msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" -msgstr "" +msgstr "%1$sが[zrl = %2$s ]あなたの投稿にタグを付けました[/ zrl]" #: ../../Zotlabs/Lib/Enotify.php:395 msgid "[$Projectname:Notify] Introduction received" -msgstr "" +msgstr "[$ Projectname:Notify]紹介を受け取りました" #: ../../Zotlabs/Lib/Enotify.php:396 #, php-format msgid "You've received an new connection request from '%1$s' at %2$s" -msgstr "" +msgstr "「 %1$s 」から%2$s新しい接続要求を受け取りました" #: ../../Zotlabs/Lib/Enotify.php:397 #, php-format msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." -msgstr "" +msgstr "[zrl = %1$s ] %2$sから新しい接続要求[/ zrl]を受け取りました。" #: ../../Zotlabs/Lib/Enotify.php:400 ../../Zotlabs/Lib/Enotify.php:418 #, php-format msgid "You may visit their profile at %s" -msgstr "" +msgstr "%sで彼らのプロフィールにアクセスできます" #: ../../Zotlabs/Lib/Enotify.php:402 #, php-format msgid "Please visit %s to approve or reject the connection request." -msgstr "" +msgstr "接続リクエストを承認または拒否するには、 %sにアクセスしてください。" #: ../../Zotlabs/Lib/Enotify.php:409 msgid "[$Projectname:Notify] Friend suggestion received" -msgstr "" +msgstr "[$ Projectname:Notify]友人の提案を受け取りました" #: ../../Zotlabs/Lib/Enotify.php:410 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" +msgstr "「 %1$s 」から%2$s友達の提案を受け取りました" #: ../../Zotlabs/Lib/Enotify.php:411 #, php-format msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." -msgstr "" +msgstr "[zrl = %1$s ] %3$sから%3$s %2$s友人の提案[/ zrl]を受け取りました。" #: ../../Zotlabs/Lib/Enotify.php:416 msgid "Name:" -msgstr "" +msgstr "名:" #: ../../Zotlabs/Lib/Enotify.php:417 msgid "Photo:" -msgstr "" +msgstr "写真:" #: ../../Zotlabs/Lib/Enotify.php:420 #, php-format msgid "Please visit %s to approve or reject the suggestion." -msgstr "" +msgstr "提案を承認または拒否するには、 %sにアクセスしてください。" #: ../../Zotlabs/Lib/Enotify.php:640 msgid "[$Projectname:Notify]" -msgstr "" +msgstr "[$ Projectname:Notify]" #: ../../Zotlabs/Lib/Enotify.php:808 msgid "created a new post" -msgstr "" +msgstr "新しい投稿を作成しました" #: ../../Zotlabs/Lib/Enotify.php:809 #, php-format msgid "commented on %s's post" -msgstr "" +msgstr "%sの投稿にコメントしました" #: ../../Zotlabs/Lib/Enotify.php:816 #, php-format msgid "edited a post dated %s" -msgstr "" +msgstr "%s日付の投稿を編集しました" #: ../../Zotlabs/Lib/Enotify.php:820 #, php-format msgid "edited a comment dated %s" -msgstr "" +msgstr "%s日付のコメントを編集しました" #: ../../Zotlabs/Lib/NativeWiki.php:143 msgid "Wiki updated successfully" -msgstr "" +msgstr "Wikiが正常に更新されました" #: ../../Zotlabs/Lib/NativeWiki.php:197 msgid "Wiki files deleted successfully" -msgstr "" +msgstr "Wikiファイルが正常に削除されました" #: ../../Zotlabs/Lib/NativeWikiPage.php:42 #: ../../Zotlabs/Lib/NativeWikiPage.php:94 msgid "(No Title)" -msgstr "" +msgstr "(無題)" #: ../../Zotlabs/Lib/NativeWikiPage.php:109 msgid "Wiki page create failed." -msgstr "" +msgstr "Wikiページの作成に失敗しました。" #: ../../Zotlabs/Lib/NativeWikiPage.php:122 msgid "Wiki not found." -msgstr "" +msgstr "Wikiが見つかりません。" #: ../../Zotlabs/Lib/NativeWikiPage.php:133 msgid "Destination name already exists" -msgstr "" +msgstr "宛先名はすでに存在します" #: ../../Zotlabs/Lib/NativeWikiPage.php:166 #: ../../Zotlabs/Lib/NativeWikiPage.php:362 msgid "Page not found" -msgstr "" +msgstr "ページが見つかりません" #: ../../Zotlabs/Lib/NativeWikiPage.php:197 msgid "Error reading page content" -msgstr "" +msgstr "ページコンテンツの読み取りエラー" #: ../../Zotlabs/Lib/NativeWikiPage.php:353 #: ../../Zotlabs/Lib/NativeWikiPage.php:402 #: ../../Zotlabs/Lib/NativeWikiPage.php:469 #: ../../Zotlabs/Lib/NativeWikiPage.php:510 msgid "Error reading wiki" -msgstr "" +msgstr "Wikiの読み取りエラー" #: ../../Zotlabs/Lib/NativeWikiPage.php:390 msgid "Page update failed." -msgstr "" +msgstr "ページの更新に失敗しました。" #: ../../Zotlabs/Lib/NativeWikiPage.php:424 msgid "Nothing deleted" -msgstr "" +msgstr "削除されたものはありません" #: ../../Zotlabs/Lib/NativeWikiPage.php:490 msgid "Compare: object not found." -msgstr "" +msgstr "比較:オブジェクトが見つかりません。" #: ../../Zotlabs/Lib/NativeWikiPage.php:496 msgid "Page updated" -msgstr "" +msgstr "ページを更新しました" #: ../../Zotlabs/Lib/NativeWikiPage.php:499 msgid "Untitled" -msgstr "" +msgstr "無題" #: ../../Zotlabs/Lib/NativeWikiPage.php:505 msgid "Wiki resource_id required for git commit" -msgstr "" +msgstr "gitコミットにはWiki resource_idが必要です" #: ../../Zotlabs/Lib/NativeWikiPage.php:561 #: ../../Zotlabs/Module/Admin/Channels.php:159 @@ -4483,129 +4483,129 @@ msgstr "" #: ../../Zotlabs/Storage/Browser.php:291 #: ../../Zotlabs/Widget/Wiki_page_history.php:22 msgid "Name" -msgstr "" +msgstr "名" #: ../../Zotlabs/Lib/NativeWikiPage.php:562 #: ../../Zotlabs/Widget/Wiki_page_history.php:23 msgctxt "wiki_history" msgid "Message" -msgstr "" +msgstr "メッセージ" #: ../../Zotlabs/Lib/NativeWikiPage.php:563 #: ../../Zotlabs/Widget/Wiki_page_history.php:24 msgid "Date" -msgstr "" +msgstr "日付" #: ../../Zotlabs/Lib/NativeWikiPage.php:564 ../../Zotlabs/Module/Wiki.php:367 #: ../../Zotlabs/Widget/Wiki_page_history.php:25 msgid "Revert" -msgstr "" +msgstr "元に戻す" #: ../../Zotlabs/Lib/NativeWikiPage.php:565 #: ../../Zotlabs/Widget/Wiki_page_history.php:26 msgid "Compare" -msgstr "" +msgstr "比較する" #: ../../Zotlabs/Lib/Permcat.php:82 msgctxt "permcat" msgid "default" -msgstr "" +msgstr "デフォルト" #: ../../Zotlabs/Lib/Permcat.php:133 msgctxt "permcat" msgid "follower" -msgstr "" +msgstr "信者" #: ../../Zotlabs/Lib/Permcat.php:137 msgctxt "permcat" msgid "contributor" -msgstr "" +msgstr "寄稿者" #: ../../Zotlabs/Lib/Permcat.php:141 msgctxt "permcat" msgid "publisher" -msgstr "" +msgstr "出版社" #: ../../Zotlabs/Lib/PermissionDescription.php:108 msgid "Public" -msgstr "" +msgstr "パブリック" #: ../../Zotlabs/Lib/PermissionDescription.php:109 msgid "Anybody in the $Projectname network" -msgstr "" +msgstr "$ Projectnameネットワークの誰でも" #: ../../Zotlabs/Lib/PermissionDescription.php:110 #, php-format msgid "Any account on %s" -msgstr "" +msgstr "%sアカウント" #: ../../Zotlabs/Lib/PermissionDescription.php:111 msgid "Any of my connections" -msgstr "" +msgstr "私の接続のいずれか" #: ../../Zotlabs/Lib/PermissionDescription.php:112 msgid "Only connections I specifically allow" -msgstr "" +msgstr "特に許可している接続のみ" #: ../../Zotlabs/Lib/PermissionDescription.php:113 msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "" +msgstr "認証された誰でも(他のネットワークからの訪問者を含めることができます)" #: ../../Zotlabs/Lib/PermissionDescription.php:114 msgid "Any connections including those who haven't yet been approved" -msgstr "" +msgstr "まだ承認されていない人を含むすべての接続" #: ../../Zotlabs/Lib/PermissionDescription.php:150 msgid "" "This is your default setting for the audience of your normal stream, and " "posts." -msgstr "" +msgstr "これは、通常のストリームと投稿の視聴者に対するデフォルト設定です。" #: ../../Zotlabs/Lib/PermissionDescription.php:151 msgid "" "This is your default setting for who can view your default channel profile" -msgstr "" +msgstr "これは、デフォルトのチャンネルプロファイルを表示できるユーザーのデフォルト設定です" #: ../../Zotlabs/Lib/PermissionDescription.php:152 msgid "This is your default setting for who can view your connections" -msgstr "" +msgstr "これは、接続を表示できるユーザーのデフォルト設定です" #: ../../Zotlabs/Lib/PermissionDescription.php:153 msgid "" "This is your default setting for who can view your file storage and photos" -msgstr "" +msgstr "これは、ファイルストレージと写真を表示できるユーザーのデフォルト設定です" #: ../../Zotlabs/Lib/PermissionDescription.php:154 msgid "This is your default setting for the audience of your webpages" -msgstr "" +msgstr "これは、Webページのオーディエンスのデフォルト設定です" #: ../../Zotlabs/Lib/Techlevels.php:10 msgid "0. Beginner/Basic" -msgstr "" +msgstr "0.初心者/基本" #: ../../Zotlabs/Lib/Techlevels.php:11 msgid "1. Novice - not skilled but willing to learn" -msgstr "" +msgstr "1.初心者-熟練していないが、学習したい" #: ../../Zotlabs/Lib/Techlevels.php:12 msgid "2. Intermediate - somewhat comfortable" -msgstr "" +msgstr "2.中級-やや快適" #: ../../Zotlabs/Lib/Techlevels.php:13 msgid "3. Advanced - very comfortable" -msgstr "" +msgstr "3.高度-非常に快適" #: ../../Zotlabs/Lib/Techlevels.php:14 msgid "4. Expert - I can write computer code" -msgstr "" +msgstr "4.エキスパート-コンピューターコードを書くことができます" #: ../../Zotlabs/Lib/Techlevels.php:15 msgid "5. Wizard - I probably know more than you do" -msgstr "" +msgstr "5.ウィザード-私はおそらくあなたよりも多くを知っています" #: ../../Zotlabs/Lib/ThreadItem.php:129 msgid "Privacy conflict. Discretion advised." -msgstr "" +msgstr "プライバシーの競合。裁量をお勧めします。" #: ../../Zotlabs/Lib/ThreadItem.php:171 ../../Zotlabs/Storage/Browser.php:286 msgid "Admin Delete" @@ -4654,7 +4654,7 @@ msgstr "好き(トグル)" #: ../../Zotlabs/Lib/ThreadItem.php:307 ../../Zotlabs/Module/Photos.php:1116 msgid "I don't like this (toggle)" -msgstr "" +msgstr "気に入らない(トグル)" #: ../../Zotlabs/Lib/ThreadItem.php:317 msgid "Share This" @@ -4680,19 +4680,19 @@ msgstr "%sのプロファイルを見る - %s" #: ../../Zotlabs/Lib/ThreadItem.php:385 msgid "to" -msgstr "" +msgstr "に" #: ../../Zotlabs/Lib/ThreadItem.php:386 msgid "via" -msgstr "" +msgstr "経由で" #: ../../Zotlabs/Lib/ThreadItem.php:387 msgid "Wall-to-Wall" -msgstr "" +msgstr "壁間" #: ../../Zotlabs/Lib/ThreadItem.php:388 msgid "via Wall-To-Wall:" -msgstr "" +msgstr "Wall-to-Wall経由:" #: ../../Zotlabs/Lib/ThreadItem.php:414 msgid "Attend" @@ -4700,7 +4700,7 @@ msgstr "参加" #: ../../Zotlabs/Lib/ThreadItem.php:415 msgid "Attendance Options" -msgstr "" +msgstr "出席オプション" #: ../../Zotlabs/Lib/ThreadItem.php:416 msgid "Vote" @@ -4736,67 +4736,67 @@ msgstr "嫌い" #: ../../Zotlabs/Lib/ThreadItem.php:792 ../../Zotlabs/Module/Photos.php:1135 #: ../../Zotlabs/Module/Photos.php:1254 msgid "This is you" -msgstr "" +msgstr "これはあなたです" #: ../../Zotlabs/Lib/ThreadItem.php:801 msgid "Image" -msgstr "" +msgstr "画像" #: ../../Zotlabs/Lib/ThreadItem.php:803 msgid "Insert Link" -msgstr "" +msgstr "リンクを挿入" #: ../../Zotlabs/Lib/ThreadItem.php:804 msgid "Video" -msgstr "" +msgstr "ビデオ" #: ../../Zotlabs/Lib/ThreadItem.php:814 msgid "Your full name (required)" -msgstr "" +msgstr "あなたの氏名(必須)" #: ../../Zotlabs/Lib/ThreadItem.php:815 msgid "Your email address (required)" -msgstr "" +msgstr "あなたのメールアドレス(必須)" #: ../../Zotlabs/Lib/ThreadItem.php:816 msgid "Your website URL (optional)" -msgstr "" +msgstr "WebサイトのURL(オプション)" #: ../../Zotlabs/Module/Achievements.php:38 msgid "Some blurb about what to do when you're new here" -msgstr "" +msgstr "ここに初めて来たときに何をすべきかについてのいくつかの宣伝文句" #: ../../Zotlabs/Module/Acl.php:360 msgid "network" -msgstr "" +msgstr "ネットワーク" #: ../../Zotlabs/Module/Admin/Accounts.php:37 #, php-format msgid "%s account blocked/unblocked" msgid_plural "%s account blocked/unblocked" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%sアカウントがブロック/ブロック解除されました" +msgstr[1] "%sアカウントがブロック/ブロック解除されました" #: ../../Zotlabs/Module/Admin/Accounts.php:44 #, php-format msgid "%s account deleted" msgid_plural "%s accounts deleted" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%sアカウントが削除されました" +msgstr[1] "%sアカウントが削除されました" #: ../../Zotlabs/Module/Admin/Accounts.php:80 msgid "Account not found" -msgstr "" +msgstr "アカウントが見つかりません" #: ../../Zotlabs/Module/Admin/Accounts.php:99 #, php-format msgid "Account '%s' blocked" -msgstr "" +msgstr "アカウント ' %s 'はブロックされました" #: ../../Zotlabs/Module/Admin/Accounts.php:107 #, php-format msgid "Account '%s' unblocked" -msgstr "" +msgstr "アカウント ' %s 'のブロックを解除しました" #: ../../Zotlabs/Module/Admin/Accounts.php:166 #: ../../Zotlabs/Module/Admin/Addons.php:341 @@ -4808,86 +4808,86 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Themes.php:122 #: ../../Zotlabs/Module/Admin/Themes.php:156 ../../Zotlabs/Module/Admin.php:138 msgid "Administration" -msgstr "" +msgstr "運営" #: ../../Zotlabs/Module/Admin/Accounts.php:167 #: ../../Zotlabs/Module/Admin/Accounts.php:180 #: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 msgid "Accounts" -msgstr "" +msgstr "アカウント" #: ../../Zotlabs/Module/Admin/Accounts.php:169 #: ../../Zotlabs/Module/Admin/Channels.php:148 msgid "select all" -msgstr "" +msgstr "すべて選択" #: ../../Zotlabs/Module/Admin/Accounts.php:170 msgid "Registrations waiting for confirm" -msgstr "" +msgstr "確認待ちの登録" #: ../../Zotlabs/Module/Admin/Accounts.php:171 msgid "Request date" -msgstr "" +msgstr "依頼日" #: ../../Zotlabs/Module/Admin/Accounts.php:172 msgid "No registrations." -msgstr "" +msgstr "登録なし。" #: ../../Zotlabs/Module/Admin/Accounts.php:174 #: ../../Zotlabs/Module/Authorize.php:33 msgid "Deny" -msgstr "" +msgstr "拒否する" #: ../../Zotlabs/Module/Admin/Accounts.php:176 #: ../../Zotlabs/Module/Connedit.php:636 msgid "Block" -msgstr "" +msgstr "ブロック" #: ../../Zotlabs/Module/Admin/Accounts.php:177 #: ../../Zotlabs/Module/Connedit.php:636 msgid "Unblock" -msgstr "" +msgstr "ブロック解除" #: ../../Zotlabs/Module/Admin/Accounts.php:182 msgid "ID" -msgstr "" +msgstr "ID" #: ../../Zotlabs/Module/Admin/Accounts.php:184 msgid "All Channels" -msgstr "" +msgstr "すべてのチャンネル" #: ../../Zotlabs/Module/Admin/Accounts.php:185 msgid "Register date" -msgstr "" +msgstr "登録日" #: ../../Zotlabs/Module/Admin/Accounts.php:186 msgid "Last login" -msgstr "" +msgstr "前回のログイン" #: ../../Zotlabs/Module/Admin/Accounts.php:187 msgid "Expires" -msgstr "" +msgstr "期限切れ" #: ../../Zotlabs/Module/Admin/Accounts.php:188 msgid "Service Class" -msgstr "" +msgstr "サービスクラス" #: ../../Zotlabs/Module/Admin/Accounts.php:190 msgid "" "Selected accounts will be deleted!\\n\\nEverything these accounts had posted " "on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" +msgstr "選択したアカウントは削除されます!\\ n \\ nこれらのアカウントがこのサイトに投稿したものはすべて完全に削除されます!\\ n \\ nよろしいですか?" #: ../../Zotlabs/Module/Admin/Accounts.php:191 msgid "" "The account {0} will be deleted!\\n\\nEverything this account has posted on " "this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" +msgstr "アカウント{0}は削除されます。\\ n \\ nこのアカウントがこのサイトに投稿したものはすべて完全に削除されます!\\ n \\ nよろしいですか?" #: ../../Zotlabs/Module/Admin/Account_edit.php:29 #, php-format msgid "Password changed for account %d." -msgstr "" +msgstr "アカウント%dパスワードが変更されました。" #: ../../Zotlabs/Module/Admin/Account_edit.php:46 msgid "Account settings updated." @@ -4895,281 +4895,281 @@ msgstr "アカウント設定は更新されました。" #: ../../Zotlabs/Module/Admin/Account_edit.php:61 msgid "Account not found." -msgstr "" +msgstr "アカウントが見つかりません。" #: ../../Zotlabs/Module/Admin/Account_edit.php:68 msgid "Account Edit" -msgstr "" +msgstr "アカウント編集" #: ../../Zotlabs/Module/Admin/Account_edit.php:69 msgid "New Password" -msgstr "" +msgstr "新しいパスワード" #: ../../Zotlabs/Module/Admin/Account_edit.php:70 msgid "New Password again" -msgstr "" +msgstr "新しいパスワードを再入力" #: ../../Zotlabs/Module/Admin/Account_edit.php:71 msgid "Account language (for emails)" -msgstr "" +msgstr "アカウント言語(メール用)" #: ../../Zotlabs/Module/Admin/Account_edit.php:72 msgid "Service class" -msgstr "" +msgstr "サービスクラス" #: ../../Zotlabs/Module/Admin/Addons.php:289 #, php-format msgid "Plugin %s disabled." -msgstr "" +msgstr "プラグイン%s無効です。" #: ../../Zotlabs/Module/Admin/Addons.php:294 #, php-format msgid "Plugin %s enabled." -msgstr "" +msgstr "プラグイン%s有効になりました。" #: ../../Zotlabs/Module/Admin/Addons.php:310 #: ../../Zotlabs/Module/Admin/Themes.php:95 msgid "Disable" -msgstr "" +msgstr "無効にする" #: ../../Zotlabs/Module/Admin/Addons.php:313 #: ../../Zotlabs/Module/Admin/Themes.php:97 msgid "Enable" -msgstr "" +msgstr "有効にする" #: ../../Zotlabs/Module/Admin/Addons.php:342 #: ../../Zotlabs/Module/Admin/Addons.php:440 ../../Zotlabs/Widget/Admin.php:27 msgid "Addons" -msgstr "" +msgstr "アドオン" #: ../../Zotlabs/Module/Admin/Addons.php:343 #: ../../Zotlabs/Module/Admin/Themes.php:124 msgid "Toggle" -msgstr "" +msgstr "トグル" #: ../../Zotlabs/Module/Admin/Addons.php:351 #: ../../Zotlabs/Module/Admin/Themes.php:134 msgid "Author: " -msgstr "" +msgstr "著者:" #: ../../Zotlabs/Module/Admin/Addons.php:352 #: ../../Zotlabs/Module/Admin/Themes.php:135 msgid "Maintainer: " -msgstr "" +msgstr "メンテナー:" #: ../../Zotlabs/Module/Admin/Addons.php:353 msgid "Minimum project version: " -msgstr "" +msgstr "最小プロジェクトバージョン:" #: ../../Zotlabs/Module/Admin/Addons.php:354 msgid "Maximum project version: " -msgstr "" +msgstr "最大プロジェクトバージョン:" #: ../../Zotlabs/Module/Admin/Addons.php:355 msgid "Minimum PHP version: " -msgstr "" +msgstr "最小PHPバージョン:" #: ../../Zotlabs/Module/Admin/Addons.php:356 msgid "Compatible Server Roles: " -msgstr "" +msgstr "互換性のあるサーバーの役割:" #: ../../Zotlabs/Module/Admin/Addons.php:357 msgid "Requires: " -msgstr "" +msgstr "必要なもの:" #: ../../Zotlabs/Module/Admin/Addons.php:358 #: ../../Zotlabs/Module/Admin/Addons.php:445 msgid "Disabled - version incompatibility" -msgstr "" +msgstr "無効-バージョンの非互換性" #: ../../Zotlabs/Module/Admin/Addons.php:414 msgid "Enter the public git repository URL of the addon repo." -msgstr "" +msgstr "アドオンリポジトリの公開gitリポジトリURLを入力します。" #: ../../Zotlabs/Module/Admin/Addons.php:415 msgid "Addon repo git URL" -msgstr "" +msgstr "アドオンリポジトリgit URL" #: ../../Zotlabs/Module/Admin/Addons.php:416 msgid "Custom repo name" -msgstr "" +msgstr "カスタムリポジトリ名" #: ../../Zotlabs/Module/Admin/Addons.php:416 msgid "(optional)" -msgstr "" +msgstr "(オプション)" #: ../../Zotlabs/Module/Admin/Addons.php:417 msgid "Download Addon Repo" -msgstr "" +msgstr "アドオンリポジトリのダウンロード" #: ../../Zotlabs/Module/Admin/Addons.php:424 msgid "Install new repo" -msgstr "" +msgstr "新しいレポをインストールする" #: ../../Zotlabs/Module/Admin/Addons.php:448 msgid "Manage Repos" -msgstr "" +msgstr "リポジトリの管理" #: ../../Zotlabs/Module/Admin/Addons.php:449 msgid "Installed Addon Repositories" -msgstr "" +msgstr "インストールされたアドオンリポジトリ" #: ../../Zotlabs/Module/Admin/Addons.php:450 msgid "Install a New Addon Repository" -msgstr "" +msgstr "新しいアドオンリポジトリをインストールする" #: ../../Zotlabs/Module/Admin/Addons.php:457 msgid "Switch branch" -msgstr "" +msgstr "スイッチブランチ" #: ../../Zotlabs/Module/Admin/Addons.php:458 #: ../../Zotlabs/Module/Cover_photo.php:421 #: ../../Zotlabs/Module/Photos.php:1035 ../../Zotlabs/Module/Tagrm.php:137 msgid "Remove" -msgstr "" +msgstr "削除する" #: ../../Zotlabs/Module/Admin/Channels.php:31 #, php-format msgid "%s channel censored/uncensored" msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%sチャンネルの検閲/無検閲" +msgstr[1] "%sチャンネルの検閲/無検閲" #: ../../Zotlabs/Module/Admin/Channels.php:40 #, php-format msgid "%s channel code allowed/disallowed" msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%sチャンネルコードの許可/禁止" +msgstr[1] "%sチャンネルコードの許可/禁止" #: ../../Zotlabs/Module/Admin/Channels.php:46 #, php-format msgid "%s channel deleted" msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%sチャンネルが削除されました" +msgstr[1] "%sチャンネルが削除されました" #: ../../Zotlabs/Module/Admin/Channels.php:65 msgid "Channel not found" -msgstr "" +msgstr "チャンネルが見つかりません" #: ../../Zotlabs/Module/Admin/Channels.php:75 #, php-format msgid "Channel '%s' deleted" -msgstr "" +msgstr "チャンネル「 %s 」を削除しました" #: ../../Zotlabs/Module/Admin/Channels.php:87 #, php-format msgid "Channel '%s' censored" -msgstr "" +msgstr "チャンネル ' %s 'は打ち切られました" #: ../../Zotlabs/Module/Admin/Channels.php:87 #, php-format msgid "Channel '%s' uncensored" -msgstr "" +msgstr "チャンネル ' %s 'は無修正" #: ../../Zotlabs/Module/Admin/Channels.php:98 #, php-format msgid "Channel '%s' code allowed" -msgstr "" +msgstr "チャンネル「 %s 」コードが許可されています" #: ../../Zotlabs/Module/Admin/Channels.php:98 #, php-format msgid "Channel '%s' code disallowed" -msgstr "" +msgstr "チャンネル ' %s 'コードは許可されていません" #: ../../Zotlabs/Module/Admin/Channels.php:146 #: ../../Zotlabs/Module/Admin.php:114 ../../Zotlabs/Widget/Admin.php:24 msgid "Channels" -msgstr "" +msgstr "チャンネル" #: ../../Zotlabs/Module/Admin/Channels.php:150 msgid "Censor" -msgstr "" +msgstr "検閲" #: ../../Zotlabs/Module/Admin/Channels.php:151 msgid "Uncensor" -msgstr "" +msgstr "無修正" #: ../../Zotlabs/Module/Admin/Channels.php:152 msgid "Allow Code" -msgstr "" +msgstr "コードを許可" #: ../../Zotlabs/Module/Admin/Channels.php:153 msgid "Disallow Code" -msgstr "" +msgstr "コードを許可しない" #: ../../Zotlabs/Module/Admin/Channels.php:158 msgid "UID" -msgstr "" +msgstr "UID" #: ../../Zotlabs/Module/Admin/Channels.php:160 #: ../../Zotlabs/Module/Cdav.php:1249 ../../Zotlabs/Module/Connedit.php:930 #: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:502 #: ../../Zotlabs/Module/Profiles.php:790 msgid "Address" -msgstr "" +msgstr "住所" #: ../../Zotlabs/Module/Admin/Channels.php:162 msgid "" "Selected channels will be deleted!\\n\\nEverything that was posted in these " "channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" +msgstr "選択したチャンネルは削除されます!\\ n \\ nこのサイトのこれらのチャンネルに投稿されたものはすべて完全に削除されます!\\ n \\ nよろしいですか?" #: ../../Zotlabs/Module/Admin/Channels.php:163 msgid "" "The channel {0} will be deleted!\\n\\nEverything that was posted in this " "channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" +msgstr "チャンネル{0}は削除されます!\\ n \\ nこのサイトでこのチャンネルに投稿されたすべてのものは完全に削除されます!\\ n \\ nよろしいですか?" #: ../../Zotlabs/Module/Admin/Dbsync.php:19 msgid "Update has been marked successful" -msgstr "" +msgstr "更新に成功のマークが付けられました" #: ../../Zotlabs/Module/Admin/Dbsync.php:31 #, php-format msgid "Executing %s failed. Check system logs." -msgstr "" +msgstr "%s実行に失敗しました。システムログを確認してください。" #: ../../Zotlabs/Module/Admin/Dbsync.php:34 #, php-format msgid "Update %s was successfully applied." -msgstr "" +msgstr "更新%sが正常に適用されました。" #: ../../Zotlabs/Module/Admin/Dbsync.php:38 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" +msgstr "更新%sはステータスを返しませんでした。成功した場合は不明です。" #: ../../Zotlabs/Module/Admin/Dbsync.php:41 #, php-format msgid "Update function %s could not be found." -msgstr "" +msgstr "更新関数%sが見つかりませんでした。" #: ../../Zotlabs/Module/Admin/Dbsync.php:59 msgid "Failed Updates" -msgstr "" +msgstr "失敗した更新" #: ../../Zotlabs/Module/Admin/Dbsync.php:61 msgid "Mark success (if update was manually applied)" -msgstr "" +msgstr "成功をマーク(更新が手動で適用された場合)" #: ../../Zotlabs/Module/Admin/Dbsync.php:62 msgid "Attempt to execute this update step automatically" -msgstr "" +msgstr "この更新手順を自動的に実行しようとします" #: ../../Zotlabs/Module/Admin/Dbsync.php:67 msgid "No failed updates." -msgstr "" +msgstr "失敗した更新はありません。" #: ../../Zotlabs/Module/Admin/Features.php:56 #, php-format msgid "Lock feature %s" -msgstr "" +msgstr "機能%sロック" #: ../../Zotlabs/Module/Admin/Features.php:64 msgid "Manage Additional Features" -msgstr "" +msgstr "追加機能を管理する" #: ../../Zotlabs/Module/Admin/Logs.php:28 msgid "Log settings updated." @@ -5178,256 +5178,256 @@ msgstr "ログ設定が更新されました。" #: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 #: ../../Zotlabs/Widget/Admin.php:58 msgid "Logs" -msgstr "" +msgstr "ログ" #: ../../Zotlabs/Module/Admin/Logs.php:85 msgid "Clear" -msgstr "" +msgstr "クリア" #: ../../Zotlabs/Module/Admin/Logs.php:91 msgid "Debugging" -msgstr "" +msgstr "デバッグ" #: ../../Zotlabs/Module/Admin/Logs.php:92 msgid "Log file" -msgstr "" +msgstr "ログファイル" #: ../../Zotlabs/Module/Admin/Logs.php:92 msgid "" "Must be writable by web server. Relative to your top-level webserver " "directory." -msgstr "" +msgstr "Webサーバーから書き込み可能である必要があります。最上位のWebサーバーディレクトリに関連します。" #: ../../Zotlabs/Module/Admin/Logs.php:93 msgid "Log level" -msgstr "" +msgstr "ログレベル" #: ../../Zotlabs/Module/Admin/Profs.php:89 msgid "New Profile Field" -msgstr "" +msgstr "新しいプロファイルフィールド" #: ../../Zotlabs/Module/Admin/Profs.php:90 #: ../../Zotlabs/Module/Admin/Profs.php:110 msgid "Field nickname" -msgstr "" +msgstr "フィールドのニックネーム" #: ../../Zotlabs/Module/Admin/Profs.php:90 #: ../../Zotlabs/Module/Admin/Profs.php:110 msgid "System name of field" -msgstr "" +msgstr "フィールドのシステム名" #: ../../Zotlabs/Module/Admin/Profs.php:91 #: ../../Zotlabs/Module/Admin/Profs.php:111 msgid "Input type" -msgstr "" +msgstr "入力方式" #: ../../Zotlabs/Module/Admin/Profs.php:92 #: ../../Zotlabs/Module/Admin/Profs.php:112 msgid "Field Name" -msgstr "" +msgstr "フィールド名" #: ../../Zotlabs/Module/Admin/Profs.php:92 #: ../../Zotlabs/Module/Admin/Profs.php:112 msgid "Label on profile pages" -msgstr "" +msgstr "プロフィールページのラベル" #: ../../Zotlabs/Module/Admin/Profs.php:93 #: ../../Zotlabs/Module/Admin/Profs.php:113 msgid "Help text" -msgstr "" +msgstr "ヘルプテキスト" #: ../../Zotlabs/Module/Admin/Profs.php:93 #: ../../Zotlabs/Module/Admin/Profs.php:113 msgid "Additional info (optional)" -msgstr "" +msgstr "追加情報(オプション)" #: ../../Zotlabs/Module/Admin/Profs.php:103 msgid "Field definition not found" -msgstr "" +msgstr "フィールド定義が見つかりません" #: ../../Zotlabs/Module/Admin/Profs.php:109 msgid "Edit Profile Field" -msgstr "" +msgstr "プロファイルフィールドの編集" #: ../../Zotlabs/Module/Admin/Profs.php:168 ../../Zotlabs/Widget/Admin.php:30 msgid "Profile Fields" -msgstr "" +msgstr "プロファイルフィールド" #: ../../Zotlabs/Module/Admin/Profs.php:169 msgid "Basic Profile Fields" -msgstr "" +msgstr "基本プロファイルフィールド" #: ../../Zotlabs/Module/Admin/Profs.php:170 msgid "Advanced Profile Fields" -msgstr "" +msgstr "高度なプロファイルフィールド" #: ../../Zotlabs/Module/Admin/Profs.php:170 msgid "(In addition to basic fields)" -msgstr "" +msgstr "(基本的なフィールドに加えて)" #: ../../Zotlabs/Module/Admin/Profs.php:172 msgid "All available fields" -msgstr "" +msgstr "利用可能なすべてのフィールド" #: ../../Zotlabs/Module/Admin/Profs.php:173 msgid "Custom Fields" -msgstr "" +msgstr "カスタムフィールド" #: ../../Zotlabs/Module/Admin/Profs.php:177 msgid "Create Custom Field" -msgstr "" +msgstr "カスタムフィールドを作成" #: ../../Zotlabs/Module/Admin/Queue.php:35 msgid "Queue Statistics" -msgstr "" +msgstr "キュー統計" #: ../../Zotlabs/Module/Admin/Queue.php:36 msgid "Total Entries" -msgstr "" +msgstr "総エントリー数" #: ../../Zotlabs/Module/Admin/Queue.php:37 msgid "Priority" -msgstr "" +msgstr "優先度" #: ../../Zotlabs/Module/Admin/Queue.php:38 msgid "Destination URL" -msgstr "" +msgstr "リンク先URL" #: ../../Zotlabs/Module/Admin/Queue.php:39 msgid "Mark hub permanently offline" -msgstr "" +msgstr "ハブを完全にオフラインとしてマークする" #: ../../Zotlabs/Module/Admin/Queue.php:40 msgid "Empty queue for this hub" -msgstr "" +msgstr "このハブの空のキュー" #: ../../Zotlabs/Module/Admin/Queue.php:41 msgid "Last known contact" -msgstr "" +msgstr "最後の既知の連絡先" #: ../../Zotlabs/Module/Admin/Security.php:83 msgid "" "By default, unfiltered HTML is allowed in embedded media. This is inherently " "insecure." -msgstr "" +msgstr "デフォルトでは、埋め込みメディアではフィルタリングされていないHTMLが許可されています。これは本質的に安全ではありません。" #: ../../Zotlabs/Module/Admin/Security.php:86 msgid "" "The recommended setting is to only allow unfiltered HTML from the following " "sites:" -msgstr "" +msgstr "推奨される設定は、次のサイトからのフィルタリングされていないHTMLのみを許可することです。" #: ../../Zotlabs/Module/Admin/Security.php:87 msgid "" "https://youtube.com/
https://www.youtube.com/
https://youtu.be/" "
https://vimeo.com/
https://soundcloud.com/
" -msgstr "" +msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" #: ../../Zotlabs/Module/Admin/Security.php:88 msgid "" "All other embedded content will be filtered, unless " "embedded content from that site is explicitly blocked." -msgstr "" +msgstr "他のすべての埋め込みコンテンツはフィルタリングされ、そのサイトからの埋め込みコンテンツが明示的にブロックされない限り 。" #: ../../Zotlabs/Module/Admin/Security.php:93 ../../Zotlabs/Widget/Admin.php:25 msgid "Security" -msgstr "" +msgstr "セキュリティ" #: ../../Zotlabs/Module/Admin/Security.php:95 msgid "Block public" -msgstr "" +msgstr "一般公開をブロック" #: ../../Zotlabs/Module/Admin/Security.php:95 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently authenticated." -msgstr "" +msgstr "現在認証されていない限り、このサイトで公開されている他のすべての個人ページへの公開アクセスをブロックする場合にオンにします。" #: ../../Zotlabs/Module/Admin/Security.php:96 msgid "Provide a cloud root directory" -msgstr "" +msgstr "クラウドルートディレクトリを提供する" #: ../../Zotlabs/Module/Admin/Security.php:96 msgid "" "The cloud root directory lists all channel names which provide public files" -msgstr "" +msgstr "クラウドルートディレクトリには、パブリックファイルを提供するすべてのチャネル名がリストされます" #: ../../Zotlabs/Module/Admin/Security.php:97 msgid "Show total disk space available to cloud uploads" -msgstr "" +msgstr "クラウドアップロードに使用可能な合計ディスク容量を表示する" #: ../../Zotlabs/Module/Admin/Security.php:98 msgid "Set \"Transport Security\" HTTP header" -msgstr "" +msgstr "\ "Transport Security \" HTTPヘッダーを設定します" #: ../../Zotlabs/Module/Admin/Security.php:99 msgid "Set \"Content Security Policy\" HTTP header" -msgstr "" +msgstr "「コンテンツセキュリティポリシー」HTTPヘッダーを設定します" #: ../../Zotlabs/Module/Admin/Security.php:100 msgid "Allowed email domains" -msgstr "" +msgstr "許可されたメールドメイン" #: ../../Zotlabs/Module/Admin/Security.php:100 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" -msgstr "" +msgstr "このサイトへの登録用の電子メールアドレスで許可されるドメインのカンマ区切りリスト。ワイルドカードが受け入れられます。すべてのドメインを許可するには空" #: ../../Zotlabs/Module/Admin/Security.php:101 msgid "Not allowed email domains" -msgstr "" +msgstr "メールドメインは許可されていません" #: ../../Zotlabs/Module/Admin/Security.php:101 msgid "" "Comma separated list of domains which are not allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains, unless allowed domains have been defined." -msgstr "" +msgstr "このサイトへの登録用の電子メールアドレスで許可されていないドメインのカンマ区切りリスト。ワイルドカードが受け入れられます。許可されたドメインが定義されていない限り、すべてのドメインを許可するには空にします。" #: ../../Zotlabs/Module/Admin/Security.php:102 msgid "Allow communications only from these sites" -msgstr "" +msgstr "これらのサイトからの通信のみを許可する" #: ../../Zotlabs/Module/Admin/Security.php:102 msgid "" "One site per line. Leave empty to allow communication from anywhere by " "default" -msgstr "" +msgstr "1行に1つのサイト。空のままにして、デフォルトでどこからでも通信できるようにします" #: ../../Zotlabs/Module/Admin/Security.php:103 msgid "Block communications from these sites" -msgstr "" +msgstr "これらのサイトからの通信をブロックする" #: ../../Zotlabs/Module/Admin/Security.php:104 msgid "Allow communications only from these channels" -msgstr "" +msgstr "これらのチャネルからの通信のみを許可する" #: ../../Zotlabs/Module/Admin/Security.php:104 msgid "" "One channel (hash) per line. Leave empty to allow from any channel by default" -msgstr "" +msgstr "1行に1つのチャネル(ハッシュ)。デフォルトで任意のチャンネルから許可するには空のままにします" #: ../../Zotlabs/Module/Admin/Security.php:105 msgid "Block communications from these channels" -msgstr "" +msgstr "これらのチャネルからの通信をブロックする" #: ../../Zotlabs/Module/Admin/Security.php:106 msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "" +msgstr "安全な(SSL)Webサイトおよびリンクからの埋め込みのみを許可します。" #: ../../Zotlabs/Module/Admin/Security.php:107 msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "" +msgstr "これらのドメインからのみ、フィルタリングされていない埋め込みHTMLコンテンツを許可します" #: ../../Zotlabs/Module/Admin/Security.php:107 msgid "One site per line. By default embedded content is filtered." -msgstr "" +msgstr "1行に1つのサイト。デフォルトでは、埋め込みコンテンツはフィルタリングされます。" #: ../../Zotlabs/Module/Admin/Security.php:108 msgid "Block embedded HTML from these domains" -msgstr "" +msgstr "これらのドメインからの埋め込みHTMLをブロックする" #: ../../Zotlabs/Module/Admin/Site.php:161 msgid "Site settings updated." @@ -5437,39 +5437,39 @@ msgstr "サイトの設定は更新されました。" #: ../../Zotlabs/Module/Settings/Display.php:119 #, php-format msgid "%s - (Incompatible)" -msgstr "" +msgstr "%s (互換性なし)" #: ../../Zotlabs/Module/Admin/Site.php:205 msgid "mobile" -msgstr "" +msgstr "モバイル" #: ../../Zotlabs/Module/Admin/Site.php:207 msgid "experimental" -msgstr "" +msgstr "実験的" #: ../../Zotlabs/Module/Admin/Site.php:209 msgid "unsupported" -msgstr "" +msgstr "サポートされていない" #: ../../Zotlabs/Module/Admin/Site.php:256 msgid "Yes - with approval" -msgstr "" +msgstr "はい-承認済み" #: ../../Zotlabs/Module/Admin/Site.php:262 msgid "My site is not a public server" -msgstr "" +msgstr "私のサイトは公開サーバーではありません" #: ../../Zotlabs/Module/Admin/Site.php:263 msgid "My site has paid access only" -msgstr "" +msgstr "私のサイトは有料アクセスのみです" #: ../../Zotlabs/Module/Admin/Site.php:264 msgid "My site has free access only" -msgstr "" +msgstr "私のサイトは無料アクセスのみです" #: ../../Zotlabs/Module/Admin/Site.php:265 msgid "My site offers free accounts with optional paid upgrades" -msgstr "" +msgstr "私のサイトはオプションの有料アップグレードで無料アカウントを提供しています" #: ../../Zotlabs/Module/Admin/Site.php:279 msgid "Default permission role for new accounts" @@ -5478,7 +5478,7 @@ msgstr "新しいアカウントへのデフォルトの権限定義" #: ../../Zotlabs/Module/Admin/Site.php:279 msgid "" "This role will be used for the first channel created after registration." -msgstr "" +msgstr "この役割は、登録後に作成される最初のチャネルに使用されます。" #: ../../Zotlabs/Module/Admin/Site.php:288 ../../Zotlabs/Widget/Admin.php:22 msgid "Site" @@ -5507,7 +5507,7 @@ msgstr "バナー/ロゴ" #: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Unfiltered HTML/CSS/JS is allowed" -msgstr "" +msgstr "フィルタリングされていないHTML / CSS / JSは許可されます" #: ../../Zotlabs/Module/Admin/Site.php:300 msgid "Administrator Information" @@ -5517,7 +5517,7 @@ msgstr "管理者情報" msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" -msgstr "" +msgstr "サイト管理者の連絡先情報。 siteinfoページに表示されます。 BBCodeはここで使用できます" #: ../../Zotlabs/Module/Admin/Site.php:301 ../../Zotlabs/Module/Siteinfo.php:24 msgid "Site Information" @@ -5527,7 +5527,7 @@ msgstr "サイト情報" msgid "" "Publicly visible description of this site. Displayed on siteinfo page. " "BBCode can be used here" -msgstr "" +msgstr "このサイトの一般公開されている説明。 siteinfoページに表示されます。 BBCodeはここで使用できます" #: ../../Zotlabs/Module/Admin/Site.php:302 msgid "System language" @@ -5541,155 +5541,155 @@ msgstr "システムテーマ" msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" +msgstr "デフォルトのシステムテーマ-ユーザープロファイルによって上書きされる場合があります-テーマ設定の変更" #: ../../Zotlabs/Module/Admin/Site.php:306 msgid "Allow Feeds as Connections" -msgstr "" +msgstr "接続としてフィードを許可する" #: ../../Zotlabs/Module/Admin/Site.php:306 msgid "(Heavy system resource usage)" -msgstr "" +msgstr "(重いシステムリソースの使用)" #: ../../Zotlabs/Module/Admin/Site.php:307 msgid "Maximum image size" -msgstr "" +msgstr "最大画像サイズ" #: ../../Zotlabs/Module/Admin/Site.php:307 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." -msgstr "" +msgstr "アップロードされる画像の最大サイズ(バイト単位)。デフォルトは0で、制限がないことを意味します。" #: ../../Zotlabs/Module/Admin/Site.php:308 msgid "Does this site allow new member registration?" -msgstr "" +msgstr "このサイトは新規会員登録を許可していますか?" #: ../../Zotlabs/Module/Admin/Site.php:309 msgid "Invitation only" -msgstr "" +msgstr "招待のみ" #: ../../Zotlabs/Module/Admin/Site.php:309 msgid "" "Only allow new member registrations with an invitation code. Above register " "policy must be set to Yes." -msgstr "" +msgstr "招待コードを使用した新しいメンバー登録のみを許可します。上記の登録ポリシーは「はい」に設定する必要があります。" #: ../../Zotlabs/Module/Admin/Site.php:310 msgid "Minimum age" -msgstr "" +msgstr "最低年齢" #: ../../Zotlabs/Module/Admin/Site.php:310 msgid "Minimum age (in years) for who may register on this site." -msgstr "" +msgstr "このサイトに登録できる最低年齢(年)。" #: ../../Zotlabs/Module/Admin/Site.php:311 msgid "Which best describes the types of account offered by this hub?" -msgstr "" +msgstr "このハブが提供するアカウントの種類を最もよく説明しているのはどれですか?" #: ../../Zotlabs/Module/Admin/Site.php:311 msgid "This is displayed on the public server site list." -msgstr "" +msgstr "これは、公開サーバーのサイトリストに表示されます。" #: ../../Zotlabs/Module/Admin/Site.php:312 msgid "Register text" -msgstr "" +msgstr "登録テキスト" #: ../../Zotlabs/Module/Admin/Site.php:312 msgid "Will be displayed prominently on the registration page." -msgstr "" +msgstr "登録ページに目立つように表示されます。" #: ../../Zotlabs/Module/Admin/Site.php:314 msgid "Site homepage to show visitors (default: login box)" -msgstr "" +msgstr "訪問者を表示するサイトのホームページ(デフォルト:ログインボックス)" #: ../../Zotlabs/Module/Admin/Site.php:314 msgid "" "example: 'pubstream' to show public stream, 'page/sys/home' to show a system " "webpage called 'home' or 'include:home.html' to include a file." -msgstr "" +msgstr "例:パブリックストリームを表示する「pubstream」、「home」または「include:home.html」と呼ばれるシステムWebページを表示する「page / sys / home」はファイルを含めます。" #: ../../Zotlabs/Module/Admin/Site.php:315 msgid "Preserve site homepage URL" -msgstr "" +msgstr "サイトのホームページURLを保持" #: ../../Zotlabs/Module/Admin/Site.php:315 msgid "" "Present the site homepage in a frame at the original location instead of " "redirecting" -msgstr "" +msgstr "リダイレクトする代わりに、サイトのホームページを元の場所のフレームに表示します" #: ../../Zotlabs/Module/Admin/Site.php:316 msgid "Accounts abandoned after x days" -msgstr "" +msgstr "x日後に放棄されたアカウント" #: ../../Zotlabs/Module/Admin/Site.php:316 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." -msgstr "" +msgstr "放棄されたアカウントの外部サイトをポーリングするシステムリソースを無駄にしません。時間制限なしの場合は0を入力します。" #: ../../Zotlabs/Module/Admin/Site.php:317 msgid "Allowed friend domains" -msgstr "" +msgstr "許可された友達ドメイン" #: ../../Zotlabs/Module/Admin/Site.php:317 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "" +msgstr "このサイトとの友情を確立できるドメインのカンマ区切りリスト。ワイルドカードが受け入れられます。すべてのドメインを許可するには空" #: ../../Zotlabs/Module/Admin/Site.php:318 msgid "Verify Email Addresses" -msgstr "" +msgstr "メールアドレスを確認する" #: ../../Zotlabs/Module/Admin/Site.php:318 msgid "" "Check to verify email addresses used in account registration (recommended)." -msgstr "" +msgstr "アカウント登録で使用されるメールアドレスを確認してください(推奨)。" #: ../../Zotlabs/Module/Admin/Site.php:319 msgid "Force publish" -msgstr "" +msgstr "強制公開" #: ../../Zotlabs/Module/Admin/Site.php:319 msgid "" "Check to force all profiles on this site to be listed in the site directory." -msgstr "" +msgstr "このサイトのすべてのプロファイルがサイトディレクトリにリストされるように強制する場合はオンにします。" #: ../../Zotlabs/Module/Admin/Site.php:320 msgid "Import Public Streams" -msgstr "" +msgstr "パブリックストリームをインポートする" #: ../../Zotlabs/Module/Admin/Site.php:320 msgid "" "Import and allow access to public content pulled from other sites. Warning: " "this content is unmoderated." -msgstr "" +msgstr "他のサイトから取得した公開コンテンツをインポートしてアクセスを許可します。警告:このコンテンツはモデレートされていません。" #: ../../Zotlabs/Module/Admin/Site.php:321 msgid "Site only Public Streams" -msgstr "" +msgstr "サイトのみの公開ストリーム" #: ../../Zotlabs/Module/Admin/Site.php:321 msgid "" "Allow access to public content originating only from this site if Imported " "Public Streams are disabled." -msgstr "" +msgstr "インポートされたパブリックストリームが無効になっている場合、このサイトからのみ発信されるパブリックコンテンツへのアクセスを許可します。" #: ../../Zotlabs/Module/Admin/Site.php:322 msgid "Allow anybody on the internet to access the Public streams" -msgstr "" +msgstr "インターネット上の誰でもパブリックストリームにアクセスできるようにする" #: ../../Zotlabs/Module/Admin/Site.php:322 msgid "" "Disable to require authentication before viewing. Warning: this content is " "unmoderated." -msgstr "" +msgstr "表示する前に認証を要求するには無効にします。警告:このコンテンツはモデレートされていません。" #: ../../Zotlabs/Module/Admin/Site.php:323 msgid "Only import Public stream posts with this text" -msgstr "" +msgstr "このテキストを含む公開ストリーム投稿のみをインポートします" #: ../../Zotlabs/Module/Admin/Site.php:323 #: ../../Zotlabs/Module/Admin/Site.php:324 @@ -5697,167 +5697,167 @@ msgstr "" msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" -msgstr "" +msgstr "1行に1語ずつ、または#tagsまたは/ patterns /またはlang = xx。すべての投稿をインポートするには空白のままにします" #: ../../Zotlabs/Module/Admin/Site.php:324 msgid "Do not import Public stream posts with this text" -msgstr "" +msgstr "このテキストを含む公開ストリームの投稿をインポートしないでください" #: ../../Zotlabs/Module/Admin/Site.php:327 msgid "Login on Homepage" -msgstr "" +msgstr "ホームページにログイン" #: ../../Zotlabs/Module/Admin/Site.php:327 msgid "" "Present a login box to visitors on the home page if no other content has " "been configured." -msgstr "" +msgstr "他のコンテンツが設定されていない場合、ホームページで訪問者にログインボックスを提示します。" #: ../../Zotlabs/Module/Admin/Site.php:328 msgid "Enable context help" -msgstr "" +msgstr "コンテキストヘルプを有効にする" #: ../../Zotlabs/Module/Admin/Site.php:328 msgid "" "Display contextual help for the current page when the help button is pressed." -msgstr "" +msgstr "ヘルプボタンが押されたときに、現在のページのコンテキストヘルプを表示します。" #: ../../Zotlabs/Module/Admin/Site.php:330 msgid "Reply-to email address for system generated email." -msgstr "" +msgstr "システム生成メールの返信先メールアドレス。" #: ../../Zotlabs/Module/Admin/Site.php:331 msgid "Sender (From) email address for system generated email." -msgstr "" +msgstr "システムが生成した電子メールの送信者(差出人)電子メールアドレス。" #: ../../Zotlabs/Module/Admin/Site.php:332 msgid "Name of email sender for system generated email." -msgstr "" +msgstr "システムが生成した電子メールの電子メール送信者の名前。" #: ../../Zotlabs/Module/Admin/Site.php:334 msgid "Directory Server URL" -msgstr "" +msgstr "ディレクトリサーバーのURL" #: ../../Zotlabs/Module/Admin/Site.php:334 msgid "Default directory server" -msgstr "" +msgstr "デフォルトのディレクトリサーバー" #: ../../Zotlabs/Module/Admin/Site.php:336 msgid "Proxy user" -msgstr "" +msgstr "プロキシユーザー" #: ../../Zotlabs/Module/Admin/Site.php:337 msgid "Proxy URL" -msgstr "" +msgstr "プロキシURL" #: ../../Zotlabs/Module/Admin/Site.php:338 msgid "Network timeout" -msgstr "" +msgstr "ネットワークタイムアウト" #: ../../Zotlabs/Module/Admin/Site.php:338 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" +msgstr "値は秒単位です。無制限の場合は0に設定します(推奨されません)。" #: ../../Zotlabs/Module/Admin/Site.php:339 msgid "Delivery interval" -msgstr "" +msgstr "配送間隔" #: ../../Zotlabs/Module/Admin/Site.php:339 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." -msgstr "" +msgstr "システムの負荷を軽減するには、バックグラウンド配信プロセスをこの数秒遅らせます。推奨:共有ホストには4〜5、仮想プライベートサーバーには2〜3。大規模な専用サーバーの場合は0-1。" #: ../../Zotlabs/Module/Admin/Site.php:340 msgid "Deliveries per process" -msgstr "" +msgstr "プロセスごとの配達" #: ../../Zotlabs/Module/Admin/Site.php:340 msgid "" "Number of deliveries to attempt in a single operating system process. Adjust " "if necessary to tune system performance. Recommend: 1-5." -msgstr "" +msgstr "単一のオペレーティングシステムプロセスで試行する配信の数。必要に応じて調整して、システムのパフォーマンスを調整します。推奨:1-5。" #: ../../Zotlabs/Module/Admin/Site.php:341 msgid "Queue Threshold" -msgstr "" +msgstr "キューのしきい値" #: ../../Zotlabs/Module/Admin/Site.php:341 msgid "" "Always defer immediate delivery if queue contains more than this number of " "entries." -msgstr "" +msgstr "キューにこの数を超えるエントリが含まれる場合は、即時配信を常に延期します。" #: ../../Zotlabs/Module/Admin/Site.php:342 msgid "Poll interval" -msgstr "" +msgstr "ポーリング間隔" #: ../../Zotlabs/Module/Admin/Site.php:342 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." -msgstr "" +msgstr "バックグラウンドポーリングプロセスをこの数秒遅らせて、システムの負荷を減らします。 0の場合、配信間隔を使用します。" #: ../../Zotlabs/Module/Admin/Site.php:343 msgid "Path to ImageMagick convert program" -msgstr "" +msgstr "ImageMagick変換プログラムへのパス" #: ../../Zotlabs/Module/Admin/Site.php:343 msgid "" "If set, use this program to generate photo thumbnails for huge images ( > " "4000 pixels in either dimension), otherwise memory exhaustion may occur. " "Example: /usr/bin/convert" -msgstr "" +msgstr "設定されている場合、このプログラムを使用して巨大な画像(いずれかの次元で4000ピクセル以上)の写真のサムネイルを生成します。そうしないと、メモリ不足が発生する可能性があります。例:/ usr / bin / convert" #: ../../Zotlabs/Module/Admin/Site.php:344 msgid "Allow SVG thumbnails in file browser" -msgstr "" +msgstr "ファイルブラウザでSVGサムネイルを許可する" #: ../../Zotlabs/Module/Admin/Site.php:344 msgid "WARNING: SVG images may contain malicious code." -msgstr "" +msgstr "警告:SVG画像には悪意のあるコードが含まれている場合があります。" #: ../../Zotlabs/Module/Admin/Site.php:345 msgid "Maximum Load Average" -msgstr "" +msgstr "最大負荷平均" #: ../../Zotlabs/Module/Admin/Site.php:345 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." -msgstr "" +msgstr "配信およびポーリングプロセスが延期される前の最大システム負荷-デフォルトは50。" #: ../../Zotlabs/Module/Admin/Site.php:346 msgid "Expiration period in days for imported (grid/network) content" -msgstr "" +msgstr "インポートされた(グリッド/ネットワーク)コンテンツの有効期限(日数)" #: ../../Zotlabs/Module/Admin/Site.php:346 msgid "0 for no expiration of imported content" -msgstr "" +msgstr "インポートされたコンテンツの有効期限がない場合は0" #: ../../Zotlabs/Module/Admin/Site.php:347 msgid "" "Do not expire any posts which have comments less than this many days ago" -msgstr "" +msgstr "この数日前よりもコメントが少ない投稿を期限切れにしないでください。" #: ../../Zotlabs/Module/Admin/Site.php:349 msgid "" "Public servers: Optional landing (marketing) webpage for new registrants" -msgstr "" +msgstr "パブリックサーバー:新規登録者向けのオプションのランディング(マーケティング)Webページ" #: ../../Zotlabs/Module/Admin/Site.php:349 #, php-format msgid "Create this page first. Default is %s/register" -msgstr "" +msgstr "最初にこのページを作成します。デフォルトは%s / registerです" #: ../../Zotlabs/Module/Admin/Site.php:350 msgid "Page to display after creating a new channel" -msgstr "" +msgstr "新しいチャンネルを作成した後に表示するページ" #: ../../Zotlabs/Module/Admin/Site.php:350 msgid "Default: profiles" -msgstr "" +msgstr "デフォルト:プロファイル" #: ../../Zotlabs/Module/Admin/Site.php:352 msgid "Optional: site location" @@ -5865,7 +5865,7 @@ msgstr "サイトの所在地:オプション" #: ../../Zotlabs/Module/Admin/Site.php:352 msgid "Region or country" -msgstr "" +msgstr "地域または国" #: ../../Zotlabs/Module/Admin/Themes.php:26 msgid "Theme settings updated." @@ -5898,11 +5898,11 @@ msgstr "ブロックされたアカウント" #: ../../Zotlabs/Module/Admin.php:98 msgid "Expired accounts" -msgstr "" +msgstr "期限切れのアカウント" #: ../../Zotlabs/Module/Admin.php:99 msgid "Expiring accounts" -msgstr "" +msgstr "期限切れのアカウント" #: ../../Zotlabs/Module/Admin.php:120 msgid "Message queues" @@ -5914,7 +5914,7 @@ msgstr "ソフトのアップデートをしてください。" #: ../../Zotlabs/Module/Admin.php:139 msgid "Summary" -msgstr "" +msgstr "概要" #: ../../Zotlabs/Module/Admin.php:142 msgid "Registered accounts" @@ -5922,7 +5922,7 @@ msgstr "登録されているアカウント" #: ../../Zotlabs/Module/Admin.php:143 msgid "Pending registrations" -msgstr "" +msgstr "保留中の登録" #: ../../Zotlabs/Module/Admin.php:144 msgid "Registered channels" @@ -5946,7 +5946,7 @@ msgstr "リポジトリバージョン(dev)" #: ../../Zotlabs/Module/Affinity.php:35 msgid "Affinity Tool settings updated." -msgstr "" +msgstr "アフィニティツールの設定が更新されました。" #: ../../Zotlabs/Module/Affinity.php:47 msgid "" @@ -5954,11 +5954,11 @@ msgid "" "your network page. The slider represents your degree of friendship " "(affinity) with each connection. It allows you to zoom in or out and display " "conversations from only your closest friends or everybody in your stream." -msgstr "" +msgstr "このアプリは、接続エディターおよびネットワークページにスライダーコントロールを表示します。スライダーは、各接続との友好度(親和性)を表します。ズームインまたはズームアウトして、親しい友人またはストリーム内の全員からの会話を表示できます。" #: ../../Zotlabs/Module/Affinity.php:52 msgid "Affinity Tool App" -msgstr "" +msgstr "アフィニティツールアプリ" #: ../../Zotlabs/Module/Affinity.php:52 ../../Zotlabs/Module/Articles.php:51 #: ../../Zotlabs/Module/Bookmarks.php:78 ../../Zotlabs/Module/Cards.php:51 @@ -5975,163 +5975,163 @@ msgstr "" #: ../../Zotlabs/Module/Tokens.php:99 ../../Zotlabs/Module/Uexport.php:61 #: ../../Zotlabs/Module/Webpages.php:48 ../../Zotlabs/Module/Wiki.php:52 msgid "Not Installed" -msgstr "" +msgstr "インストールされていない" #: ../../Zotlabs/Module/Affinity.php:57 msgid "" "The numbers below represent the minimum and maximum slider default positions " "for your network/stream page as a percentage." -msgstr "" +msgstr "以下の数字は、ネットワーク/ストリームページのスライダーのデフォルトの最小および最大位置をパーセンテージで表しています。" #: ../../Zotlabs/Module/Affinity.php:64 msgid "Default maximum affinity level" -msgstr "" +msgstr "デフォルトの最大アフィニティレベル" #: ../../Zotlabs/Module/Affinity.php:64 msgid "0-99 default 99" -msgstr "" +msgstr "0-99デフォルト99" #: ../../Zotlabs/Module/Affinity.php:70 msgid "Default minimum affinity level" -msgstr "" +msgstr "デフォルトの最小アフィニティレベル" #: ../../Zotlabs/Module/Affinity.php:70 msgid "0-99 - default 0" -msgstr "" +msgstr "0-99-デフォルト0" #: ../../Zotlabs/Module/Affinity.php:76 msgid "Persistent affinity levels" -msgstr "" +msgstr "永続的なアフィニティレベル" #: ../../Zotlabs/Module/Affinity.php:76 msgid "" "If disabled the max and min levels will be reset to default after page reload" -msgstr "" +msgstr "無効にすると、ページのリロード後に最大レベルと最小レベルがデフォルトにリセットされます" #: ../../Zotlabs/Module/Affinity.php:84 msgid "Affinity Tool Settings" -msgstr "" +msgstr "アフィニティツールの設定" #: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 msgid "Authorize application connection" -msgstr "" +msgstr "アプリケーション接続を許可する" #: ../../Zotlabs/Module/Api.php:75 msgid "Return to your app and insert this Security Code:" -msgstr "" +msgstr "アプリに戻り、このセキュリティコードを挿入します。" #: ../../Zotlabs/Module/Api.php:85 msgid "Please login to continue." -msgstr "" +msgstr "続行するにはログインしてください。" #: ../../Zotlabs/Module/Api.php:97 msgid "" "Do you want to authorize this application to access your posts and contacts, " "and/or create new posts for you?" -msgstr "" +msgstr "このアプリケーションを許可して、投稿や連絡先にアクセスしたり、新しい投稿を作成したりしますか?" #: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 msgid "App installed." -msgstr "" +msgstr "アプリがインストールされました。" #: ../../Zotlabs/Module/Appman.php:49 msgid "Malformed app." -msgstr "" +msgstr "不正なアプリ。" #: ../../Zotlabs/Module/Appman.php:132 msgid "Embed code" -msgstr "" +msgstr "埋め込みコード" #: ../../Zotlabs/Module/Appman.php:138 msgid "Edit App" -msgstr "" +msgstr "アプリを編集" #: ../../Zotlabs/Module/Appman.php:138 msgid "Create App" -msgstr "" +msgstr "アプリを作成" #: ../../Zotlabs/Module/Appman.php:143 msgid "Name of app" -msgstr "" +msgstr "アプリの名前" #: ../../Zotlabs/Module/Appman.php:144 msgid "Location (URL) of app" -msgstr "" +msgstr "アプリの場所(URL)" #: ../../Zotlabs/Module/Appman.php:145 ../../Zotlabs/Module/Cdav.php:939 #: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Rbmark.php:101 msgid "Description" -msgstr "" +msgstr "説明" #: ../../Zotlabs/Module/Appman.php:146 msgid "Photo icon URL" -msgstr "" +msgstr "写真アイコンURL" #: ../../Zotlabs/Module/Appman.php:146 msgid "80 x 80 pixels - optional" -msgstr "" +msgstr "80 x 80ピクセル-オプション" #: ../../Zotlabs/Module/Appman.php:147 msgid "Categories (optional, comma separated list)" -msgstr "" +msgstr "カテゴリー(オプション、コンマ区切りリスト)" #: ../../Zotlabs/Module/Appman.php:148 msgid "Version ID" -msgstr "" +msgstr "バージョンID" #: ../../Zotlabs/Module/Appman.php:149 msgid "Price of app" -msgstr "" +msgstr "アプリの価格" #: ../../Zotlabs/Module/Appman.php:150 msgid "Location (URL) to purchase app" -msgstr "" +msgstr "アプリを購入する場所(URL)" #: ../../Zotlabs/Module/Apporder.php:47 msgid "Change Order of Pinned Navbar Apps" -msgstr "" +msgstr "固定されたNavbarアプリの順序を変更する" #: ../../Zotlabs/Module/Apporder.php:47 msgid "Change Order of App Tray Apps" -msgstr "" +msgstr "アプリトレイアプリの順序を変更する" #: ../../Zotlabs/Module/Apporder.php:48 msgid "" "Use arrows to move the corresponding app left (top) or right (bottom) in the " "navbar" -msgstr "" +msgstr "矢印を使用して、対応するアプリをナビゲーションバーで左(上)または右(下)に移動します" #: ../../Zotlabs/Module/Apporder.php:48 msgid "Use arrows to move the corresponding app up or down in the app tray" -msgstr "" +msgstr "矢印を使用して、対応するアプリをアプリトレイ内で上下に移動します" #: ../../Zotlabs/Module/Apps.php:50 ../../Zotlabs/Widget/Appstore.php:14 msgid "Available Apps" -msgstr "" +msgstr "利用可能なアプリ" #: ../../Zotlabs/Module/Apps.php:50 msgid "Installed Apps" -msgstr "" +msgstr "インストール済みアプリ" #: ../../Zotlabs/Module/Apps.php:53 msgid "Manage Apps" -msgstr "" +msgstr "アプリを管理する" #: ../../Zotlabs/Module/Apps.php:54 msgid "Create Custom App" -msgstr "" +msgstr "カスタムアプリを作成する" #: ../../Zotlabs/Module/Articles.php:51 msgid "Articles App" -msgstr "" +msgstr "記事アプリ" #: ../../Zotlabs/Module/Articles.php:52 msgid "Create interactive articles" -msgstr "" +msgstr "インタラクティブな記事を作成する" #: ../../Zotlabs/Module/Articles.php:115 msgid "Add Article" -msgstr "" +msgstr "記事を追加" #: ../../Zotlabs/Module/Articles.php:116 ../../Zotlabs/Module/Blocks.php:159 #: ../../Zotlabs/Module/Cards.php:113 ../../Zotlabs/Module/Cdav.php:1257 @@ -6141,7 +6141,7 @@ msgstr "" #: ../../Zotlabs/Storage/Browser.php:282 ../../Zotlabs/Storage/Browser.php:396 #: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 msgid "Create" -msgstr "" +msgstr "作成する" #: ../../Zotlabs/Module/Article_edit.php:17 #: ../../Zotlabs/Module/Article_edit.php:33 @@ -6150,972 +6150,972 @@ msgstr "" #: ../../Zotlabs/Module/Editwebpage.php:80 #: ../../Zotlabs/Module/Card_edit.php:17 ../../Zotlabs/Module/Card_edit.php:33 msgid "Item not found" -msgstr "" +msgstr "アイテムが見つかりません" #: ../../Zotlabs/Module/Article_edit.php:44 ../../Zotlabs/Module/Block.php:41 #: ../../Zotlabs/Module/Cal.php:63 ../../Zotlabs/Module/Chanview.php:96 #: ../../Zotlabs/Module/Card_edit.php:44 ../../Zotlabs/Module/Page.php:75 #: ../../Zotlabs/Module/Wall_upload.php:31 msgid "Channel not found." -msgstr "" +msgstr "チャンネルが見つかりません。" #: ../../Zotlabs/Module/Article_edit.php:128 msgid "Edit Article" -msgstr "" +msgstr "記事を編集" #: ../../Zotlabs/Module/Attach.php:13 msgid "Item not available." -msgstr "" +msgstr "アイテムは利用できません。" #: ../../Zotlabs/Module/Authorize.php:17 msgid "Unknown App" -msgstr "" +msgstr "不明なアプリ" #: ../../Zotlabs/Module/Authorize.php:29 msgid "Authorize" -msgstr "" +msgstr "許可する" #: ../../Zotlabs/Module/Authorize.php:30 #, php-format msgid "Do you authorize the app %s to access your channel data?" -msgstr "" +msgstr "アプリ%sにチャンネルデータへのアクセスを許可していますか?" #: ../../Zotlabs/Module/Authorize.php:32 msgid "Allow" -msgstr "" +msgstr "許可する" #: ../../Zotlabs/Module/Block.php:29 ../../Zotlabs/Module/Page.php:39 msgid "Invalid item." -msgstr "" +msgstr "無効なアイテム。" #: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 #: ../../Zotlabs/Module/Editblock.php:113 msgid "Block Name" -msgstr "" +msgstr "ブロック名" #: ../../Zotlabs/Module/Blocks.php:156 msgid "Block Title" -msgstr "" +msgstr "ブロックタイトル" #: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:191 #: ../../Zotlabs/Module/Menu.php:177 ../../Zotlabs/Module/Webpages.php:266 msgid "Created" -msgstr "" +msgstr "作成した" #: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:192 #: ../../Zotlabs/Module/Menu.php:178 ../../Zotlabs/Module/Webpages.php:267 msgid "Edited" -msgstr "" +msgstr "編集済み" #: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:695 #: ../../Zotlabs/Module/Layouts.php:198 ../../Zotlabs/Module/Pubsites.php:60 #: ../../Zotlabs/Module/Webpages.php:261 ../../Zotlabs/Module/Wiki.php:213 #: ../../Zotlabs/Module/Wiki.php:409 msgid "View" -msgstr "" +msgstr "表示する" #: ../../Zotlabs/Module/Bookmarks.php:62 msgid "Bookmark added" -msgstr "" +msgstr "ブックマークを追加しました" #: ../../Zotlabs/Module/Bookmarks.php:78 msgid "Bookmarks App" -msgstr "" +msgstr "ブックマークアプリ" #: ../../Zotlabs/Module/Bookmarks.php:79 msgid "Bookmark links from posts and manage them" -msgstr "" +msgstr "投稿のリンクをブックマークして管理する" #: ../../Zotlabs/Module/Bookmarks.php:92 msgid "My Bookmarks" -msgstr "" +msgstr "私のブックマーク" #: ../../Zotlabs/Module/Bookmarks.php:103 msgid "My Connections Bookmarks" -msgstr "" +msgstr "私の接続ブックマーク" #: ../../Zotlabs/Module/Cal.php:70 msgid "Permissions denied." -msgstr "" +msgstr "許可が拒否されました。" #: ../../Zotlabs/Module/Cal.php:264 ../../Zotlabs/Module/Events.php:607 msgid "l, F j" -msgstr "" +msgstr "l、F j" #: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:689 msgid "Edit Event" -msgstr "" +msgstr "イベントを編集" #: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:689 msgid "Create Event" -msgstr "" +msgstr "イベントを作成" #: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Cal.php:345 #: ../../Zotlabs/Module/Cdav.php:948 ../../Zotlabs/Module/Events.php:690 #: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Photos.php:986 msgid "Previous" -msgstr "" +msgstr "前" #: ../../Zotlabs/Module/Cal.php:339 ../../Zotlabs/Module/Cal.php:346 #: ../../Zotlabs/Module/Cdav.php:949 ../../Zotlabs/Module/Events.php:691 #: ../../Zotlabs/Module/Events.php:700 ../../Zotlabs/Module/Photos.php:995 #: ../../Zotlabs/Module/Setup.php:260 msgid "Next" -msgstr "" +msgstr "次" #: ../../Zotlabs/Module/Cal.php:347 ../../Zotlabs/Module/Cdav.php:950 #: ../../Zotlabs/Module/Events.php:701 msgid "Today" -msgstr "" +msgstr "今日" #: ../../Zotlabs/Module/Cards.php:51 msgid "Cards App" -msgstr "" +msgstr "カードアプリ" #: ../../Zotlabs/Module/Cards.php:52 msgid "Create personal planning cards" -msgstr "" +msgstr "個人計画カードを作成する" #: ../../Zotlabs/Module/Cards.php:112 msgid "Add Card" -msgstr "" +msgstr "カードを追加" #: ../../Zotlabs/Module/Cdav.php:825 msgid "INVALID EVENT DISMISSED!" -msgstr "" +msgstr "無効なイベントは破棄されました!" #: ../../Zotlabs/Module/Cdav.php:826 msgid "Summary: " -msgstr "" +msgstr "概要:" #: ../../Zotlabs/Module/Cdav.php:827 msgid "Date: " -msgstr "" +msgstr "日付:" #: ../../Zotlabs/Module/Cdav.php:828 ../../Zotlabs/Module/Cdav.php:835 msgid "Reason: " -msgstr "" +msgstr "理由:" #: ../../Zotlabs/Module/Cdav.php:833 msgid "INVALID CARD DISMISSED!" -msgstr "" +msgstr "無効なカードが破棄されました!" #: ../../Zotlabs/Module/Cdav.php:834 msgid "Name: " -msgstr "" +msgstr "名:" #: ../../Zotlabs/Module/Cdav.php:854 msgid "CalDAV App" -msgstr "" +msgstr "CalDAVアプリ" #: ../../Zotlabs/Module/Cdav.php:855 msgid "CalDAV capable calendar" -msgstr "" +msgstr "CalDAV対応カレンダー" #: ../../Zotlabs/Module/Cdav.php:863 msgid "CardDAV App" -msgstr "" +msgstr "CardDAVアプリ" #: ../../Zotlabs/Module/Cdav.php:864 msgid "CalDAV capable addressbook" -msgstr "" +msgstr "CalDAV対応のアドレス帳" #: ../../Zotlabs/Module/Cdav.php:936 ../../Zotlabs/Module/Events.php:462 msgid "Event title" -msgstr "" +msgstr "イベントタイトル" #: ../../Zotlabs/Module/Cdav.php:937 ../../Zotlabs/Module/Events.php:468 msgid "Start date and time" -msgstr "" +msgstr "開始日時" #: ../../Zotlabs/Module/Cdav.php:938 msgid "End date and time" -msgstr "" +msgstr "終了日時" #: ../../Zotlabs/Module/Cdav.php:951 ../../Zotlabs/Module/Events.php:696 msgid "Month" -msgstr "" +msgstr "月" #: ../../Zotlabs/Module/Cdav.php:952 ../../Zotlabs/Module/Events.php:697 msgid "Week" -msgstr "" +msgstr "週間" #: ../../Zotlabs/Module/Cdav.php:953 ../../Zotlabs/Module/Events.php:698 msgid "Day" -msgstr "" +msgstr "日" #: ../../Zotlabs/Module/Cdav.php:954 msgid "List month" -msgstr "" +msgstr "月のリスト" #: ../../Zotlabs/Module/Cdav.php:955 msgid "List week" -msgstr "" +msgstr "リスト週" #: ../../Zotlabs/Module/Cdav.php:956 msgid "List day" -msgstr "" +msgstr "リスト日" #: ../../Zotlabs/Module/Cdav.php:963 msgid "More" -msgstr "" +msgstr "もっと" #: ../../Zotlabs/Module/Cdav.php:964 msgid "Less" -msgstr "" +msgstr "もっと少なく" #: ../../Zotlabs/Module/Cdav.php:965 msgid "Select calendar" -msgstr "" +msgstr "カレンダーを選択" #: ../../Zotlabs/Module/Cdav.php:967 msgid "Delete all" -msgstr "" +msgstr "すべて削除" #: ../../Zotlabs/Module/Cdav.php:969 msgid "Sorry! Editing of recurrent events is not yet implemented." -msgstr "" +msgstr "ごめんなさい!繰り返しイベントの編集はまだ実装されていません。" #: ../../Zotlabs/Module/Cdav.php:1243 ../../Zotlabs/Module/Connedit.php:924 msgid "Organisation" -msgstr "" +msgstr "組織" #: ../../Zotlabs/Module/Cdav.php:1244 ../../Zotlabs/Module/Connedit.php:925 msgid "Title" -msgstr "" +msgstr "タイトル" #: ../../Zotlabs/Module/Cdav.php:1245 ../../Zotlabs/Module/Connedit.php:926 #: ../../Zotlabs/Module/Profiles.php:786 msgid "Phone" -msgstr "" +msgstr "電話" #: ../../Zotlabs/Module/Cdav.php:1247 ../../Zotlabs/Module/Connedit.php:928 #: ../../Zotlabs/Module/Profiles.php:788 msgid "Instant messenger" -msgstr "" +msgstr "インスタントメッセンジャー" #: ../../Zotlabs/Module/Cdav.php:1248 ../../Zotlabs/Module/Connedit.php:929 #: ../../Zotlabs/Module/Profiles.php:789 msgid "Website" -msgstr "" +msgstr "ウェブサイト" #: ../../Zotlabs/Module/Cdav.php:1250 ../../Zotlabs/Module/Connedit.php:931 #: ../../Zotlabs/Module/Profiles.php:791 msgid "Note" -msgstr "" +msgstr "注意" #: ../../Zotlabs/Module/Cdav.php:1255 ../../Zotlabs/Module/Connedit.php:936 #: ../../Zotlabs/Module/Profiles.php:796 msgid "Add Contact" -msgstr "" +msgstr "連絡先を追加" #: ../../Zotlabs/Module/Cdav.php:1256 ../../Zotlabs/Module/Connedit.php:937 #: ../../Zotlabs/Module/Profiles.php:797 msgid "Add Field" -msgstr "" +msgstr "フィールドを追加" #: ../../Zotlabs/Module/Cdav.php:1261 ../../Zotlabs/Module/Connedit.php:942 msgid "P.O. Box" -msgstr "" +msgstr "私書箱" #: ../../Zotlabs/Module/Cdav.php:1262 ../../Zotlabs/Module/Connedit.php:943 msgid "Additional" -msgstr "" +msgstr "追加" #: ../../Zotlabs/Module/Cdav.php:1263 ../../Zotlabs/Module/Connedit.php:944 msgid "Street" -msgstr "" +msgstr "通り" #: ../../Zotlabs/Module/Cdav.php:1264 ../../Zotlabs/Module/Connedit.php:945 msgid "Locality" -msgstr "" +msgstr "局所性" #: ../../Zotlabs/Module/Cdav.php:1265 ../../Zotlabs/Module/Connedit.php:946 msgid "Region" -msgstr "" +msgstr "領域" #: ../../Zotlabs/Module/Cdav.php:1266 ../../Zotlabs/Module/Connedit.php:947 msgid "ZIP Code" -msgstr "" +msgstr "郵便番号" #: ../../Zotlabs/Module/Cdav.php:1267 ../../Zotlabs/Module/Connedit.php:948 #: ../../Zotlabs/Module/Profiles.php:757 msgid "Country" -msgstr "" +msgstr "国" #: ../../Zotlabs/Module/Cdav.php:1314 msgid "Default Calendar" -msgstr "" +msgstr "デフォルトのカレンダー" #: ../../Zotlabs/Module/Cdav.php:1324 msgid "Default Addressbook" -msgstr "" +msgstr "デフォルトのアドレス帳" #: ../../Zotlabs/Module/Changeaddr.php:35 msgid "" "Channel name changes are not allowed within 48 hours of changing the account " "password." -msgstr "" +msgstr "アカウントパスワードを変更してから48時間以内にチャンネル名を変更することはできません。" #: ../../Zotlabs/Module/Changeaddr.php:77 msgid "Change channel nickname/address" -msgstr "" +msgstr "チャンネルのニックネーム/アドレスを変更する" #: ../../Zotlabs/Module/Changeaddr.php:78 #: ../../Zotlabs/Module/Removeaccount.php:58 #: ../../Zotlabs/Module/Removeme.php:61 msgid "WARNING: " -msgstr "" +msgstr "警告:" #: ../../Zotlabs/Module/Changeaddr.php:78 msgid "Any/all connections on other networks will be lost!" -msgstr "" +msgstr "他のネットワーク上の接続はすべて失われます!" #: ../../Zotlabs/Module/Changeaddr.php:79 #: ../../Zotlabs/Module/Removeaccount.php:59 #: ../../Zotlabs/Module/Removeme.php:62 msgid "Please enter your password for verification:" -msgstr "" +msgstr "確認のためにパスワードを入力してください:" #: ../../Zotlabs/Module/Changeaddr.php:80 msgid "New channel address" -msgstr "" +msgstr "新しいチャンネルアドレス" #: ../../Zotlabs/Module/Changeaddr.php:81 msgid "Rename Channel" -msgstr "" +msgstr "チャンネル名を変更" #: ../../Zotlabs/Module/Channel.php:41 ../../Zotlabs/Module/Chat.php:31 #: ../../Zotlabs/Module/Ochannel.php:32 msgid "You must be logged in to see this page." -msgstr "" +msgstr "このページを表示するには、ログインする必要があります。" #: ../../Zotlabs/Module/Channel.php:98 ../../Zotlabs/Module/Hcard.php:37 #: ../../Zotlabs/Module/Profile.php:45 msgid "Posts and comments" -msgstr "" +msgstr "投稿とコメント" #: ../../Zotlabs/Module/Channel.php:105 ../../Zotlabs/Module/Hcard.php:44 #: ../../Zotlabs/Module/Profile.php:52 msgid "Only posts" -msgstr "" +msgstr "投稿のみ" #: ../../Zotlabs/Module/Channel.php:165 msgid "Insufficient permissions. Request redirected to profile page." -msgstr "" +msgstr "権限が不十分です。プロフィールページにリダイレクトされたリクエスト。" #: ../../Zotlabs/Module/Channel.php:182 ../../Zotlabs/Module/Network.php:173 msgid "Search Results For:" -msgstr "" +msgstr "の検索結果:" #: ../../Zotlabs/Module/Channel.php:217 ../../Zotlabs/Module/Display.php:80 #: ../../Zotlabs/Module/Hq.php:134 ../../Zotlabs/Module/Network.php:203 #: ../../Zotlabs/Module/Pubstream.php:94 msgid "Reset form" -msgstr "" +msgstr "フォームをリセット" #: ../../Zotlabs/Module/Channel.php:476 ../../Zotlabs/Module/Display.php:378 msgid "" "You must enable javascript for your browser to be able to view this content." -msgstr "" +msgstr "このコンテンツを表示するには、ブラウザのJavaScriptを有効にする必要があります。" #: ../../Zotlabs/Module/Chanview.php:139 msgid "toggle full screen mode" -msgstr "" +msgstr "全画面モードを切り替える" #: ../../Zotlabs/Module/Chat.php:102 msgid "Chatrooms App" -msgstr "" +msgstr "チャットルームアプリ" #: ../../Zotlabs/Module/Chat.php:103 msgid "Access Controlled Chatrooms" -msgstr "" +msgstr "アクセス制御されたチャットルーム" #: ../../Zotlabs/Module/Chat.php:196 msgid "Room not found" -msgstr "" +msgstr "部屋が見つかりません" #: ../../Zotlabs/Module/Chat.php:212 msgid "Leave Room" -msgstr "" +msgstr "部屋を出る" #: ../../Zotlabs/Module/Chat.php:213 msgid "Delete Room" -msgstr "" +msgstr "部屋を削除" #: ../../Zotlabs/Module/Chat.php:214 msgid "I am away right now" -msgstr "" +msgstr "私は今不在です" #: ../../Zotlabs/Module/Chat.php:215 msgid "I am online" -msgstr "" +msgstr "オンライン中" #: ../../Zotlabs/Module/Chat.php:217 msgid "Bookmark this room" -msgstr "" +msgstr "この部屋をブックマークする" #: ../../Zotlabs/Module/Chat.php:240 msgid "New Chatroom" -msgstr "" +msgstr "新しいチャットルーム" #: ../../Zotlabs/Module/Chat.php:241 msgid "Chatroom name" -msgstr "" +msgstr "チャットルーム名" #: ../../Zotlabs/Module/Chat.php:242 msgid "Expiration of chats (minutes)" -msgstr "" +msgstr "チャットの有効期限(分)" #: ../../Zotlabs/Module/Chat.php:258 #, php-format msgid "%1$s's Chatrooms" -msgstr "" +msgstr "%1$sのチャットルーム" #: ../../Zotlabs/Module/Chat.php:263 msgid "No chatrooms available" -msgstr "" +msgstr "利用可能なチャットルームはありません" #: ../../Zotlabs/Module/Chat.php:264 ../../Zotlabs/Module/Manage.php:145 #: ../../Zotlabs/Module/Profiles.php:831 ../../Zotlabs/Module/Wiki.php:214 msgid "Create New" -msgstr "" +msgstr "新しく作る" #: ../../Zotlabs/Module/Chat.php:267 msgid "Expiration" -msgstr "" +msgstr "有効期限" #: ../../Zotlabs/Module/Chat.php:268 msgid "min" -msgstr "" +msgstr "分" #: ../../Zotlabs/Module/Chatsvc.php:131 msgid "Away" -msgstr "" +msgstr "離れて" #: ../../Zotlabs/Module/Chatsvc.php:136 msgid "Online" -msgstr "" +msgstr "オンライン" #: ../../Zotlabs/Module/Cloud.php:123 msgid "Not found" -msgstr "" +msgstr "見つかりません" #: ../../Zotlabs/Module/Cloud.php:129 msgid "Please refresh page" -msgstr "" +msgstr "ページを更新してください" #: ../../Zotlabs/Module/Cloud.php:132 msgid "Unknown error" -msgstr "" +msgstr "未知のエラー" #: ../../Zotlabs/Module/Common.php:14 msgid "No channel." -msgstr "" +msgstr "チャンネルなし。" #: ../../Zotlabs/Module/Common.php:45 msgid "No connections in common." -msgstr "" +msgstr "共通の接続はありません。" #: ../../Zotlabs/Module/Common.php:65 msgid "View Common Connections" -msgstr "" +msgstr "共通接続を表示する" #: ../../Zotlabs/Module/Connect.php:73 ../../Zotlabs/Module/Connect.php:135 msgid "Continue" -msgstr "" +msgstr "持続する" #: ../../Zotlabs/Module/Connect.php:104 msgid "Premium Channel App" -msgstr "" +msgstr "プレミアムチャンネルアプリ" #: ../../Zotlabs/Module/Connect.php:105 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" -msgstr "" +msgstr "チャンネルに接続するものに制限と条件を設定できます" #: ../../Zotlabs/Module/Connect.php:116 msgid "Premium Channel Setup" -msgstr "" +msgstr "プレミアムチャンネルのセットアップ" #: ../../Zotlabs/Module/Connect.php:118 msgid "Enable premium channel connection restrictions" -msgstr "" +msgstr "プレミアムチャネル接続制限を有効にする" #: ../../Zotlabs/Module/Connect.php:119 msgid "" "Please enter your restrictions or conditions, such as paypal receipt, usage " "guidelines, etc." -msgstr "" +msgstr "PayPalレシート、使用ガイドラインなどの制限または条件を入力してください。" #: ../../Zotlabs/Module/Connect.php:121 ../../Zotlabs/Module/Connect.php:141 msgid "" "This channel may require additional steps or acknowledgement of the " "following conditions prior to connecting:" -msgstr "" +msgstr "このチャネルでは、接続する前に次の条件の追加手順または確認が必要になる場合があります。" #: ../../Zotlabs/Module/Connect.php:122 msgid "" "Potential connections will then see the following text before proceeding:" -msgstr "" +msgstr "潜在的な接続では、続行する前に次のテキストが表示されます。" #: ../../Zotlabs/Module/Connect.php:123 ../../Zotlabs/Module/Connect.php:144 msgid "" "By continuing, I certify that I have complied with any instructions provided " "on this page." -msgstr "" +msgstr "続行することにより、このページに記載されている指示を遵守したことを保証します。" #: ../../Zotlabs/Module/Connect.php:132 msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "" +msgstr "(チャンネル所有者から具体的な指示は提供されていません。)" #: ../../Zotlabs/Module/Connect.php:140 msgid "Restricted or Premium Channel" -msgstr "" +msgstr "制限付きチャンネルまたはプレミアムチャンネル" #: ../../Zotlabs/Module/Connections.php:58 #: ../../Zotlabs/Module/Connections.php:115 #: ../../Zotlabs/Module/Connections.php:273 msgid "Active" -msgstr "" +msgstr "アクティブ" #: ../../Zotlabs/Module/Connections.php:63 #: ../../Zotlabs/Module/Connections.php:181 #: ../../Zotlabs/Module/Connections.php:278 msgid "Blocked" -msgstr "" +msgstr "ブロックされました" #: ../../Zotlabs/Module/Connections.php:68 #: ../../Zotlabs/Module/Connections.php:188 #: ../../Zotlabs/Module/Connections.php:277 msgid "Ignored" -msgstr "" +msgstr "無視された" #: ../../Zotlabs/Module/Connections.php:73 #: ../../Zotlabs/Module/Connections.php:202 #: ../../Zotlabs/Module/Connections.php:276 msgid "Hidden" -msgstr "" +msgstr "非表示" #: ../../Zotlabs/Module/Connections.php:78 #: ../../Zotlabs/Module/Connections.php:195 msgid "Archived/Unreachable" -msgstr "" +msgstr "アーカイブ済み/到達不能" #: ../../Zotlabs/Module/Connections.php:83 #: ../../Zotlabs/Module/Connections.php:92 ../../Zotlabs/Module/Menu.php:179 #: ../../Zotlabs/Module/Notifications.php:50 msgid "New" -msgstr "" +msgstr "新しい" #: ../../Zotlabs/Module/Connections.php:97 #: ../../Zotlabs/Module/Connections.php:111 #: ../../Zotlabs/Module/Connedit.php:727 ../../Zotlabs/Widget/Affinity.php:34 msgid "All" -msgstr "" +msgstr "すべて" #: ../../Zotlabs/Module/Connections.php:157 msgid "Active Connections" -msgstr "" +msgstr "アクティブな接続" #: ../../Zotlabs/Module/Connections.php:160 msgid "Show active connections" -msgstr "" +msgstr "アクティブな接続を表示" #: ../../Zotlabs/Module/Connections.php:164 #: ../../Zotlabs/Widget/Notifications.php:84 msgid "New Connections" -msgstr "" +msgstr "新しい接続" #: ../../Zotlabs/Module/Connections.php:167 msgid "Show pending (new) connections" -msgstr "" +msgstr "保留中の(新しい)接続を表示" #: ../../Zotlabs/Module/Connections.php:184 msgid "Only show blocked connections" -msgstr "" +msgstr "ブロックされた接続のみを表示" #: ../../Zotlabs/Module/Connections.php:191 msgid "Only show ignored connections" -msgstr "" +msgstr "無視された接続のみを表示" #: ../../Zotlabs/Module/Connections.php:198 msgid "Only show archived/unreachable connections" -msgstr "" +msgstr "アーカイブされた/到達不能な接続のみを表示する" #: ../../Zotlabs/Module/Connections.php:205 msgid "Only show hidden connections" -msgstr "" +msgstr "非表示の接続のみを表示" #: ../../Zotlabs/Module/Connections.php:217 #: ../../Zotlabs/Module/Profperm.php:140 msgid "All Connections" -msgstr "" +msgstr "すべての接続" #: ../../Zotlabs/Module/Connections.php:220 msgid "Show all connections" -msgstr "" +msgstr "すべての接続を表示" #: ../../Zotlabs/Module/Connections.php:274 msgid "Pending approval" -msgstr "" +msgstr "承認待ちの" #: ../../Zotlabs/Module/Connections.php:275 msgid "Archived" -msgstr "" +msgstr "アーカイブ済み" #: ../../Zotlabs/Module/Connections.php:279 msgid "Not connected at this location" -msgstr "" +msgstr "この場所では接続されていません" #: ../../Zotlabs/Module/Connections.php:296 #, php-format msgid "%1$s [%2$s]" -msgstr "" +msgstr "%1$s [ %2$s ]" #: ../../Zotlabs/Module/Connections.php:297 msgid "Edit connection" -msgstr "" +msgstr "接続を編集" #: ../../Zotlabs/Module/Connections.php:299 msgid "Delete connection" -msgstr "" +msgstr "接続を削除" #: ../../Zotlabs/Module/Connections.php:308 msgid "Channel address" -msgstr "" +msgstr "チャンネルアドレス" #: ../../Zotlabs/Module/Connections.php:313 msgid "Call" -msgstr "" +msgstr "コール" #: ../../Zotlabs/Module/Connections.php:315 msgid "Status" -msgstr "" +msgstr "状態" #: ../../Zotlabs/Module/Connections.php:317 msgid "Connected" -msgstr "" +msgstr "接続済み" #: ../../Zotlabs/Module/Connections.php:319 msgid "Approve connection" -msgstr "" +msgstr "接続を承認する" #: ../../Zotlabs/Module/Connections.php:321 msgid "Ignore connection" -msgstr "" +msgstr "接続を無視" #: ../../Zotlabs/Module/Connections.php:322 #: ../../Zotlabs/Module/Connedit.php:644 msgid "Ignore" -msgstr "" +msgstr "無視する" #: ../../Zotlabs/Module/Connections.php:323 msgid "Recent activity" -msgstr "" +msgstr "最近の活動" #: ../../Zotlabs/Module/Connections.php:353 msgid "Search your connections" -msgstr "" +msgstr "接続を検索する" #: ../../Zotlabs/Module/Connections.php:354 msgid "Connections search" -msgstr "" +msgstr "接続検索" #: ../../Zotlabs/Module/Connedit.php:81 ../../Zotlabs/Module/Defperms.php:67 msgid "Could not access contact record." -msgstr "" +msgstr "連絡先レコードにアクセスできませんでした。" #: ../../Zotlabs/Module/Connedit.php:112 msgid "Could not locate selected profile." -msgstr "" +msgstr "選択したプロファイルが見つかりませんでした。" #: ../../Zotlabs/Module/Connedit.php:256 msgid "Connection updated." -msgstr "" +msgstr "接続が更新されました。" #: ../../Zotlabs/Module/Connedit.php:258 msgid "Failed to update connection record." -msgstr "" +msgstr "接続レコードの更新に失敗しました。" #: ../../Zotlabs/Module/Connedit.php:312 msgid "is now connected to" -msgstr "" +msgstr "に接続されました" #: ../../Zotlabs/Module/Connedit.php:437 msgid "Could not access address book record." -msgstr "" +msgstr "アドレス帳のレコードにアクセスできませんでした。" #: ../../Zotlabs/Module/Connedit.php:485 ../../Zotlabs/Module/Connedit.php:489 msgid "Refresh failed - channel is currently unavailable." -msgstr "" +msgstr "更新に失敗しました-チャンネルは現在利用できません。" #: ../../Zotlabs/Module/Connedit.php:504 ../../Zotlabs/Module/Connedit.php:513 #: ../../Zotlabs/Module/Connedit.php:522 ../../Zotlabs/Module/Connedit.php:531 #: ../../Zotlabs/Module/Connedit.php:544 msgid "Unable to set address book parameters." -msgstr "" +msgstr "アドレス帳のパラメーターを設定できません。" #: ../../Zotlabs/Module/Connedit.php:568 msgid "Connection has been removed." -msgstr "" +msgstr "接続が削除されました。" #: ../../Zotlabs/Module/Connedit.php:611 #, php-format msgid "View %s's profile" -msgstr "" +msgstr "%sのプロフィールを表示" #: ../../Zotlabs/Module/Connedit.php:615 msgid "Refresh Permissions" -msgstr "" +msgstr "権限を更新" #: ../../Zotlabs/Module/Connedit.php:618 msgid "Fetch updated permissions" -msgstr "" +msgstr "更新された権限を取得する" #: ../../Zotlabs/Module/Connedit.php:622 msgid "Refresh Photo" -msgstr "" +msgstr "写真を更新" #: ../../Zotlabs/Module/Connedit.php:625 msgid "Fetch updated photo" -msgstr "" +msgstr "更新された写真を取得する" #: ../../Zotlabs/Module/Connedit.php:632 msgid "View recent posts and comments" -msgstr "" +msgstr "最近の投稿とコメントを見る" #: ../../Zotlabs/Module/Connedit.php:639 msgid "Block (or Unblock) all communications with this connection" -msgstr "" +msgstr "この接続とのすべての通信をブロック(またはブロック解除)" #: ../../Zotlabs/Module/Connedit.php:640 msgid "This connection is blocked!" -msgstr "" +msgstr "この接続はブロックされています!" #: ../../Zotlabs/Module/Connedit.php:644 msgid "Unignore" -msgstr "" +msgstr "無視しない" #: ../../Zotlabs/Module/Connedit.php:647 msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "" +msgstr "この接続からのすべてのインバウンド通信を無視(または無視しない)" #: ../../Zotlabs/Module/Connedit.php:648 msgid "This connection is ignored!" -msgstr "" +msgstr "この接続は無視されます!" #: ../../Zotlabs/Module/Connedit.php:652 msgid "Unarchive" -msgstr "" +msgstr "アーカイブ解除" #: ../../Zotlabs/Module/Connedit.php:652 msgid "Archive" -msgstr "" +msgstr "アーカイブ" #: ../../Zotlabs/Module/Connedit.php:655 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "" +msgstr "この接続をアーカイブ(またはアーカイブ解除)します-チャンネルをデッドにマークしますが、コンテンツは保持します" #: ../../Zotlabs/Module/Connedit.php:656 msgid "This connection is archived!" -msgstr "" +msgstr "この接続はアーカイブされています!" #: ../../Zotlabs/Module/Connedit.php:660 msgid "Unhide" -msgstr "" +msgstr "再表示" #: ../../Zotlabs/Module/Connedit.php:660 msgid "Hide" -msgstr "" +msgstr "隠す" #: ../../Zotlabs/Module/Connedit.php:663 msgid "Hide or Unhide this connection from your other connections" -msgstr "" +msgstr "この接続を他の接続から非表示または非表示にします" #: ../../Zotlabs/Module/Connedit.php:664 msgid "This connection is hidden!" -msgstr "" +msgstr "この接続は非表示です!" #: ../../Zotlabs/Module/Connedit.php:671 msgid "Delete this connection" -msgstr "" +msgstr "この接続を削除" #: ../../Zotlabs/Module/Connedit.php:679 msgid "Fetch Vcard" -msgstr "" +msgstr "Vcardを取得" #: ../../Zotlabs/Module/Connedit.php:682 msgid "Fetch electronic calling card for this connection" -msgstr "" +msgstr "この接続の電子通話カードを取得する" #: ../../Zotlabs/Module/Connedit.php:693 msgid "Open Individual Permissions section by default" -msgstr "" +msgstr "デフォルトで個人権限セクションを開く" #: ../../Zotlabs/Module/Connedit.php:716 msgid "Affinity" -msgstr "" +msgstr "親和性" #: ../../Zotlabs/Module/Connedit.php:719 msgid "Open Set Affinity section by default" -msgstr "" +msgstr "デフォルトでセットアフィニティセクションを開く" #: ../../Zotlabs/Module/Connedit.php:723 ../../Zotlabs/Widget/Affinity.php:30 msgid "Me" -msgstr "" +msgstr "私" #: ../../Zotlabs/Module/Connedit.php:724 ../../Zotlabs/Widget/Affinity.php:31 msgid "Family" -msgstr "" +msgstr "家族" #: ../../Zotlabs/Module/Connedit.php:726 ../../Zotlabs/Widget/Affinity.php:33 msgid "Acquaintances" -msgstr "" +msgstr "知人" #: ../../Zotlabs/Module/Connedit.php:756 msgid "Filter" -msgstr "" +msgstr "フィルタ" #: ../../Zotlabs/Module/Connedit.php:759 msgid "Open Custom Filter section by default" -msgstr "" +msgstr "デフォルトでカスタムフィルターセクションを開く" #: ../../Zotlabs/Module/Connedit.php:796 msgid "Approve this connection" -msgstr "" +msgstr "この接続を承認" #: ../../Zotlabs/Module/Connedit.php:796 msgid "Accept connection to allow communication" -msgstr "" +msgstr "接続を受け入れて通信を許可する" #: ../../Zotlabs/Module/Connedit.php:801 msgid "Set Affinity" -msgstr "" +msgstr "アフィニティを設定する" #: ../../Zotlabs/Module/Connedit.php:804 msgid "Set Profile" -msgstr "" +msgstr "プロファイルを設定" #: ../../Zotlabs/Module/Connedit.php:807 msgid "Set Affinity & Profile" -msgstr "" +msgstr "アフィニティとプロファイルを設定する" #: ../../Zotlabs/Module/Connedit.php:855 msgid "This connection is unreachable from this location." -msgstr "" +msgstr "この場所からこの接続に到達できません。" #: ../../Zotlabs/Module/Connedit.php:856 msgid "This connection may be unreachable from other channel locations." -msgstr "" +msgstr "この接続は、他のチャネルの場所から到達できない場合があります。" #: ../../Zotlabs/Module/Connedit.php:858 msgid "Location independence is not supported by their network." -msgstr "" +msgstr "場所の独立性は、ネットワークではサポートされていません。" #: ../../Zotlabs/Module/Connedit.php:864 msgid "" "This connection is unreachable from this location. Location independence is " "not supported by their network." -msgstr "" +msgstr "この場所からこの接続に到達できません。場所の独立性は、ネットワークではサポートされていません。" #: ../../Zotlabs/Module/Connedit.php:867 ../../Zotlabs/Module/Defperms.php:254 msgid "Connection Default Permissions" -msgstr "" +msgstr "接続のデフォルト許可" #: ../../Zotlabs/Module/Connedit.php:868 ../../Zotlabs/Module/Defperms.php:255 msgid "Apply these permissions automatically" -msgstr "" +msgstr "これらの許可を自動的に適用する" #: ../../Zotlabs/Module/Connedit.php:868 msgid "Connection requests will be approved without your interaction" -msgstr "" +msgstr "接続要求はユーザーの操作なしで承認されます" #: ../../Zotlabs/Module/Connedit.php:869 ../../Zotlabs/Module/Defperms.php:256 msgid "Permission role" -msgstr "" +msgstr "許可の役割" #: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Defperms.php:257 msgid "Add permission role" -msgstr "" +msgstr "権限ロールを追加" #: ../../Zotlabs/Module/Connedit.php:877 msgid "This connection's primary address is" -msgstr "" +msgstr "この接続のプライマリアドレスは" #: ../../Zotlabs/Module/Connedit.php:878 msgid "Available locations:" -msgstr "" +msgstr "利用可能な場所:" #: ../../Zotlabs/Module/Connedit.php:883 ../../Zotlabs/Module/Defperms.php:261 msgid "" "The permissions indicated on this page will be applied to all new " "connections." -msgstr "" +msgstr "このページに示されている権限は、すべての新しい接続に適用されます。" #: ../../Zotlabs/Module/Connedit.php:884 msgid "Connection Tools" -msgstr "" +msgstr "接続ツール" #: ../../Zotlabs/Module/Connedit.php:886 msgid "Slide to adjust your degree of friendship" -msgstr "" +msgstr "スライドして友好度を調整します" #: ../../Zotlabs/Module/Connedit.php:888 msgid "Slide to adjust your rating" -msgstr "" +msgstr "スライドして評価を調整します" #: ../../Zotlabs/Module/Connedit.php:889 ../../Zotlabs/Module/Connedit.php:894 msgid "Optionally explain your rating" -msgstr "" +msgstr "オプションで、評価を説明してください" #: ../../Zotlabs/Module/Connedit.php:891 msgid "Custom Filter" -msgstr "" +msgstr "カスタムフィルター" #: ../../Zotlabs/Module/Connedit.php:892 msgid "Only import posts with this text" -msgstr "" +msgstr "このテキストを含む投稿のみをインポートする" #: ../../Zotlabs/Module/Connedit.php:893 msgid "Do not import posts with this text" -msgstr "" +msgstr "このテキストを含む投稿をインポートしないでください" #: ../../Zotlabs/Module/Connedit.php:895 msgid "This information is public!" -msgstr "" +msgstr "この情報は公開されています!" #: ../../Zotlabs/Module/Connedit.php:900 msgid "Connection Pending Approval" -msgstr "" +msgstr "接続の保留中の承認" #: ../../Zotlabs/Module/Connedit.php:903 ../../Zotlabs/Module/Defperms.php:264 #: ../../Zotlabs/Module/Permcats.php:123 ../../Zotlabs/Module/Tokens.php:183 msgid "inherited" -msgstr "" +msgstr "継承されました" #: ../../Zotlabs/Module/Connedit.php:905 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." -msgstr "" +msgstr "プロフィールを安全に表示するときに、 %sに表示するプロフィールを選択してください。" #: ../../Zotlabs/Module/Connedit.php:907 ../../Zotlabs/Module/Tokens.php:180 msgid "Their Settings" -msgstr "" +msgstr "それらの設定" #: ../../Zotlabs/Module/Connedit.php:908 ../../Zotlabs/Module/Defperms.php:266 #: ../../Zotlabs/Module/Permcats.php:121 ../../Zotlabs/Module/Tokens.php:181 msgid "My Settings" -msgstr "" +msgstr "私の設定" #: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Defperms.php:269 #: ../../Zotlabs/Module/Permcats.php:126 ../../Zotlabs/Module/Tokens.php:186 msgid "Individual Permissions" -msgstr "" +msgstr "個別の許可" #: ../../Zotlabs/Module/Connedit.php:911 ../../Zotlabs/Module/Permcats.php:127 #: ../../Zotlabs/Module/Tokens.php:187 @@ -7123,7 +7123,7 @@ msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher priority than " "individual settings. You can not change those settings here." -msgstr "" +msgstr "一部の権限は、チャンネルの プライバシー設定 から継承される場合があり、個々の設定よりも優先度が高くなります。ここでこれらの設定を変更することはできません。" #: ../../Zotlabs/Module/Connedit.php:912 msgid "" @@ -7131,65 +7131,65 @@ msgid "" "\">privacy settings, which have higher priority than " "individual settings. You can change those settings here but they wont have " "any impact unless the inherited setting changes." -msgstr "" +msgstr "一部の権限は、チャンネルの プライバシー設定 から継承される場合があり、個々の設定よりも優先度が高くなります。これらの設定はここで変更できますが、継承された設定が変更されない限り、影響はありません。" #: ../../Zotlabs/Module/Connedit.php:913 msgid "Last update:" -msgstr "" +msgstr "最後の更新:" #: ../../Zotlabs/Module/Connedit.php:921 msgid "Details" -msgstr "" +msgstr "詳細" #: ../../Zotlabs/Module/Cover_photo.php:80 #: ../../Zotlabs/Module/Profile_photo.php:66 msgid "Image uploaded but image cropping failed." -msgstr "" +msgstr "画像はアップロードされましたが、画像の切り取りに失敗しました。" #: ../../Zotlabs/Module/Cover_photo.php:191 #: ../../Zotlabs/Module/Cover_photo.php:243 msgid "Cover Photos" -msgstr "" +msgstr "カバー写真" #: ../../Zotlabs/Module/Cover_photo.php:214 #: ../../Zotlabs/Module/Profile_photo.php:142 msgid "Image resize failed." -msgstr "" +msgstr "画像のサイズ変更に失敗しました。" #: ../../Zotlabs/Module/Cover_photo.php:254 #: ../../Zotlabs/Module/Profile_photo.php:260 msgid "Image upload failed." -msgstr "" +msgstr "画像のアップロードに失敗しました。" #: ../../Zotlabs/Module/Cover_photo.php:271 #: ../../Zotlabs/Module/Profile_photo.php:279 msgid "Unable to process image." -msgstr "" +msgstr "画像を処理できません。" #: ../../Zotlabs/Module/Cover_photo.php:364 #: ../../Zotlabs/Module/Cover_photo.php:379 #: ../../Zotlabs/Module/Profile_photo.php:343 #: ../../Zotlabs/Module/Profile_photo.php:390 msgid "Photo not available." -msgstr "" +msgstr "写真は利用できません。" #: ../../Zotlabs/Module/Cover_photo.php:415 msgid "Your cover photo may be visible to anybody on the internet" -msgstr "" +msgstr "カバー写真はインターネット上の誰でも見ることができます" #: ../../Zotlabs/Module/Cover_photo.php:417 #: ../../Zotlabs/Module/Profile_photo.php:456 msgid "Upload File:" -msgstr "" +msgstr "ファイルをアップロードする:" #: ../../Zotlabs/Module/Cover_photo.php:418 #: ../../Zotlabs/Module/Profile_photo.php:457 msgid "Select a profile:" -msgstr "" +msgstr "プロファイルを選択:" #: ../../Zotlabs/Module/Cover_photo.php:419 msgid "Change Cover Photo" -msgstr "" +msgstr "カバー写真を変更" #: ../../Zotlabs/Module/Cover_photo.php:420 #: ../../Zotlabs/Module/Embedphotos.php:166 ../../Zotlabs/Module/Photos.php:727 @@ -7198,228 +7198,228 @@ msgstr "" #: ../../Zotlabs/Widget/Cdav.php:133 ../../Zotlabs/Widget/Cdav.php:169 #: ../../Zotlabs/Widget/Portfolio.php:110 msgid "Upload" -msgstr "" +msgstr "アップロードする" #: ../../Zotlabs/Module/Cover_photo.php:423 #: ../../Zotlabs/Module/Cover_photo.php:424 #: ../../Zotlabs/Module/Profile_photo.php:463 #: ../../Zotlabs/Module/Profile_photo.php:464 msgid "Use a photo from your albums" -msgstr "" +msgstr "アルバムの写真を使用する" #: ../../Zotlabs/Module/Cover_photo.php:429 #: ../../Zotlabs/Module/Profile_photo.php:469 ../../Zotlabs/Module/Wiki.php:405 msgid "Choose a different album" -msgstr "" +msgstr "別のアルバムを選択してください" #: ../../Zotlabs/Module/Cover_photo.php:435 #: ../../Zotlabs/Module/Profile_photo.php:474 msgid "Select existing photo" -msgstr "" +msgstr "既存の写真を選択" #: ../../Zotlabs/Module/Cover_photo.php:452 #: ../../Zotlabs/Module/Profile_photo.php:493 msgid "Crop Image" -msgstr "" +msgstr "クロップ画像" #: ../../Zotlabs/Module/Cover_photo.php:453 #: ../../Zotlabs/Module/Profile_photo.php:494 msgid "Please adjust the image cropping for optimum viewing." -msgstr "" +msgstr "最適な表示になるように画像のトリミングを調整してください。" #: ../../Zotlabs/Module/Cover_photo.php:455 #: ../../Zotlabs/Module/Profile_photo.php:496 msgid "Done Editing" -msgstr "" +msgstr "編集完了" #: ../../Zotlabs/Module/Defperms.php:111 #: ../../Zotlabs/Module/Settings/Channel.php:266 msgid "Settings updated." -msgstr "" +msgstr "設定が更新されました。" #: ../../Zotlabs/Module/Defperms.php:189 msgid "Default Permissions App" -msgstr "" +msgstr "デフォルトの権限アプリ" #: ../../Zotlabs/Module/Defperms.php:190 msgid "Set custom default permissions for new connections" -msgstr "" +msgstr "新しい接続のカスタムデフォルト許可を設定する" #: ../../Zotlabs/Module/Defperms.php:255 #: ../../Zotlabs/Module/Settings/Channel.php:470 msgid "" "If enabled, connection requests will be approved without your interaction" -msgstr "" +msgstr "有効にすると、ユーザーの操作なしで接続要求が承認されます" #: ../../Zotlabs/Module/Defperms.php:262 msgid "Automatic approval settings" -msgstr "" +msgstr "自動承認設定" #: ../../Zotlabs/Module/Defperms.php:270 msgid "" "Some individual permissions may have been preset or locked based on your " "channel type and privacy settings." -msgstr "" +msgstr "チャンネルの種類とプライバシー設定に基づいて、個々の権限が事前設定またはロックされている場合があります。" #: ../../Zotlabs/Module/Directory.php:67 ../../Zotlabs/Module/Directory.php:72 #: ../../Zotlabs/Module/Display.php:29 ../../Zotlabs/Module/Photos.php:558 #: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Search.php:17 #: ../../Zotlabs/Module/Viewconnections.php:23 msgid "Public access denied." -msgstr "" +msgstr "パブリックアクセスが拒否されました。" #: ../../Zotlabs/Module/Directory.php:110 msgid "No default suggestions were found." -msgstr "" +msgstr "デフォルトの提案は見つかりませんでした。" #: ../../Zotlabs/Module/Directory.php:259 #, php-format msgid "%d rating" msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d評価" +msgstr[1] "%d評価" #: ../../Zotlabs/Module/Directory.php:270 msgid "Gender: " -msgstr "" +msgstr "性別:" #: ../../Zotlabs/Module/Directory.php:272 msgid "Status: " -msgstr "" +msgstr "状態:" #: ../../Zotlabs/Module/Directory.php:274 msgid "Homepage: " -msgstr "" +msgstr "ホームページ:" #: ../../Zotlabs/Module/Directory.php:334 msgid "Description:" -msgstr "" +msgstr "説明:" #: ../../Zotlabs/Module/Directory.php:343 msgid "Public Forum:" -msgstr "" +msgstr "公開フォーラム:" #: ../../Zotlabs/Module/Directory.php:346 msgid "Keywords: " -msgstr "" +msgstr "キーワード:" #: ../../Zotlabs/Module/Directory.php:349 msgid "Don't suggest" -msgstr "" +msgstr "提案しないでください" #: ../../Zotlabs/Module/Directory.php:351 msgid "Common connections (estimated):" -msgstr "" +msgstr "一般的な接続(推定):" #: ../../Zotlabs/Module/Directory.php:400 msgid "Global Directory" -msgstr "" +msgstr "グローバルディレクトリ" #: ../../Zotlabs/Module/Directory.php:400 msgid "Local Directory" -msgstr "" +msgstr "ローカルディレクトリ" #: ../../Zotlabs/Module/Directory.php:406 msgid "Finding:" -msgstr "" +msgstr "発見:" #: ../../Zotlabs/Module/Directory.php:411 msgid "next page" -msgstr "" +msgstr "次のページ" #: ../../Zotlabs/Module/Directory.php:411 msgid "previous page" -msgstr "" +msgstr "前のページ" #: ../../Zotlabs/Module/Directory.php:412 msgid "Sort options" -msgstr "" +msgstr "並べ替えオプション" #: ../../Zotlabs/Module/Directory.php:413 msgid "Alphabetic" -msgstr "" +msgstr "アルファベット" #: ../../Zotlabs/Module/Directory.php:414 msgid "Reverse Alphabetic" -msgstr "" +msgstr "逆アルファベット" #: ../../Zotlabs/Module/Directory.php:415 msgid "Newest to Oldest" -msgstr "" +msgstr "最新から最新" #: ../../Zotlabs/Module/Directory.php:416 msgid "Oldest to Newest" -msgstr "" +msgstr "最新から最新" #: ../../Zotlabs/Module/Directory.php:433 msgid "No entries (some entries may be hidden)." -msgstr "" +msgstr "エントリなし(一部のエントリは非表示になる場合があります)。" #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 msgid "This site is not a directory server" -msgstr "" +msgstr "このサイトはディレクトリサーバーではありません" #: ../../Zotlabs/Module/Dirsearch.php:33 msgid "This directory server requires an access token" -msgstr "" +msgstr "このディレクトリサーバーにはアクセストークンが必要です" #: ../../Zotlabs/Module/Display.php:396 msgid "Article" -msgstr "" +msgstr "記事" #: ../../Zotlabs/Module/Display.php:448 msgid "Item has been removed." -msgstr "" +msgstr "アイテムは削除されました。" #: ../../Zotlabs/Module/Editblock.php:138 msgid "Edit Block" -msgstr "" +msgstr "ブロックを編集" #: ../../Zotlabs/Module/Editlayout.php:128 ../../Zotlabs/Module/Layouts.php:129 #: ../../Zotlabs/Module/Layouts.php:189 msgid "Layout Name" -msgstr "" +msgstr "レイアウト名" #: ../../Zotlabs/Module/Editlayout.php:129 ../../Zotlabs/Module/Layouts.php:132 msgid "Layout Description (Optional)" -msgstr "" +msgstr "レイアウトの説明(オプション)" #: ../../Zotlabs/Module/Editlayout.php:137 msgid "Edit Layout" -msgstr "" +msgstr "レイアウトを編集" #: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 msgid "Item is not editable" -msgstr "" +msgstr "アイテムは編集できません" #: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:144 msgid "Edit post" -msgstr "" +msgstr "投稿を編集" #: ../../Zotlabs/Module/Editwebpage.php:139 msgid "Page link" -msgstr "" +msgstr "ページリンク" #: ../../Zotlabs/Module/Editwebpage.php:166 msgid "Edit Webpage" -msgstr "" +msgstr "ウェブページを編集" #: ../../Zotlabs/Module/Email_resend.php:12 #: ../../Zotlabs/Module/Email_validation.php:24 msgid "Token verification failed." -msgstr "" +msgstr "トークンの検証に失敗しました。" #: ../../Zotlabs/Module/Email_resend.php:30 msgid "Email verification resent" -msgstr "" +msgstr "メール確認の再送" #: ../../Zotlabs/Module/Email_resend.php:33 msgid "Unable to resend email verification message." -msgstr "" +msgstr "メール確認メッセージを再送信できません。" #: ../../Zotlabs/Module/Email_validation.php:36 msgid "Email Verification Required" -msgstr "" +msgstr "メール確認が必要です" #: ../../Zotlabs/Module/Email_validation.php:37 #, php-format @@ -7427,261 +7427,261 @@ msgid "" "A verification token was sent to your email address [%s]. Enter that token " "here to complete the account verification step. Please allow a few minutes " "for delivery, and check your spam folder if you do not see the message." -msgstr "" +msgstr "確認トークンがメールアドレス[ %s ]に送信されました。ここにトークンを入力して、アカウントの確認手順を完了します。配信に数分かかり、メッセージが表示されない場合はスパムフォルダーを確認してください。" #: ../../Zotlabs/Module/Email_validation.php:38 msgid "Resend Email" -msgstr "" +msgstr "メールを再送" #: ../../Zotlabs/Module/Email_validation.php:41 msgid "Validation token" -msgstr "" +msgstr "検証トークン" #: ../../Zotlabs/Module/Embedphotos.php:148 ../../Zotlabs/Module/Photos.php:826 #: ../../Zotlabs/Module/Photos.php:1374 ../../Zotlabs/Widget/Album.php:78 #: ../../Zotlabs/Widget/Portfolio.php:87 msgid "View Photo" -msgstr "" +msgstr "写真を見る" #: ../../Zotlabs/Module/Embedphotos.php:164 ../../Zotlabs/Module/Photos.php:857 #: ../../Zotlabs/Widget/Album.php:95 ../../Zotlabs/Widget/Portfolio.php:108 msgid "Edit Album" -msgstr "" +msgstr "アルバムを編集" #: ../../Zotlabs/Module/Events.php:25 msgid "Calendar entries imported." -msgstr "" +msgstr "インポートされたカレンダーエントリ。" #: ../../Zotlabs/Module/Events.php:27 msgid "No calendar entries found." -msgstr "" +msgstr "カレンダーエントリが見つかりません。" #: ../../Zotlabs/Module/Events.php:110 msgid "Event can not end before it has started." -msgstr "" +msgstr "イベントは開始する前に終了できません。" #: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 #: ../../Zotlabs/Module/Events.php:143 msgid "Unable to generate preview." -msgstr "" +msgstr "プレビューを生成できません。" #: ../../Zotlabs/Module/Events.php:119 msgid "Event title and start time are required." -msgstr "" +msgstr "イベントのタイトルと開始時間が必要です。" #: ../../Zotlabs/Module/Events.php:141 ../../Zotlabs/Module/Events.php:265 msgid "Event not found." -msgstr "" +msgstr "イベントが見つかりません。" #: ../../Zotlabs/Module/Events.php:462 msgid "Edit event title" -msgstr "" +msgstr "イベントのタイトルを編集" #: ../../Zotlabs/Module/Events.php:464 msgid "Categories (comma-separated list)" -msgstr "" +msgstr "カテゴリー(コンマ区切りリスト)" #: ../../Zotlabs/Module/Events.php:465 msgid "Edit Category" -msgstr "" +msgstr "カテゴリを編集" #: ../../Zotlabs/Module/Events.php:465 msgid "Category" -msgstr "" +msgstr "カテゴリー" #: ../../Zotlabs/Module/Events.php:468 msgid "Edit start date and time" -msgstr "" +msgstr "開始日時を編集する" #: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Events.php:472 msgid "Finish date and time are not known or not relevant" -msgstr "" +msgstr "終了日時がわからない、または関係ない" #: ../../Zotlabs/Module/Events.php:471 msgid "Edit finish date and time" -msgstr "" +msgstr "終了日時を編集する" #: ../../Zotlabs/Module/Events.php:471 msgid "Finish date and time" -msgstr "" +msgstr "終了日時" #: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Module/Events.php:474 msgid "Adjust for viewer timezone" -msgstr "" +msgstr "視聴者のタイムゾーンに合わせて調整する" #: ../../Zotlabs/Module/Events.php:473 msgid "" "Important for events that happen in a particular place. Not practical for " "global holidays." -msgstr "" +msgstr "特定の場所で発生するイベントにとって重要です。世界的な休日には実用的ではありません。" #: ../../Zotlabs/Module/Events.php:475 msgid "Edit Description" -msgstr "" +msgstr "説明の編集" #: ../../Zotlabs/Module/Events.php:477 msgid "Edit Location" -msgstr "" +msgstr "場所を編集" #: ../../Zotlabs/Module/Events.php:491 msgid "Timezone:" -msgstr "" +msgstr "タイムゾーン:" #: ../../Zotlabs/Module/Events.php:496 msgid "Advanced Options" -msgstr "" +msgstr "高度なオプション" #: ../../Zotlabs/Module/Events.php:635 msgid "Edit event" -msgstr "" +msgstr "イベントを編集" #: ../../Zotlabs/Module/Events.php:637 msgid "Delete event" -msgstr "" +msgstr "イベントを削除" #: ../../Zotlabs/Module/Events.php:670 msgid "calendar" -msgstr "" +msgstr "カレンダー" #: ../../Zotlabs/Module/Events.php:732 msgid "Event removed" -msgstr "" +msgstr "イベントを削除しました" #: ../../Zotlabs/Module/Events.php:735 msgid "Failed to remove event" -msgstr "" +msgstr "イベントを削除できませんでした" #: ../../Zotlabs/Module/Filer.php:52 msgid "Enter a folder name" -msgstr "" +msgstr "フォルダー名を入力してください" #: ../../Zotlabs/Module/Filer.php:52 msgid "or select an existing folder (doubleclick)" -msgstr "" +msgstr "または、既存のフォルダーを選択します(ダブルクリック)" #: ../../Zotlabs/Module/Filestorage.php:103 msgid "File not found." -msgstr "" +msgstr "ファイルが見つかりません。" #: ../../Zotlabs/Module/Filestorage.php:152 msgid "Permission Denied." -msgstr "" +msgstr "アクセス拒否。" #: ../../Zotlabs/Module/Filestorage.php:185 msgid "Edit file permissions" -msgstr "" +msgstr "ファイルのアクセス許可を編集する" #: ../../Zotlabs/Module/Filestorage.php:197 msgid "Set/edit permissions" -msgstr "" +msgstr "許可の設定/編集" #: ../../Zotlabs/Module/Filestorage.php:198 msgid "Include all files and sub folders" -msgstr "" +msgstr "すべてのファイルとサブフォルダーを含める" #: ../../Zotlabs/Module/Filestorage.php:199 msgid "Return to file list" -msgstr "" +msgstr "ファイルリストに戻る" #: ../../Zotlabs/Module/Filestorage.php:201 msgid "Copy/paste this code to attach file to a post" -msgstr "" +msgstr "このコードをコピーして貼り付けて、ファイルを投稿に添付します" #: ../../Zotlabs/Module/Filestorage.php:202 msgid "Copy/paste this URL to link file from a web page" -msgstr "" +msgstr "このURLをコピー/貼り付けして、Webページからファイルをリンクします" #: ../../Zotlabs/Module/Filestorage.php:204 msgid "Share this file" -msgstr "" +msgstr "このファイルを共有する" #: ../../Zotlabs/Module/Filestorage.php:205 msgid "Show URL to this file" -msgstr "" +msgstr "このファイルへのURLを表示" #: ../../Zotlabs/Module/Filestorage.php:206 #: ../../Zotlabs/Storage/Browser.php:411 msgid "Show in your contacts shared folder" -msgstr "" +msgstr "連絡先の共有フォルダーに表示する" #: ../../Zotlabs/Module/Follow.php:36 msgid "Connection added." -msgstr "" +msgstr "接続が追加されました。" #: ../../Zotlabs/Module/Go.php:21 msgid "This page is available only to site members" -msgstr "" +msgstr "このページはサイトメンバーのみが利用できます" #: ../../Zotlabs/Module/Go.php:27 msgid "Welcome" -msgstr "" +msgstr "ようこそ" #: ../../Zotlabs/Module/Go.php:29 msgid "What would you like to do?" -msgstr "" +msgstr "何をしたいですか?" #: ../../Zotlabs/Module/Go.php:31 msgid "" "Please bookmark this page if you would like to return to it in the future" -msgstr "" +msgstr "今後このページに戻る場合は、このページをブックマークしてください" #: ../../Zotlabs/Module/Go.php:35 msgid "Upload a profile photo" -msgstr "" +msgstr "プロフィール写真をアップロードする" #: ../../Zotlabs/Module/Go.php:36 msgid "Upload a cover photo" -msgstr "" +msgstr "カバー写真をアップロードする" #: ../../Zotlabs/Module/Go.php:37 msgid "Edit your default profile" -msgstr "" +msgstr "デフォルトのプロファイルを編集する" #: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:41 msgid "View friend suggestions" -msgstr "" +msgstr "友達の提案を見る" #: ../../Zotlabs/Module/Go.php:39 msgid "View the channel directory" -msgstr "" +msgstr "チャンネルディレクトリを表示する" #: ../../Zotlabs/Module/Go.php:40 msgid "View/edit your channel settings" -msgstr "" +msgstr "チャンネル設定の表示/編集" #: ../../Zotlabs/Module/Go.php:41 msgid "View the site or project documentation" -msgstr "" +msgstr "サイトまたはプロジェクトのドキュメントを表示する" #: ../../Zotlabs/Module/Go.php:42 msgid "Visit your channel homepage" -msgstr "" +msgstr "チャンネルのホームページにアクセスします" #: ../../Zotlabs/Module/Go.php:43 msgid "" "View your connections and/or add somebody whose address you already know" -msgstr "" +msgstr "接続を表示したり、アドレスを既に知っている人を追加したりします" #: ../../Zotlabs/Module/Go.php:44 msgid "" "View your personal stream (this may be empty until you add some connections)" -msgstr "" +msgstr "パーソナルストリームを表示します(接続を追加するまで空の場合があります)" #: ../../Zotlabs/Module/Go.php:52 msgid "View the public stream. Warning: this content is not moderated" -msgstr "" +msgstr "パブリックストリームを表示します。警告:このコンテンツは管理されていません" #: ../../Zotlabs/Module/Group.php:45 msgid "Privacy group created." -msgstr "" +msgstr "プライバシーグループが作成されました。" #: ../../Zotlabs/Module/Group.php:48 msgid "Could not create privacy group." -msgstr "" +msgstr "プライバシーグループを作成できませんでした。" #: ../../Zotlabs/Module/Group.php:80 msgid "Privacy group updated." -msgstr "" +msgstr "プライバシーグループが更新されました。" #: ../../Zotlabs/Module/Group.php:106 msgid "Privacy Groups App" @@ -7693,165 +7693,165 @@ msgstr "プライバシーグループを管理する" #: ../../Zotlabs/Module/Group.php:142 msgid "Add Group" -msgstr "" +msgstr "グループを追加" #: ../../Zotlabs/Module/Group.php:146 msgid "Privacy group name" -msgstr "" +msgstr "プライバシーグループ名" #: ../../Zotlabs/Module/Group.php:147 ../../Zotlabs/Module/Group.php:256 msgid "Members are visible to other channels" -msgstr "" +msgstr "メンバーは他のチャンネルに表示されます" #: ../../Zotlabs/Module/Group.php:155 ../../Zotlabs/Module/Help.php:81 msgid "Members" -msgstr "" +msgstr "会員" #: ../../Zotlabs/Module/Group.php:182 msgid "Privacy group removed." -msgstr "" +msgstr "プライバシーグループが削除されました。" #: ../../Zotlabs/Module/Group.php:185 msgid "Unable to remove privacy group." -msgstr "" +msgstr "プライバシーグループを削除できません。" #: ../../Zotlabs/Module/Group.php:251 #, php-format msgid "Privacy Group: %s" -msgstr "" +msgstr "プライバシーグループ: %s" #: ../../Zotlabs/Module/Group.php:253 msgid "Privacy group name: " -msgstr "" +msgstr "プライバシーグループ名:" #: ../../Zotlabs/Module/Group.php:258 msgid "Delete Group" -msgstr "" +msgstr "グループを削除" #: ../../Zotlabs/Module/Group.php:269 msgid "Group members" -msgstr "" +msgstr "グループの人(仲間)たち" #: ../../Zotlabs/Module/Group.php:271 msgid "Not in this group" -msgstr "" +msgstr "このグループではない" #: ../../Zotlabs/Module/Group.php:303 msgid "Click a channel to toggle membership" -msgstr "" +msgstr "チャンネルをクリックしてメンバーシップを切り替えます" #: ../../Zotlabs/Module/Help.php:23 msgid "Documentation Search" -msgstr "" +msgstr "ドキュメント検索" #: ../../Zotlabs/Module/Help.php:82 msgid "Administrators" -msgstr "" +msgstr "管理者" #: ../../Zotlabs/Module/Help.php:83 msgid "Developers" -msgstr "" +msgstr "開発者" #: ../../Zotlabs/Module/Help.php:84 msgid "Tutorials" -msgstr "" +msgstr "チュートリアル" #: ../../Zotlabs/Module/Help.php:95 msgid "$Projectname Documentation" -msgstr "" +msgstr "$ Projectnameドキュメント" #: ../../Zotlabs/Module/Help.php:96 msgid "Contents" -msgstr "" +msgstr "内容" #: ../../Zotlabs/Module/Home.php:90 #, php-format msgid "Welcome to %s" -msgstr "" +msgstr "%sへようこそ" #: ../../Zotlabs/Module/Hq.php:140 msgid "Welcome to Hubzilla!" -msgstr "" +msgstr "Hubzillaへようこそ!" #: ../../Zotlabs/Module/Hq.php:140 msgid "You have got no unseen posts..." -msgstr "" +msgstr "未読の投稿はありません..." #: ../../Zotlabs/Module/Impel.php:185 #, php-format msgid "%s element installed" -msgstr "" +msgstr "%s要素がインストールされました" #: ../../Zotlabs/Module/Impel.php:188 #, php-format msgid "%s element installation failed" -msgstr "" +msgstr "%s要素のインストールに失敗しました" #: ../../Zotlabs/Module/Import.php:68 ../../Zotlabs/Module/Import_items.php:48 msgid "Nothing to import." -msgstr "" +msgstr "インポートするものはありません。" #: ../../Zotlabs/Module/Import.php:83 ../../Zotlabs/Module/Import.php:99 #: ../../Zotlabs/Module/Import_items.php:72 msgid "Unable to download data from old server" -msgstr "" +msgstr "古いサーバーからデータをダウンロードできません" #: ../../Zotlabs/Module/Import.php:106 ../../Zotlabs/Module/Import_items.php:77 msgid "Imported file is empty." -msgstr "" +msgstr "インポートされたファイルは空です。" #: ../../Zotlabs/Module/Import.php:157 #, php-format msgid "Your service plan only allows %d channels." -msgstr "" +msgstr "サービスプランでは%dチャンネルのみが許可されています。" #: ../../Zotlabs/Module/Import.php:184 msgid "No channel. Import failed." -msgstr "" +msgstr "チャンネルなし。インポートに失敗しました。" #: ../../Zotlabs/Module/Import.php:594 msgid "Import completed." -msgstr "" +msgstr "インポートが完了しました。" #: ../../Zotlabs/Module/Import.php:622 msgid "You must be logged in to use this feature." -msgstr "" +msgstr "この機能を使用するには、ログインする必要があります。" #: ../../Zotlabs/Module/Import.php:627 msgid "Import Channel" -msgstr "" +msgstr "インポートチャンネル" #: ../../Zotlabs/Module/Import.php:628 msgid "" "Use this form to import an existing channel from a different server/hub. You " "may retrieve the channel identity from the old server/hub via the network or " "provide an export file." -msgstr "" +msgstr "このフォームを使用して、別のサーバー/ハブから既存のチャンネルをインポートします。ネットワーク経由で古いサーバー/ハブからチャネルIDを取得するか、エクスポートファイルを提供できます。" #: ../../Zotlabs/Module/Import.php:629 #: ../../Zotlabs/Module/Import_items.php:127 msgid "File to Upload" -msgstr "" +msgstr "アップロードするファイル" #: ../../Zotlabs/Module/Import.php:630 msgid "Or provide the old server/hub details" -msgstr "" +msgstr "または、古いサーバー/ハブの詳細を提供します" #: ../../Zotlabs/Module/Import.php:632 msgid "Your old identity address (xyz@example.com)" -msgstr "" +msgstr "古いIDアドレス(xyz@example.com)" #: ../../Zotlabs/Module/Import.php:633 msgid "Your old login email address" -msgstr "" +msgstr "古いログイン用メールアドレス" #: ../../Zotlabs/Module/Import.php:634 msgid "Your old login password" -msgstr "" +msgstr "古いログインパスワード" #: ../../Zotlabs/Module/Import.php:635 msgid "Import a few months of posts if possible (limited by available memory" -msgstr "" +msgstr "可能な場合は数か月分の投稿をインポートします(使用可能なメモリによって制限されます)" #: ../../Zotlabs/Module/Import.php:637 msgid "" @@ -7859,1045 +7859,1045 @@ msgid "" "address, or whether your old location should continue this role. You will be " "able to post from either location, but only one can be marked as the primary " "location for files, photos, and media." -msgstr "" +msgstr "どちらのオプションでも、このハブを新しいプライマリアドレスにするか、古い場所でこの役割を継続するかを選択してください。どちらの場所からでも投稿できますが、ファイル、写真、およびメディアの主要な場所としてマークできるのは1つだけです。" #: ../../Zotlabs/Module/Import.php:639 msgid "Make this hub my primary location" -msgstr "" +msgstr "このハブを主要な場所にする" #: ../../Zotlabs/Module/Import.php:640 msgid "Move this channel (disable all previous locations)" -msgstr "" +msgstr "このチャネルを移動します(以前のすべての場所を無効にします)" #: ../../Zotlabs/Module/Import.php:641 msgid "Use this channel nickname instead of the one provided" -msgstr "" +msgstr "提供されたものの代わりにこのチャンネルのニックネームを使用します" #: ../../Zotlabs/Module/Import.php:641 msgid "" "Leave blank to keep your existing channel nickname. You will be randomly " "assigned a similar nickname if either name is already allocated on this site." -msgstr "" +msgstr "空白のままにして、既存のチャンネルのニックネームを保持します。いずれかの名前が既にこのサイトに割り当てられている場合、同様のニックネームがランダムに割り当てられます。" #: ../../Zotlabs/Module/Import.php:643 msgid "" "This process may take several minutes to complete. Please submit the form " "only once and leave this page open until finished." -msgstr "" +msgstr "このプロセスが完了するまでに数分かかる場合があります。フォームを1回だけ送信し、完了するまでこのページを開いたままにしてください。" #: ../../Zotlabs/Module/Import_items.php:93 #, php-format msgid "Warning: Database versions differ by %1$d updates." -msgstr "" +msgstr "警告:データベースのバージョンは%1$d更新によって異なります。" #: ../../Zotlabs/Module/Import_items.php:108 msgid "Import completed" -msgstr "" +msgstr "インポート完了" #: ../../Zotlabs/Module/Import_items.php:125 msgid "Import Items" -msgstr "" +msgstr "アイテムをインポート" #: ../../Zotlabs/Module/Import_items.php:126 msgid "Use this form to import existing posts and content from an export file." -msgstr "" +msgstr "このフォームを使用して、エクスポートファイルから既存の投稿とコンテンツをインポートします。" #: ../../Zotlabs/Module/Invite.php:37 msgid "Total invitation limit exceeded." -msgstr "" +msgstr "合計招待制限を超えました。" #: ../../Zotlabs/Module/Invite.php:61 #, php-format msgid "%s : Not a valid email address." -msgstr "" +msgstr "%s :有効なメールアドレスではありません。" #: ../../Zotlabs/Module/Invite.php:75 msgid "Please join us on $Projectname" -msgstr "" +msgstr "$ Projectnameにご参加ください" #: ../../Zotlabs/Module/Invite.php:85 msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" +msgstr "招待制限を超えました。サイト管理者に連絡してください。" #: ../../Zotlabs/Module/Invite.php:90 #, php-format msgid "%s : Message delivery failed." -msgstr "" +msgstr "%s :メッセージの配信に失敗しました。" #: ../../Zotlabs/Module/Invite.php:94 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%dメッセージを送信しました。" +msgstr[1] "%dメッセージを送信しました。" #: ../../Zotlabs/Module/Invite.php:110 msgid "Invite App" -msgstr "" +msgstr "アプリを招待" #: ../../Zotlabs/Module/Invite.php:111 msgid "Send email invitations to join this network" -msgstr "" +msgstr "このネットワークに参加するための招待メールを送信する" #: ../../Zotlabs/Module/Invite.php:124 msgid "You have no more invitations available" -msgstr "" +msgstr "利用可能な招待はもうありません" #: ../../Zotlabs/Module/Invite.php:155 msgid "Send invitations" -msgstr "" +msgstr "招待状を送信" #: ../../Zotlabs/Module/Invite.php:156 msgid "Enter email addresses, one per line:" -msgstr "" +msgstr "電子メールアドレスを1行に1つずつ入力します。" #: ../../Zotlabs/Module/Invite.php:157 ../../Zotlabs/Module/Mail.php:285 msgid "Your message:" -msgstr "" +msgstr "あなたのメッセージ:" #: ../../Zotlabs/Module/Invite.php:158 msgid "Please join my community on $Projectname." -msgstr "" +msgstr "$ Projectnameでコミュニティに参加してください。" #: ../../Zotlabs/Module/Invite.php:160 msgid "You will need to supply this invitation code:" -msgstr "" +msgstr "この招待コードを提供する必要があります。" #: ../../Zotlabs/Module/Invite.php:161 msgid "1. Register at any $Projectname location (they are all inter-connected)" -msgstr "" +msgstr "1.任意の$ Projectnameの場所に登録します(すべて相互に接続されています)" #: ../../Zotlabs/Module/Invite.php:163 msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "" +msgstr "2. $ Projectnameネットワークアドレスをサイト検索バーに入力します。" #: ../../Zotlabs/Module/Invite.php:164 msgid "or visit" -msgstr "" +msgstr "または訪問" #: ../../Zotlabs/Module/Invite.php:166 msgid "3. Click [Connect]" -msgstr "" +msgstr "3. [接続]をクリックします" #: ../../Zotlabs/Module/Item.php:362 msgid "Unable to locate original post." -msgstr "" +msgstr "元の投稿が見つかりません。" #: ../../Zotlabs/Module/Item.php:649 msgid "Empty post discarded." -msgstr "" +msgstr "空の投稿は破棄されました。" #: ../../Zotlabs/Module/Item.php:1058 msgid "Duplicate post suppressed." -msgstr "" +msgstr "重複した投稿は抑制されました。" #: ../../Zotlabs/Module/Item.php:1203 msgid "System error. Post not saved." -msgstr "" +msgstr "システムエラー。投稿は保存されませんでした。" #: ../../Zotlabs/Module/Item.php:1239 msgid "Your comment is awaiting approval." -msgstr "" +msgstr "あなたのコメントは承認待ちです。" #: ../../Zotlabs/Module/Item.php:1356 msgid "Unable to obtain post information from database." -msgstr "" +msgstr "データベースから投稿情報を取得できません。" #: ../../Zotlabs/Module/Item.php:1363 #, php-format msgid "You have reached your limit of %1$.0f top level posts." -msgstr "" +msgstr "トップレベルの投稿の上限%1 $ .0fに達しました。" #: ../../Zotlabs/Module/Item.php:1370 #, php-format msgid "You have reached your limit of %1$.0f webpages." -msgstr "" +msgstr "ウェブページの制限%1 $ .0fに達しました。" #: ../../Zotlabs/Module/Lang.php:17 msgid "Language App" -msgstr "" +msgstr "言語アプリ" #: ../../Zotlabs/Module/Lang.php:18 msgid "Change UI language" -msgstr "" +msgstr "UI言語を変更する" #: ../../Zotlabs/Module/Layouts.php:186 msgid "Comanche page description language help" -msgstr "" +msgstr "Comancheページ記述言語のヘルプ" #: ../../Zotlabs/Module/Layouts.php:190 msgid "Layout Description" -msgstr "" +msgstr "レイアウトの説明" #: ../../Zotlabs/Module/Layouts.php:195 msgid "Download PDL file" -msgstr "" +msgstr "PDLファイルをダウンロードする" #: ../../Zotlabs/Module/Like.php:56 msgid "Like/Dislike" -msgstr "" +msgstr "好き/嫌い" #: ../../Zotlabs/Module/Like.php:61 msgid "This action is restricted to members." -msgstr "" +msgstr "このアクションはメンバーに制限されています。" #: ../../Zotlabs/Module/Like.php:62 msgid "" "Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "" +msgstr "続行するには、 $ Projectname IDでログインするか、新しい$ Projectnameメンバーとして登録してください。" #: ../../Zotlabs/Module/Like.php:111 ../../Zotlabs/Module/Like.php:137 #: ../../Zotlabs/Module/Like.php:175 msgid "Invalid request." -msgstr "" +msgstr "無効なリクエスト。" #: ../../Zotlabs/Module/Like.php:152 msgid "thing" -msgstr "" +msgstr "事" #: ../../Zotlabs/Module/Like.php:198 msgid "Channel unavailable." -msgstr "" +msgstr "チャンネルは利用できません。" #: ../../Zotlabs/Module/Like.php:246 msgid "Previous action reversed." -msgstr "" +msgstr "前のアクションが逆になりました。" #: ../../Zotlabs/Module/Like.php:451 #, php-format msgid "%1$s agrees with %2$s's %3$s" -msgstr "" +msgstr "%1$sは%2$sの%3$s同意します" #: ../../Zotlabs/Module/Like.php:453 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "" +msgstr "%1$sは%2$sの%3$sと一致しません" #: ../../Zotlabs/Module/Like.php:455 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "" +msgstr "%1$sは%2$sの%3$s決定を棄権します" #: ../../Zotlabs/Module/Like.php:457 #, php-format msgid "%1$s is attending %2$s's %3$s" -msgstr "" +msgstr "%1$sは%2$sの%3$s" #: ../../Zotlabs/Module/Like.php:459 #, php-format msgid "%1$s is not attending %2$s's %3$s" -msgstr "" +msgstr "%1$sは%2$sの%3$s参加していません" #: ../../Zotlabs/Module/Like.php:461 #, php-format msgid "%1$s may attend %2$s's %3$s" -msgstr "" +msgstr "%1$sは%2$sの%3$s" #: ../../Zotlabs/Module/Like.php:572 msgid "Action completed." -msgstr "" +msgstr "アクションが完了しました。" #: ../../Zotlabs/Module/Like.php:573 msgid "Thank you." -msgstr "" +msgstr "ありがとうございました。" #: ../../Zotlabs/Module/Lockview.php:75 msgid "Remote privacy information not available." -msgstr "" +msgstr "リモートプライバシー情報は利用できません。" #: ../../Zotlabs/Module/Lockview.php:96 msgid "Visible to:" -msgstr "" +msgstr "に表示:" #: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 msgid "Location not found." -msgstr "" +msgstr "場所が見つかりません。" #: ../../Zotlabs/Module/Locs.php:62 msgid "Location lookup failed." -msgstr "" +msgstr "場所の検索に失敗しました。" #: ../../Zotlabs/Module/Locs.php:66 msgid "" "Please select another location to become primary before removing the primary " "location." -msgstr "" +msgstr "プライマリロケーションを削除する前に、プライマリになる別のロケーションを選択してください。" #: ../../Zotlabs/Module/Locs.php:95 msgid "Syncing locations" -msgstr "" +msgstr "場所の同期" #: ../../Zotlabs/Module/Locs.php:105 msgid "No locations found." -msgstr "" +msgstr "場所が見つかりません。" #: ../../Zotlabs/Module/Locs.php:116 msgid "Manage Channel Locations" -msgstr "" +msgstr "チャンネルの場所を管理する" #: ../../Zotlabs/Module/Locs.php:119 msgid "Primary" -msgstr "" +msgstr "一次" #: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:176 msgid "Drop" -msgstr "" +msgstr "ドロップ" #: ../../Zotlabs/Module/Locs.php:122 msgid "Sync Now" -msgstr "" +msgstr "今すぐ同期" #: ../../Zotlabs/Module/Locs.php:123 msgid "Please wait several minutes between consecutive operations." -msgstr "" +msgstr "連続した操作の間に数分待ってください。" #: ../../Zotlabs/Module/Locs.php:124 msgid "" "When possible, drop a location by logging into that website/hub and removing " "your channel." -msgstr "" +msgstr "可能であれば、そのWebサイト/ハブにログインしてチャンネルを削除して、場所を削除します。" #: ../../Zotlabs/Module/Locs.php:125 msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "" +msgstr "ハブが動作しなくなった場合、このフォームを使用して場所を削除します。" #: ../../Zotlabs/Module/Lostpass.php:19 msgid "No valid account found." -msgstr "" +msgstr "有効なアカウントが見つかりません。" #: ../../Zotlabs/Module/Lostpass.php:33 msgid "Password reset request issued. Check your email." -msgstr "" +msgstr "パスワードリセット要求が発行されました。あなたのメールをチェック。" #: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 #, php-format msgid "Site Member (%s)" -msgstr "" +msgstr "サイトメンバー( %s )" #: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 #, php-format msgid "Password reset requested at %s" -msgstr "" +msgstr "%s要求されたパスワードのリセット" #: ../../Zotlabs/Module/Lostpass.php:68 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." -msgstr "" +msgstr "リクエストを確認できませんでした。 (以前に送信した可能性があります。)パスワードのリセットに失敗しました。" #: ../../Zotlabs/Module/Lostpass.php:92 msgid "Your password has been reset as requested." -msgstr "" +msgstr "パスワードは要求どおりにリセットされました。" #: ../../Zotlabs/Module/Lostpass.php:93 msgid "Your new password is" -msgstr "" +msgstr "新しいパスワードは" #: ../../Zotlabs/Module/Lostpass.php:94 msgid "Save or copy your new password - and then" -msgstr "" +msgstr "新しいパスワードを保存またはコピーします-その後" #: ../../Zotlabs/Module/Lostpass.php:95 msgid "click here to login" -msgstr "" +msgstr "ここをクリックしてログイン" #: ../../Zotlabs/Module/Lostpass.php:96 msgid "" "Your password may be changed from the Settings page after " "successful login." -msgstr "" +msgstr "ログインに成功すると、パスワードは設定ページから変更される場合があります。" #: ../../Zotlabs/Module/Lostpass.php:117 #, php-format msgid "Your password has changed at %s" -msgstr "" +msgstr "パスワードは%s変更されました" #: ../../Zotlabs/Module/Lostpass.php:130 msgid "Forgot your Password?" -msgstr "" +msgstr "パスワードをお忘れですか?" #: ../../Zotlabs/Module/Lostpass.php:131 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." -msgstr "" +msgstr "メールアドレスを入力して送信し、パスワードをリセットしてください。その後、メールで詳細な手順を確認してください。" #: ../../Zotlabs/Module/Lostpass.php:132 msgid "Email Address" -msgstr "" +msgstr "電子メールアドレス" #: ../../Zotlabs/Module/Lostpass.php:133 ../../Zotlabs/Module/Pdledit.php:77 msgid "Reset" -msgstr "" +msgstr "リセットする" #: ../../Zotlabs/Module/Magic.php:76 msgid "Hub not found." -msgstr "" +msgstr "ハブが見つかりません。" #: ../../Zotlabs/Module/Mail.php:73 msgid "Unable to lookup recipient." -msgstr "" +msgstr "受信者を検索できません。" #: ../../Zotlabs/Module/Mail.php:80 msgid "Unable to communicate with requested channel." -msgstr "" +msgstr "要求されたチャネルと通信できません。" #: ../../Zotlabs/Module/Mail.php:87 msgid "Cannot verify requested channel." -msgstr "" +msgstr "要求されたチャンネルを確認できません。" #: ../../Zotlabs/Module/Mail.php:105 msgid "Selected channel has private message restrictions. Send failed." -msgstr "" +msgstr "選択したチャンネルにはプライベートメッセージの制限があります。送信に失敗しました。" #: ../../Zotlabs/Module/Mail.php:160 msgid "Messages" -msgstr "" +msgstr "メッセージ" #: ../../Zotlabs/Module/Mail.php:173 msgid "message" -msgstr "" +msgstr "メッセージ" #: ../../Zotlabs/Module/Mail.php:214 msgid "Message recalled." -msgstr "" +msgstr "メッセージを思い出しました。" #: ../../Zotlabs/Module/Mail.php:227 msgid "Conversation removed." -msgstr "" +msgstr "会話を削除しました。" #: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 msgid "Expires YYYY-MM-DD HH:MM" -msgstr "" +msgstr "有効期限YYYY-MM-DD HH:MM" #: ../../Zotlabs/Module/Mail.php:270 msgid "Requested channel is not in this network" -msgstr "" +msgstr "要求されたチャンネルはこのネットワークにありません" #: ../../Zotlabs/Module/Mail.php:278 msgid "Send Private Message" -msgstr "" +msgstr "プライベートメッセージを送信" #: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 msgid "To:" -msgstr "" +msgstr "に:" #: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 msgid "Subject:" -msgstr "" +msgstr "件名:" #: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 msgid "Attach file" -msgstr "" +msgstr "ファイルを添付する" #: ../../Zotlabs/Module/Mail.php:289 msgid "Send" -msgstr "" +msgstr "送る" #: ../../Zotlabs/Module/Mail.php:393 msgid "Delete message" -msgstr "" +msgstr "メッセージを削除" #: ../../Zotlabs/Module/Mail.php:394 msgid "Delivery report" -msgstr "" +msgstr "送達通知" #: ../../Zotlabs/Module/Mail.php:395 msgid "Recall message" -msgstr "" +msgstr "リコールメッセージ" #: ../../Zotlabs/Module/Mail.php:397 msgid "Message has been recalled." -msgstr "" +msgstr "メッセージが呼び戻されました。" #: ../../Zotlabs/Module/Mail.php:414 msgid "Delete Conversation" -msgstr "" +msgstr "会話を削除" #: ../../Zotlabs/Module/Mail.php:416 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." -msgstr "" +msgstr "安全な通信は利用できません。送信者のプロファイルページから 返信できる場合があります。" #: ../../Zotlabs/Module/Mail.php:420 msgid "Send Reply" -msgstr "" +msgstr "返信する" #: ../../Zotlabs/Module/Mail.php:425 #, php-format msgid "Your message for %s (%s):" -msgstr "" +msgstr "%s ( %s ) %sメッセージ:" #: ../../Zotlabs/Module/Manage.php:138 ../../Zotlabs/Module/New_channel.php:147 #, php-format msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "" +msgstr "%2 $ .0fの%1 $ .0fが許可されたチャンネルを作成しました。" #: ../../Zotlabs/Module/Manage.php:145 msgid "Create a new channel" -msgstr "" +msgstr "新しいチャンネルを作成する" #: ../../Zotlabs/Module/Manage.php:171 msgid "Current Channel" -msgstr "" +msgstr "現在のチャンネル" #: ../../Zotlabs/Module/Manage.php:173 msgid "Switch to one of your channels by selecting it." -msgstr "" +msgstr "チャンネルを選択して切り替えます。" #: ../../Zotlabs/Module/Manage.php:174 msgid "Default Channel" -msgstr "" +msgstr "デフォルトチャンネル" #: ../../Zotlabs/Module/Manage.php:175 msgid "Make Default" -msgstr "" +msgstr "デフォルトにする" #: ../../Zotlabs/Module/Manage.php:178 #, php-format msgid "%d new messages" -msgstr "" +msgstr "%d新しいメッセージ" #: ../../Zotlabs/Module/Manage.php:179 #, php-format msgid "%d new introductions" -msgstr "" +msgstr "%d新しい紹介" #: ../../Zotlabs/Module/Manage.php:181 msgid "Delegated Channel" -msgstr "" +msgstr "委任チャンネル" #: ../../Zotlabs/Module/Menu.php:67 msgid "Unable to update menu." -msgstr "" +msgstr "メニューを更新できません。" #: ../../Zotlabs/Module/Menu.php:78 msgid "Unable to create menu." -msgstr "" +msgstr "メニューを作成できません。" #: ../../Zotlabs/Module/Menu.php:160 ../../Zotlabs/Module/Menu.php:173 msgid "Menu Name" -msgstr "" +msgstr "メニュー名" #: ../../Zotlabs/Module/Menu.php:160 msgid "Unique name (not visible on webpage) - required" -msgstr "" +msgstr "一意の名前(Webページには表示されません)-必須" #: ../../Zotlabs/Module/Menu.php:161 ../../Zotlabs/Module/Menu.php:174 msgid "Menu Title" -msgstr "" +msgstr "メニュータイトル" #: ../../Zotlabs/Module/Menu.php:161 msgid "Visible on webpage - leave empty for no title" -msgstr "" +msgstr "Webページに表示-タイトルがない場合は空のままにします" #: ../../Zotlabs/Module/Menu.php:162 msgid "Allow Bookmarks" -msgstr "" +msgstr "ブックマークを許可" #: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 msgid "Menu may be used to store saved bookmarks" -msgstr "" +msgstr "メニューを使用して、保存したブックマークを保存できます" #: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:224 msgid "Submit and proceed" -msgstr "" +msgstr "送信して続行" #: ../../Zotlabs/Module/Menu.php:180 msgid "Bookmarks allowed" -msgstr "" +msgstr "ブックマークを許可" #: ../../Zotlabs/Module/Menu.php:182 msgid "Delete this menu" -msgstr "" +msgstr "このメニューを削除" #: ../../Zotlabs/Module/Menu.php:183 ../../Zotlabs/Module/Menu.php:218 msgid "Edit menu contents" -msgstr "" +msgstr "メニューの内容を編集" #: ../../Zotlabs/Module/Menu.php:184 msgid "Edit this menu" -msgstr "" +msgstr "このメニューを編集" #: ../../Zotlabs/Module/Menu.php:200 msgid "Menu could not be deleted." -msgstr "" +msgstr "メニューを削除できませんでした。" #: ../../Zotlabs/Module/Menu.php:208 ../../Zotlabs/Module/Mitem.php:31 msgid "Menu not found." -msgstr "" +msgstr "メニューが見つかりません。" #: ../../Zotlabs/Module/Menu.php:213 msgid "Edit Menu" -msgstr "" +msgstr "編集メニュー" #: ../../Zotlabs/Module/Menu.php:217 msgid "Add or remove entries to this menu" -msgstr "" +msgstr "このメニューにエントリを追加または削除します" #: ../../Zotlabs/Module/Menu.php:219 msgid "Menu name" -msgstr "" +msgstr "メニュー名" #: ../../Zotlabs/Module/Menu.php:219 msgid "Must be unique, only seen by you" -msgstr "" +msgstr "唯一でなければならない、あなただけが見られる" #: ../../Zotlabs/Module/Menu.php:220 msgid "Menu title" -msgstr "" +msgstr "メニュータイトル" #: ../../Zotlabs/Module/Menu.php:220 msgid "Menu title as seen by others" -msgstr "" +msgstr "他の人に表示されるメニュータイトル" #: ../../Zotlabs/Module/Menu.php:221 msgid "Allow bookmarks" -msgstr "" +msgstr "ブックマークを許可する" #: ../../Zotlabs/Module/Menu.php:231 ../../Zotlabs/Module/Mitem.php:134 #: ../../Zotlabs/Module/Xchan.php:41 msgid "Not found." -msgstr "" +msgstr "見つかりません。" #: ../../Zotlabs/Module/Mitem.php:63 msgid "Unable to create element." -msgstr "" +msgstr "要素を作成できません。" #: ../../Zotlabs/Module/Mitem.php:87 msgid "Unable to update menu element." -msgstr "" +msgstr "メニュー要素を更新できません。" #: ../../Zotlabs/Module/Mitem.php:103 msgid "Unable to add menu element." -msgstr "" +msgstr "メニュー要素を追加できません。" #: ../../Zotlabs/Module/Mitem.php:167 ../../Zotlabs/Module/Mitem.php:246 msgid "Menu Item Permissions" -msgstr "" +msgstr "メニュー項目の許可" #: ../../Zotlabs/Module/Mitem.php:168 ../../Zotlabs/Module/Mitem.php:247 #: ../../Zotlabs/Module/Settings/Channel.php:526 msgid "(click to open/close)" -msgstr "" +msgstr "(クリックして開閉)" #: ../../Zotlabs/Module/Mitem.php:174 ../../Zotlabs/Module/Mitem.php:191 msgid "Link Name" -msgstr "" +msgstr "リンク名" #: ../../Zotlabs/Module/Mitem.php:175 ../../Zotlabs/Module/Mitem.php:255 msgid "Link or Submenu Target" -msgstr "" +msgstr "リンクまたはサブメニューターゲット" #: ../../Zotlabs/Module/Mitem.php:175 msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "" +msgstr "リンクのURLを入力するか、メニュー名を選択してサブメニューを作成します" #: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:256 msgid "Use magic-auth if available" -msgstr "" +msgstr "可能であればmagic-authを使用する" #: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:257 msgid "Open link in new window" -msgstr "" +msgstr "新しいウィンドウでリンクを開く" #: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 msgid "Order in list" -msgstr "" +msgstr "リスト内の順序" #: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 msgid "Higher numbers will sink to bottom of listing" -msgstr "" +msgstr "数字が大きいほどリストの最後に沈みます" #: ../../Zotlabs/Module/Mitem.php:179 msgid "Submit and finish" -msgstr "" +msgstr "提出して終了" #: ../../Zotlabs/Module/Mitem.php:180 msgid "Submit and continue" -msgstr "" +msgstr "送信して続行" #: ../../Zotlabs/Module/Mitem.php:189 msgid "Menu:" -msgstr "" +msgstr "メニュー:" #: ../../Zotlabs/Module/Mitem.php:192 msgid "Link Target" -msgstr "" +msgstr "リンク先" #: ../../Zotlabs/Module/Mitem.php:195 msgid "Edit menu" -msgstr "" +msgstr "編集メニュー" #: ../../Zotlabs/Module/Mitem.php:198 msgid "Edit element" -msgstr "" +msgstr "要素を編集" #: ../../Zotlabs/Module/Mitem.php:199 msgid "Drop element" -msgstr "" +msgstr "ドロップ要素" #: ../../Zotlabs/Module/Mitem.php:200 msgid "New element" -msgstr "" +msgstr "新しい要素" #: ../../Zotlabs/Module/Mitem.php:201 msgid "Edit this menu container" -msgstr "" +msgstr "このメニューコンテナを編集" #: ../../Zotlabs/Module/Mitem.php:202 msgid "Add menu element" -msgstr "" +msgstr "メニュー要素を追加" #: ../../Zotlabs/Module/Mitem.php:203 msgid "Delete this menu item" -msgstr "" +msgstr "このメニュー項目を削除" #: ../../Zotlabs/Module/Mitem.php:204 msgid "Edit this menu item" -msgstr "" +msgstr "このメニュー項目を編集" #: ../../Zotlabs/Module/Mitem.php:222 msgid "Menu item not found." -msgstr "" +msgstr "メニュー項目が見つかりません。" #: ../../Zotlabs/Module/Mitem.php:235 msgid "Menu item deleted." -msgstr "" +msgstr "メニュー項目が削除されました。" #: ../../Zotlabs/Module/Mitem.php:237 msgid "Menu item could not be deleted." -msgstr "" +msgstr "メニュー項目を削除できませんでした。" #: ../../Zotlabs/Module/Mitem.php:244 msgid "Edit Menu Element" -msgstr "" +msgstr "メニュー要素の編集" #: ../../Zotlabs/Module/Mitem.php:254 msgid "Link text" -msgstr "" +msgstr "リンクテキスト" #: ../../Zotlabs/Module/Moderate.php:65 msgid "Comment approved" -msgstr "" +msgstr "コメントが承認されました" #: ../../Zotlabs/Module/Moderate.php:69 msgid "Comment deleted" -msgstr "" +msgstr "コメントを削除しました" #: ../../Zotlabs/Module/Mood.php:134 msgid "Mood App" -msgstr "" +msgstr "ムードアプリ" #: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Module/Mood.php:155 msgid "Set your current mood and tell your friends" -msgstr "" +msgstr "現在の気分を設定して友達に伝える" #: ../../Zotlabs/Module/Network.php:109 msgid "No such group" -msgstr "" +msgstr "そのようなグループはありません" #: ../../Zotlabs/Module/Network.php:158 msgid "No such channel" -msgstr "" +msgstr "そのようなチャンネルはありません" #: ../../Zotlabs/Module/Network.php:242 msgid "Privacy group is empty" -msgstr "" +msgstr "プライバシーグループが空です" #: ../../Zotlabs/Module/Network.php:252 msgid "Privacy group: " -msgstr "" +msgstr "プライバシーグループ:" #: ../../Zotlabs/Module/Network.php:325 msgid "Invalid channel." -msgstr "" +msgstr "無効なチャンネル。" #: ../../Zotlabs/Module/New_channel.php:159 msgid "Your real name is recommended." -msgstr "" +msgstr "あなたの本名が推奨されます。" #: ../../Zotlabs/Module/New_channel.php:160 msgid "" "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " "Group\"" -msgstr "" +msgstr "例:\ "Bob Jameson \"、\ "Lisa and her Horses \"、\ "Soccer \"、\ "Aviation Group \"" #: ../../Zotlabs/Module/New_channel.php:165 msgid "" "This will be used to create a unique network address (like an email address)." -msgstr "" +msgstr "これは、一意のネットワークアドレス(電子メールアドレスなど)を作成するために使用されます。" #: ../../Zotlabs/Module/New_channel.php:167 msgid "Allowed characters are a-z 0-9, - and _" -msgstr "" +msgstr "許可される文字はaz 0-9、-および_です" #: ../../Zotlabs/Module/New_channel.php:175 msgid "Channel name" -msgstr "" +msgstr "チャンネル名" #: ../../Zotlabs/Module/New_channel.php:177 #: ../../Zotlabs/Module/Register.php:260 msgid "Choose a short nickname" -msgstr "" +msgstr "短いニックネームを選択してください" #: ../../Zotlabs/Module/New_channel.php:178 #: ../../Zotlabs/Module/Register.php:261 #: ../../Zotlabs/Module/Settings/Channel.php:535 msgid "Channel role and privacy" -msgstr "" +msgstr "チャンネルの役割とプライバシー" #: ../../Zotlabs/Module/New_channel.php:178 msgid "" "Select a channel permission role compatible with your usage needs and " "privacy requirements." -msgstr "" +msgstr "使用ニーズとプライバシー要件に適合するチャンネル許可ロールを選択します。" #: ../../Zotlabs/Module/New_channel.php:178 #: ../../Zotlabs/Module/Register.php:261 msgid "Read more about channel permission roles" -msgstr "" +msgstr "チャネル許可の役割の詳細を読む" #: ../../Zotlabs/Module/New_channel.php:181 msgid "Create a Channel" -msgstr "" +msgstr "チャンネルを作成する" #: ../../Zotlabs/Module/New_channel.php:182 msgid "" "A channel is a unique network identity. It can represent a person (social " "network profile), a forum (group), a business or celebrity page, a newsfeed, " "and many other things." -msgstr "" +msgstr "チャネルは、一意のネットワークIDです。それは、人(ソーシャルネットワークプロファイル)、フォーラム(グループ)、ビジネスまたは有名人のページ、ニュースフィード、および他の多くのものを表すことができます。" #: ../../Zotlabs/Module/New_channel.php:183 msgid "" "or import an existing channel from another location." -msgstr "" +msgstr "または既存のチャンネルを別の場所からインポートします。" #: ../../Zotlabs/Module/New_channel.php:188 msgid "Validate" -msgstr "" +msgstr "検証" #: ../../Zotlabs/Module/Notes.php:56 msgid "Notes App" -msgstr "" +msgstr "ノートアプリ" #: ../../Zotlabs/Module/Notes.php:57 msgid "A simple notes app with a widget (note: notes are not encrypted)" -msgstr "" +msgstr "ウィジェットを備えたシンプルなメモアプリ(メモ:メモは暗号化されません)" #: ../../Zotlabs/Module/Notifications.php:55 ../../Zotlabs/Module/Notify.php:61 msgid "No more system notifications." -msgstr "" +msgstr "これ以上のシステム通知はありません。" #: ../../Zotlabs/Module/Notifications.php:59 ../../Zotlabs/Module/Notify.php:65 msgid "System Notifications" -msgstr "" +msgstr "システム通知" #: ../../Zotlabs/Module/Oauth.php:45 msgid "Name is required" -msgstr "" +msgstr "名前が必要です" #: ../../Zotlabs/Module/Oauth.php:49 msgid "Key and Secret are required" -msgstr "" +msgstr "キーとシークレットが必要です" #: ../../Zotlabs/Module/Oauth.php:100 msgid "OAuth Apps Manager App" -msgstr "" +msgstr "OAuth Apps Managerアプリ" #: ../../Zotlabs/Module/Oauth.php:101 msgid "OAuth authentication tokens for mobile and remote apps" -msgstr "" +msgstr "モバイルアプリとリモートアプリのOAuth認証トークン" #: ../../Zotlabs/Module/Oauth.php:110 ../../Zotlabs/Module/Oauth.php:136 #: ../../Zotlabs/Module/Oauth.php:172 ../../Zotlabs/Module/Oauth2.php:143 #: ../../Zotlabs/Module/Oauth2.php:193 msgid "Add application" -msgstr "" +msgstr "アプリケーションを追加" #: ../../Zotlabs/Module/Oauth.php:113 ../../Zotlabs/Module/Oauth2.php:118 #: ../../Zotlabs/Module/Oauth2.php:146 msgid "Name of application" -msgstr "" +msgstr "アプリケーション名" #: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:140 msgid "Consumer Key" -msgstr "" +msgstr "消費者キー" #: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:115 #: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 msgid "Automatically generated - change if desired. Max length 20" -msgstr "" +msgstr "自動生成-必要に応じて変更します。最大長20" #: ../../Zotlabs/Module/Oauth.php:115 ../../Zotlabs/Module/Oauth.php:141 #: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 msgid "Consumer Secret" -msgstr "" +msgstr "消費者の秘密" #: ../../Zotlabs/Module/Oauth.php:116 ../../Zotlabs/Module/Oauth.php:142 #: ../../Zotlabs/Module/Oauth2.php:120 ../../Zotlabs/Module/Oauth2.php:148 msgid "Redirect" -msgstr "" +msgstr "リダイレクト" #: ../../Zotlabs/Module/Oauth.php:116 ../../Zotlabs/Module/Oauth2.php:120 #: ../../Zotlabs/Module/Oauth2.php:148 msgid "" "Redirect URI - leave blank unless your application specifically requires this" -msgstr "" +msgstr "リダイレクトURI-アプリケーションで特に必要な場合を除き、空白のままにします" #: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Oauth.php:143 msgid "Icon url" -msgstr "" +msgstr "アイコンのURL" #: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Sources.php:123 #: ../../Zotlabs/Module/Sources.php:158 msgid "Optional" -msgstr "" +msgstr "オプショナル" #: ../../Zotlabs/Module/Oauth.php:128 msgid "Application not found." -msgstr "" +msgstr "アプリケーションは見つかりませんでした。" #: ../../Zotlabs/Module/Oauth.php:171 msgid "Connected OAuth Apps" -msgstr "" +msgstr "接続されたOAuthアプリ" #: ../../Zotlabs/Module/Oauth.php:175 ../../Zotlabs/Module/Oauth2.php:196 msgid "Client key starts with" -msgstr "" +msgstr "クライアントキーで始まる" #: ../../Zotlabs/Module/Oauth.php:176 ../../Zotlabs/Module/Oauth2.php:197 msgid "No name" -msgstr "" +msgstr "ノーネーム" #: ../../Zotlabs/Module/Oauth.php:177 ../../Zotlabs/Module/Oauth2.php:198 msgid "Remove authorization" -msgstr "" +msgstr "承認を削除" #: ../../Zotlabs/Module/Oauth2.php:54 msgid "Name and Secret are required" -msgstr "" +msgstr "名前と秘密が必要です" #: ../../Zotlabs/Module/Oauth2.php:106 msgid "OAuth2 Apps Manager App" -msgstr "" +msgstr "OAuth2 Apps Managerアプリ" #: ../../Zotlabs/Module/Oauth2.php:107 msgid "OAuth2 authenticatication tokens for mobile and remote apps" -msgstr "" +msgstr "モバイルアプリおよびリモートアプリ用のOAuth2認証トークン" #: ../../Zotlabs/Module/Oauth2.php:115 msgid "Add OAuth2 application" -msgstr "" +msgstr "OAuth2アプリケーションを追加する" #: ../../Zotlabs/Module/Oauth2.php:121 ../../Zotlabs/Module/Oauth2.php:149 msgid "Grant Types" -msgstr "" +msgstr "助成金の種類" #: ../../Zotlabs/Module/Oauth2.php:121 ../../Zotlabs/Module/Oauth2.php:122 msgid "leave blank unless your application sepcifically requires this" -msgstr "" +msgstr "アプリケーションが個別にこれを必要としない限り、空白のままにしてください" #: ../../Zotlabs/Module/Oauth2.php:122 ../../Zotlabs/Module/Oauth2.php:150 msgid "Authorization scope" -msgstr "" +msgstr "認可範囲" #: ../../Zotlabs/Module/Oauth2.php:134 msgid "OAuth2 Application not found." -msgstr "" +msgstr "OAuth2アプリケーションが見つかりません。" #: ../../Zotlabs/Module/Oauth2.php:149 ../../Zotlabs/Module/Oauth2.php:150 msgid "leave blank unless your application specifically requires this" -msgstr "" +msgstr "アプリケーションで特に必要な場合を除き、空白のままにしてください" #: ../../Zotlabs/Module/Oauth2.php:192 msgid "Connected OAuth2 Apps" -msgstr "" +msgstr "接続されたOAuth2アプリ" #: ../../Zotlabs/Module/Card_edit.php:128 msgid "Edit Card" -msgstr "" +msgstr "カードを編集" #: ../../Zotlabs/Module/Dreport.php:59 msgid "Invalid message" -msgstr "" +msgstr "無効なメッセージ" #: ../../Zotlabs/Module/Dreport.php:93 msgid "no results" -msgstr "" +msgstr "結果がありません" #: ../../Zotlabs/Module/Dreport.php:107 msgid "channel sync processed" -msgstr "" +msgstr "処理されたチャネル同期" #: ../../Zotlabs/Module/Dreport.php:111 msgid "queued" -msgstr "" +msgstr "待機中" #: ../../Zotlabs/Module/Dreport.php:115 msgid "posted" -msgstr "" +msgstr "掲載" #: ../../Zotlabs/Module/Dreport.php:119 msgid "accepted for delivery" -msgstr "" +msgstr "配達可" #: ../../Zotlabs/Module/Dreport.php:123 msgid "updated" -msgstr "" +msgstr "更新しました" #: ../../Zotlabs/Module/Dreport.php:126 msgid "update ignored" -msgstr "" +msgstr "無視された更新" #: ../../Zotlabs/Module/Dreport.php:129 msgid "permission denied" -msgstr "" +msgstr "アクセス拒否" #: ../../Zotlabs/Module/Dreport.php:133 msgid "recipient not found" -msgstr "" +msgstr "受信者が見つかりません" #: ../../Zotlabs/Module/Dreport.php:136 msgid "mail recalled" -msgstr "" +msgstr "リコールされたメール" #: ../../Zotlabs/Module/Dreport.php:139 msgid "duplicate mail received" -msgstr "" +msgstr "重複メール受信" #: ../../Zotlabs/Module/Dreport.php:142 msgid "mail delivered" -msgstr "" +msgstr "メール配信" #: ../../Zotlabs/Module/Dreport.php:162 #, php-format msgid "Delivery report for %1$s" -msgstr "" +msgstr "%1$s配信レポート" #: ../../Zotlabs/Module/Dreport.php:166 ../../Zotlabs/Widget/Wiki_pages.php:41 #: ../../Zotlabs/Widget/Wiki_pages.php:98 msgid "Options" -msgstr "" +msgstr "オプション" #: ../../Zotlabs/Module/Dreport.php:167 msgid "Redeliver" -msgstr "" +msgstr "再配信" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." -msgstr "" +msgstr "ログインしてください。" #: ../../Zotlabs/Module/Oexchange.php:27 msgid "Unable to find your hub." -msgstr "" +msgstr "ハブが見つかりません。" #: ../../Zotlabs/Module/Oexchange.php:41 msgid "Post successful." -msgstr "" +msgstr "投稿に成功しました。" #: ../../Zotlabs/Module/Page.php:173 msgid "" @@ -8907,609 +8907,609 @@ msgid "" "consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " "cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " "non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "" +msgstr "Lorem ipsum dolor sit amet、consectetur adipiscing elit、sed do eiusmod tempor incididunt ut Labore et dolore magna aliqua。 Ut enim ad minim veniam、quis nostrud exercitation ullamco Laboris nisi ut aliquip ex ea commodo consequat。 Duip aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur。 Sint occaecat cupidatat non proident、culpa qui officia deserunt mollit anim id est Laborumで例外を除きます。" #: ../../Zotlabs/Module/Pconfig.php:32 ../../Zotlabs/Module/Pconfig.php:68 msgid "This setting requires special processing and editing has been blocked." -msgstr "" +msgstr "この設定には特別な処理が必要であり、編集はブロックされています。" #: ../../Zotlabs/Module/Pconfig.php:57 msgid "Configuration Editor" -msgstr "" +msgstr "構成エディター" #: ../../Zotlabs/Module/Pconfig.php:58 msgid "" "Warning: Changing some settings could render your channel inoperable. Please " "leave this page unless you are comfortable with and knowledgeable about how " "to correctly use this feature." -msgstr "" +msgstr "警告:一部の設定を変更すると、チャンネルが動作しなくなる可能性があります。この機能を正しく使用する方法に慣れていない場合は、このページを離れてください。" #: ../../Zotlabs/Module/Pdledit.php:26 msgid "Layout updated." -msgstr "" +msgstr "レイアウトが更新されました。" #: ../../Zotlabs/Module/Pdledit.php:42 msgid "PDL Editor App" -msgstr "" +msgstr "PDLエディターアプリ" #: ../../Zotlabs/Module/Pdledit.php:43 msgid "Provides the ability to edit system page layouts" -msgstr "" +msgstr "システムページレイアウトを編集する機能を提供します。" #: ../../Zotlabs/Module/Pdledit.php:56 ../../Zotlabs/Module/Pdledit.php:99 msgid "Edit System Page Description" -msgstr "" +msgstr "システムページの説明の編集" #: ../../Zotlabs/Module/Pdledit.php:77 msgid "(modified)" -msgstr "" +msgstr "(変更)" #: ../../Zotlabs/Module/Pdledit.php:94 msgid "Layout not found." -msgstr "" +msgstr "レイアウトが見つかりません。" #: ../../Zotlabs/Module/Pdledit.php:100 msgid "Module Name:" -msgstr "" +msgstr "モジュール名:" #: ../../Zotlabs/Module/Pdledit.php:101 msgid "Layout Help" -msgstr "" +msgstr "レイアウトヘルプ" #: ../../Zotlabs/Module/Pdledit.php:102 msgid "Edit another layout" -msgstr "" +msgstr "別のレイアウトを編集する" #: ../../Zotlabs/Module/Pdledit.php:103 msgid "System layout" -msgstr "" +msgstr "システムレイアウト" #: ../../Zotlabs/Module/Permcats.php:28 msgid "Permission category name is required." -msgstr "" +msgstr "許可カテゴリ名が必要です。" #: ../../Zotlabs/Module/Permcats.php:47 msgid "Permission category saved." -msgstr "" +msgstr "許可カテゴリが保存されました。" #: ../../Zotlabs/Module/Permcats.php:62 msgid "Permission Categories App" -msgstr "" +msgstr "許可カテゴリアプリ" #: ../../Zotlabs/Module/Permcats.php:63 msgid "Create custom connection permission limits" -msgstr "" +msgstr "カスタム接続許可制限を作成する" #: ../../Zotlabs/Module/Permcats.php:79 msgid "" "Use this form to create permission rules for various classes of people or " "connections." -msgstr "" +msgstr "このフォームを使用して、さまざまなクラスの人または接続の許可ルールを作成します。" #: ../../Zotlabs/Module/Permcats.php:120 msgid "Permission category name" -msgstr "" +msgstr "許可カテゴリ名" #: ../../Zotlabs/Module/Photos.php:78 msgid "Page owner information could not be retrieved." -msgstr "" +msgstr "ページ所有者情報を取得できませんでした。" #: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:113 msgid "Album not found." -msgstr "" +msgstr "アルバムが見つかりません。" #: ../../Zotlabs/Module/Photos.php:103 msgid "Delete Album" -msgstr "" +msgstr "アルバムを削除" #: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1098 msgid "Delete Photo" -msgstr "" +msgstr "写真を削除" #: ../../Zotlabs/Module/Photos.php:569 msgid "No photos selected" -msgstr "" +msgstr "写真が選択されていません" #: ../../Zotlabs/Module/Photos.php:618 msgid "Access to this item is restricted." -msgstr "" +msgstr "このアイテムへのアクセスは制限されています。" #: ../../Zotlabs/Module/Photos.php:661 #, php-format msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "" +msgstr "%2 $ .2f MBの%1 $ .2f MBの写真ストレージが使用されています。" #: ../../Zotlabs/Module/Photos.php:664 #, php-format msgid "%1$.2f MB photo storage used." -msgstr "" +msgstr "%1 $ .2f MBの写真ストレージが使用されています。" #: ../../Zotlabs/Module/Photos.php:706 msgid "Upload Photos" -msgstr "" +msgstr "写真をアップロードする" #: ../../Zotlabs/Module/Photos.php:710 msgid "Enter an album name" -msgstr "" +msgstr "アルバム名を入力してください" #: ../../Zotlabs/Module/Photos.php:711 msgid "or select an existing album (doubleclick)" -msgstr "" +msgstr "または既存のアルバムを選択します(ダブルクリック)" #: ../../Zotlabs/Module/Photos.php:712 msgid "Create a status post for this upload" -msgstr "" +msgstr "このアップロードのステータス投稿を作成" #: ../../Zotlabs/Module/Photos.php:714 msgid "Description (optional)" -msgstr "" +msgstr "説明(オプション)" #: ../../Zotlabs/Module/Photos.php:800 msgid "Show Newest First" -msgstr "" +msgstr "最新を最初に表示" #: ../../Zotlabs/Module/Photos.php:802 msgid "Show Oldest First" -msgstr "" +msgstr "最も古いものを最初に表示" #: ../../Zotlabs/Module/Photos.php:859 ../../Zotlabs/Module/Photos.php:1405 msgid "Add Photos" -msgstr "" +msgstr "写真を追加" #: ../../Zotlabs/Module/Photos.php:907 msgid "Permission denied. Access to this item may be restricted." -msgstr "" +msgstr "アクセス拒否。このアイテムへのアクセスは制限される場合があります。" #: ../../Zotlabs/Module/Photos.php:909 msgid "Photo not available" -msgstr "" +msgstr "写真は利用できません" #: ../../Zotlabs/Module/Photos.php:967 msgid "Use as profile photo" -msgstr "" +msgstr "プロフィール写真として使用" #: ../../Zotlabs/Module/Photos.php:968 msgid "Use as cover photo" -msgstr "" +msgstr "カバー写真として使用" #: ../../Zotlabs/Module/Photos.php:975 msgid "Private Photo" -msgstr "" +msgstr "プライベート写真" #: ../../Zotlabs/Module/Photos.php:990 msgid "View Full Size" -msgstr "" +msgstr "フルサイズを表示" #: ../../Zotlabs/Module/Photos.php:1072 msgid "Edit photo" -msgstr "" +msgstr "写真を編集する" #: ../../Zotlabs/Module/Photos.php:1074 msgid "Rotate CW (right)" -msgstr "" +msgstr "CWを回転(右)" #: ../../Zotlabs/Module/Photos.php:1075 msgid "Rotate CCW (left)" -msgstr "" +msgstr "CCWを回転(左)" #: ../../Zotlabs/Module/Photos.php:1078 msgid "Move photo to album" -msgstr "" +msgstr "写真をアルバムに移動" #: ../../Zotlabs/Module/Photos.php:1079 msgid "Enter a new album name" -msgstr "" +msgstr "新しいアルバム名を入力してください" #: ../../Zotlabs/Module/Photos.php:1080 msgid "or select an existing one (doubleclick)" -msgstr "" +msgstr "または、既存のものを選択します(ダブルクリック)" #: ../../Zotlabs/Module/Photos.php:1085 msgid "Add a Tag" -msgstr "" +msgstr "タグを追加する" #: ../../Zotlabs/Module/Photos.php:1093 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "" +msgstr "例:@ bob、@ Barbara_Jensen、@ jim @ example.com" #: ../../Zotlabs/Module/Photos.php:1096 msgid "Flag as adult in album view" -msgstr "" +msgstr "アルバムビューでアダルトとしてフラグを立てる" #: ../../Zotlabs/Module/Photos.php:1288 msgid "Photo Tools" -msgstr "" +msgstr "写真ツール" #: ../../Zotlabs/Module/Photos.php:1297 msgid "In This Photo:" -msgstr "" +msgstr "この写真の中で:" #: ../../Zotlabs/Module/Photos.php:1302 msgid "Map" -msgstr "" +msgstr "地図" #: ../../Zotlabs/Module/Ping.php:338 msgid "sent you a private message" -msgstr "" +msgstr "あなたにプライベートメッセージを送りました" #: ../../Zotlabs/Module/Ping.php:394 msgid "added your channel" -msgstr "" +msgstr "チャンネルを追加しました" #: ../../Zotlabs/Module/Ping.php:419 msgid "requires approval" -msgstr "" +msgstr "承認が必要です" #: ../../Zotlabs/Module/Ping.php:429 msgid "g A l F d" -msgstr "" +msgstr "g A l F d" #: ../../Zotlabs/Module/Ping.php:447 msgid "[today]" -msgstr "" +msgstr "[今日]" #: ../../Zotlabs/Module/Ping.php:457 msgid "posted an event" -msgstr "" +msgstr "イベントを投稿しました" #: ../../Zotlabs/Module/Ping.php:491 msgid "shared a file with you" -msgstr "" +msgstr "あなたとファイルを共有しました" #: ../../Zotlabs/Module/Ping.php:673 msgid "Private forum" -msgstr "" +msgstr "プライベートフォーラム" #: ../../Zotlabs/Module/Ping.php:673 msgid "Public forum" -msgstr "" +msgstr "公開フォーラム" #: ../../Zotlabs/Module/Poke.php:165 msgid "Poke App" -msgstr "" +msgstr "ポケアプリ" #: ../../Zotlabs/Module/Poke.php:166 msgid "Poke somebody in your addressbook" -msgstr "" +msgstr "アドレス帳で誰かを突く" #: ../../Zotlabs/Module/Poke.php:200 msgid "Poke somebody" -msgstr "" +msgstr "誰かを突く" #: ../../Zotlabs/Module/Poke.php:203 msgid "Poke/Prod" -msgstr "" +msgstr "突く/製品" #: ../../Zotlabs/Module/Poke.php:204 msgid "Poke, prod or do other things to somebody" -msgstr "" +msgstr "突く、突き出す、または他のことを誰かに行う" #: ../../Zotlabs/Module/Poke.php:211 msgid "Recipient" -msgstr "" +msgstr "受取人" #: ../../Zotlabs/Module/Poke.php:212 msgid "Choose what you wish to do to recipient" -msgstr "" +msgstr "受信者にしたいことを選択してください" #: ../../Zotlabs/Module/Poke.php:215 ../../Zotlabs/Module/Poke.php:216 msgid "Make this post private" -msgstr "" +msgstr "この投稿を非公開にします" #: ../../Zotlabs/Module/Probe.php:18 msgid "Remote Diagnostics App" -msgstr "" +msgstr "リモート診断アプリ" #: ../../Zotlabs/Module/Probe.php:19 msgid "Perform diagnostics on remote channels" -msgstr "" +msgstr "リモートチャネルで診断を実行する" #: ../../Zotlabs/Module/Profile.php:93 msgid "vcard" -msgstr "" +msgstr "vcard" #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 #: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 msgid "Profile not found." -msgstr "" +msgstr "プロファイルが見つかりません。" #: ../../Zotlabs/Module/Profiles.php:44 msgid "Profile deleted." -msgstr "" +msgstr "プロファイルが削除されました。" #: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 msgid "Profile-" -msgstr "" +msgstr "プロフィール-" #: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 msgid "New profile created." -msgstr "" +msgstr "新しいプロファイルが作成されました。" #: ../../Zotlabs/Module/Profiles.php:111 msgid "Profile unavailable to clone." -msgstr "" +msgstr "プロファイルを複製できません。" #: ../../Zotlabs/Module/Profiles.php:146 msgid "Profile unavailable to export." -msgstr "" +msgstr "プロファイルをエクスポートできません。" #: ../../Zotlabs/Module/Profiles.php:252 msgid "Profile Name is required." -msgstr "" +msgstr "プロファイル名が必要です。" #: ../../Zotlabs/Module/Profiles.php:459 msgid "Marital Status" -msgstr "" +msgstr "配偶者の有無" #: ../../Zotlabs/Module/Profiles.php:463 msgid "Romantic Partner" -msgstr "" +msgstr "ロマンチックなパートナー" #: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:772 msgid "Likes" -msgstr "" +msgstr "いいね" #: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:773 msgid "Dislikes" -msgstr "" +msgstr "嫌い" #: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:780 msgid "Work/Employment" -msgstr "" +msgstr "仕事/雇用" #: ../../Zotlabs/Module/Profiles.php:478 msgid "Religion" -msgstr "" +msgstr "宗教" #: ../../Zotlabs/Module/Profiles.php:482 msgid "Political Views" -msgstr "" +msgstr "政見" #: ../../Zotlabs/Module/Profiles.php:486 msgid "Gender" -msgstr "" +msgstr "性別" #: ../../Zotlabs/Module/Profiles.php:490 msgid "Sexual Preference" -msgstr "" +msgstr "性的嗜好" #: ../../Zotlabs/Module/Profiles.php:494 msgid "Homepage" -msgstr "" +msgstr "ホームページ" #: ../../Zotlabs/Module/Profiles.php:498 msgid "Interests" -msgstr "" +msgstr "趣味" #: ../../Zotlabs/Module/Profiles.php:594 msgid "Profile updated." -msgstr "" +msgstr "プロフィール更新済み。" #: ../../Zotlabs/Module/Profiles.php:678 msgid "Hide your connections list from viewers of this profile" -msgstr "" +msgstr "このプロファイルの閲覧者から接続リストを非表示にします" #: ../../Zotlabs/Module/Profiles.php:722 msgid "Edit Profile Details" -msgstr "" +msgstr "プロファイルの詳細を編集" #: ../../Zotlabs/Module/Profiles.php:724 msgid "View this profile" -msgstr "" +msgstr "このプロフィールを見る" #: ../../Zotlabs/Module/Profiles.php:726 msgid "Profile Tools" -msgstr "" +msgstr "プロファイルツール" #: ../../Zotlabs/Module/Profiles.php:727 msgid "Change cover photo" -msgstr "" +msgstr "カバー写真を変更" #: ../../Zotlabs/Module/Profiles.php:729 msgid "Create a new profile using these settings" -msgstr "" +msgstr "これらの設定を使用して新しいプロファイルを作成します" #: ../../Zotlabs/Module/Profiles.php:730 msgid "Clone this profile" -msgstr "" +msgstr "このプロファイルを複製" #: ../../Zotlabs/Module/Profiles.php:731 msgid "Delete this profile" -msgstr "" +msgstr "このプロファイルを削除" #: ../../Zotlabs/Module/Profiles.php:732 msgid "Add profile things" -msgstr "" +msgstr "プロフィールを追加する" #: ../../Zotlabs/Module/Profiles.php:733 msgid "Personal" -msgstr "" +msgstr "パーソナル" #: ../../Zotlabs/Module/Profiles.php:735 msgid "Relationship" -msgstr "" +msgstr "関係" #: ../../Zotlabs/Module/Profiles.php:738 msgid "Import profile from file" -msgstr "" +msgstr "ファイルからプロファイルをインポート" #: ../../Zotlabs/Module/Profiles.php:739 msgid "Export profile to file" -msgstr "" +msgstr "プロファイルをファイルにエクスポート" #: ../../Zotlabs/Module/Profiles.php:740 msgid "Your gender" -msgstr "" +msgstr "あなたの性別" #: ../../Zotlabs/Module/Profiles.php:741 msgid "Marital status" -msgstr "" +msgstr "配偶者の有無" #: ../../Zotlabs/Module/Profiles.php:742 msgid "Sexual preference" -msgstr "" +msgstr "性的嗜好" #: ../../Zotlabs/Module/Profiles.php:745 msgid "Profile name" -msgstr "" +msgstr "プロファイル名" #: ../../Zotlabs/Module/Profiles.php:747 msgid "This is your default profile." -msgstr "" +msgstr "これがデフォルトのプロファイルです。" #: ../../Zotlabs/Module/Profiles.php:749 msgid "Your full name" -msgstr "" +msgstr "あなたのフルネーム" #: ../../Zotlabs/Module/Profiles.php:750 msgid "Title/Description" -msgstr "" +msgstr "タイトル説明" #: ../../Zotlabs/Module/Profiles.php:753 msgid "Street address" -msgstr "" +msgstr "住所" #: ../../Zotlabs/Module/Profiles.php:754 msgid "Locality/City" -msgstr "" +msgstr "地方/市" #: ../../Zotlabs/Module/Profiles.php:755 msgid "Region/State" -msgstr "" +msgstr "地域/州" #: ../../Zotlabs/Module/Profiles.php:756 msgid "Postal/Zip code" -msgstr "" +msgstr "郵便番号" #: ../../Zotlabs/Module/Profiles.php:762 msgid "Who (if applicable)" -msgstr "" +msgstr "誰(該当する場合)" #: ../../Zotlabs/Module/Profiles.php:762 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "" +msgstr "例:cathy123、Cathy Williams、cathy @ example.com" #: ../../Zotlabs/Module/Profiles.php:763 msgid "Since (date)" -msgstr "" +msgstr "以来(日付)" #: ../../Zotlabs/Module/Profiles.php:766 msgid "Tell us about yourself" -msgstr "" +msgstr "あなた自身について教えてください" #: ../../Zotlabs/Module/Profiles.php:767 msgid "Homepage URL" -msgstr "" +msgstr "ホームページURL" #: ../../Zotlabs/Module/Profiles.php:768 msgid "Hometown" -msgstr "" +msgstr "出身地" #: ../../Zotlabs/Module/Profiles.php:769 msgid "Political views" -msgstr "" +msgstr "政見" #: ../../Zotlabs/Module/Profiles.php:770 msgid "Religious views" -msgstr "" +msgstr "宗教的見解" #: ../../Zotlabs/Module/Profiles.php:771 msgid "Keywords used in directory listings" -msgstr "" +msgstr "ディレクトリリストで使用されるキーワード" #: ../../Zotlabs/Module/Profiles.php:771 msgid "Example: fishing photography software" -msgstr "" +msgstr "例:釣り写真ソフトウェア" #: ../../Zotlabs/Module/Profiles.php:774 msgid "Musical interests" -msgstr "" +msgstr "音楽的興味" #: ../../Zotlabs/Module/Profiles.php:775 msgid "Books, literature" -msgstr "" +msgstr "本、文学" #: ../../Zotlabs/Module/Profiles.php:776 msgid "Television" -msgstr "" +msgstr "テレビ" #: ../../Zotlabs/Module/Profiles.php:777 msgid "Film/Dance/Culture/Entertainment" -msgstr "" +msgstr "映画/ダンス/文化/エンターテイメント" #: ../../Zotlabs/Module/Profiles.php:778 msgid "Hobbies/Interests" -msgstr "" +msgstr "趣味/興味" #: ../../Zotlabs/Module/Profiles.php:779 msgid "Love/Romance" -msgstr "" +msgstr "愛/ロマンス" #: ../../Zotlabs/Module/Profiles.php:781 msgid "School/Education" -msgstr "" +msgstr "学校教育" #: ../../Zotlabs/Module/Profiles.php:782 msgid "Contact information and social networks" -msgstr "" +msgstr "連絡先情報とソーシャルネットワーク" #: ../../Zotlabs/Module/Profiles.php:783 msgid "My other channels" -msgstr "" +msgstr "私の他のチャンネル" #: ../../Zotlabs/Module/Profiles.php:785 msgid "Communications" -msgstr "" +msgstr "コミュニケーションズ" #: ../../Zotlabs/Module/Profile_photo.php:218 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." -msgstr "" +msgstr "新しい写真がすぐに表示されない場合は、Shiftキーを押しながらページをリロードするか、ブラウザーのキャッシュをクリアします。" #: ../../Zotlabs/Module/Profile_photo.php:454 msgid "" "Your default profile photo is visible to anybody on the internet. Profile " "photos for alternate profiles will inherit the permissions of the profile" -msgstr "" +msgstr "デフォルトのプロフィール写真は、インターネット上の誰でも見ることができます。代替プロファイルのプロファイル写真は、プロファイルの権限を継承します" #: ../../Zotlabs/Module/Profile_photo.php:454 msgid "" "Your profile photo is visible to anybody on the internet and may be " "distributed to other websites." -msgstr "" +msgstr "あなたのプロフィール写真はインターネット上の誰でも見ることができ、他のウェブサイトに配布される場合があります。" #: ../../Zotlabs/Module/Profile_photo.php:458 msgid "Use Photo for Profile" -msgstr "" +msgstr "プロフィールに写真を使用" #: ../../Zotlabs/Module/Profile_photo.php:458 msgid "Change Profile Photo" -msgstr "" +msgstr "プロフィール写真の変更" #: ../../Zotlabs/Module/Profile_photo.php:459 msgid "Use" -msgstr "" +msgstr "つかいます" #: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 msgid "Invalid profile identifier." -msgstr "" +msgstr "無効なプロファイル識別子。" #: ../../Zotlabs/Module/Profperm.php:111 msgid "Profile Visibility Editor" -msgstr "" +msgstr "プロファイル可視性エディター" #: ../../Zotlabs/Module/Profperm.php:115 msgid "Click on a contact to add or remove." -msgstr "" +msgstr "連絡先をクリックして追加または削除します。" #: ../../Zotlabs/Module/Profperm.php:124 msgid "Visible To" -msgstr "" +msgstr "に見える" #: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 msgid "Public Hubs" -msgstr "" +msgstr "公共ハブ" #: ../../Zotlabs/Module/Pubsites.php:27 msgid "" @@ -9518,1308 +9518,1308 @@ msgid "" "membership in the network as a whole. Some hubs may require subscription or " "provide tiered service plans. The hub itself may provide " "additional details." -msgstr "" +msgstr "リストされたハブは、$ Projectnameネットワークのパブリック登録を許可します。ネットワーク内のすべてのハブは相互にリンクされているため、ハブのいずれかのメンバーシップはネットワーク全体のメンバーシップを伝えます。一部のハブでは、サブスクリプションが必要な場合や、段階的なサービスプランを提供する場合があります。ハブ自体が追加の詳細を提供する場合があります 。" #: ../../Zotlabs/Module/Pubsites.php:33 msgid "Hub URL" -msgstr "" +msgstr "ハブURL" #: ../../Zotlabs/Module/Pubsites.php:33 msgid "Access Type" -msgstr "" +msgstr "アクセスタイプ" #: ../../Zotlabs/Module/Pubsites.php:33 msgid "Registration Policy" -msgstr "" +msgstr "登録ポリシー" #: ../../Zotlabs/Module/Pubsites.php:33 msgid "Stats" -msgstr "" +msgstr "統計" #: ../../Zotlabs/Module/Pubsites.php:33 msgid "Software" -msgstr "" +msgstr "ソフトウェア" #: ../../Zotlabs/Module/Pubsites.php:49 msgid "Rate" -msgstr "" +msgstr "レート" #: ../../Zotlabs/Module/Pubstream.php:20 msgid "Public Stream App" -msgstr "" +msgstr "パブリックストリームアプリ" #: ../../Zotlabs/Module/Pubstream.php:21 msgid "The unmoderated public stream of this hub" -msgstr "" +msgstr "このハブのモデレートされていないパブリックストリーム" #: ../../Zotlabs/Module/Randprof.php:29 msgid "Random Channel App" -msgstr "" +msgstr "ランダムチャンネルアプリ" #: ../../Zotlabs/Module/Randprof.php:30 msgid "Visit a random channel in the $Projectname network" -msgstr "" +msgstr "$ Projectnameネットワークのランダムチャネルにアクセスします" #: ../../Zotlabs/Module/Rate.php:156 msgid "Website:" -msgstr "" +msgstr "ウェブサイト:" #: ../../Zotlabs/Module/Rate.php:159 #, php-format msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "" +msgstr "リモートチャネル[ %s ](このサイトではまだ知られていない)" #: ../../Zotlabs/Module/Rate.php:160 msgid "Rating (this information is public)" -msgstr "" +msgstr "評価(この情報は公開されています)" #: ../../Zotlabs/Module/Rate.php:161 msgid "Optionally explain your rating (this information is public)" -msgstr "" +msgstr "オプションで、評価を説明してください(この情報は公開されています)" #: ../../Zotlabs/Module/Ratings.php:70 msgid "No ratings" -msgstr "" +msgstr "評価なし" #: ../../Zotlabs/Module/Ratings.php:98 msgid "Rating: " -msgstr "" +msgstr "評価:" #: ../../Zotlabs/Module/Ratings.php:99 msgid "Website: " -msgstr "" +msgstr "ウェブサイト:" #: ../../Zotlabs/Module/Ratings.php:101 msgid "Description: " -msgstr "" +msgstr "説明:" #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" -msgstr "" +msgstr "ブックマークフォルダを選択" #: ../../Zotlabs/Module/Rbmark.php:99 msgid "Save Bookmark" -msgstr "" +msgstr "ブックマークを保存" #: ../../Zotlabs/Module/Rbmark.php:100 msgid "URL of bookmark" -msgstr "" +msgstr "ブックマークのURL" #: ../../Zotlabs/Module/Rbmark.php:105 msgid "Or enter new bookmark folder name" -msgstr "" +msgstr "または、新しいブックマークフォルダ名を入力してください" #: ../../Zotlabs/Module/Register.php:49 msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "" +msgstr "1日の最大サイト登録数を超えました。明日もう一度お試しください。" #: ../../Zotlabs/Module/Register.php:55 msgid "" "Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "" +msgstr "利用規約への同意を示してください。登録に失敗しました。" #: ../../Zotlabs/Module/Register.php:89 msgid "Passwords do not match." -msgstr "" +msgstr "パスワードが一致していません。" #: ../../Zotlabs/Module/Register.php:132 msgid "Registration successful. Continue to create your first channel..." -msgstr "" +msgstr "登録に成功。最初のチャンネルを作成し続けます..." #: ../../Zotlabs/Module/Register.php:135 msgid "" "Registration successful. Please check your email for validation instructions." -msgstr "" +msgstr "登録に成功。検証手順については、メールを確認してください。" #: ../../Zotlabs/Module/Register.php:142 msgid "Your registration is pending approval by the site owner." -msgstr "" +msgstr "登録はサイト所有者による承認待ちです。" #: ../../Zotlabs/Module/Register.php:145 msgid "Your registration can not be processed." -msgstr "" +msgstr "登録を処理できません。" #: ../../Zotlabs/Module/Register.php:192 msgid "Registration on this hub is disabled." -msgstr "" +msgstr "このハブでの登録は無効になっています。" #: ../../Zotlabs/Module/Register.php:201 msgid "Registration on this hub is by approval only." -msgstr "" +msgstr "このハブへの登録は承認のみです。" #: ../../Zotlabs/Module/Register.php:202 ../../Zotlabs/Module/Register.php:211 msgid "Register at another affiliated hub." -msgstr "" +msgstr "別の提携ハブに登録します。" #: ../../Zotlabs/Module/Register.php:210 msgid "Registration on this hub is by invitation only." -msgstr "" +msgstr "このハブへの登録は招待のみです。" #: ../../Zotlabs/Module/Register.php:221 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." -msgstr "" +msgstr "このサイトは、許可されている1日のアカウント登録数を超えています。明日もう一度お試しください。" #: ../../Zotlabs/Module/Register.php:236 ../../Zotlabs/Module/Siteinfo.php:28 msgid "Terms of Service" -msgstr "" +msgstr "利用規約" #: ../../Zotlabs/Module/Register.php:242 #, php-format msgid "I accept the %s for this website" -msgstr "" +msgstr "このウェブサイトの%sに同意します" #: ../../Zotlabs/Module/Register.php:249 #, php-format msgid "I am over %s years of age and accept the %s for this website" -msgstr "" +msgstr "私は%s歳以上で、このウェブサイトの%sを受け入れます" #: ../../Zotlabs/Module/Register.php:254 msgid "Your email address" -msgstr "" +msgstr "メールアドレス" #: ../../Zotlabs/Module/Register.php:255 msgid "Choose a password" -msgstr "" +msgstr "パスワードを決めて下さい" #: ../../Zotlabs/Module/Register.php:256 msgid "Please re-enter your password" -msgstr "" +msgstr "パスワードを再入力してください" #: ../../Zotlabs/Module/Register.php:257 msgid "Please enter your invitation code" -msgstr "" +msgstr "招待コードを入力してください" #: ../../Zotlabs/Module/Register.php:258 msgid "Your Name" -msgstr "" +msgstr "あなたの名前" #: ../../Zotlabs/Module/Register.php:258 msgid "Real names are preferred." -msgstr "" +msgstr "本名が優先されます。" #: ../../Zotlabs/Module/Register.php:260 #, php-format msgid "" "Your nickname will be used to create an easy to remember channel address e." "g. nickname%s" -msgstr "" +msgstr "ニックネームは、ニックネーム%s覚えやすいチャネルアドレスを作成するために使用されます" #: ../../Zotlabs/Module/Register.php:261 msgid "" "Select a channel permission role for your usage needs and privacy " "requirements." -msgstr "" +msgstr "使用上のニーズとプライバシーの要件に応じて、チャンネル許可の役割を選択します。" #: ../../Zotlabs/Module/Register.php:262 msgid "no" -msgstr "" +msgstr "いや" #: ../../Zotlabs/Module/Register.php:262 msgid "yes" -msgstr "" +msgstr "はい" #: ../../Zotlabs/Module/Register.php:290 msgid "" "This site requires email verification. After completing this form, please " "check your email for further instructions." -msgstr "" +msgstr "このサイトではメールの確認が必要です。このフォームに記入した後、詳細な手順についてはメールを確認してください。" #: ../../Zotlabs/Module/Removeaccount.php:35 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." -msgstr "" +msgstr "アカウントのパスワードを変更してから48時間以内にアカウントを削除することはできません。" #: ../../Zotlabs/Module/Removeaccount.php:57 msgid "Remove This Account" -msgstr "" +msgstr "このアカウントを削除" #: ../../Zotlabs/Module/Removeaccount.php:58 msgid "" "This account and all its channels will be completely removed from the " "network. " -msgstr "" +msgstr "このアカウントとそのすべてのチャネルは、ネットワークから完全に削除されます。" #: ../../Zotlabs/Module/Removeaccount.php:58 #: ../../Zotlabs/Module/Removeme.php:61 msgid "This action is permanent and can not be undone!" -msgstr "" +msgstr "このアクションは永続的であり、元に戻すことはできません!" #: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" -msgstr "" +msgstr "このアカウント、そのすべてのチャンネル、およびそのすべてのチャンネルクローンをネットワークから削除します" #: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" -msgstr "" +msgstr "デフォルトでは、このハブにあるチャネルのインスタンスのみがネットワークから削除されます" #: ../../Zotlabs/Module/Removeaccount.php:61 #: ../../Zotlabs/Module/Settings/Account.php:105 msgid "Remove Account" -msgstr "" +msgstr "アカウントを削除" #: ../../Zotlabs/Module/Removeme.php:35 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." -msgstr "" +msgstr "アカウントのパスワードを変更してから48時間以内にチャンネルを削除することはできません。" #: ../../Zotlabs/Module/Removeme.php:60 msgid "Remove This Channel" -msgstr "" +msgstr "このチャンネルを削除" #: ../../Zotlabs/Module/Removeme.php:61 msgid "This channel will be completely removed from the network. " -msgstr "" +msgstr "このチャネルはネットワークから完全に削除されます。" #: ../../Zotlabs/Module/Removeme.php:63 msgid "Remove this channel and all its clones from the network" -msgstr "" +msgstr "このチャネルとそのすべてのクローンをネットワークから削除します" #: ../../Zotlabs/Module/Removeme.php:63 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" -msgstr "" +msgstr "デフォルトでは、このハブにあるチャネルのインスタンスのみがネットワークから削除されます" #: ../../Zotlabs/Module/Removeme.php:64 #: ../../Zotlabs/Module/Settings/Channel.php:594 msgid "Remove Channel" -msgstr "" +msgstr "チャンネルを削除" #: ../../Zotlabs/Module/Rmagic.php:44 msgid "Authentication failed." -msgstr "" +msgstr "認証に失敗しました。" #: ../../Zotlabs/Module/Search.php:230 #, php-format msgid "Items tagged with: %s" -msgstr "" +msgstr "タグ付けされたアイテム: %s" #: ../../Zotlabs/Module/Search.php:232 #, php-format msgid "Search results for: %s" -msgstr "" +msgstr "%s検索結果" #: ../../Zotlabs/Module/Service_limits.php:23 msgid "No service class restrictions found." -msgstr "" +msgstr "サービスクラスの制限は見つかりませんでした。" #: ../../Zotlabs/Module/Settings/Account.php:19 msgid "Not valid email." -msgstr "" +msgstr "無効なメール。" #: ../../Zotlabs/Module/Settings/Account.php:22 msgid "Protected email address. Cannot change to that email." -msgstr "" +msgstr "保護されたメールアドレス。そのメールに変更できません。" #: ../../Zotlabs/Module/Settings/Account.php:31 msgid "System failure storing new email. Please try again." -msgstr "" +msgstr "新しいメールの保存中にシステム障害が発生しました。もう一度試してください。" #: ../../Zotlabs/Module/Settings/Account.php:48 msgid "Password verification failed." -msgstr "" +msgstr "パスワードの確認に失敗しました。" #: ../../Zotlabs/Module/Settings/Account.php:55 msgid "Passwords do not match. Password unchanged." -msgstr "" +msgstr "パスワードが一致していません。パスワードは変更されていません。" #: ../../Zotlabs/Module/Settings/Account.php:59 msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" +msgstr "空のパスワードは許可されていません。パスワードは変更されていません。" #: ../../Zotlabs/Module/Settings/Account.php:73 msgid "Password changed." -msgstr "" +msgstr "パスワード変更済み。" #: ../../Zotlabs/Module/Settings/Account.php:75 msgid "Password update failed. Please try again." -msgstr "" +msgstr "パスワードの更新に失敗しました。もう一度試してください。" #: ../../Zotlabs/Module/Settings/Account.php:99 msgid "Account Settings" -msgstr "" +msgstr "アカウント設定" #: ../../Zotlabs/Module/Settings/Account.php:100 msgid "Current Password" -msgstr "" +msgstr "現在のパスワード" #: ../../Zotlabs/Module/Settings/Account.php:101 msgid "Enter New Password" -msgstr "" +msgstr "新しいパスワードを入力してください" #: ../../Zotlabs/Module/Settings/Account.php:102 msgid "Confirm New Password" -msgstr "" +msgstr "新しいパスワードを確認" #: ../../Zotlabs/Module/Settings/Account.php:102 msgid "Leave password fields blank unless changing" -msgstr "" +msgstr "変更しない限り、パスワードフィールドは空白のままにしてください" #: ../../Zotlabs/Module/Settings/Account.php:104 #: ../../Zotlabs/Module/Settings/Channel.php:500 msgid "Email Address:" -msgstr "" +msgstr "電子メールアドレス:" #: ../../Zotlabs/Module/Settings/Account.php:106 msgid "Remove this account including all its channels" -msgstr "" +msgstr "すべてのチャンネルを含むこのアカウントを削除します" #: ../../Zotlabs/Module/Settings/Calendar.php:39 msgid "CalDAV Settings" -msgstr "" +msgstr "CalDAV設定" #: ../../Zotlabs/Module/Settings/Channel.php:327 msgid "Nobody except yourself" -msgstr "" +msgstr "自分以外は誰もいません" #: ../../Zotlabs/Module/Settings/Channel.php:328 msgid "Only those you specifically allow" -msgstr "" +msgstr "特に許可したもののみ" #: ../../Zotlabs/Module/Settings/Channel.php:329 msgid "Approved connections" -msgstr "" +msgstr "承認された接続" #: ../../Zotlabs/Module/Settings/Channel.php:330 msgid "Any connections" -msgstr "" +msgstr "すべての接続" #: ../../Zotlabs/Module/Settings/Channel.php:331 msgid "Anybody on this website" -msgstr "" +msgstr "このウェブサイトの誰でも" #: ../../Zotlabs/Module/Settings/Channel.php:332 msgid "Anybody in this network" -msgstr "" +msgstr "このネットワークの誰でも" #: ../../Zotlabs/Module/Settings/Channel.php:333 msgid "Anybody authenticated" -msgstr "" +msgstr "誰でも認証済み" #: ../../Zotlabs/Module/Settings/Channel.php:334 msgid "Anybody on the internet" -msgstr "" +msgstr "インターネット上の誰でも" #: ../../Zotlabs/Module/Settings/Channel.php:409 msgid "Publish your default profile in the network directory" -msgstr "" +msgstr "ネットワークディレクトリでデフォルトプロファイルを公開する" #: ../../Zotlabs/Module/Settings/Channel.php:414 msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" +msgstr "あなたを新しいメンバーの潜在的な友人として提案させてください。" #: ../../Zotlabs/Module/Settings/Channel.php:418 msgid "or" -msgstr "" +msgstr "または" #: ../../Zotlabs/Module/Settings/Channel.php:427 msgid "Your channel address is" -msgstr "" +msgstr "あなたのチャンネルのアドレスは" #: ../../Zotlabs/Module/Settings/Channel.php:430 msgid "Your files/photos are accessible via WebDAV at" -msgstr "" +msgstr "ファイル/写真には、WebDAVからアクセスできます" #: ../../Zotlabs/Module/Settings/Channel.php:470 msgid "Automatic membership approval" -msgstr "" +msgstr "自動会員承認" #: ../../Zotlabs/Module/Settings/Channel.php:491 msgid "Channel Settings" -msgstr "" +msgstr "チャンネル設定" #: ../../Zotlabs/Module/Settings/Channel.php:498 msgid "Basic Settings" -msgstr "" +msgstr "基本設定" #: ../../Zotlabs/Module/Settings/Channel.php:501 msgid "Your Timezone:" -msgstr "" +msgstr "あなたのタイムゾーン:" #: ../../Zotlabs/Module/Settings/Channel.php:502 msgid "Default Post Location:" -msgstr "" +msgstr "デフォルトの投稿場所:" #: ../../Zotlabs/Module/Settings/Channel.php:502 msgid "Geographical location to display on your posts" -msgstr "" +msgstr "投稿に表示する地理的な場所" #: ../../Zotlabs/Module/Settings/Channel.php:503 msgid "Use Browser Location:" -msgstr "" +msgstr "ブラウザの場所を使用:" #: ../../Zotlabs/Module/Settings/Channel.php:505 msgid "Adult Content" -msgstr "" +msgstr "成人コンテンツ" #: ../../Zotlabs/Module/Settings/Channel.php:505 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" -msgstr "" +msgstr "このチャンネルは頻繁または定期的にアダルトコンテンツを公開しています。 (成人向けの素材やヌードには#NSFWのタグを付けてください)" #: ../../Zotlabs/Module/Settings/Channel.php:507 msgid "Security and Privacy Settings" -msgstr "" +msgstr "セキュリティとプライバシーの設定" #: ../../Zotlabs/Module/Settings/Channel.php:509 msgid "Your permissions are already configured. Click to view/adjust" -msgstr "" +msgstr "許可はすでに構成されています。クリックして表示/調整" #: ../../Zotlabs/Module/Settings/Channel.php:511 msgid "Hide my online presence" -msgstr "" +msgstr "オンラインプレゼンスを非表示にする" #: ../../Zotlabs/Module/Settings/Channel.php:511 msgid "Prevents displaying in your profile that you are online" -msgstr "" +msgstr "あなたがオンラインであることをあなたのプロフィールに表示しないようにします" #: ../../Zotlabs/Module/Settings/Channel.php:513 msgid "Simple Privacy Settings:" -msgstr "" +msgstr "シンプルなプライバシー設定:" #: ../../Zotlabs/Module/Settings/Channel.php:514 msgid "" "Very Public - extremely permissive (should be used with caution)" -msgstr "" +msgstr "非常にパブリック-非常に寛容です(注意して使用する必要があります)" #: ../../Zotlabs/Module/Settings/Channel.php:515 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" -msgstr "" +msgstr "標準-必要に応じてデフォルトのパブリック、プライバシー(ソーシャルネットワークのアクセス許可に似ていますが、プライバシーが改善されます)" #: ../../Zotlabs/Module/Settings/Channel.php:516 msgid "Private - default private, never open or public" -msgstr "" +msgstr "非公開-デフォルトでは非公開、非公開または公開" #: ../../Zotlabs/Module/Settings/Channel.php:517 msgid "Blocked - default blocked to/from everybody" -msgstr "" +msgstr "ブロック済み-デフォルトですべてのユーザーとの間でブロック" #: ../../Zotlabs/Module/Settings/Channel.php:519 msgid "Allow others to tag your posts" -msgstr "" +msgstr "他のユーザーがあなたの投稿にタグ付けできるようにします" #: ../../Zotlabs/Module/Settings/Channel.php:519 msgid "" "Often used by the community to retro-actively flag inappropriate content" -msgstr "" +msgstr "コミュニティが不適切なコンテンツを遡ってフラグを立てるためによく使用します" #: ../../Zotlabs/Module/Settings/Channel.php:521 msgid "Channel Permission Limits" -msgstr "" +msgstr "チャンネル許可の制限" #: ../../Zotlabs/Module/Settings/Channel.php:523 msgid "Expire other channel content after this many days" -msgstr "" +msgstr "この数日後に他のチャンネルコンテンツを期限切れにする" #: ../../Zotlabs/Module/Settings/Channel.php:523 msgid "0 or blank to use the website limit." -msgstr "" +msgstr "Webサイトの制限を使用する場合は0または空白。" #: ../../Zotlabs/Module/Settings/Channel.php:523 #, php-format msgid "This website expires after %d days." -msgstr "" +msgstr "このウェブサイトは%d日後に有効期限が切れます。" #: ../../Zotlabs/Module/Settings/Channel.php:523 msgid "This website does not expire imported content." -msgstr "" +msgstr "このWebサイトは、インポートされたコンテンツを期限切れにしません。" #: ../../Zotlabs/Module/Settings/Channel.php:523 msgid "The website limit takes precedence if lower than your limit." -msgstr "" +msgstr "Webサイトの制限は、制限より低い場合に優先されます。" #: ../../Zotlabs/Module/Settings/Channel.php:524 msgid "Maximum Friend Requests/Day:" -msgstr "" +msgstr "最大友達リクエスト/日:" #: ../../Zotlabs/Module/Settings/Channel.php:524 msgid "May reduce spam activity" -msgstr "" +msgstr "スパム活動を減らす可能性があります" #: ../../Zotlabs/Module/Settings/Channel.php:525 msgid "Default Privacy Group" -msgstr "" +msgstr "デフォルトのプライバシーグループ" #: ../../Zotlabs/Module/Settings/Channel.php:527 msgid "Use my default audience setting for the type of object published" -msgstr "" +msgstr "公開されたオブジェクトのタイプにデフォルトのオーディエンス設定を使用します" #: ../../Zotlabs/Module/Settings/Channel.php:536 msgid "Default permissions category" -msgstr "" +msgstr "デフォルトの許可カテゴリ" #: ../../Zotlabs/Module/Settings/Channel.php:542 msgid "Maximum private messages per day from unknown people:" -msgstr "" +msgstr "不明な人からの1日あたりの最大プライベートメッセージ:" #: ../../Zotlabs/Module/Settings/Channel.php:542 msgid "Useful to reduce spamming" -msgstr "" +msgstr "スパムを減らすのに役立ちます" #: ../../Zotlabs/Module/Settings/Channel.php:546 msgid "By default post a status message when:" -msgstr "" +msgstr "デフォルトでは、次の場合にステータスメッセージを投稿します。" #: ../../Zotlabs/Module/Settings/Channel.php:547 msgid "accepting a friend request" -msgstr "" +msgstr "友達リクエストを受け入れる" #: ../../Zotlabs/Module/Settings/Channel.php:548 msgid "joining a forum/community" -msgstr "" +msgstr "フォーラム/コミュニティへの参加" #: ../../Zotlabs/Module/Settings/Channel.php:549 msgid "making an interesting profile change" -msgstr "" +msgstr "興味深いプロファイルの変更を行う" #: ../../Zotlabs/Module/Settings/Channel.php:550 msgid "Send a notification email when:" -msgstr "" +msgstr "次の場合に通知メールを送信します。" #: ../../Zotlabs/Module/Settings/Channel.php:551 msgid "You receive a connection request" -msgstr "" +msgstr "接続要求を受け取ります" #: ../../Zotlabs/Module/Settings/Channel.php:552 msgid "Your connections are confirmed" -msgstr "" +msgstr "接続が確認されました" #: ../../Zotlabs/Module/Settings/Channel.php:553 msgid "Someone writes on your profile wall" -msgstr "" +msgstr "誰かがあなたのプロフィールウォールに書き込みます" #: ../../Zotlabs/Module/Settings/Channel.php:554 msgid "Someone writes a followup comment" -msgstr "" +msgstr "誰かがフォローアップコメントを書く" #: ../../Zotlabs/Module/Settings/Channel.php:555 msgid "You receive a private message" -msgstr "" +msgstr "プライベートメッセージを受け取ります" #: ../../Zotlabs/Module/Settings/Channel.php:556 msgid "You receive a friend suggestion" -msgstr "" +msgstr "友達の提案を受け取ります" #: ../../Zotlabs/Module/Settings/Channel.php:557 msgid "You are tagged in a post" -msgstr "" +msgstr "あなたは投稿でタグ付けされています" #: ../../Zotlabs/Module/Settings/Channel.php:558 msgid "You are poked/prodded/etc. in a post" -msgstr "" +msgstr "あなたは突かれた/突かれた/などです。投稿で" #: ../../Zotlabs/Module/Settings/Channel.php:560 msgid "Someone likes your post/comment" -msgstr "" +msgstr "誰かがあなたの投稿/コメントを気に入っています" #: ../../Zotlabs/Module/Settings/Channel.php:563 msgid "Show visual notifications including:" -msgstr "" +msgstr "以下を含む視覚的な通知を表示します。" #: ../../Zotlabs/Module/Settings/Channel.php:565 msgid "Unseen stream activity" -msgstr "" +msgstr "目に見えないストリーム活動" #: ../../Zotlabs/Module/Settings/Channel.php:566 msgid "Unseen channel activity" -msgstr "" +msgstr "目に見えないチャンネルアクティビティ" #: ../../Zotlabs/Module/Settings/Channel.php:567 msgid "Unseen private messages" -msgstr "" +msgstr "目に見えないプライベートメッセージ" #: ../../Zotlabs/Module/Settings/Channel.php:567 #: ../../Zotlabs/Module/Settings/Channel.php:572 #: ../../Zotlabs/Module/Settings/Channel.php:573 #: ../../Zotlabs/Module/Settings/Channel.php:574 msgid "Recommended" -msgstr "" +msgstr "お勧め" #: ../../Zotlabs/Module/Settings/Channel.php:568 msgid "Upcoming events" -msgstr "" +msgstr "今後のイベント" #: ../../Zotlabs/Module/Settings/Channel.php:569 msgid "Events today" -msgstr "" +msgstr "今日のイベント" #: ../../Zotlabs/Module/Settings/Channel.php:570 msgid "Upcoming birthdays" -msgstr "" +msgstr "今後の誕生日" #: ../../Zotlabs/Module/Settings/Channel.php:570 msgid "Not available in all themes" -msgstr "" +msgstr "すべてのテーマで利用できない" #: ../../Zotlabs/Module/Settings/Channel.php:571 msgid "System (personal) notifications" -msgstr "" +msgstr "システム(個人)通知" #: ../../Zotlabs/Module/Settings/Channel.php:572 msgid "System info messages" -msgstr "" +msgstr "システム情報メッセージ" #: ../../Zotlabs/Module/Settings/Channel.php:573 msgid "System critical alerts" -msgstr "" +msgstr "システムクリティカルアラート" #: ../../Zotlabs/Module/Settings/Channel.php:574 msgid "New connections" -msgstr "" +msgstr "新しい接続" #: ../../Zotlabs/Module/Settings/Channel.php:575 msgid "System Registrations" -msgstr "" +msgstr "システム登録" #: ../../Zotlabs/Module/Settings/Channel.php:576 msgid "Unseen shared files" -msgstr "" +msgstr "見えない共有ファイル" #: ../../Zotlabs/Module/Settings/Channel.php:577 msgid "Unseen public stream activity" -msgstr "" +msgstr "未公開の公開ストリームアクティビティ" #: ../../Zotlabs/Module/Settings/Channel.php:578 msgid "Unseen likes and dislikes" -msgstr "" +msgstr "目に見えない好き嫌い" #: ../../Zotlabs/Module/Settings/Channel.php:579 msgid "Unseen forum posts" -msgstr "" +msgstr "未公開のフォーラム投稿" #: ../../Zotlabs/Module/Settings/Channel.php:580 msgid "Email notification hub (hostname)" -msgstr "" +msgstr "電子メール通知ハブ(ホスト名)" #: ../../Zotlabs/Module/Settings/Channel.php:580 #, php-format msgid "" "If your channel is mirrored to multiple hubs, set this to your preferred " "location. This will prevent duplicate email notifications. Example: %s" -msgstr "" +msgstr "チャンネルが複数のハブにミラーリングされている場合、これを好みの場所に設定します。これにより、電子メール通知の重複が防止されます。例: %s" #: ../../Zotlabs/Module/Settings/Channel.php:581 msgid "Show new wall posts, private messages and connections under Notices" -msgstr "" +msgstr "お知らせの下に新しい壁の投稿、プライベートメッセージ、接続を表示します" #: ../../Zotlabs/Module/Settings/Channel.php:583 msgid "Notify me of events this many days in advance" -msgstr "" +msgstr "この数日前にイベントを通知してください" #: ../../Zotlabs/Module/Settings/Channel.php:583 msgid "Must be greater than 0" -msgstr "" +msgstr "0より大きくなければなりません" #: ../../Zotlabs/Module/Settings/Channel.php:588 msgid "Advanced Account/Page Type Settings" -msgstr "" +msgstr "アカウント/ページタイプの詳細設定" #: ../../Zotlabs/Module/Settings/Channel.php:589 msgid "Change the behaviour of this account for special situations" -msgstr "" +msgstr "特別な状況でこのアカウントの動作を変更する" #: ../../Zotlabs/Module/Settings/Channel.php:591 msgid "Miscellaneous Settings" -msgstr "" +msgstr "その他の設定" #: ../../Zotlabs/Module/Settings/Channel.php:592 msgid "Default photo upload folder" -msgstr "" +msgstr "デフォルトの写真アップロードフォルダ" #: ../../Zotlabs/Module/Settings/Channel.php:592 #: ../../Zotlabs/Module/Settings/Channel.php:593 msgid "%Y - current year, %m - current month" -msgstr "" +msgstr "%Y-現在の年、%m-現在の月" #: ../../Zotlabs/Module/Settings/Channel.php:593 msgid "Default file upload folder" -msgstr "" +msgstr "デフォルトのファイルアップロードフォルダ" #: ../../Zotlabs/Module/Settings/Channel.php:595 msgid "Remove this channel." -msgstr "" +msgstr "このチャンネルを削除してください。" #: ../../Zotlabs/Module/Settings/Channel_home.php:44 #: ../../Zotlabs/Module/Settings/Network.php:41 msgid "Max height of content (in pixels)" -msgstr "" +msgstr "コンテンツの最大の高さ(ピクセル単位)" #: ../../Zotlabs/Module/Settings/Channel_home.php:46 #: ../../Zotlabs/Module/Settings/Network.php:43 msgid "Click to expand content exceeding this height" -msgstr "" +msgstr "クリックしてこの高さを超えるコンテンツを展開します" #: ../../Zotlabs/Module/Settings/Channel_home.php:59 msgid "Personal menu to display in your channel pages" -msgstr "" +msgstr "チャンネルページに表示する個人メニュー" #: ../../Zotlabs/Module/Settings/Channel_home.php:86 msgid "Channel Home Settings" -msgstr "" +msgstr "チャンネルのホーム設定" #: ../../Zotlabs/Module/Settings/Connections.php:39 msgid "Connections Settings" -msgstr "" +msgstr "接続設定" #: ../../Zotlabs/Module/Settings/Conversation.php:22 msgid "Settings saved." -msgstr "" +msgstr "保存された設定。" #: ../../Zotlabs/Module/Settings/Conversation.php:24 msgid "Settings saved. Reload page please." -msgstr "" +msgstr "保存された設定。ページをリロードしてください。" #: ../../Zotlabs/Module/Settings/Conversation.php:46 msgid "Conversation Settings" -msgstr "" +msgstr "会話設定" #: ../../Zotlabs/Module/Settings/Directory.php:39 msgid "Directory Settings" -msgstr "" +msgstr "ディレクトリ設定" #: ../../Zotlabs/Module/Settings/Display.php:128 #, php-format msgid "%s - (Experimental)" -msgstr "" +msgstr "%s (実験的)" #: ../../Zotlabs/Module/Settings/Display.php:184 msgid "Display Settings" -msgstr "" +msgstr "ディスプレイの設定" #: ../../Zotlabs/Module/Settings/Display.php:185 msgid "Theme Settings" -msgstr "" +msgstr "テーマ設定" #: ../../Zotlabs/Module/Settings/Display.php:186 msgid "Custom Theme Settings" -msgstr "" +msgstr "カスタムテーマ設定" #: ../../Zotlabs/Module/Settings/Display.php:187 msgid "Content Settings" -msgstr "" +msgstr "コンテンツ設定" #: ../../Zotlabs/Module/Settings/Display.php:193 msgid "Display Theme:" -msgstr "" +msgstr "ディスプレイテーマ:" #: ../../Zotlabs/Module/Settings/Display.php:194 msgid "Select scheme" -msgstr "" +msgstr "スキームを選択" #: ../../Zotlabs/Module/Settings/Display.php:196 msgid "Preload images before rendering the page" -msgstr "" +msgstr "ページをレンダリングする前に画像をプリロードする" #: ../../Zotlabs/Module/Settings/Display.php:196 msgid "" "The subjective page load time will be longer but the page will be ready when " "displayed" -msgstr "" +msgstr "主観的なページの読み込み時間は長くなりますが、表示されるとページの準備が整います" #: ../../Zotlabs/Module/Settings/Display.php:197 msgid "Enable user zoom on mobile devices" -msgstr "" +msgstr "モバイルデバイスでユーザーズームを有効にする" #: ../../Zotlabs/Module/Settings/Display.php:198 msgid "Update browser every xx seconds" -msgstr "" +msgstr "xx秒ごとにブラウザーを更新する" #: ../../Zotlabs/Module/Settings/Display.php:198 msgid "Minimum of 10 seconds, no maximum" -msgstr "" +msgstr "最小10秒、最大なし" #: ../../Zotlabs/Module/Settings/Display.php:199 msgid "Maximum number of conversations to load at any time:" -msgstr "" +msgstr "常にロードする会話の最大数:" #: ../../Zotlabs/Module/Settings/Display.php:199 msgid "Maximum of 100 items" -msgstr "" +msgstr "最大100アイテム" #: ../../Zotlabs/Module/Settings/Display.php:200 msgid "Show emoticons (smilies) as images" -msgstr "" +msgstr "絵文字(スマイリー)を画像として表示する" #: ../../Zotlabs/Module/Settings/Display.php:201 msgid "Provide channel menu in navigation bar" -msgstr "" +msgstr "ナビゲーションバーにチャンネルメニューを提供する" #: ../../Zotlabs/Module/Settings/Display.php:201 msgid "Default: channel menu located in app menu" -msgstr "" +msgstr "デフォルト:アプリメニューにあるチャンネルメニュー" #: ../../Zotlabs/Module/Settings/Display.php:202 msgid "Manual conversation updates" -msgstr "" +msgstr "手動会話の更新" #: ../../Zotlabs/Module/Settings/Display.php:202 msgid "Default is on, turning this off may increase screen jumping" -msgstr "" +msgstr "デフォルトはオンです。これをオフにすると、画面ジャンプが増加する場合があります" #: ../../Zotlabs/Module/Settings/Display.php:203 msgid "Link post titles to source" -msgstr "" +msgstr "投稿のタイトルをソースにリンクする" #: ../../Zotlabs/Module/Settings/Display.php:205 #: ../../Zotlabs/Widget/Newmember.php:75 msgid "New Member Links" -msgstr "" +msgstr "新規会員リンク" #: ../../Zotlabs/Module/Settings/Display.php:205 msgid "Display new member quick links menu" -msgstr "" +msgstr "新しいメンバーのクイックリンクメニューを表示する" #: ../../Zotlabs/Module/Settings/Editor.php:39 msgid "Editor Settings" -msgstr "" +msgstr "エディター設定" #: ../../Zotlabs/Module/Settings/Events.php:39 msgid "Events Settings" -msgstr "" +msgstr "イベント設定" #: ../../Zotlabs/Module/Settings/Featured.php:24 msgid "No feature settings configured" -msgstr "" +msgstr "機能設定が構成されていません" #: ../../Zotlabs/Module/Settings/Featured.php:33 msgid "Addon Settings" -msgstr "" +msgstr "アドオン設定" #: ../../Zotlabs/Module/Settings/Featured.php:34 msgid "Please save/submit changes to any panel before opening another." -msgstr "" +msgstr "別のパネルを開く前に、パネルの変更を保存/送信してください。" #: ../../Zotlabs/Module/Settings/Features.php:43 msgid "Additional Features" -msgstr "" +msgstr "追加機能" #: ../../Zotlabs/Module/Settings/Manage.php:39 msgid "Channel Manager Settings" -msgstr "" +msgstr "チャネルマネージャーの設定" #: ../../Zotlabs/Module/Settings/Network.php:58 msgid "Stream Settings" -msgstr "" +msgstr "ストリーム設定" #: ../../Zotlabs/Module/Settings/Photos.php:39 msgid "Photos Settings" -msgstr "" +msgstr "写真の設定" #: ../../Zotlabs/Module/Settings/Profiles.php:47 msgid "Profiles Settings" -msgstr "" +msgstr "プロファイル設定" #: ../../Zotlabs/Module/Setup.php:167 msgid "$Projectname Server - Setup" -msgstr "" +msgstr "$ Projectnameサーバー-セットアップ" #: ../../Zotlabs/Module/Setup.php:171 msgid "Could not connect to database." -msgstr "" +msgstr "データベースに接続できません。" #: ../../Zotlabs/Module/Setup.php:175 msgid "" "Could not connect to specified site URL. Possible SSL certificate or DNS " "issue." -msgstr "" +msgstr "指定されたサイトURLに接続できませんでした。 SSL証明書またはDNSの問題の可能性。" #: ../../Zotlabs/Module/Setup.php:182 msgid "Could not create table." -msgstr "" +msgstr "テーブルを作成できませんでした。" #: ../../Zotlabs/Module/Setup.php:188 msgid "Your site database has been installed." -msgstr "" +msgstr "サイトデータベースがインストールされました。" #: ../../Zotlabs/Module/Setup.php:194 msgid "" "You may need to import the file \"install/schema_xxx.sql\" manually using a " "database client." -msgstr "" +msgstr "データベースクライアントを使用して、手動でファイル\ "install / schema_xxx.sql \"をインポートする必要がある場合があります。" #: ../../Zotlabs/Module/Setup.php:195 ../../Zotlabs/Module/Setup.php:259 #: ../../Zotlabs/Module/Setup.php:766 msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "" +msgstr "ファイル「install / INSTALL.txt」を参照してください。" #: ../../Zotlabs/Module/Setup.php:256 msgid "System check" -msgstr "" +msgstr "システムチェック" #: ../../Zotlabs/Module/Setup.php:261 msgid "Check again" -msgstr "" +msgstr "再び確かめる" #: ../../Zotlabs/Module/Setup.php:282 msgid "Database connection" -msgstr "" +msgstr "データベース接続" #: ../../Zotlabs/Module/Setup.php:283 msgid "" "In order to install $Projectname we need to know how to connect to your " "database." -msgstr "" +msgstr "$ Projectnameをインストールするには、データベースへの接続方法を知る必要があります。" #: ../../Zotlabs/Module/Setup.php:284 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." -msgstr "" +msgstr "これらの設定について質問がある場合は、ホスティングプロバイダーまたはサイト管理者にお問い合わせください。" #: ../../Zotlabs/Module/Setup.php:285 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." -msgstr "" +msgstr "以下で指定するデータベースはすでに存在している必要があります。存在しない場合は、続行する前に作成してください。" #: ../../Zotlabs/Module/Setup.php:289 msgid "Database Server Name" -msgstr "" +msgstr "データベースサーバー名" #: ../../Zotlabs/Module/Setup.php:289 msgid "Default is 127.0.0.1" -msgstr "" +msgstr "デフォルトは127.0.0.1" #: ../../Zotlabs/Module/Setup.php:290 msgid "Database Port" -msgstr "" +msgstr "データベースポート" #: ../../Zotlabs/Module/Setup.php:290 msgid "Communication port number - use 0 for default" -msgstr "" +msgstr "通信ポート番号-デフォルトには0を使用" #: ../../Zotlabs/Module/Setup.php:291 msgid "Database Login Name" -msgstr "" +msgstr "データベースのログイン名" #: ../../Zotlabs/Module/Setup.php:292 msgid "Database Login Password" -msgstr "" +msgstr "データベースログインパスワード" #: ../../Zotlabs/Module/Setup.php:293 msgid "Database Name" -msgstr "" +msgstr "データベース名" #: ../../Zotlabs/Module/Setup.php:294 msgid "Database Type" -msgstr "" +msgstr "データベースの種類" #: ../../Zotlabs/Module/Setup.php:296 ../../Zotlabs/Module/Setup.php:336 msgid "Site administrator email address" -msgstr "" +msgstr "サイト管理者のメールアドレス" #: ../../Zotlabs/Module/Setup.php:296 ../../Zotlabs/Module/Setup.php:336 msgid "" "Your account email address must match this in order to use the web admin " "panel." -msgstr "" +msgstr "ウェブ管理パネルを使用するには、アカウントのメールアドレスがこれと一致する必要があります。" #: ../../Zotlabs/Module/Setup.php:297 ../../Zotlabs/Module/Setup.php:338 msgid "Website URL" -msgstr "" +msgstr "ウェブサイトのURL" #: ../../Zotlabs/Module/Setup.php:297 ../../Zotlabs/Module/Setup.php:338 msgid "Please use SSL (https) URL if available." -msgstr "" +msgstr "可能な場合は、SSL(https)URLを使用してください。" #: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:340 msgid "Please select a default timezone for your website" -msgstr "" +msgstr "ウェブサイトのデフォルトのタイムゾーンを選択してください" #: ../../Zotlabs/Module/Setup.php:325 msgid "Site settings" -msgstr "" +msgstr "サイト設定" #: ../../Zotlabs/Module/Setup.php:379 msgid "PHP version 7.1 or greater is required." -msgstr "" +msgstr "PHPバージョン7.1以降が必要です。" #: ../../Zotlabs/Module/Setup.php:380 msgid "PHP version" -msgstr "" +msgstr "PHPバージョン" #: ../../Zotlabs/Module/Setup.php:396 msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" +msgstr "WebサーバーPATHにコマンドラインバージョンのPHPが見つかりませんでした。" #: ../../Zotlabs/Module/Setup.php:397 msgid "" "If you don't have a command line version of PHP installed on server, you " "will not be able to run background polling via cron." -msgstr "" +msgstr "PHPのコマンドラインバージョンがサーバーにインストールされていない場合、cronを介してバックグラウンドポーリングを実行することはできません。" #: ../../Zotlabs/Module/Setup.php:401 msgid "PHP executable path" -msgstr "" +msgstr "PHP実行可能パス" #: ../../Zotlabs/Module/Setup.php:401 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." -msgstr "" +msgstr "php実行可能ファイルへのフルパスを入力します。これを空白のままにしてインストールを続行できます。" #: ../../Zotlabs/Module/Setup.php:406 msgid "Command line PHP" -msgstr "" +msgstr "コマンドラインPHP" #: ../../Zotlabs/Module/Setup.php:416 msgid "" "Unable to check command line PHP, as shell_exec() is disabled. This is " "required." -msgstr "" +msgstr "shell_exec()が無効になっているため、コマンドラインPHPをチェックできません。これは必須です。" #: ../../Zotlabs/Module/Setup.php:420 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." -msgstr "" +msgstr "ご使用のシステムのコマンドラインバージョンのPHPでは、\ "register_argc_argv \"が有効になっていません。" #: ../../Zotlabs/Module/Setup.php:421 msgid "This is required for message delivery to work." -msgstr "" +msgstr "これは、メッセージ配信が機能するために必要です。" #: ../../Zotlabs/Module/Setup.php:424 msgid "PHP register_argc_argv" -msgstr "" +msgstr "PHP register_argc_argv" #: ../../Zotlabs/Module/Setup.php:444 msgid "" "This is not sufficient to upload larger images or files. You should be able " "to upload at least 4 MB at once." -msgstr "" +msgstr "これは、大きな画像やファイルをアップロードするには不十分です。少なくとも4 MBを一度にアップロードできる必要があります。" #: ../../Zotlabs/Module/Setup.php:446 #, php-format msgid "" "Your max allowed total upload size is set to %s. Maximum size of one file to " "upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "" +msgstr "アップロードの最大許容合計サイズは%s設定されています。アップロードする1つのファイルの最大サイズは%s設定されています。一度に最大%dファイルをアップロードできます。" #: ../../Zotlabs/Module/Setup.php:452 msgid "You can adjust these settings in the server php.ini file." -msgstr "" +msgstr "サーバーのphp.iniファイルでこれらの設定を調整できます。" #: ../../Zotlabs/Module/Setup.php:454 msgid "PHP upload limits" -msgstr "" +msgstr "PHPアップロード制限" #: ../../Zotlabs/Module/Setup.php:477 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" -msgstr "" +msgstr "エラー:このシステムの\ "openssl_pkey_new \"関数は暗号化キーを生成できません" #: ../../Zotlabs/Module/Setup.php:478 msgid "" "If running under Windows, please see \"http://www.php.net/manual/en/openssl." "installation.php\"." -msgstr "" +msgstr "Windowsで実行している場合は、「http://www.php.net/manual/en/openssl.installation.php \」を参照してください。" #: ../../Zotlabs/Module/Setup.php:481 msgid "Generate encryption keys" -msgstr "" +msgstr "暗号化キーを生成する" #: ../../Zotlabs/Module/Setup.php:498 msgid "libCurl PHP module" -msgstr "" +msgstr "libCurl PHPモジュール" #: ../../Zotlabs/Module/Setup.php:499 msgid "GD graphics PHP module" -msgstr "" +msgstr "GDグラフィックスPHPモジュール" #: ../../Zotlabs/Module/Setup.php:500 msgid "OpenSSL PHP module" -msgstr "" +msgstr "OpenSSL PHPモジュール" #: ../../Zotlabs/Module/Setup.php:501 msgid "PDO database PHP module" -msgstr "" +msgstr "PDOデータベースPHPモジュール" #: ../../Zotlabs/Module/Setup.php:502 msgid "mb_string PHP module" -msgstr "" +msgstr "mb_string PHPモジュール" #: ../../Zotlabs/Module/Setup.php:503 msgid "xml PHP module" -msgstr "" +msgstr "XML PHPモジュール" #: ../../Zotlabs/Module/Setup.php:504 msgid "zip PHP module" -msgstr "" +msgstr "zip PHPモジュール" #: ../../Zotlabs/Module/Setup.php:508 ../../Zotlabs/Module/Setup.php:510 msgid "Apache mod_rewrite module" -msgstr "" +msgstr "Apache mod_rewriteモジュール" #: ../../Zotlabs/Module/Setup.php:508 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" +msgstr "エラー:Apache webserver mod-rewriteモジュールが必要ですが、インストールされていません。" #: ../../Zotlabs/Module/Setup.php:514 ../../Zotlabs/Module/Setup.php:517 msgid "exec" -msgstr "" +msgstr "幹部" #: ../../Zotlabs/Module/Setup.php:514 msgid "" "Error: exec is required but is either not installed or has been disabled in " "php.ini" -msgstr "" +msgstr "エラー:execが必要ですが、インストールされていないか、php.iniで無効にされています" #: ../../Zotlabs/Module/Setup.php:520 ../../Zotlabs/Module/Setup.php:523 msgid "shell_exec" -msgstr "" +msgstr "shell_exec" #: ../../Zotlabs/Module/Setup.php:520 msgid "" "Error: shell_exec is required but is either not installed or has been " "disabled in php.ini" -msgstr "" +msgstr "エラー:shell_execが必要ですが、インストールされていないか、php.iniで無効にされています" #: ../../Zotlabs/Module/Setup.php:528 msgid "Error: libCURL PHP module required but not installed." -msgstr "" +msgstr "エラー:libCURL PHPモジュールが必要ですが、インストールされていません。" #: ../../Zotlabs/Module/Setup.php:532 msgid "" "Error: GD PHP module with JPEG support or ImageMagick graphics library " "required but not installed." -msgstr "" +msgstr "エラー:JPEGサポートまたはImageMagickグラフィックライブラリを備えたGD PHPモジュールが必要ですが、インストールされていません。" #: ../../Zotlabs/Module/Setup.php:536 msgid "Error: openssl PHP module required but not installed." -msgstr "" +msgstr "エラー:openssl PHPモジュールが必要ですが、インストールされていません。" #: ../../Zotlabs/Module/Setup.php:542 msgid "" "Error: PDO database PHP module missing a driver for either mysql or pgsql." -msgstr "" +msgstr "エラー:PDOデータベースPHPモジュールにmysqlまたはpgsqlのいずれかのドライバーがありません。" #: ../../Zotlabs/Module/Setup.php:547 msgid "Error: PDO database PHP module required but not installed." -msgstr "" +msgstr "エラー:PDOデータベースPHPモジュールが必要ですが、インストールされていません。" #: ../../Zotlabs/Module/Setup.php:551 msgid "Error: mb_string PHP module required but not installed." -msgstr "" +msgstr "エラー:mb_string PHPモジュールが必要ですが、インストールされていません。" #: ../../Zotlabs/Module/Setup.php:555 msgid "Error: xml PHP module required for DAV but not installed." -msgstr "" +msgstr "エラー:DAVにはXML PHPモジュールが必要ですが、インストールされていません。" #: ../../Zotlabs/Module/Setup.php:559 msgid "Error: zip PHP module required but not installed." -msgstr "" +msgstr "エラー:zip PHPモジュールが必要ですが、インストールされていません。" #: ../../Zotlabs/Module/Setup.php:578 ../../Zotlabs/Module/Setup.php:587 msgid ".htconfig.php is writable" -msgstr "" +msgstr ".htconfig.phpは書き込み可能です" #: ../../Zotlabs/Module/Setup.php:583 msgid "" "The web installer needs to be able to create a file called \".htconfig.php\" " "in the top folder of your web server and it is unable to do so." -msgstr "" +msgstr "Webインストーラーは、Webサーバーの最上位フォルダーに\ "。htconfig.php \"というファイルを作成できる必要がありますが、作成できません。" #: ../../Zotlabs/Module/Setup.php:584 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." -msgstr "" +msgstr "これはほとんどの場合、Webサーバーがフォルダーにファイルを書き込むことができない場合でも、許可設定です。" #: ../../Zotlabs/Module/Setup.php:585 msgid "Please see install/INSTALL.txt for additional information." -msgstr "" +msgstr "詳細については、install / INSTALL.txtを参照してください。" #: ../../Zotlabs/Module/Setup.php:601 msgid "" "This software uses the Smarty3 template engine to render its web views. " "Smarty3 compiles templates to PHP to speed up rendering." -msgstr "" +msgstr "このソフトウェアは、Smarty3テンプレートエンジンを使用してWebビューをレンダリングします。 Smarty3はテンプレートをPHPにコンパイルして、レンダリングを高速化します。" #: ../../Zotlabs/Module/Setup.php:602 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." -msgstr "" +msgstr "これらのコンパイル済みテンプレートを保存するには、Webサーバーが最上位のWebフォルダー%s下のディレクトリ%sへの書き込みアクセス権を持っている必要があります。" #: ../../Zotlabs/Module/Setup.php:603 ../../Zotlabs/Module/Setup.php:624 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has " "write access to this folder." -msgstr "" +msgstr "Webサーバーを実行するユーザー(www-dataなど)がこのフォルダーへの書き込みアクセス権を持っていることを確認してください。" #: ../../Zotlabs/Module/Setup.php:604 #, php-format msgid "" "Note: as a security measure, you should give the web server write access to " "%s only--not the template files (.tpl) that it contains." -msgstr "" +msgstr "注:セキュリティ対策として、Webサーバーに含まれるテンプレートファイル(.tpl)ではなく、 %sへの書き込みアクセスを許可する必要があります。" #: ../../Zotlabs/Module/Setup.php:607 #, php-format msgid "%s is writable" -msgstr "" +msgstr "%sは書き込み可能です" #: ../../Zotlabs/Module/Setup.php:623 msgid "" "This software uses the store directory to save uploaded files. The web " "server needs to have write access to the store directory under the top level " "web folder" -msgstr "" +msgstr "このソフトウェアは、ストアディレクトリを使用して、アップロードされたファイルを保存します。 Webサーバーには、最上位Webフォルダーの下のストアディレクトリへの書き込みアクセスが必要です。" #: ../../Zotlabs/Module/Setup.php:627 msgid "store is writable" -msgstr "" +msgstr "ストアは書き込み可能です" #: ../../Zotlabs/Module/Setup.php:659 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access " "to this site." -msgstr "" +msgstr "SSL証明書を検証できません。証明書を修正するか、このサイトへのhttpsアクセスを無効にします。" #: ../../Zotlabs/Module/Setup.php:660 msgid "" "If you have https access to your website or allow connections to TCP port " "443 (the https: port), you MUST use a browser-valid certificate. You MUST " "NOT use self-signed certificates!" -msgstr "" +msgstr "Webサイトへのhttpsアクセスがある場合、またはTCPポート443(https:ポート)への接続を許可する場合は、ブラウザーで有効な証明書を使用する必要があります。自己署名証明書を使用してはいけません!" #: ../../Zotlabs/Module/Setup.php:661 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." -msgstr "" +msgstr "あなたからの一般公開の投稿には、たとえばあなた自身のハブ上の画像への参照が含まれている可能性があるため、この制限が組み込まれています。" #: ../../Zotlabs/Module/Setup.php:662 msgid "" "If your certificate is not recognized, members of other sites (who may " "themselves have valid certificates) will get a warning message on their own " "site complaining about security issues." -msgstr "" +msgstr "証明書が認識されない場合、他のサイトのメンバー(自分自身が有効な証明書を持っている可能性があります)は、自分のサイトでセキュリティの問題について不平を言っている警告メッセージを受け取ります。" #: ../../Zotlabs/Module/Setup.php:663 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." -msgstr "" +msgstr "これにより、他の場所(ユーザのサイトだけでなく)でユーザビリティの問題が発生する可能性があるため、この要件を主張する必要があります。" #: ../../Zotlabs/Module/Setup.php:664 msgid "" "Providers are available that issue free certificates which are browser-valid." -msgstr "" +msgstr "ブラウザで有効な無料の証明書を発行するプロバイダーが利用可能です。" #: ../../Zotlabs/Module/Setup.php:665 msgid "" @@ -10827,374 +10827,374 @@ msgid "" "authority, check to see if you have failed to install an intermediate cert. " "These are not normally required by browsers, but are required for server-to-" "server communications." -msgstr "" +msgstr "証明書が有効であり、信頼できる機関によって署名されていると確信している場合は、中間証明書のインストールに失敗したかどうかを確認してください。これらは通常ブラウザには必要ありませんが、サーバー間の通信には必要です。" #: ../../Zotlabs/Module/Setup.php:667 msgid "SSL certificate validation" -msgstr "" +msgstr "SSL証明書の検証" #: ../../Zotlabs/Module/Setup.php:673 msgid "" "Url rewrite in .htaccess is not working. Check your server configuration." "Test: " -msgstr "" +msgstr ".htaccessのURL書き換えが機能していません。サーバーの構成を確認します。テスト:" #: ../../Zotlabs/Module/Setup.php:676 msgid "Url rewrite is working" -msgstr "" +msgstr "URLの書き換えが機能しています" #: ../../Zotlabs/Module/Setup.php:689 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." -msgstr "" +msgstr "データベース構成ファイル\ "。htconfig.php \"を書き込めませんでした。同封のテキストを使用して、Webサーバーのルートに構成ファイルを作成してください。" #: ../../Zotlabs/Module/Setup.php:718 msgid "Errors encountered creating database tables." -msgstr "" +msgstr "データベーステーブルの作成中にエラーが発生しました。" #: ../../Zotlabs/Module/Setup.php:764 msgid "

What next?

" -msgstr "" +msgstr "

次は何ですか" #: ../../Zotlabs/Module/Setup.php:765 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "" +msgstr "重要:ポーラーのスケジュールされたタスクを[手動で]設定する必要があります。" #: ../../Zotlabs/Module/Share.php:119 msgid "Post repeated" -msgstr "" +msgstr "繰り返し投稿" #: ../../Zotlabs/Module/Sharedwithme.php:103 msgid "Files: shared with me" -msgstr "" +msgstr "ファイル:私と共有" #: ../../Zotlabs/Module/Sharedwithme.php:105 msgid "NEW" -msgstr "" +msgstr "新しい" #: ../../Zotlabs/Module/Sharedwithme.php:107 #: ../../Zotlabs/Storage/Browser.php:294 msgid "Last Modified" -msgstr "" +msgstr "最終更新日" #: ../../Zotlabs/Module/Sharedwithme.php:108 msgid "Remove all files" -msgstr "" +msgstr "すべてのファイルを削除する" #: ../../Zotlabs/Module/Sharedwithme.php:109 msgid "Remove this file" -msgstr "" +msgstr "このファイルを削除" #: ../../Zotlabs/Module/Siteinfo.php:21 msgid "About this site" -msgstr "" +msgstr "このサイトについて" #: ../../Zotlabs/Module/Siteinfo.php:22 msgid "Site Name" -msgstr "" +msgstr "サイト名" #: ../../Zotlabs/Module/Siteinfo.php:26 msgid "Administrator" -msgstr "" +msgstr "管理者" #: ../../Zotlabs/Module/Siteinfo.php:29 msgid "Software and Project information" -msgstr "" +msgstr "ソフトウェアおよびプロジェクト情報" #: ../../Zotlabs/Module/Siteinfo.php:30 msgid "This site is powered by $Projectname" -msgstr "" +msgstr "このサイトは$ Projectnameを使用しています" #: ../../Zotlabs/Module/Siteinfo.php:31 msgid "" "Federated and decentralised networking and identity services provided by Zot" -msgstr "" +msgstr "Zotが提供する統合および分散型のネットワークおよびIDサービス" #: ../../Zotlabs/Module/Siteinfo.php:34 msgid "Additional federated transport protocols:" -msgstr "" +msgstr "追加の統合トランスポートプロトコル:" #: ../../Zotlabs/Module/Siteinfo.php:36 #, php-format msgid "Version %s" -msgstr "" +msgstr "バージョン%s" #: ../../Zotlabs/Module/Siteinfo.php:37 msgid "Project homepage" -msgstr "" +msgstr "プロジェクトのホームページ" #: ../../Zotlabs/Module/Siteinfo.php:38 msgid "Developer homepage" -msgstr "" +msgstr "開発者ホームページ" #: ../../Zotlabs/Module/Sources.php:41 msgid "Failed to create source. No channel selected." -msgstr "" +msgstr "ソースの作成に失敗しました。チャンネルが選択されていません。" #: ../../Zotlabs/Module/Sources.php:57 msgid "Source created." -msgstr "" +msgstr "ソースが作成されました。" #: ../../Zotlabs/Module/Sources.php:70 msgid "Source updated." -msgstr "" +msgstr "ソースが更新されました。" #: ../../Zotlabs/Module/Sources.php:88 msgid "Sources App" -msgstr "" +msgstr "ソースアプリ" #: ../../Zotlabs/Module/Sources.php:89 msgid "Automatically import channel content from other channels or feeds" -msgstr "" +msgstr "他のチャンネルまたはフィードからチャンネルコンテンツを自動的にインポートする" #: ../../Zotlabs/Module/Sources.php:101 msgid "*" -msgstr "" +msgstr "*" #: ../../Zotlabs/Module/Sources.php:108 msgid "Manage remote sources of content for your channel." -msgstr "" +msgstr "チャンネルのコンテンツのリモートソースを管理します。" #: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:119 msgid "New Source" -msgstr "" +msgstr "新しいソース" #: ../../Zotlabs/Module/Sources.php:120 ../../Zotlabs/Module/Sources.php:154 msgid "" "Import all or selected content from the following channel into this channel " "and distribute it according to your channel settings." -msgstr "" +msgstr "次のチャネルからすべてまたは選択したコンテンツをこのチャネルにインポートし、チャネル設定に従って配信します。" #: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 msgid "Only import content with these words (one per line)" -msgstr "" +msgstr "これらの単語を含むコンテンツのみをインポートします(1行に1つ)" #: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 msgid "Leave blank to import all public content" -msgstr "" +msgstr "すべての公開コンテンツをインポートするには空白のままにします" #: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:161 msgid "Channel Name" -msgstr "" +msgstr "チャンネル名" #: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 msgid "" "Add the following categories to posts imported from this source (comma " "separated)" -msgstr "" +msgstr "このソースからインポートされた投稿に次のカテゴリを追加します(カンマ区切り)" #: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 msgid "Resend posts with this channel as author" -msgstr "" +msgstr "このチャンネルを著者として投稿を再送信する" #: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 msgid "Copyrights may apply" -msgstr "" +msgstr "著作権が適用される場合があります" #: ../../Zotlabs/Module/Sources.php:144 ../../Zotlabs/Module/Sources.php:174 msgid "Source not found." -msgstr "" +msgstr "ソースが見つかりません。" #: ../../Zotlabs/Module/Sources.php:151 msgid "Edit Source" -msgstr "" +msgstr "ソースを編集" #: ../../Zotlabs/Module/Sources.php:152 msgid "Delete Source" -msgstr "" +msgstr "ソースを削除" #: ../../Zotlabs/Module/Sources.php:182 msgid "Source removed" -msgstr "" +msgstr "ソースを削除しました" #: ../../Zotlabs/Module/Sources.php:184 msgid "Unable to remove source." -msgstr "" +msgstr "ソースを削除できません。" #: ../../Zotlabs/Module/Subthread.php:143 #, php-format msgid "%1$s is following %2$s's %3$s" -msgstr "" +msgstr "%1$sは%2$sの%3$sフォローしています" #: ../../Zotlabs/Module/Subthread.php:145 #, php-format msgid "%1$s stopped following %2$s's %3$s" -msgstr "" +msgstr "%1$s %2$sの%3$sの後に%1$sが停止しました" #: ../../Zotlabs/Module/Suggest.php:40 msgid "Suggest Channels App" -msgstr "" +msgstr "チャンネルアプリの提案" #: ../../Zotlabs/Module/Suggest.php:41 msgid "" "Suggestions for channels in the $Projectname network you might be interested " "in" -msgstr "" +msgstr "興味があるかもしれない$ Projectnameネットワークのチャンネルの提案" #: ../../Zotlabs/Module/Suggest.php:54 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." -msgstr "" +msgstr "利用可能な提案はありません。新しいサイトの場合は、24時間後にもう一度お試しください。" #: ../../Zotlabs/Module/Suggest.php:73 ../../Zotlabs/Widget/Suggestions.php:48 msgid "Ignore/Hide" -msgstr "" +msgstr "無視/非表示" #: ../../Zotlabs/Module/Tagger.php:48 msgid "Post not found." -msgstr "" +msgstr "投稿が見つかりません。" #: ../../Zotlabs/Module/Tagger.php:119 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" +msgstr "%1$sが%2$sの%3$sに%4$s %1$sタグを付けました" #: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 msgid "Tag removed" -msgstr "" +msgstr "タグを削除しました" #: ../../Zotlabs/Module/Tagrm.php:123 msgid "Remove Item Tag" -msgstr "" +msgstr "アイテムタグを削除" #: ../../Zotlabs/Module/Tagrm.php:125 msgid "Select a tag to remove: " -msgstr "" +msgstr "削除するタグを選択:" #: ../../Zotlabs/Module/Thing.php:120 msgid "Thing updated" -msgstr "" +msgstr "更新されたもの" #: ../../Zotlabs/Module/Thing.php:172 msgid "Object store: failed" -msgstr "" +msgstr "オブジェクトストア:失敗" #: ../../Zotlabs/Module/Thing.php:176 msgid "Thing added" -msgstr "" +msgstr "追加されたもの" #: ../../Zotlabs/Module/Thing.php:202 #, php-format msgid "OBJ: %1$s %2$s %3$s" -msgstr "" +msgstr "OBJ: %1$s %2$s %3$s" #: ../../Zotlabs/Module/Thing.php:265 msgid "Show Thing" -msgstr "" +msgstr "ものを見る" #: ../../Zotlabs/Module/Thing.php:272 msgid "item not found." -msgstr "" +msgstr "アイテムが見つかりません。" #: ../../Zotlabs/Module/Thing.php:305 msgid "Edit Thing" -msgstr "" +msgstr "ものを編集" #: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:364 msgid "Select a profile" -msgstr "" +msgstr "プロフィールを選択" #: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 msgid "Post an activity" -msgstr "" +msgstr "アクティビティを投稿する" #: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 msgid "Only sends to viewers of the applicable profile" -msgstr "" +msgstr "該当するプロファイルの閲覧者にのみ送信します" #: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 msgid "Name of thing e.g. something" -msgstr "" +msgstr "何かの名前、たとえば何か" #: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:370 msgid "URL of thing (optional)" -msgstr "" +msgstr "モノのURL(オプション)" #: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:371 msgid "URL for photo of thing (optional)" -msgstr "" +msgstr "モノの写真のURL(オプション)" #: ../../Zotlabs/Module/Thing.php:362 msgid "Add Thing to your Profile" -msgstr "" +msgstr "プロフィールにモノを追加" #: ../../Zotlabs/Module/Tokens.php:39 #, php-format msgid "This channel is limited to %d tokens" -msgstr "" +msgstr "このチャンネルは%dトークンに制限されています" #: ../../Zotlabs/Module/Tokens.php:45 msgid "Name and Password are required." -msgstr "" +msgstr "名前とパスワードが必要です。" #: ../../Zotlabs/Module/Tokens.php:85 msgid "Token saved." -msgstr "" +msgstr "トークンを保存しました。" #: ../../Zotlabs/Module/Tokens.php:99 msgid "Guest Access App" -msgstr "" +msgstr "ゲストアクセスアプリ" #: ../../Zotlabs/Module/Tokens.php:100 msgid "Create access tokens so that non-members can access private content" -msgstr "" +msgstr "非メンバーがプライベートコンテンツにアクセスできるようにアクセストークンを作成する" #: ../../Zotlabs/Module/Tokens.php:133 msgid "" "Use this form to create temporary access identifiers to share things with " "non-members. These identities may be used in Access Control Lists and " "visitors may login using these credentials to access private content." -msgstr "" +msgstr "このフォームを使用して、一時的なアクセス識別子を作成し、非メンバーと物事を共有します。これらのIDはアクセス制御リストで使用でき、訪問者はこれらの資格情報を使用してログインしてプライベートコンテンツにアクセスできます。" #: ../../Zotlabs/Module/Tokens.php:135 msgid "" "You may also provide dropbox style access links to friends and " "associates by adding the Login Password to any specific site URL as shown. " "Examples:" -msgstr "" +msgstr "示されているように、特定のサイトURLにログインパスワードを追加することにより、友人や仲間に dropbox スタイルのアクセスリンクを提供することもできます。例:" #: ../../Zotlabs/Module/Tokens.php:170 msgid "Guest Access Tokens" -msgstr "" +msgstr "ゲストアクセストークン" #: ../../Zotlabs/Module/Tokens.php:177 msgid "Login Name" -msgstr "" +msgstr "ログイン名" #: ../../Zotlabs/Module/Tokens.php:178 msgid "Login Password" -msgstr "" +msgstr "ログインパスワード" #: ../../Zotlabs/Module/Tokens.php:179 msgid "Expires (yyyy-mm-dd)" -msgstr "" +msgstr "有効期限(yyyy-mm-dd)" #: ../../Zotlabs/Module/Uexport.php:61 msgid "Channel Export App" -msgstr "" +msgstr "チャンネルエクスポートアプリ" #: ../../Zotlabs/Module/Uexport.php:62 msgid "Export your channel" -msgstr "" +msgstr "チャンネルをエクスポートする" #: ../../Zotlabs/Module/Uexport.php:72 ../../Zotlabs/Module/Uexport.php:73 msgid "Export Channel" -msgstr "" +msgstr "輸出チャンネル" #: ../../Zotlabs/Module/Uexport.php:74 msgid "" "Export your basic channel information to a file. This acts as a backup of " "your connections, permissions, profile and basic data, which can be used to " "import your data to a new server hub, but does not contain your content." -msgstr "" +msgstr "基本的なチャネル情報をファイルにエクスポートします。これは、接続、権限、プロファイル、および基本データのバックアップとして機能し、データを新しいサーバーハブにインポートするために使用できますが、コンテンツは含まれません。" #: ../../Zotlabs/Module/Uexport.php:75 msgid "Export Content" -msgstr "" +msgstr "コンテンツをエクスポート" #: ../../Zotlabs/Module/Uexport.php:76 msgid "" @@ -11203,11 +11203,11 @@ msgid "" "connections, permissions, profile data and several months of posts. This " "file may be VERY large. Please be patient - it may take several minutes for " "this download to begin." -msgstr "" +msgstr "チャンネル情報と最近のコンテンツをJSONバックアップにエクスポートし、別のサーバーハブに復元またはインポートできます。これにより、すべての接続、権限、プロファイルデータ、および数か月分の投稿がバックアップされます。このファイルは非常に大きい場合があります。しばらくお待ちください。このダウンロードが開始されるまで数分かかる場合があります。" #: ../../Zotlabs/Module/Uexport.php:78 msgid "Export your posts from a given year." -msgstr "" +msgstr "特定の年の投稿をエクスポートします。" #: ../../Zotlabs/Module/Uexport.php:80 msgid "" @@ -11215,21 +11215,21 @@ msgid "" "month. Adjust the date in your browser location bar to select other dates. " "If the export fails (possibly due to memory exhaustion on your server hub), " "please try again selecting a more limited date range." -msgstr "" +msgstr "特定の年または月の投稿と会話をエクスポートすることもできます。ブラウザのロケーションバーで日付を調整して、他の日付を選択します。エクスポートが失敗した場合(サーバーハブのメモリ不足が原因である可能性があります)、より制限された日付範囲の選択を再試行してください。" #: ../../Zotlabs/Module/Uexport.php:81 #, php-format msgid "" "To select all posts for a given year, such as this year, visit %2$s" -msgstr "" +msgstr "今年など、特定の年のすべての投稿を選択するには、 %2$s にアクセスしてください" #: ../../Zotlabs/Module/Uexport.php:82 #, php-format msgid "" "To select all posts for a given month, such as January of this year, visit " "%2$s" -msgstr "" +msgstr "今年の1月など、特定の月のすべての投稿を選択するには、 %2$s にアクセスしてください" #: ../../Zotlabs/Module/Uexport.php:83 #, php-format @@ -11237,308 +11237,308 @@ msgid "" "These content files may be imported or restored by visiting " "%2$s on any site containing your channel. For best results please import " "or restore these in date order (oldest first)." -msgstr "" +msgstr "これらのコンテンツファイルは、チャンネルを含むサイトで %2$s に%1$sしてインポートまたは復元できます。最良の結果を得るには、これらを日付順に(最も古いものから)インポートまたは復元してください。" #: ../../Zotlabs/Module/Viewconnections.php:65 msgid "No connections." -msgstr "" +msgstr "接続なし。" #: ../../Zotlabs/Module/Viewconnections.php:83 #, php-format msgid "Visit %s's profile [%s]" -msgstr "" +msgstr "%sのプロフィール[ %s ]にアクセスしてください" #: ../../Zotlabs/Module/Viewconnections.php:113 msgid "View Connections" -msgstr "" +msgstr "接続を表示" #: ../../Zotlabs/Module/Viewsrc.php:43 msgid "item" -msgstr "" +msgstr "項目" #: ../../Zotlabs/Module/Webpages.php:48 msgid "Webpages App" -msgstr "" +msgstr "ウェブページアプリ" #: ../../Zotlabs/Module/Webpages.php:49 msgid "Provide managed web pages on your channel" -msgstr "" +msgstr "チャンネルで管理されたWebページを提供する" #: ../../Zotlabs/Module/Webpages.php:69 msgid "Import Webpage Elements" -msgstr "" +msgstr "Webページ要素をインポートする" #: ../../Zotlabs/Module/Webpages.php:70 msgid "Import selected" -msgstr "" +msgstr "選択したインポート" #: ../../Zotlabs/Module/Webpages.php:93 msgid "Export Webpage Elements" -msgstr "" +msgstr "Webページ要素のエクスポート" #: ../../Zotlabs/Module/Webpages.php:94 msgid "Export selected" -msgstr "" +msgstr "選択したエクスポート" #: ../../Zotlabs/Module/Webpages.php:263 msgid "Actions" -msgstr "" +msgstr "行動" #: ../../Zotlabs/Module/Webpages.php:264 msgid "Page Link" -msgstr "" +msgstr "ページリンク" #: ../../Zotlabs/Module/Webpages.php:265 msgid "Page Title" -msgstr "" +msgstr "ページタイトル" #: ../../Zotlabs/Module/Webpages.php:295 msgid "Invalid file type." -msgstr "" +msgstr "無効なファイルタイプ。" #: ../../Zotlabs/Module/Webpages.php:307 msgid "Error opening zip file" -msgstr "" +msgstr "zipファイルを開く際のエラー" #: ../../Zotlabs/Module/Webpages.php:318 msgid "Invalid folder path." -msgstr "" +msgstr "無効なフォルダーパス。" #: ../../Zotlabs/Module/Webpages.php:345 msgid "No webpage elements detected." -msgstr "" +msgstr "Webページ要素は検出されませんでした。" #: ../../Zotlabs/Module/Webpages.php:420 msgid "Import complete." -msgstr "" +msgstr "インポートが完了しました。" #: ../../Zotlabs/Module/Wiki.php:35 msgid "Profile Unavailable." -msgstr "" +msgstr "プロファイルを利用できません。" #: ../../Zotlabs/Module/Wiki.php:52 msgid "Wiki App" -msgstr "" +msgstr "Wikiアプリ" #: ../../Zotlabs/Module/Wiki.php:53 msgid "Provide a wiki for your channel" -msgstr "" +msgstr "チャンネルのウィキを提供する" #: ../../Zotlabs/Module/Wiki.php:77 msgid "Invalid channel" -msgstr "" +msgstr "無効なチャンネル" #: ../../Zotlabs/Module/Wiki.php:133 msgid "Error retrieving wiki" -msgstr "" +msgstr "Wikiの取得エラー" #: ../../Zotlabs/Module/Wiki.php:140 msgid "Error creating zip file export folder" -msgstr "" +msgstr "zipファイルエクスポートフォルダーの作成エラー" #: ../../Zotlabs/Module/Wiki.php:191 msgid "Error downloading wiki: " -msgstr "" +msgstr "Wikiのダウンロードエラー:" #: ../../Zotlabs/Module/Wiki.php:212 msgid "Download" -msgstr "" +msgstr "ダウンロード" #: ../../Zotlabs/Module/Wiki.php:216 msgid "Wiki name" -msgstr "" +msgstr "ウィキ名" #: ../../Zotlabs/Module/Wiki.php:217 msgid "Content type" -msgstr "" +msgstr "コンテンツの種類" #: ../../Zotlabs/Module/Wiki.php:219 ../../Zotlabs/Storage/Browser.php:292 msgid "Type" -msgstr "" +msgstr "タイプ" #: ../../Zotlabs/Module/Wiki.php:220 msgid "Any type" -msgstr "" +msgstr "任意のタイプ" #: ../../Zotlabs/Module/Wiki.php:227 msgid "Lock content type" -msgstr "" +msgstr "コンテンツタイプをロックする" #: ../../Zotlabs/Module/Wiki.php:228 msgid "Create a status post for this wiki" -msgstr "" +msgstr "このウィキのステータスポストを作成する" #: ../../Zotlabs/Module/Wiki.php:229 msgid "Edit Wiki Name" -msgstr "" +msgstr "Wiki名を編集" #: ../../Zotlabs/Module/Wiki.php:274 msgid "Wiki not found" -msgstr "" +msgstr "ウィキが見つかりません" #: ../../Zotlabs/Module/Wiki.php:300 msgid "Rename page" -msgstr "" +msgstr "ページの名前を変更" #: ../../Zotlabs/Module/Wiki.php:321 msgid "Error retrieving page content" -msgstr "" +msgstr "ページコンテンツの取得エラー" #: ../../Zotlabs/Module/Wiki.php:329 ../../Zotlabs/Module/Wiki.php:331 msgid "New page" -msgstr "" +msgstr "新しいページ" #: ../../Zotlabs/Module/Wiki.php:366 msgid "Revision Comparison" -msgstr "" +msgstr "リビジョン比較" #: ../../Zotlabs/Module/Wiki.php:374 msgid "Short description of your changes (optional)" -msgstr "" +msgstr "変更の簡単な説明(オプション)" #: ../../Zotlabs/Module/Wiki.php:384 msgid "Source" -msgstr "" +msgstr "ソース" #: ../../Zotlabs/Module/Wiki.php:394 msgid "New page name" -msgstr "" +msgstr "新しいページ名" #: ../../Zotlabs/Module/Wiki.php:399 msgid "Embed image from photo albums" -msgstr "" +msgstr "フォトアルバムから画像を埋め込む" #: ../../Zotlabs/Module/Wiki.php:410 msgid "History" -msgstr "" +msgstr "歴史" #: ../../Zotlabs/Module/Wiki.php:488 msgid "Error creating wiki. Invalid name." -msgstr "" +msgstr "Wikiの作成エラー。無効な名前。" #: ../../Zotlabs/Module/Wiki.php:495 msgid "A wiki with this name already exists." -msgstr "" +msgstr "この名前のウィキは既に存在します。" #: ../../Zotlabs/Module/Wiki.php:508 msgid "Wiki created, but error creating Home page." -msgstr "" +msgstr "Wikiは作成されましたが、ホームページの作成中にエラーが発生しました。" #: ../../Zotlabs/Module/Wiki.php:515 msgid "Error creating wiki" -msgstr "" +msgstr "Wikiの作成エラー" #: ../../Zotlabs/Module/Wiki.php:539 msgid "Error updating wiki. Invalid name." -msgstr "" +msgstr "Wikiの更新エラー。無効な名前。" #: ../../Zotlabs/Module/Wiki.php:559 msgid "Error updating wiki" -msgstr "" +msgstr "Wikiの更新エラー" #: ../../Zotlabs/Module/Wiki.php:574 msgid "Wiki delete permission denied." -msgstr "" +msgstr "Wikiの削除許可が拒否されました。" #: ../../Zotlabs/Module/Wiki.php:584 msgid "Error deleting wiki" -msgstr "" +msgstr "Wikiの削除エラー" #: ../../Zotlabs/Module/Wiki.php:617 msgid "New page created" -msgstr "" +msgstr "新しいページが作成されました" #: ../../Zotlabs/Module/Wiki.php:739 msgid "Cannot delete Home" -msgstr "" +msgstr "ホームを削除できません" #: ../../Zotlabs/Module/Wiki.php:803 msgid "Current Revision" -msgstr "" +msgstr "現在の改訂" #: ../../Zotlabs/Module/Wiki.php:803 msgid "Selected Revision" -msgstr "" +msgstr "選択されたリビジョン" #: ../../Zotlabs/Module/Wiki.php:853 msgid "You must be authenticated." -msgstr "" +msgstr "認証される必要があります。" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" -msgstr "" +msgstr "Xchanルックアップ" #: ../../Zotlabs/Module/Xchan.php:13 msgid "Lookup xchan beginning with (or webbie): " -msgstr "" +msgstr "(またはwebbie)で始まるxchanを検索します。" #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:295 msgid "parent" -msgstr "" +msgstr "親" #: ../../Zotlabs/Storage/Browser.php:134 msgid "Principal" -msgstr "" +msgstr "主要な" #: ../../Zotlabs/Storage/Browser.php:137 msgid "Addressbook" -msgstr "" +msgstr "住所録" #: ../../Zotlabs/Storage/Browser.php:143 msgid "Schedule Inbox" -msgstr "" +msgstr "受信トレイのスケジュール" #: ../../Zotlabs/Storage/Browser.php:146 msgid "Schedule Outbox" -msgstr "" +msgstr "送信トレイのスケジュール" #: ../../Zotlabs/Storage/Browser.php:279 msgid "Total" -msgstr "" +msgstr "合計" #: ../../Zotlabs/Storage/Browser.php:281 msgid "Shared" -msgstr "" +msgstr "共有" #: ../../Zotlabs/Storage/Browser.php:283 msgid "Add Files" -msgstr "" +msgstr "追加ファイル" #: ../../Zotlabs/Storage/Browser.php:367 #, php-format msgid "You are using %1$s of your available file storage." -msgstr "" +msgstr "使用可能なファイルストレージ%1$sを使用しています。" #: ../../Zotlabs/Storage/Browser.php:372 #, php-format msgid "You are using %1$s of %2$s available file storage. (%3$s%)" -msgstr "" +msgstr "%1$sの%2$s使用可能なファイルストレージを使用しています。 ( %3$s &#37;)" #: ../../Zotlabs/Storage/Browser.php:383 msgid "WARNING:" -msgstr "" +msgstr "警告:" #: ../../Zotlabs/Storage/Browser.php:395 msgid "Create new folder" -msgstr "" +msgstr "新しいフォルダーを作成" #: ../../Zotlabs/Storage/Browser.php:397 msgid "Upload file" -msgstr "" +msgstr "ファイルをアップロードする" #: ../../Zotlabs/Storage/Browser.php:410 msgid "Drop files here to immediately upload" -msgstr "" +msgstr "ここにファイルをドロップして、すぐにアップロードします" #: ../../Zotlabs/Widget/Activity.php:50 msgctxt "widget" msgid "Activity" -msgstr "" +msgstr "アクティビティ" #: ../../Zotlabs/Widget/Activity_filter.php:36 #, php-format msgid "Show posts related to the %s privacy group" -msgstr "" +msgstr "%sプライバシーグループに関連する投稿を表示" #: ../../Zotlabs/Widget/Activity_filter.php:45 msgid "Show my privacy groups" @@ -11546,55 +11546,55 @@ msgstr "自分のプライバシーグループを表示する" #: ../../Zotlabs/Widget/Activity_filter.php:66 msgid "Show posts to this forum" -msgstr "" +msgstr "このフォーラムへの投稿を表示" #: ../../Zotlabs/Widget/Activity_filter.php:73 #: ../../Zotlabs/Widget/Forums.php:100 #: ../../Zotlabs/Widget/Notifications.php:119 #: ../../Zotlabs/Widget/Notifications.php:120 msgid "Forums" -msgstr "" +msgstr "フォーラム" #: ../../Zotlabs/Widget/Activity_filter.php:77 msgid "Show forums" -msgstr "" +msgstr "フォーラムを表示" #: ../../Zotlabs/Widget/Activity_filter.php:91 msgid "Starred Posts" -msgstr "" +msgstr "スター付き投稿" #: ../../Zotlabs/Widget/Activity_filter.php:95 msgid "Show posts that I have starred" -msgstr "" +msgstr "スターを付けた投稿を表示" #: ../../Zotlabs/Widget/Activity_filter.php:106 msgid "Personal Posts" -msgstr "" +msgstr "個人的な投稿" #: ../../Zotlabs/Widget/Activity_filter.php:110 msgid "Show posts that mention or involve me" -msgstr "" +msgstr "自分に言及または関与している投稿を表示する" #: ../../Zotlabs/Widget/Activity_filter.php:131 #, php-format msgid "Show posts that I have filed to %s" -msgstr "" +msgstr "%s提出した投稿を表示" #: ../../Zotlabs/Widget/Activity_filter.php:141 msgid "Show filed post categories" -msgstr "" +msgstr "提出済みの投稿カテゴリを表示" #: ../../Zotlabs/Widget/Activity_filter.php:155 msgid "Panel search" -msgstr "" +msgstr "パネル検索" #: ../../Zotlabs/Widget/Activity_filter.php:165 msgid "Filter by name" -msgstr "" +msgstr "名前で絞り込む" #: ../../Zotlabs/Widget/Activity_filter.php:180 msgid "Remove active filter" -msgstr "" +msgstr "アクティブなフィルターを削除" #: ../../Zotlabs/Widget/Activity_filter.php:196 msgid "ters" @@ -11630,7 +11630,7 @@ msgstr "投稿の並べ替え" #: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 msgid "Member registrations waiting for confirmation" -msgstr "" +msgstr "確認待ちの会員登録" #: ../../Zotlabs/Widget/Admin.php:29 msgid "Inspect queue" @@ -11674,216 +11674,216 @@ msgstr "読みー書き" #: ../../Zotlabs/Widget/Cdav.php:43 msgid "Read-only" -msgstr "" +msgstr "読み取り専用" #: ../../Zotlabs/Widget/Cdav.php:117 msgid "My Calendars" -msgstr "" +msgstr "私のカレンダー" #: ../../Zotlabs/Widget/Cdav.php:119 msgid "Shared Calendars" -msgstr "" +msgstr "共有カレンダー" #: ../../Zotlabs/Widget/Cdav.php:123 msgid "Share this calendar" -msgstr "" +msgstr "このカレンダーを共有する" #: ../../Zotlabs/Widget/Cdav.php:125 msgid "Calendar name and color" -msgstr "" +msgstr "カレンダーの名前と色" #: ../../Zotlabs/Widget/Cdav.php:127 msgid "Create new calendar" -msgstr "" +msgstr "新しいカレンダーを作成" #: ../../Zotlabs/Widget/Cdav.php:129 msgid "Calendar Name" -msgstr "" +msgstr "カレンダー名" #: ../../Zotlabs/Widget/Cdav.php:130 msgid "Calendar Tools" -msgstr "" +msgstr "カレンダーツール" #: ../../Zotlabs/Widget/Cdav.php:131 msgid "Import calendar" -msgstr "" +msgstr "カレンダーをインポート" #: ../../Zotlabs/Widget/Cdav.php:132 msgid "Select a calendar to import to" -msgstr "" +msgstr "インポートするカレンダーを選択します" #: ../../Zotlabs/Widget/Cdav.php:159 msgid "Addressbooks" -msgstr "" +msgstr "アドレス帳" #: ../../Zotlabs/Widget/Cdav.php:161 msgid "Addressbook name" -msgstr "" +msgstr "アドレス帳名" #: ../../Zotlabs/Widget/Cdav.php:163 msgid "Create new addressbook" -msgstr "" +msgstr "新しいアドレス帳を作成" #: ../../Zotlabs/Widget/Cdav.php:164 msgid "Addressbook Name" -msgstr "" +msgstr "アドレス帳名" #: ../../Zotlabs/Widget/Cdav.php:166 msgid "Addressbook Tools" -msgstr "" +msgstr "アドレス帳ツール" #: ../../Zotlabs/Widget/Cdav.php:167 msgid "Import addressbook" -msgstr "" +msgstr "アドレス帳をインポート" #: ../../Zotlabs/Widget/Cdav.php:168 msgid "Select an addressbook to import to" -msgstr "" +msgstr "インポートするアドレス帳を選択します" #: ../../Zotlabs/Widget/Chatroom_list.php:20 msgid "Overview" -msgstr "" +msgstr "概要" #: ../../Zotlabs/Widget/Chatroom_members.php:11 msgid "Chat Members" -msgstr "" +msgstr "チャットメンバー" #: ../../Zotlabs/Widget/Conversations.php:17 msgid "Received Messages" -msgstr "" +msgstr "受信したメッセージ" #: ../../Zotlabs/Widget/Conversations.php:21 msgid "Sent Messages" -msgstr "" +msgstr "メッセージを送った" #: ../../Zotlabs/Widget/Conversations.php:25 msgid "Conversations" -msgstr "" +msgstr "会話" #: ../../Zotlabs/Widget/Conversations.php:37 msgid "No messages." -msgstr "" +msgstr "メッセージはありません。" #: ../../Zotlabs/Widget/Conversations.php:57 msgid "Delete conversation" -msgstr "" +msgstr "会話を削除" #: ../../Zotlabs/Widget/Cover_photo.php:65 msgid "Click to show more" -msgstr "" +msgstr "クリックして詳細を表示" #: ../../Zotlabs/Widget/Eventstools.php:13 msgid "Events Tools" -msgstr "" +msgstr "イベントツール" #: ../../Zotlabs/Widget/Eventstools.php:14 msgid "Export Calendar" -msgstr "" +msgstr "カレンダーをエクスポート" #: ../../Zotlabs/Widget/Eventstools.php:15 msgid "Import Calendar" -msgstr "" +msgstr "カレンダーをインポート" #: ../../Zotlabs/Widget/Follow.php:22 #, php-format msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "" +msgstr "%2 $ .0fの%1 $ .0fが接続を許可されています。" #: ../../Zotlabs/Widget/Follow.php:29 msgid "Add New Connection" -msgstr "" +msgstr "新しい接続を追加" #: ../../Zotlabs/Widget/Follow.php:30 msgid "Enter channel address" -msgstr "" +msgstr "チャンネルのアドレスを入力してください" #: ../../Zotlabs/Widget/Follow.php:31 msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "" +msgstr "例:bob @ example.com、https://example.com/barbara" #: ../../Zotlabs/Widget/Hq_controls.php:14 msgid "HQ Control Panel" -msgstr "" +msgstr "HQコントロールパネル" #: ../../Zotlabs/Widget/Hq_controls.php:17 msgid "Create a new post" -msgstr "" +msgstr "新しい投稿を作成する" #: ../../Zotlabs/Widget/Mailmenu.php:13 msgid "Private Mail Menu" -msgstr "" +msgstr "プライベートメールメニュー" #: ../../Zotlabs/Widget/Mailmenu.php:15 msgid "Combined View" -msgstr "" +msgstr "複合ビュー" #: ../../Zotlabs/Widget/Mailmenu.php:20 msgid "Inbox" -msgstr "" +msgstr "受信トレイ" #: ../../Zotlabs/Widget/Mailmenu.php:25 msgid "Outbox" -msgstr "" +msgstr "送信トレイ" #: ../../Zotlabs/Widget/Mailmenu.php:30 msgid "New Message" -msgstr "" +msgstr "新しいメッセージ" #: ../../Zotlabs/Widget/Newmember.php:31 msgid "Profile Creation" -msgstr "" +msgstr "プロファイル作成" #: ../../Zotlabs/Widget/Newmember.php:33 msgid "Upload profile photo" -msgstr "" +msgstr "プロフィール写真をアップロード" #: ../../Zotlabs/Widget/Newmember.php:34 msgid "Upload cover photo" -msgstr "" +msgstr "カバー写真をアップロード" #: ../../Zotlabs/Widget/Newmember.php:38 msgid "Find and Connect with others" -msgstr "" +msgstr "他の人を見つけてつながる" #: ../../Zotlabs/Widget/Newmember.php:40 msgid "View the directory" -msgstr "" +msgstr "ディレクトリを表示する" #: ../../Zotlabs/Widget/Newmember.php:42 msgid "Manage your connections" -msgstr "" +msgstr "接続を管理する" #: ../../Zotlabs/Widget/Newmember.php:45 msgid "Communicate" -msgstr "" +msgstr "通信する" #: ../../Zotlabs/Widget/Newmember.php:47 msgid "View your channel homepage" -msgstr "" +msgstr "チャンネルのホームページを表示する" #: ../../Zotlabs/Widget/Newmember.php:48 msgid "View your network stream" -msgstr "" +msgstr "ネットワークストリームを表示する" #: ../../Zotlabs/Widget/Newmember.php:54 msgid "Documentation" -msgstr "" +msgstr "ドキュメンテーション" #: ../../Zotlabs/Widget/Newmember.php:57 msgid "Missing Features?" -msgstr "" +msgstr "機能がありませんか?" #: ../../Zotlabs/Widget/Newmember.php:59 msgid "Pin apps to navigation bar" -msgstr "" +msgstr "アプリをナビゲーションバーに固定する" #: ../../Zotlabs/Widget/Newmember.php:60 msgid "Install more apps" -msgstr "" +msgstr "さらにアプリをインストールする" #: ../../Zotlabs/Widget/Newmember.php:71 msgid "View public stream" -msgstr "" +msgstr "公開ストリームを表示" #: ../../Zotlabs/Widget/Notifications.php:16 msgid "New Network Activity" @@ -11933,51 +11933,51 @@ msgstr "全部既読にする" #: ../../Zotlabs/Widget/Notifications.php:54 msgid "New Mails" -msgstr "" +msgstr "新着メール" #: ../../Zotlabs/Widget/Notifications.php:55 msgid "New Mails Notifications" -msgstr "" +msgstr "新規メール通知" #: ../../Zotlabs/Widget/Notifications.php:58 msgid "View your private mails" -msgstr "" +msgstr "プライベートメールを表示する" #: ../../Zotlabs/Widget/Notifications.php:61 msgid "Mark all messages seen" -msgstr "" +msgstr "すべてのメッセージを確認済みにする" #: ../../Zotlabs/Widget/Notifications.php:69 msgid "New Events" -msgstr "" +msgstr "新しいイベント" #: ../../Zotlabs/Widget/Notifications.php:70 msgid "New Events Notifications" -msgstr "" +msgstr "新しいイベント通知" #: ../../Zotlabs/Widget/Notifications.php:73 msgid "View events" -msgstr "" +msgstr "イベントを見る" #: ../../Zotlabs/Widget/Notifications.php:76 msgid "Mark all events seen" -msgstr "" +msgstr "すべてのイベントを確認済みにする" #: ../../Zotlabs/Widget/Notifications.php:85 msgid "New Connections Notifications" -msgstr "" +msgstr "新しい接続通知" #: ../../Zotlabs/Widget/Notifications.php:88 msgid "View all connections" -msgstr "" +msgstr "すべての接続を表示" #: ../../Zotlabs/Widget/Notifications.php:96 msgid "New Files" -msgstr "" +msgstr "新しいファイル" #: ../../Zotlabs/Widget/Notifications.php:97 msgid "New Files Notifications" -msgstr "" +msgstr "新しいファイルの通知" #: ../../Zotlabs/Widget/Notifications.php:104 #: ../../Zotlabs/Widget/Notifications.php:105 @@ -12018,19 +12018,19 @@ msgstr "画像/イメージ" #: ../../Zotlabs/Widget/Rating.php:51 msgid "Rating Tools" -msgstr "" +msgstr "評価ツール" #: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 msgid "Rate Me" -msgstr "" +msgstr "私を評価" #: ../../Zotlabs/Widget/Rating.php:60 msgid "View Ratings" -msgstr "" +msgstr "評価を見る" #: ../../Zotlabs/Widget/Savedsearch.php:75 msgid "Remove term" -msgstr "" +msgstr "用語を削除" #: ../../Zotlabs/Widget/Settings_menu.php:32 msgid "Account settings" @@ -12081,9 +12081,10 @@ msgstr "ページ名" msgid "" "Remote authentication blocked. You are logged into this site locally. Please " "logout and retry." -msgstr "" +msgstr "リモート認証がブロックされました。このサイトにローカルでログインしています。ログアウトして再試行してください。" #: ../../Zotlabs/Zot/Auth.php:264 #, php-format msgid "Welcome %s. Remote authentication successful." msgstr "ようこそ%s!!リモートログインは成功しました!" + diff --git a/view/ja/hstrings.php b/view/ja/hstrings.php index 4d5d1afcd..03ab91920 100644 --- a/view/ja/hstrings.php +++ b/view/ja/hstrings.php @@ -9,268 +9,268 @@ App::$strings["Remote Authentication"] = "リモートログイン"; App::$strings["Login/Email"] = "ログイン/Eメール"; App::$strings["Password"] = "パスワード"; App::$strings["Remember me"] = "記憶する"; -App::$strings["No"] = ""; -App::$strings["Yes"] = ""; +App::$strings["No"] = "いいえ"; +App::$strings["Yes"] = "はい"; App::$strings["Forgot your password?"] = "パスワードを忘れましたか?"; App::$strings["Password Reset"] = "パスワードのリセット"; -App::$strings["[\$Projectname] Website SSL error for %s"] = ""; +App::$strings["[\$Projectname] Website SSL error for %s"] = "[$ Projectname] %s WebサイトSSLエラー"; App::$strings["Website SSL certificate is not valid. Please correct."] = "ウェブサイトのssl認証ができません。修正してください。"; -App::$strings["[\$Projectname] Cron tasks not running on %s"] = ""; +App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[$ Projectname] Cronタスクが%s実行されていません"; App::$strings["Cron/Scheduled tasks not running."] = "Cron/スケジュール済みタスクが実行されていません。"; -App::$strings["never"] = "全く"; +App::$strings["never"] = "一度もなし"; App::$strings["Not a valid email address"] = "未認証のメールアドレス"; -App::$strings["Your email domain is not among those allowed on this site"] = "あなたのメールドメインはこのサイトでは許可されていません。"; +App::$strings["Your email domain is not among those allowed on this site"] = "あなたのメールアドレスのドメインはこのサイトでは許可されていません。"; App::$strings["Your email address is already registered at this site."] = "あなたのメールアドレスは既にこのサイトに登録されています。"; -App::$strings["An invitation is required."] = "招待が必要です。"; -App::$strings["Invitation could not be verified."] = "招待が認証されませんでした。"; +App::$strings["An invitation is required."] = "招待状が必要です。"; +App::$strings["Invitation could not be verified."] = "招待状が認証されませんでした。"; App::$strings["Please enter the required information."] = "必須事項を入力してください。"; App::$strings["Failed to store account information."] = "アカウント情報の保存に失敗しました。"; -App::$strings["Registration confirmation for %s"] = ""; -App::$strings["Registration request at %s"] = ""; +App::$strings["Registration confirmation for %s"] = "登録確認: %s"; +App::$strings["Registration request at %s"] = "登録リクエスト: %s"; App::$strings["your registration password"] = "あなたの登録されているパスワード"; -App::$strings["Registration details for %s"] = ""; -App::$strings["Account approved."] = ""; -App::$strings["Registration revoked for %s"] = ""; +App::$strings["Registration details for %s"] = "登録の詳細: %s"; +App::$strings["Account approved."] = "アカウントが承認されました。"; +App::$strings["Registration revoked for %s"] = "%sの登録が取り消されました"; App::$strings["Click here to upgrade."] = "ここをクリックしてアップグレード"; -App::$strings["This action exceeds the limits set by your subscription plan."] = ""; -App::$strings["This action is not available under your subscription plan."] = ""; -App::$strings["Visible to your default audience"] = ""; +App::$strings["This action exceeds the limits set by your subscription plan."] = "このアクションは、サブスクリプションプランで設定された制限を超えています。"; +App::$strings["This action is not available under your subscription plan."] = "このアクションは、サブスクリプションプランでは使用できません。"; +App::$strings["Visible to your default audience"] = "デフォルトの視聴者に表示されます"; App::$strings["__ctx:acl__ Profile"] = "プロファイル"; App::$strings["Only me"] = "自分のみ"; -App::$strings["Who can see this?"] = "誰が見れる?"; -App::$strings["Custom selection"] = ""; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = ""; -App::$strings["Show"] = ""; -App::$strings["Don't show"] = ""; -App::$strings["Search"] = ""; -App::$strings["Permissions"] = ""; -App::$strings["Close"] = ""; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = ""; -App::$strings[" and "] = ""; -App::$strings["public profile"] = ""; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = ""; -App::$strings["Visit %1\$s's %2\$s"] = ""; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; -App::$strings["Permission denied."] = ""; -App::$strings["Item was not found."] = ""; -App::$strings["Unknown error."] = ""; -App::$strings["No source file."] = ""; -App::$strings["Cannot locate file to replace"] = ""; -App::$strings["Cannot locate file to revise/update"] = ""; -App::$strings["File exceeds size limit of %d"] = ""; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = ""; -App::$strings["File upload failed. Possible system limit or action terminated."] = ""; -App::$strings["Stored file could not be verified. Upload failed."] = ""; -App::$strings["Path not available."] = ""; -App::$strings["Empty pathname"] = ""; -App::$strings["duplicate filename or path"] = ""; -App::$strings["Path not found."] = ""; -App::$strings["mkdir failed."] = ""; -App::$strings["database storage failed."] = ""; -App::$strings["Empty path"] = ""; -App::$strings["Delegation session ended."] = ""; -App::$strings["Logged out."] = ""; -App::$strings["Email validation is incomplete. Please check your email."] = ""; -App::$strings["Failed authentication"] = ""; -App::$strings["Login failed."] = ""; -App::$strings["Image/photo"] = ""; -App::$strings["Encrypted content"] = ""; -App::$strings["Install %1\$s element %2\$s"] = ""; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = ""; -App::$strings["webpage"] = ""; -App::$strings["layout"] = ""; -App::$strings["block"] = ""; -App::$strings["menu"] = ""; -App::$strings["card"] = ""; -App::$strings["article"] = ""; -App::$strings["post"] = ""; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = ""; -App::$strings["Click to open/close"] = ""; -App::$strings["spoiler"] = ""; -App::$strings["View article"] = ""; -App::$strings["View summary"] = ""; -App::$strings["Different viewers will see this text differently"] = ""; -App::$strings["$1 wrote:"] = ""; -App::$strings["%1\$s's bookmarks"] = ""; -App::$strings["Unable to obtain identity information from database"] = ""; -App::$strings["Empty name"] = ""; -App::$strings["Name too long"] = ""; -App::$strings["No account identifier"] = ""; -App::$strings["Nickname is required."] = ""; -App::$strings["Reserved nickname. Please choose another."] = ""; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = ""; -App::$strings["Unable to retrieve created identity"] = ""; -App::$strings["Default Profile"] = ""; -App::$strings["Friends"] = ""; -App::$strings["Unable to retrieve modified identity"] = ""; -App::$strings["Requested channel is not available."] = ""; -App::$strings["Requested profile is not available."] = ""; -App::$strings["Change profile photo"] = ""; -App::$strings["Edit Profiles"] = ""; -App::$strings["Edit"] = ""; -App::$strings["Create New Profile"] = ""; -App::$strings["Edit Profile"] = ""; -App::$strings["Profile Image"] = ""; -App::$strings["Visible to everybody"] = ""; -App::$strings["Edit visibility"] = ""; -App::$strings["Connect"] = ""; -App::$strings["Location:"] = ""; -App::$strings["Gender:"] = ""; -App::$strings["Status:"] = ""; -App::$strings["Homepage:"] = ""; -App::$strings["Online Now"] = ""; -App::$strings["Change your profile photo"] = ""; -App::$strings["Female"] = ""; -App::$strings["Male"] = ""; -App::$strings["Trans"] = ""; -App::$strings["Neuter"] = ""; -App::$strings["Non-specific"] = ""; -App::$strings["Full Name:"] = ""; -App::$strings["Like this channel"] = ""; +App::$strings["Who can see this?"] = "表示できる人"; +App::$strings["Custom selection"] = "カスタム選択"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "表示を許可するには、「表示」を選択します。 「表示しない」を使用すると、「表示」の範囲を上書きおよび制限できます"; +App::$strings["Show"] = "表示"; +App::$strings["Don't show"] = "非表示"; +App::$strings["Search"] = "検索"; +App::$strings["Permissions"] = "権限"; +App::$strings["Close"] = "閉じる"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "投稿を共有した後、投稿%s権限%sを%sに変更することはできません。これらの権限は、投稿の閲覧を許可するユーザーを設定します。"; +App::$strings[" and "] = "そして"; +App::$strings["public profile"] = "公開プロフィール"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$sが%2\$sを&ldquo;に変更しました%3\$s &rdquo;"; +App::$strings["Visit %1\$s's %2\$s"] = "%1\$sの%2\$sアクセス"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$sには更新された%2\$s 、 %3\$s変更しています。"; +App::$strings["Permission denied."] = "アクセス拒否。"; +App::$strings["Item was not found."] = "アイテムが見つかりませんでした。"; +App::$strings["Unknown error."] = "未知のエラー。"; +App::$strings["No source file."] = "ソースファイルがありません。"; +App::$strings["Cannot locate file to replace"] = "置き換えるファイルが見つかりません"; +App::$strings["Cannot locate file to revise/update"] = "修正/更新するファイルが見つかりません"; +App::$strings["File exceeds size limit of %d"] = "ファイルはサイズ制限%dを超えています"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "%1 $ .0fメガバイトの添付ファイルストレージの制限に達しました。"; +App::$strings["File upload failed. Possible system limit or action terminated."] = "ファイルのアップロードに失敗しました。可能なシステム制限またはアクションが終了しました。"; +App::$strings["Stored file could not be verified. Upload failed."] = "保存されたファイルを確認できませんでした。アップロードに失敗しました。"; +App::$strings["Path not available."] = "パスが利用できません。"; +App::$strings["Empty pathname"] = "空のパス名"; +App::$strings["duplicate filename or path"] = "ファイル名またはパスが重複しています"; +App::$strings["Path not found."] = "パスが見つかりません。"; +App::$strings["mkdir failed."] = "mkdirが失敗しました。"; +App::$strings["database storage failed."] = "データベースストレージが失敗しました。"; +App::$strings["Empty path"] = "空のパス"; +App::$strings["Delegation session ended."] = "委任セッションは終了しました。"; +App::$strings["Logged out."] = "ログアウトしました。"; +App::$strings["Email validation is incomplete. Please check your email."] = "メールの検証が不完全です。メールを確認してください。"; +App::$strings["Failed authentication"] = "認証失敗"; +App::$strings["Login failed."] = "ログインに失敗しました。"; +App::$strings["Image/photo"] = "画像/写真"; +App::$strings["Encrypted content"] = "暗号化されたコンテンツ"; +App::$strings["Install %1\$s element %2\$s"] = "%1\$s要素%2\$sをインストール"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "この投稿にはインストール可能な%s要素が含まれていますが、このサイトにインストールする権限がありません。"; +App::$strings["webpage"] = "ウェブページ"; +App::$strings["layout"] = "レイアウト"; +App::$strings["block"] = "ブロック"; +App::$strings["menu"] = "メニュー"; +App::$strings["card"] = "カード"; +App::$strings["article"] = "記事"; +App::$strings["post"] = "役職"; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$sは次の%2\$s %3\$s書きました"; +App::$strings["Click to open/close"] = "クリックして開閉"; +App::$strings["spoiler"] = "スポイラー"; +App::$strings["View article"] = "記事を見る"; +App::$strings["View summary"] = "概要を見る"; +App::$strings["Different viewers will see this text differently"] = "視聴者が異なれば、このテキストの見方も異なります"; +App::$strings["$1 wrote:"] = "$ 1の書き込み:"; +App::$strings["%1\$s's bookmarks"] = "%1\$sのブックマーク"; +App::$strings["Unable to obtain identity information from database"] = "データベースからID情報を取得できません"; +App::$strings["Empty name"] = "空の名前"; +App::$strings["Name too long"] = "名前が長すぎます"; +App::$strings["No account identifier"] = "アカウント識別子なし"; +App::$strings["Nickname is required."] = "ニックネームが必要です。"; +App::$strings["Reserved nickname. Please choose another."] = "予約済みのニックネーム。別のものを選択してください。"; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "ニックネームにサポートされていない文字が含まれているか、このサイトで既に使用されています。"; +App::$strings["Unable to retrieve created identity"] = "作成されたIDを取得できません"; +App::$strings["Default Profile"] = "デフォルトプロファイル"; +App::$strings["Friends"] = "友だち"; +App::$strings["Unable to retrieve modified identity"] = "変更されたIDを取得できません"; +App::$strings["Requested channel is not available."] = "要求されたチャンネルは利用できません。"; +App::$strings["Requested profile is not available."] = "要求されたプロファイルは利用できません。"; +App::$strings["Change profile photo"] = "プロフィール写真を変更"; +App::$strings["Edit Profiles"] = "プロファイルを編集する"; +App::$strings["Edit"] = "編集"; +App::$strings["Create New Profile"] = "新しいプロファイルを作成"; +App::$strings["Edit Profile"] = "プロファイル編集"; +App::$strings["Profile Image"] = "プロフィール画像"; +App::$strings["Visible to everybody"] = "みんなに見える"; +App::$strings["Edit visibility"] = "可視性を編集"; +App::$strings["Connect"] = "つなぐ"; +App::$strings["Location:"] = "ロケーション:"; +App::$strings["Gender:"] = "性別:"; +App::$strings["Status:"] = "状態:"; +App::$strings["Homepage:"] = "ホームページ:"; +App::$strings["Online Now"] = "今オンラインです"; +App::$strings["Change your profile photo"] = "プロフィール写真を変更する"; +App::$strings["Female"] = "女性"; +App::$strings["Male"] = "男性"; +App::$strings["Trans"] = "トランス"; +App::$strings["Neuter"] = "中性"; +App::$strings["Non-specific"] = "非特異的"; +App::$strings["Full Name:"] = "フルネーム:"; +App::$strings["Like this channel"] = "このチャンネルのように"; App::$strings["__ctx:noun__ Like"] = array( - 0 => "", - 1 => "", + 0 => "いいね", + 1 => "いいね", ); -App::$strings["j F, Y"] = ""; -App::$strings["j F"] = ""; -App::$strings["Birthday:"] = ""; -App::$strings["Age:"] = ""; -App::$strings["for %1\$d %2\$s"] = ""; -App::$strings["Tags:"] = ""; -App::$strings["Sexual Preference:"] = ""; -App::$strings["Hometown:"] = ""; -App::$strings["Political Views:"] = ""; -App::$strings["Religion:"] = ""; -App::$strings["About:"] = ""; -App::$strings["Hobbies/Interests:"] = ""; -App::$strings["Likes:"] = ""; -App::$strings["Dislikes:"] = ""; -App::$strings["Contact information and Social Networks:"] = ""; -App::$strings["My other channels:"] = ""; -App::$strings["Musical interests:"] = ""; -App::$strings["Books, literature:"] = ""; -App::$strings["Television:"] = ""; -App::$strings["Film/dance/culture/entertainment:"] = ""; -App::$strings["Love/Romance:"] = ""; -App::$strings["Work/employment:"] = ""; -App::$strings["School/education:"] = ""; -App::$strings["Profile"] = ""; -App::$strings["Like this thing"] = ""; -App::$strings["Export"] = ""; -App::$strings["cover photo"] = ""; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = ""; -App::$strings["Authenticate"] = ""; -App::$strings["Account '%s' deleted"] = ""; -App::$strings["New window"] = ""; -App::$strings["Open the selected location in a different window or browser tab"] = ""; -App::$strings["Mobile"] = ""; -App::$strings["Home"] = ""; -App::$strings["Home, Voice"] = ""; -App::$strings["Home, Fax"] = ""; -App::$strings["Work"] = ""; -App::$strings["Work, Voice"] = ""; -App::$strings["Work, Fax"] = ""; -App::$strings["Other"] = ""; +App::$strings["j F, Y"] = "j F、Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "お誕生日:"; +App::$strings["Age:"] = "年齢:"; +App::$strings["for %1\$d %2\$s"] = "%1\$d %2\$s"; +App::$strings["Tags:"] = "タグ:"; +App::$strings["Sexual Preference:"] = "性的嗜好:"; +App::$strings["Hometown:"] = "出身地:"; +App::$strings["Political Views:"] = "政見:"; +App::$strings["Religion:"] = "宗教:"; +App::$strings["About:"] = "約:"; +App::$strings["Hobbies/Interests:"] = "趣味/興味:"; +App::$strings["Likes:"] = "好きなもの:"; +App::$strings["Dislikes:"] = "嫌いなもの:"; +App::$strings["Contact information and Social Networks:"] = "連絡先情報とソーシャルネットワーク:"; +App::$strings["My other channels:"] = "私の他のチャンネル:"; +App::$strings["Musical interests:"] = "音楽的興味:"; +App::$strings["Books, literature:"] = "書籍、文学:"; +App::$strings["Television:"] = "テレビ:"; +App::$strings["Film/dance/culture/entertainment:"] = "映画/ダンス/文化/エンターテイメント:"; +App::$strings["Love/Romance:"] = "愛/ロマンス:"; +App::$strings["Work/employment:"] = "仕事/雇用:"; +App::$strings["School/education:"] = "学校教育:"; +App::$strings["Profile"] = "プロフィール"; +App::$strings["Like this thing"] = "このように"; +App::$strings["Export"] = "輸出する"; +App::$strings["cover photo"] = "カバー写真"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "チャンネルアドレスを入力します(例:channel@example.com)"; +App::$strings["Authenticate"] = "認証する"; +App::$strings["Account '%s' deleted"] = "アカウント「 %s 」を削除しました"; +App::$strings["New window"] = "新しい窓"; +App::$strings["Open the selected location in a different window or browser tab"] = "選択した場所を別のウィンドウまたはブラウザタブで開きます"; +App::$strings["Mobile"] = "モバイル"; +App::$strings["Home"] = "ホーム"; +App::$strings["Home, Voice"] = "ホーム、ボイス"; +App::$strings["Home, Fax"] = "ホーム、ファックス"; +App::$strings["Work"] = "作業"; +App::$strings["Work, Voice"] = "仕事、声"; +App::$strings["Work, Fax"] = "仕事、ファックス"; +App::$strings["Other"] = "その他"; App::$strings["%d invitation available"] = array( - 0 => "", - 1 => "", + 0 => "%d招待可能", + 1 => "%d招待可能", ); -App::$strings["Advanced"] = ""; -App::$strings["Find Channels"] = ""; -App::$strings["Enter name or interest"] = ""; -App::$strings["Connect/Follow"] = ""; -App::$strings["Examples: Robert Morgenstein, Fishing"] = ""; -App::$strings["Find"] = ""; -App::$strings["Channel Suggestions"] = ""; -App::$strings["Random Profile"] = ""; -App::$strings["Invite Friends"] = ""; -App::$strings["Advanced example: name=fred and country=iceland"] = ""; -App::$strings["Saved Folders"] = ""; -App::$strings["Everything"] = ""; -App::$strings["Categories"] = ""; -App::$strings["Common Connections"] = ""; -App::$strings["View all %d common connections"] = ""; -App::$strings["photo"] = ""; -App::$strings["event"] = ""; -App::$strings["channel"] = ""; -App::$strings["status"] = ""; -App::$strings["comment"] = ""; -App::$strings["%1\$s likes %2\$s's %3\$s"] = ""; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = ""; -App::$strings["likes %1\$s's %2\$s"] = ""; -App::$strings["doesn't like %1\$s's %2\$s"] = ""; -App::$strings["%1\$s is now connected with %2\$s"] = ""; -App::$strings["%1\$s poked %2\$s"] = ""; -App::$strings["poked"] = ""; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = ""; -App::$strings["This is an unsaved preview"] = ""; -App::$strings["__ctx:title__ Likes"] = ""; -App::$strings["__ctx:title__ Dislikes"] = ""; -App::$strings["__ctx:title__ Agree"] = ""; -App::$strings["__ctx:title__ Disagree"] = ""; -App::$strings["__ctx:title__ Abstain"] = ""; -App::$strings["__ctx:title__ Attending"] = ""; -App::$strings["__ctx:title__ Not attending"] = ""; -App::$strings["__ctx:title__ Might attend"] = ""; -App::$strings["Select"] = ""; -App::$strings["Delete"] = ""; -App::$strings["Toggle Star Status"] = ""; -App::$strings["Private Message"] = ""; -App::$strings["Message signature validated"] = ""; -App::$strings["Message signature incorrect"] = ""; -App::$strings["Approve"] = ""; -App::$strings["View %s's profile @ %s"] = ""; -App::$strings["Categories:"] = ""; -App::$strings["Filed under:"] = ""; -App::$strings["from %s"] = ""; -App::$strings["last edited: %s"] = ""; -App::$strings["Expires: %s"] = ""; -App::$strings["View in context"] = ""; -App::$strings["Please wait"] = ""; -App::$strings["remove"] = ""; -App::$strings["Loading..."] = ""; -App::$strings["Conversation Tools"] = ""; -App::$strings["Delete Selected Items"] = ""; -App::$strings["View Source"] = ""; -App::$strings["Follow Thread"] = ""; -App::$strings["Unfollow Thread"] = ""; -App::$strings["View Profile"] = ""; -App::$strings["Recent Activity"] = ""; -App::$strings["Edit Connection"] = ""; -App::$strings["Message"] = ""; -App::$strings["Ratings"] = ""; -App::$strings["Poke"] = ""; -App::$strings["Unknown"] = ""; -App::$strings["%s likes this."] = ""; -App::$strings["%s doesn't like this."] = ""; +App::$strings["Advanced"] = "高度な"; +App::$strings["Find Channels"] = "チャンネルを探す"; +App::$strings["Enter name or interest"] = "名前または興味を入力してください"; +App::$strings["Connect/Follow"] = "接続/フォロー"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "例:Robert Morgenstein、釣り"; +App::$strings["Find"] = "見つける"; +App::$strings["Channel Suggestions"] = "チャンネルの提案"; +App::$strings["Random Profile"] = "ランダムプロファイル"; +App::$strings["Invite Friends"] = "友達を招待"; +App::$strings["Advanced example: name=fred and country=iceland"] = "高度な例:name = fredおよびcountry = iceland"; +App::$strings["Saved Folders"] = "保存されたフォルダー"; +App::$strings["Everything"] = "すべて"; +App::$strings["Categories"] = "カテゴリー"; +App::$strings["Common Connections"] = "共通接続"; +App::$strings["View all %d common connections"] = "すべての%d共通接続を表示"; +App::$strings["photo"] = "写真"; +App::$strings["event"] = "出来事"; +App::$strings["channel"] = "チャネル"; +App::$strings["status"] = "状態"; +App::$strings["comment"] = "コメント"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$sが%2\$sの%3\$s気に入っています"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$s好きではありません"; +App::$strings["likes %1\$s's %2\$s"] = "%1\$sの%2\$sが好き"; +App::$strings["doesn't like %1\$s's %2\$s"] = "%1\$sの%2\$sが気に入らない"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$sは%2\$s接続されました"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s %2\$sを突破しました"; +App::$strings["poked"] = "突く"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$sは%2\$s"; +App::$strings["This is an unsaved preview"] = "これは未保存のプレビューです"; +App::$strings["__ctx:title__ Likes"] = "いいね"; +App::$strings["__ctx:title__ Dislikes"] = "嫌い"; +App::$strings["__ctx:title__ Agree"] = "同意する"; +App::$strings["__ctx:title__ Disagree"] = "同意しない"; +App::$strings["__ctx:title__ Abstain"] = "棄権"; +App::$strings["__ctx:title__ Attending"] = "出席中"; +App::$strings["__ctx:title__ Not attending"] = "出席しない"; +App::$strings["__ctx:title__ Might attend"] = "出席するかもしれない"; +App::$strings["Select"] = "選択してください"; +App::$strings["Delete"] = "削除する"; +App::$strings["Toggle Star Status"] = "スターステータスの切り替え"; +App::$strings["Private Message"] = "プライベートメッセージ"; +App::$strings["Message signature validated"] = "検証されたメッセージ署名"; +App::$strings["Message signature incorrect"] = "メッセージ署名が正しくありません"; +App::$strings["Approve"] = "承認する"; +App::$strings["View %s's profile @ %s"] = "%sのプロフィール@ %s"; +App::$strings["Categories:"] = "カテゴリー:"; +App::$strings["Filed under:"] = "下に提出:"; +App::$strings["from %s"] = "%sから"; +App::$strings["last edited: %s"] = "最終編集: %s"; +App::$strings["Expires: %s"] = "有効期限: %s"; +App::$strings["View in context"] = "コンテキストで表示"; +App::$strings["Please wait"] = "お待ちください"; +App::$strings["remove"] = "取り除く"; +App::$strings["Loading..."] = "読み込み中..."; +App::$strings["Conversation Tools"] = "会話ツール"; +App::$strings["Delete Selected Items"] = "選択したアイテムを削除"; +App::$strings["View Source"] = "ソースを見る"; +App::$strings["Follow Thread"] = "スレッドをフォロー"; +App::$strings["Unfollow Thread"] = "スレッドをフォロー解除"; +App::$strings["View Profile"] = "プロフィールを見る"; +App::$strings["Recent Activity"] = "最近の活動"; +App::$strings["Edit Connection"] = "接続を編集"; +App::$strings["Message"] = "メッセージ"; +App::$strings["Ratings"] = "評価"; +App::$strings["Poke"] = "ポーク"; +App::$strings["Unknown"] = "道の"; +App::$strings["%s likes this."] = "%sはこれが好きです。"; +App::$strings["%s doesn't like this."] = "%sはこれを%sません。"; App::$strings["%2\$d people like this."] = array( - 0 => "", - 1 => "", + 0 => " %2\$d人このように。", + 1 => " %2\$d人このように。", ); App::$strings["%2\$d people don't like this."] = array( - 0 => "", - 1 => "", + 0 => " %2\$d人はこれが好きではありません。", + 1 => " %2\$d人はこれが好きではありません。", ); -App::$strings["and"] = ""; +App::$strings["and"] = "そして"; App::$strings[", and %d other people"] = array( - 0 => "", - 1 => "", + 0 => "、他%d人", + 1 => "、他%d人", ); -App::$strings["%s like this."] = ""; -App::$strings["%s don't like this."] = ""; -App::$strings["Set your location"] = ""; -App::$strings["Clear browser location"] = ""; -App::$strings["Insert web link"] = ""; -App::$strings["Embed (existing) photo from your photo albums"] = ""; -App::$strings["Please enter a link URL:"] = ""; -App::$strings["Tag term:"] = ""; -App::$strings["Where are you right now?"] = ""; -App::$strings["Choose images to embed"] = ""; -App::$strings["Choose an album"] = ""; -App::$strings["Choose a different album..."] = ""; +App::$strings["%s like this."] = "このような%s 。"; +App::$strings["%s don't like this."] = "%sはこれが好きではありません。"; +App::$strings["Set your location"] = "場所を設定する"; +App::$strings["Clear browser location"] = "ブラウザの場所をクリア"; +App::$strings["Insert web link"] = "Webリンクを挿入"; +App::$strings["Embed (existing) photo from your photo albums"] = "フォトアルバムから(既存の)写真を埋め込む"; +App::$strings["Please enter a link URL:"] = "リンクURLを入力してください:"; +App::$strings["Tag term:"] = "タグ用語:"; +App::$strings["Where are you right now?"] = "今どこにいますか?"; +App::$strings["Choose images to embed"] = "埋め込む画像を選択"; +App::$strings["Choose an album"] = "アルバムを選択してください"; +App::$strings["Choose a different album..."] = "別のアルバムを選択..."; App::$strings["Error getting album list"] = "アルバムリストの取得に失敗"; App::$strings["Error getting photo link"] = "フォトリンクの取得に失敗"; -App::$strings["Error getting album"] = ""; +App::$strings["Error getting album"] = "アルバムの取得エラー"; App::$strings["Comments enabled"] = "コメント有効"; App::$strings["Comments disabled"] = "コメント無効"; App::$strings["Preview"] = "プレビュー"; @@ -285,7 +285,7 @@ App::$strings["Code"] = "コード"; App::$strings["Attach/Upload file"] = "ファイルのアップロード"; App::$strings["Embed an image from your albums"] = "アルバムから画像を追加"; App::$strings["Cancel"] = "キャンセル"; -App::$strings["OK"] = ""; +App::$strings["OK"] = "OK"; App::$strings["Toggle voting"] = "投票のトグル"; App::$strings["Disable comments"] = "コメントの無効化"; App::$strings["Toggle comments"] = "コメントのトグル"; @@ -293,277 +293,277 @@ App::$strings["Title (optional)"] = "タイトル(任意)"; App::$strings["Categories (optional, comma-separated list)"] = "カテゴリー(任意、カンマで仕切り)"; App::$strings["Permission settings"] = "権限設定"; App::$strings["Other networks and post services"] = "他のネットワークと投稿サービス"; -App::$strings["Set expiration date"] = ""; -App::$strings["Set publish date"] = ""; -App::$strings["Encrypt text"] = ""; +App::$strings["Set expiration date"] = "有効期限を設定する"; +App::$strings["Set publish date"] = "公開日を設定する"; +App::$strings["Encrypt text"] = "テキストを暗号化する"; App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "", - 1 => "", + 0 => "嫌い", + 1 => "嫌い", ); App::$strings["__ctx:noun__ Attending"] = array( - 0 => "", - 1 => "", + 0 => "出席中", + 1 => "出席中", ); App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "", - 1 => "", + 0 => "出席しない", + 1 => "出席しない", ); App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "", - 1 => "", + 0 => "未定", + 1 => "未定", ); App::$strings["__ctx:noun__ Agree"] = array( - 0 => "", - 1 => "", + 0 => "同意する", + 1 => "同意する", ); App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "", - 1 => "", + 0 => "同意しない", + 1 => "同意しない", ); App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "", - 1 => "", + 0 => "棄権", + 1 => "棄権", ); -App::$strings["Miscellaneous"] = ""; -App::$strings["Birthday"] = ""; -App::$strings["Age: "] = ""; -App::$strings["YYYY-MM-DD or MM-DD"] = ""; -App::$strings["Required"] = ""; +App::$strings["Miscellaneous"] = "雑多"; +App::$strings["Birthday"] = "お誕生日"; +App::$strings["Age: "] = "年齢:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DDまたはMM-DD"; +App::$strings["Required"] = "必須"; App::$strings["less than a second ago"] = "ちょっと前"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = ""; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s前"; App::$strings["__ctx:relative_date__ year"] = array( - 0 => "", - 1 => "", + 0 => "年", + 1 => "年", ); App::$strings["__ctx:relative_date__ month"] = array( - 0 => "", - 1 => "", + 0 => "月", + 1 => "月", ); App::$strings["__ctx:relative_date__ week"] = array( - 0 => "", - 1 => "", + 0 => "週間", + 1 => "週間", ); App::$strings["__ctx:relative_date__ day"] = array( - 0 => "", - 1 => "", + 0 => "日", + 1 => "日", ); App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "", - 1 => "", + 0 => "時", + 1 => "時", ); App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "", - 1 => "", + 0 => "分", + 1 => "分", ); App::$strings["__ctx:relative_date__ second"] = array( - 0 => "", - 1 => "", + 0 => "第二", + 1 => "第二", ); -App::$strings["%1\$s's birthday"] = ""; -App::$strings["Happy Birthday %1\$s"] = ""; -App::$strings["Directory Options"] = ""; -App::$strings["Safe Mode"] = ""; -App::$strings["Public Forums Only"] = ""; -App::$strings["This Website Only"] = ""; -App::$strings["l F d, Y \\@ g:i A"] = ""; -App::$strings["Starts:"] = ""; -App::$strings["Finishes:"] = ""; -App::$strings["This event has been added to your calendar."] = ""; -App::$strings["Not specified"] = ""; -App::$strings["Needs Action"] = ""; -App::$strings["Completed"] = ""; -App::$strings["In Process"] = ""; -App::$strings["Cancelled"] = ""; -App::$strings["Off"] = ""; -App::$strings["On"] = ""; -App::$strings["CalDAV"] = ""; -App::$strings["Start calendar week on Monday"] = ""; -App::$strings["Default is Sunday"] = ""; -App::$strings["Channel Home"] = ""; -App::$strings["Search by Date"] = ""; -App::$strings["Ability to select posts by date ranges"] = ""; -App::$strings["Tag Cloud"] = ""; -App::$strings["Provide a personal tag cloud on your channel page"] = ""; -App::$strings["Use blog/list mode"] = ""; -App::$strings["Comments will be displayed separately"] = ""; -App::$strings["Connections"] = ""; -App::$strings["Connection Filtering"] = ""; -App::$strings["Filter incoming posts from connections based on keywords/content"] = ""; -App::$strings["Conversation"] = ""; -App::$strings["Community Tagging"] = ""; -App::$strings["Ability to tag existing posts"] = ""; -App::$strings["Emoji Reactions"] = ""; -App::$strings["Add emoji reaction ability to posts"] = ""; -App::$strings["Dislike Posts"] = ""; -App::$strings["Ability to dislike posts/comments"] = ""; -App::$strings["Star Posts"] = ""; -App::$strings["Ability to mark special posts with a star indicator"] = ""; -App::$strings["Directory"] = ""; -App::$strings["Advanced Directory Search"] = ""; -App::$strings["Allows creation of complex directory search queries"] = ""; -App::$strings["Editor"] = ""; -App::$strings["Post Categories"] = ""; -App::$strings["Add categories to your posts"] = ""; -App::$strings["Large Photos"] = ""; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = ""; -App::$strings["Even More Encryption"] = ""; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = ""; -App::$strings["Enable Voting Tools"] = ""; -App::$strings["Provide a class of post which others can vote on"] = ""; -App::$strings["Disable Comments"] = ""; -App::$strings["Provide the option to disable comments for a post"] = ""; -App::$strings["Delayed Posting"] = ""; -App::$strings["Allow posts to be published at a later date"] = ""; -App::$strings["Content Expiration"] = ""; -App::$strings["Remove posts/comments and/or private messages at a future time"] = ""; -App::$strings["Suppress Duplicate Posts/Comments"] = ""; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = ""; -App::$strings["Auto-save drafts of posts and comments"] = ""; -App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = ""; -App::$strings["Events"] = ""; -App::$strings["Smart Birthdays"] = ""; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = ""; -App::$strings["Event Timezone Selection"] = ""; -App::$strings["Allow event creation in timezones other than your own."] = ""; -App::$strings["Manage"] = ""; -App::$strings["Navigation Channel Select"] = ""; -App::$strings["Change channels directly from within the navigation dropdown menu"] = ""; -App::$strings["Network"] = ""; -App::$strings["Saved Searches"] = ""; -App::$strings["Save search terms for re-use"] = ""; -App::$strings["Ability to file posts under folders"] = ""; -App::$strings["Alternate Stream Order"] = ""; -App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = ""; -App::$strings["Contact Filter"] = ""; -App::$strings["Ability to display only posts of a selected contact"] = ""; -App::$strings["Forum Filter"] = ""; -App::$strings["Ability to display only posts of a specific forum"] = ""; -App::$strings["Personal Posts Filter"] = ""; -App::$strings["Ability to display only posts that you've interacted on"] = ""; -App::$strings["Photos"] = ""; -App::$strings["Photo Location"] = ""; -App::$strings["If location data is available on uploaded photos, link this to a map."] = ""; -App::$strings["Profiles"] = ""; -App::$strings["Advanced Profiles"] = ""; -App::$strings["Additional profile sections and selections"] = ""; -App::$strings["Profile Import/Export"] = ""; -App::$strings["Save and load profile details across sites/channels"] = ""; -App::$strings["Multiple Profiles"] = ""; -App::$strings["Ability to create multiple profiles"] = ""; -App::$strings["unknown"] = ""; -App::$strings["Channel is blocked on this site."] = ""; -App::$strings["Channel location missing."] = ""; -App::$strings["Response from remote channel was incomplete."] = ""; -App::$strings["Premium channel - please visit:"] = ""; -App::$strings["Channel was deleted and no longer exists."] = ""; -App::$strings["Remote channel or protocol unavailable."] = ""; -App::$strings["Channel discovery failed."] = ""; -App::$strings["Protocol disabled."] = ""; -App::$strings["Cannot connect to yourself."] = ""; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = ""; -App::$strings["Add new connections to this privacy group"] = ""; -App::$strings["edit"] = ""; +App::$strings["%1\$s's birthday"] = "%1\$sの誕生日"; +App::$strings["Happy Birthday %1\$s"] = "お誕生日おめでとう%1\$s"; +App::$strings["Directory Options"] = "ディレクトリオプション"; +App::$strings["Safe Mode"] = "セーフモード"; +App::$strings["Public Forums Only"] = "公開フォーラムのみ"; +App::$strings["This Website Only"] = "このウェブサイトのみ"; +App::$strings["l F d, Y \\@ g:i A"] = "l F d、Y \\ @ g:i A"; +App::$strings["Starts:"] = "開始:"; +App::$strings["Finishes:"] = "仕上げ:"; +App::$strings["This event has been added to your calendar."] = "このイベントはカレンダーに追加されました。"; +App::$strings["Not specified"] = "指定されていない"; +App::$strings["Needs Action"] = "アクションが必要"; +App::$strings["Completed"] = "完成しました"; +App::$strings["In Process"] = "処理中"; +App::$strings["Cancelled"] = "キャンセル"; +App::$strings["Off"] = "オフ"; +App::$strings["On"] = "に"; +App::$strings["CalDAV"] = "CalDAV"; +App::$strings["Start calendar week on Monday"] = "月曜日に週を開始"; +App::$strings["Default is Sunday"] = "デフォルトは日曜日です"; +App::$strings["Channel Home"] = "チャンネルホーム"; +App::$strings["Search by Date"] = "日付で検索"; +App::$strings["Ability to select posts by date ranges"] = "日付範囲で投稿を選択する機能"; +App::$strings["Tag Cloud"] = "タグクラウド"; +App::$strings["Provide a personal tag cloud on your channel page"] = "チャンネルページで個人タグクラウドを提供する"; +App::$strings["Use blog/list mode"] = "ブログ/リストモードを使用する"; +App::$strings["Comments will be displayed separately"] = "コメントは個別に表示されます"; +App::$strings["Connections"] = "接続"; +App::$strings["Connection Filtering"] = "接続フィルタリング"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "キーワード/コンテンツに基づいて接続からの受信投稿をフィルタリングする"; +App::$strings["Conversation"] = "会話"; +App::$strings["Community Tagging"] = "コミュニティのタグ付け"; +App::$strings["Ability to tag existing posts"] = "既存の投稿にタグを付ける機能"; +App::$strings["Emoji Reactions"] = "絵文字反応"; +App::$strings["Add emoji reaction ability to posts"] = "絵文字反応機能を投稿に追加する"; +App::$strings["Dislike Posts"] = "投稿を嫌う"; +App::$strings["Ability to dislike posts/comments"] = "投稿/コメントを嫌う能力"; +App::$strings["Star Posts"] = "スター投稿"; +App::$strings["Ability to mark special posts with a star indicator"] = "星印で特別な投稿をマークする機能"; +App::$strings["Directory"] = "ディレクトリ"; +App::$strings["Advanced Directory Search"] = "高度なディレクトリ検索"; +App::$strings["Allows creation of complex directory search queries"] = "複雑なディレクトリ検索クエリを作成できます"; +App::$strings["Editor"] = "編集者"; +App::$strings["Post Categories"] = "投稿カテゴリ"; +App::$strings["Add categories to your posts"] = "投稿にカテゴリを追加する"; +App::$strings["Large Photos"] = "大きい写真"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "投稿に大きな(1024px)写真のサムネイルを含める。有効になっていない場合は、小さい(640ピクセル)写真のサムネイルを使用します"; +App::$strings["Even More Encryption"] = "さらに暗号化"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "共有秘密鍵を使用して、エンドツーエンドのコンテンツのオプションの暗号化を許可します"; +App::$strings["Enable Voting Tools"] = "投票ツールを有効にする"; +App::$strings["Provide a class of post which others can vote on"] = "他の人が投票できる投稿のクラスを提供する"; +App::$strings["Disable Comments"] = "コメントを無効にする"; +App::$strings["Provide the option to disable comments for a post"] = "投稿のコメントを無効にするオプションを提供します"; +App::$strings["Delayed Posting"] = "遅延投稿"; +App::$strings["Allow posts to be published at a later date"] = "投稿を後日公開することを許可する"; +App::$strings["Content Expiration"] = "コンテンツの有効期限"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "将来、投稿/コメントやプライベートメッセージを削除する"; +App::$strings["Suppress Duplicate Posts/Comments"] = "重複する投稿/コメントを抑制する"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "同一のコンテンツを含む投稿が、送信と送信の間に2分未満で公開されるのを防ぎます。"; +App::$strings["Auto-save drafts of posts and comments"] = "投稿とコメントの下書きを自動保存する"; +App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "投稿やコメントの下書きをローカルのブラウザストレージに自動的に保存して、誤って楽曲を失うのを防ぎます"; +App::$strings["Events"] = "イベント"; +App::$strings["Smart Birthdays"] = "スマートバースデー"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "友人が地球上に散らばっている場合に備えて、誕生日イベントのタイムゾーンを認識させます。"; +App::$strings["Event Timezone Selection"] = "イベントタイムゾーンの選択"; +App::$strings["Allow event creation in timezones other than your own."] = "自分以外のタイムゾーンでのイベント作成を許可します。"; +App::$strings["Manage"] = "管理する"; +App::$strings["Navigation Channel Select"] = "ナビゲーションチャネルの選択"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "ナビゲーションドロップダウンメニューから直接チャネルを変更します"; +App::$strings["Network"] = "ネットワーク"; +App::$strings["Saved Searches"] = "保存された検索"; +App::$strings["Save search terms for re-use"] = "再利用のために検索語を保存する"; +App::$strings["Ability to file posts under folders"] = "フォルダーの下に投稿をファイルする機能"; +App::$strings["Alternate Stream Order"] = "代替ストリーム順序"; +App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = "最終投稿日、最終コメント日、またはスレッド化されていないアクティビティでストリームを順序付けする機能"; +App::$strings["Contact Filter"] = "連絡先フィルター"; +App::$strings["Ability to display only posts of a selected contact"] = "選択した連絡先の投稿のみを表示する機能"; +App::$strings["Forum Filter"] = "フォーラムフィルター"; +App::$strings["Ability to display only posts of a specific forum"] = "特定のフォーラムの投稿のみを表示する機能"; +App::$strings["Personal Posts Filter"] = "個人投稿フィルター"; +App::$strings["Ability to display only posts that you've interacted on"] = "やり取りした投稿のみを表示する機能"; +App::$strings["Photos"] = "写真"; +App::$strings["Photo Location"] = "写真の場所"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "アップロードされた写真で位置データが利用できる場合、これを地図にリンクします。"; +App::$strings["Profiles"] = "プロフィール"; +App::$strings["Advanced Profiles"] = "高度なプロファイル"; +App::$strings["Additional profile sections and selections"] = "追加のプロファイルセクションと選択"; +App::$strings["Profile Import/Export"] = "プロファイルのインポート/エクスポート"; +App::$strings["Save and load profile details across sites/channels"] = "サイト/チャネル全体でプロファイルの詳細を保存およびロードします"; +App::$strings["Multiple Profiles"] = "複数のプロファイル"; +App::$strings["Ability to create multiple profiles"] = "複数のプロファイルを作成する機能"; +App::$strings["unknown"] = "道の"; +App::$strings["Channel is blocked on this site."] = "このサイトでチャンネルがブロックされています。"; +App::$strings["Channel location missing."] = "チャンネルの場所がありません。"; +App::$strings["Response from remote channel was incomplete."] = "リモートチャネルからの応答が不完全でした。"; +App::$strings["Premium channel - please visit:"] = "プレミアムチャンネル-をご覧ください:"; +App::$strings["Channel was deleted and no longer exists."] = "チャンネルは削除され、存在しなくなりました。"; +App::$strings["Remote channel or protocol unavailable."] = "リモートチャネルまたはプロトコルが利用できません。"; +App::$strings["Channel discovery failed."] = "チャネルの検出に失敗しました。"; +App::$strings["Protocol disabled."] = "プロトコルが無効です。"; +App::$strings["Cannot connect to yourself."] = "自分に接続できません。"; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "この名前の削除されたグループが復活しました。既存のアイテムの権限は、このグループと将来のメンバーに適用される可能性があります 。これが意図したものでない場合は、別の名前で別のグループを作成してください。"; +App::$strings["Add new connections to this privacy group"] = "このプライバシーグループに新しい接続を追加します"; +App::$strings["edit"] = "編集する"; App::$strings["Privacy Groups"] = "プライバシーグループ"; -App::$strings["Edit group"] = ""; -App::$strings["Add privacy group"] = ""; -App::$strings["Channels not in any privacy group"] = ""; -App::$strings["add"] = ""; -App::$strings["Help:"] = ""; -App::$strings["Help"] = ""; -App::$strings["Not Found"] = ""; -App::$strings["Page not found."] = ""; -App::$strings["Unable to import a removed channel."] = ""; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = ""; -App::$strings["Unable to create a unique channel address. Import failed."] = ""; -App::$strings["Cloned channel not found. Import failed."] = ""; -App::$strings["Permission denied"] = ""; -App::$strings["(Unknown)"] = ""; -App::$strings["Visible to anybody on the internet."] = ""; -App::$strings["Visible to you only."] = ""; -App::$strings["Visible to anybody in this network."] = ""; -App::$strings["Visible to anybody authenticated."] = ""; -App::$strings["Visible to anybody on %s."] = ""; -App::$strings["Visible to all connections."] = ""; -App::$strings["Visible to approved connections."] = ""; -App::$strings["Visible to specific connections."] = ""; -App::$strings["Item not found."] = ""; -App::$strings["Privacy group not found."] = ""; -App::$strings["Privacy group is empty."] = ""; -App::$strings["Privacy group: %s"] = ""; -App::$strings["Connection: %s"] = ""; -App::$strings["Connection not found."] = ""; -App::$strings["female"] = ""; -App::$strings["%1\$s updated her %2\$s"] = ""; -App::$strings["male"] = ""; -App::$strings["%1\$s updated his %2\$s"] = ""; -App::$strings["%1\$s updated their %2\$s"] = ""; -App::$strings["profile photo"] = ""; -App::$strings["[Edited %s]"] = ""; -App::$strings["__ctx:edit_activity__ Post"] = ""; -App::$strings["__ctx:edit_activity__ Comment"] = ""; -App::$strings["Delete this item?"] = ""; -App::$strings["Comment"] = ""; +App::$strings["Edit group"] = "グループを編集"; +App::$strings["Add privacy group"] = "プライバシーグループを追加"; +App::$strings["Channels not in any privacy group"] = "プライバシーグループに属さないチャンネル"; +App::$strings["add"] = "加える"; +App::$strings["Help:"] = "助けて:"; +App::$strings["Help"] = "助けて"; +App::$strings["Not Found"] = "見つかりません"; +App::$strings["Page not found."] = "ページが見つかりません。"; +App::$strings["Unable to import a removed channel."] = "削除されたチャンネルをインポートできません。"; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "このシステムに重複したチャネル識別子を作成できません。インポートに失敗しました。"; +App::$strings["Unable to create a unique channel address. Import failed."] = "一意のチャネルアドレスを作成できません。インポートに失敗しました。"; +App::$strings["Cloned channel not found. Import failed."] = "複製されたチャンネルが見つかりません。インポートに失敗しました。"; +App::$strings["Permission denied"] = "アクセス拒否"; +App::$strings["(Unknown)"] = "(道の)"; +App::$strings["Visible to anybody on the internet."] = "インターネット上の誰でも閲覧できます。"; +App::$strings["Visible to you only."] = "あなただけに表示されます。"; +App::$strings["Visible to anybody in this network."] = "このネットワーク内のすべてのユーザーに表示されます。"; +App::$strings["Visible to anybody authenticated."] = "認証されたすべてのユーザーに表示されます。"; +App::$strings["Visible to anybody on %s."] = "%s誰でも閲覧できます。"; +App::$strings["Visible to all connections."] = "すべての接続に表示されます。"; +App::$strings["Visible to approved connections."] = "承認された接続に表示されます。"; +App::$strings["Visible to specific connections."] = "特定の接続に表示されます。"; +App::$strings["Item not found."] = "アイテムが見つかりません。"; +App::$strings["Privacy group not found."] = "プライバシーグループが見つかりません。"; +App::$strings["Privacy group is empty."] = "プライバシーグループが空です。"; +App::$strings["Privacy group: %s"] = "プライバシーグループ: %s"; +App::$strings["Connection: %s"] = "接続: %s"; +App::$strings["Connection not found."] = "接続が見つかりません。"; +App::$strings["female"] = "女性"; +App::$strings["%1\$s updated her %2\$s"] = "%1\$s彼女の%2\$s更新しました"; +App::$strings["male"] = "男性"; +App::$strings["%1\$s updated his %2\$s"] = "%1\$s彼の%2\$s更新しました"; +App::$strings["%1\$s updated their %2\$s"] = "%1\$sが%2\$s更新しました"; +App::$strings["profile photo"] = "プロフィール写真"; +App::$strings["[Edited %s]"] = "[ %s編集]"; +App::$strings["__ctx:edit_activity__ Post"] = "役職"; +App::$strings["__ctx:edit_activity__ Comment"] = "コメント"; +App::$strings["Delete this item?"] = "このアイテムを削除しますか?"; +App::$strings["Comment"] = "コメント"; App::$strings["%s show all"] = "%s 全て見る"; App::$strings["%s show less"] = "%s 畳む"; -App::$strings["%s expand"] = ""; -App::$strings["%s collapse"] = ""; +App::$strings["%s expand"] = "%s展開します"; +App::$strings["%s collapse"] = "%s崩壊"; App::$strings["Password too short"] = "パスワードが短すぎます。"; App::$strings["Passwords do not match"] = "パスワードが一致しません。"; App::$strings["everybody"] = "誰でも"; App::$strings["Secret Passphrase"] = "シークレットパスフレーズ"; App::$strings["Passphrase hint"] = "パスフレーズヒント"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = ""; -App::$strings["close all"] = ""; -App::$strings["Nothing new here"] = ""; -App::$strings["Rate This Channel (this is public)"] = ""; -App::$strings["Rating"] = ""; -App::$strings["Describe (optional)"] = ""; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "注意:権限は変更されましたが、まだ送信されていません。"; +App::$strings["close all"] = "すべて閉じる"; +App::$strings["Nothing new here"] = "ここに新しいものはありません"; +App::$strings["Rate This Channel (this is public)"] = "このチャンネルを評価(これは公開です)"; +App::$strings["Rating"] = "格付け"; +App::$strings["Describe (optional)"] = "説明(オプション)"; App::$strings["Submit"] = "送信"; -App::$strings["Please enter a link URL"] = ""; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = ""; -App::$strings["Location"] = ""; -App::$strings["lovely"] = ""; -App::$strings["wonderful"] = ""; -App::$strings["fantastic"] = ""; -App::$strings["great"] = ""; -App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = ""; -App::$strings[") or enter a new one."] = ""; -App::$strings["Thank you, this nickname is valid."] = ""; -App::$strings["A channel name is required."] = ""; -App::$strings["This is a "] = ""; -App::$strings[" channel name"] = ""; +App::$strings["Please enter a link URL"] = "リンクURLを入力してください"; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "未保存の変更。このページから移動してもよろしいですか?"; +App::$strings["Location"] = "ロケーション"; +App::$strings["lovely"] = "素敵な"; +App::$strings["wonderful"] = "素晴らしい"; +App::$strings["fantastic"] = "幻想的"; +App::$strings["great"] = "すばらしいです"; +App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = "選択したニックネームはすでに使用されているか、無効です。提案を使用してください("; +App::$strings[") or enter a new one."] = ")または新しいものを入力します。"; +App::$strings["Thank you, this nickname is valid."] = "ありがとう、このニックネームは有効です。"; +App::$strings["A channel name is required."] = "チャンネル名が必要です。"; +App::$strings["This is a "] = "これは"; +App::$strings[" channel name"] = "チャンネル名"; App::$strings["%d minutes"] = array( - 0 => "", - 1 => "", + 0 => "%d分", + 1 => "%d分", ); App::$strings["about %d hours"] = array( - 0 => "", - 1 => "", + 0 => "約%d時間", + 1 => "約%d時間", ); App::$strings["%d days"] = array( - 0 => "", - 1 => "", + 0 => "%d日", + 1 => "%d日", ); App::$strings["%d months"] = array( - 0 => "", - 1 => "", + 0 => "%dか月", + 1 => "%dか月", ); App::$strings["%d years"] = array( - 0 => "", - 1 => "", + 0 => "%d年", + 1 => "%d年", ); -App::$strings["timeago.prefixAgo"] = ""; -App::$strings["timeago.prefixFromNow"] = ""; -App::$strings["timeago.suffixAgo"] = ""; -App::$strings["timeago.suffixFromNow"] = ""; +App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +App::$strings["timeago.suffixAgo"] = "timeago.suffixAgo"; +App::$strings["timeago.suffixFromNow"] = "timeago.suffixFromNow"; App::$strings["less than a minute"] = "ちょっと前"; App::$strings["about a minute"] = "1分前"; App::$strings["about an hour"] = "一時間前"; App::$strings["a day"] = "一日前"; App::$strings["about a month"] = "一ヶ月前"; App::$strings["about a year"] = "一年前"; -App::$strings[" "] = ""; -App::$strings["timeago.numbers"] = ""; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = "timeago.numbers"; App::$strings["January"] = "1月"; App::$strings["February"] = "2月"; App::$strings["March"] = "3月"; @@ -602,28 +602,28 @@ App::$strings["Wed"] = "水"; App::$strings["Thu"] = "木"; App::$strings["Fri"] = "金"; App::$strings["Sat"] = "土"; -App::$strings["__ctx:calendar__ today"] = ""; -App::$strings["__ctx:calendar__ month"] = ""; -App::$strings["__ctx:calendar__ week"] = ""; -App::$strings["__ctx:calendar__ day"] = ""; -App::$strings["__ctx:calendar__ All day"] = ""; -App::$strings["default"] = ""; -App::$strings["Select an alternate language"] = ""; -App::$strings["Download binary/encrypted content"] = ""; -App::$strings["Unable to determine sender."] = ""; -App::$strings["No recipient provided."] = ""; -App::$strings["[no subject]"] = ""; -App::$strings["Stored post could not be verified."] = ""; -App::$strings["Remote authentication"] = ""; -App::$strings["Click to authenticate to your home hub"] = ""; -App::$strings["Channel Manager"] = ""; -App::$strings["Manage your channels"] = ""; +App::$strings["__ctx:calendar__ today"] = "今日"; +App::$strings["__ctx:calendar__ month"] = "月"; +App::$strings["__ctx:calendar__ week"] = "週間"; +App::$strings["__ctx:calendar__ day"] = "日"; +App::$strings["__ctx:calendar__ All day"] = "一日中"; +App::$strings["default"] = "デフォルト"; +App::$strings["Select an alternate language"] = "別の言語を選択してください"; +App::$strings["Download binary/encrypted content"] = "バイナリ/暗号化コンテンツをダウンロードする"; +App::$strings["Unable to determine sender."] = "送信者を特定できません。"; +App::$strings["No recipient provided."] = "受信者が指定されていません。"; +App::$strings["[no subject]"] = "[件名なし]"; +App::$strings["Stored post could not be verified."] = "保存された投稿を確認できませんでした。"; +App::$strings["Remote authentication"] = "リモート認証"; +App::$strings["Click to authenticate to your home hub"] = "クリックしてホームハブの認証を行います"; +App::$strings["Channel Manager"] = "チャンネルマネージャー"; +App::$strings["Manage your channels"] = "チャンネルを管理する"; App::$strings["Manage your privacy groups"] = "プライバシーグループを管理する"; -App::$strings["Settings"] = ""; -App::$strings["Account/Channel Settings"] = ""; -App::$strings["End this session"] = ""; -App::$strings["Your profile page"] = ""; -App::$strings["Manage/Edit profiles"] = ""; +App::$strings["Settings"] = "設定"; +App::$strings["Account/Channel Settings"] = "アカウント/チャンネル設定"; +App::$strings["End this session"] = "このセッションを終了"; +App::$strings["Your profile page"] = "あなたのプロフィールページ"; +App::$strings["Manage/Edit profiles"] = "プロファイルの管理/編集"; App::$strings["Edit your profile"] = "プロフィールを編集"; App::$strings["Sign in"] = "サインイン"; App::$strings["Take me home"] = "ホームへ戻る"; @@ -634,427 +634,427 @@ App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "@name, !foru App::$strings["Admin"] = "管理者"; App::$strings["Site Setup and Configuration"] = "サイトセットアップと設定"; App::$strings["Loading"] = "読み込み中"; -App::$strings["@name, !forum, #tag, ?doc, content"] = ""; +App::$strings["@name, !forum, #tag, ?doc, content"] = "@name、!forum、#tag、?doc、content"; App::$strings["Please wait..."] = "お待ちください...."; App::$strings["Add Apps"] = "アプリの追加"; -App::$strings["Arrange Apps"] = ""; -App::$strings["Toggle System Apps"] = ""; +App::$strings["Arrange Apps"] = "アプリを配置する"; +App::$strings["Toggle System Apps"] = "システムアプリの切り替え"; App::$strings["Channel"] = "チャンネル"; App::$strings["Status Messages and Posts"] = "ステータスメッセージと投稿"; -App::$strings["About"] = ""; -App::$strings["Profile Details"] = ""; +App::$strings["About"] = "約"; +App::$strings["Profile Details"] = "プロファイルの詳細"; App::$strings["Photo Albums"] = "フォトアルバム"; App::$strings["Files"] = "ファイル"; App::$strings["Files and Storage"] = "ファイルとストレージ"; App::$strings["Calendar"] = "カレンダー"; -App::$strings["Chatrooms"] = ""; -App::$strings["Bookmarks"] = ""; -App::$strings["Saved Bookmarks"] = ""; -App::$strings["Cards"] = ""; -App::$strings["View Cards"] = ""; -App::$strings["Articles"] = ""; -App::$strings["View Articles"] = ""; -App::$strings["Webpages"] = ""; -App::$strings["View Webpages"] = ""; -App::$strings["Wikis"] = ""; -App::$strings["Wiki"] = ""; -App::$strings["Friendica"] = ""; -App::$strings["OStatus"] = ""; -App::$strings["GNU-Social"] = ""; -App::$strings["RSS/Atom"] = ""; -App::$strings["ActivityPub"] = ""; -App::$strings["Email"] = ""; -App::$strings["Diaspora"] = ""; -App::$strings["Facebook"] = ""; -App::$strings["Zot"] = ""; -App::$strings["LinkedIn"] = ""; -App::$strings["XMPP/IM"] = ""; -App::$strings["MySpace"] = ""; -App::$strings["View PDF"] = ""; -App::$strings[" by "] = ""; -App::$strings[" on "] = ""; -App::$strings["Embedded content"] = ""; -App::$strings["Embedding disabled"] = ""; -App::$strings["Profile Photos"] = ""; -App::$strings["Image exceeds website size limit of %lu bytes"] = ""; -App::$strings["Image file is empty."] = ""; -App::$strings["Unable to process image"] = ""; -App::$strings["Photo storage failed."] = ""; -App::$strings["a new photo"] = ""; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = ""; -App::$strings["Recent Photos"] = ""; -App::$strings["Upload New Photos"] = ""; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; -App::$strings["Profile to assign new connections"] = ""; -App::$strings["Frequently"] = ""; -App::$strings["Hourly"] = ""; -App::$strings["Twice daily"] = ""; -App::$strings["Daily"] = ""; -App::$strings["Weekly"] = ""; -App::$strings["Monthly"] = ""; -App::$strings["Currently Male"] = ""; -App::$strings["Currently Female"] = ""; -App::$strings["Mostly Male"] = ""; -App::$strings["Mostly Female"] = ""; -App::$strings["Transgender"] = ""; -App::$strings["Intersex"] = ""; -App::$strings["Transsexual"] = ""; -App::$strings["Hermaphrodite"] = ""; -App::$strings["Undecided"] = ""; -App::$strings["Males"] = ""; -App::$strings["Females"] = ""; -App::$strings["Gay"] = ""; -App::$strings["Lesbian"] = ""; -App::$strings["No Preference"] = ""; -App::$strings["Bisexual"] = ""; -App::$strings["Autosexual"] = ""; -App::$strings["Abstinent"] = ""; -App::$strings["Virgin"] = ""; -App::$strings["Deviant"] = ""; -App::$strings["Fetish"] = ""; -App::$strings["Oodles"] = ""; -App::$strings["Nonsexual"] = ""; -App::$strings["Single"] = ""; -App::$strings["Lonely"] = ""; -App::$strings["Available"] = ""; -App::$strings["Unavailable"] = ""; -App::$strings["Has crush"] = ""; -App::$strings["Infatuated"] = ""; -App::$strings["Dating"] = ""; -App::$strings["Unfaithful"] = ""; -App::$strings["Sex Addict"] = ""; -App::$strings["Friends/Benefits"] = ""; -App::$strings["Casual"] = ""; -App::$strings["Engaged"] = ""; -App::$strings["Married"] = ""; -App::$strings["Imaginarily married"] = ""; -App::$strings["Partners"] = ""; -App::$strings["Cohabiting"] = ""; -App::$strings["Common law"] = ""; -App::$strings["Happy"] = ""; -App::$strings["Not looking"] = ""; -App::$strings["Swinger"] = ""; -App::$strings["Betrayed"] = ""; -App::$strings["Separated"] = ""; -App::$strings["Unstable"] = ""; -App::$strings["Divorced"] = ""; -App::$strings["Imaginarily divorced"] = ""; -App::$strings["Widowed"] = ""; -App::$strings["Uncertain"] = ""; -App::$strings["It's complicated"] = ""; -App::$strings["Don't care"] = ""; -App::$strings["Ask me"] = ""; -App::$strings["Trending"] = ""; -App::$strings["Tags"] = ""; -App::$strings["Keywords"] = ""; -App::$strings["have"] = ""; -App::$strings["has"] = ""; -App::$strings["want"] = ""; -App::$strings["wants"] = ""; -App::$strings["like"] = ""; -App::$strings["likes"] = ""; -App::$strings["dislike"] = ""; -App::$strings["dislikes"] = ""; -App::$strings["prev"] = ""; -App::$strings["first"] = ""; -App::$strings["last"] = ""; -App::$strings["next"] = ""; -App::$strings["older"] = ""; -App::$strings["newer"] = ""; -App::$strings["No connections"] = ""; -App::$strings["View all %s connections"] = ""; -App::$strings["Network: %s"] = ""; -App::$strings["Save"] = ""; -App::$strings["poke"] = ""; -App::$strings["ping"] = ""; -App::$strings["pinged"] = ""; -App::$strings["prod"] = ""; -App::$strings["prodded"] = ""; -App::$strings["slap"] = ""; -App::$strings["slapped"] = ""; -App::$strings["finger"] = ""; -App::$strings["fingered"] = ""; -App::$strings["rebuff"] = ""; -App::$strings["rebuffed"] = ""; -App::$strings["happy"] = ""; -App::$strings["sad"] = ""; -App::$strings["mellow"] = ""; -App::$strings["tired"] = ""; -App::$strings["perky"] = ""; -App::$strings["angry"] = ""; -App::$strings["stupefied"] = ""; -App::$strings["puzzled"] = ""; -App::$strings["interested"] = ""; -App::$strings["bitter"] = ""; -App::$strings["cheerful"] = ""; -App::$strings["alive"] = ""; -App::$strings["annoyed"] = ""; -App::$strings["anxious"] = ""; -App::$strings["cranky"] = ""; -App::$strings["disturbed"] = ""; -App::$strings["frustrated"] = ""; -App::$strings["depressed"] = ""; -App::$strings["motivated"] = ""; -App::$strings["relaxed"] = ""; -App::$strings["surprised"] = ""; -App::$strings["May"] = ""; -App::$strings["Unknown Attachment"] = ""; -App::$strings["Size"] = ""; -App::$strings["remove category"] = ""; -App::$strings["remove from file"] = ""; +App::$strings["Chatrooms"] = "チャットルーム"; +App::$strings["Bookmarks"] = "しおり"; +App::$strings["Saved Bookmarks"] = "保存したブックマーク"; +App::$strings["Cards"] = "カード"; +App::$strings["View Cards"] = "カードを見る"; +App::$strings["Articles"] = "記事"; +App::$strings["View Articles"] = "記事を見る"; +App::$strings["Webpages"] = "ウェブページ"; +App::$strings["View Webpages"] = "Webページを表示"; +App::$strings["Wikis"] = "ウィキ"; +App::$strings["Wiki"] = "Wiki"; +App::$strings["Friendica"] = "フレンドカ"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNUソーシャル"; +App::$strings["RSS/Atom"] = "RSS / Atom"; +App::$strings["ActivityPub"] = "ActivityPub"; +App::$strings["Email"] = "Eメール"; +App::$strings["Diaspora"] = "ディアスポラ"; +App::$strings["Facebook"] = "フェイスブック"; +App::$strings["Zot"] = "ゾット"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP / IM"; +App::$strings["MySpace"] = "私のスペース"; +App::$strings["View PDF"] = "PDFを見る"; +App::$strings[" by "] = "によって"; +App::$strings[" on "] = "に"; +App::$strings["Embedded content"] = "埋め込みコンテンツ"; +App::$strings["Embedding disabled"] = "埋め込みが無効です"; +App::$strings["Profile Photos"] = "プロフィール写真"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "画像がウェブサイトのサイズ制限%luバイトを超えています"; +App::$strings["Image file is empty."] = "画像ファイルが空です。"; +App::$strings["Unable to process image"] = "画像を処理できません"; +App::$strings["Photo storage failed."] = "写真の保存に失敗しました。"; +App::$strings["a new photo"] = "新しい写真"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$sが%2\$sから%3\$s投稿しました"; +App::$strings["Recent Photos"] = "最近の写真"; +App::$strings["Upload New Photos"] = "新しい写真をアップロード"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "フォームセキュリティトークンが正しくありませんでした。これは、フォームを送信する前にフォームが長時間(3時間以上)開かれたために発生した可能性があります。"; +App::$strings["Profile to assign new connections"] = "新しい接続を割り当てるプロファイル"; +App::$strings["Frequently"] = "よく"; +App::$strings["Hourly"] = "毎時"; +App::$strings["Twice daily"] = "1日2回"; +App::$strings["Daily"] = "毎日"; +App::$strings["Weekly"] = "毎週"; +App::$strings["Monthly"] = "毎月"; +App::$strings["Currently Male"] = "現在男性"; +App::$strings["Currently Female"] = "現在女性"; +App::$strings["Mostly Male"] = "主に男性"; +App::$strings["Mostly Female"] = "主に女性"; +App::$strings["Transgender"] = "トランスジェンダー"; +App::$strings["Intersex"] = "インターセックス"; +App::$strings["Transsexual"] = "性転換"; +App::$strings["Hermaphrodite"] = "ふたなり"; +App::$strings["Undecided"] = "未定"; +App::$strings["Males"] = "男性"; +App::$strings["Females"] = "女性"; +App::$strings["Gay"] = "ゲイ"; +App::$strings["Lesbian"] = "レズビアン"; +App::$strings["No Preference"] = "指定なし"; +App::$strings["Bisexual"] = "バイセクシャル"; +App::$strings["Autosexual"] = "性欲"; +App::$strings["Abstinent"] = "禁欲"; +App::$strings["Virgin"] = "バージン"; +App::$strings["Deviant"] = "逸脱"; +App::$strings["Fetish"] = "フェチ"; +App::$strings["Oodles"] = "ウードル"; +App::$strings["Nonsexual"] = "非性的"; +App::$strings["Single"] = "シングル"; +App::$strings["Lonely"] = "寂しい"; +App::$strings["Available"] = "利用可能"; +App::$strings["Unavailable"] = "利用できません"; +App::$strings["Has crush"] = "クラッシュしている"; +App::$strings["Infatuated"] = "夢中"; +App::$strings["Dating"] = "デート"; +App::$strings["Unfaithful"] = "不誠実な"; +App::$strings["Sex Addict"] = "性中毒"; +App::$strings["Friends/Benefits"] = "友達/特典"; +App::$strings["Casual"] = "カジュアル"; +App::$strings["Engaged"] = "従事"; +App::$strings["Married"] = "既婚"; +App::$strings["Imaginarily married"] = "想像上の結婚"; +App::$strings["Partners"] = "パートナー"; +App::$strings["Cohabiting"] = "同ha"; +App::$strings["Common law"] = "コモンロー"; +App::$strings["Happy"] = "ハッピー"; +App::$strings["Not looking"] = "見てない"; +App::$strings["Swinger"] = "ウィンガー"; +App::$strings["Betrayed"] = "裏切られた"; +App::$strings["Separated"] = "離れた"; +App::$strings["Unstable"] = "不安定"; +App::$strings["Divorced"] = "離婚した"; +App::$strings["Imaginarily divorced"] = "想像上の離婚"; +App::$strings["Widowed"] = "未亡人"; +App::$strings["Uncertain"] = "不確実"; +App::$strings["It's complicated"] = "それは複雑です"; +App::$strings["Don't care"] = "気にしない"; +App::$strings["Ask me"] = "私に聞いて"; +App::$strings["Trending"] = "トレンド"; +App::$strings["Tags"] = "タグ"; +App::$strings["Keywords"] = "キーワード"; +App::$strings["have"] = "持ってる"; +App::$strings["has"] = "持っている"; +App::$strings["want"] = "欲しいです"; +App::$strings["wants"] = "望む"; +App::$strings["like"] = "のような"; +App::$strings["likes"] = "好き"; +App::$strings["dislike"] = "嫌い"; +App::$strings["dislikes"] = "嫌い"; +App::$strings["prev"] = "前の"; +App::$strings["first"] = "最初"; +App::$strings["last"] = "最終"; +App::$strings["next"] = "次"; +App::$strings["older"] = "年上の"; +App::$strings["newer"] = "より新しい"; +App::$strings["No connections"] = "接続なし"; +App::$strings["View all %s connections"] = "すべての%s接続を表示"; +App::$strings["Network: %s"] = "ネットワーク: %s"; +App::$strings["Save"] = "保存する"; +App::$strings["poke"] = "ポーク"; +App::$strings["ping"] = "ping"; +App::$strings["pinged"] = "pingされた"; +App::$strings["prod"] = "製品"; +App::$strings["prodded"] = "突っ込んだ"; +App::$strings["slap"] = "平手打ち"; +App::$strings["slapped"] = "平手打ち"; +App::$strings["finger"] = "指"; +App::$strings["fingered"] = "手マン"; +App::$strings["rebuff"] = "拒絶"; +App::$strings["rebuffed"] = "拒否された"; +App::$strings["happy"] = "ハッピー"; +App::$strings["sad"] = "悲しい"; +App::$strings["mellow"] = "まろやかな"; +App::$strings["tired"] = "疲れた"; +App::$strings["perky"] = "はつらつと"; +App::$strings["angry"] = "怒っている"; +App::$strings["stupefied"] = "st然たる"; +App::$strings["puzzled"] = "困惑した"; +App::$strings["interested"] = "興味がある"; +App::$strings["bitter"] = "苦い"; +App::$strings["cheerful"] = "陽気な"; +App::$strings["alive"] = "生きている"; +App::$strings["annoyed"] = "イライラする"; +App::$strings["anxious"] = "気になる"; +App::$strings["cranky"] = "気難しい"; +App::$strings["disturbed"] = "乱れた"; +App::$strings["frustrated"] = "欲求不満"; +App::$strings["depressed"] = "落ち込んでいる"; +App::$strings["motivated"] = "やる気"; +App::$strings["relaxed"] = "リラックスした"; +App::$strings["surprised"] = "びっくりした"; +App::$strings["May"] = "5月"; +App::$strings["Unknown Attachment"] = "不明な添付ファイル"; +App::$strings["Size"] = "サイズ"; +App::$strings["remove category"] = "カテゴリーを削除"; +App::$strings["remove from file"] = "ファイルから削除"; App::$strings["Link to Source"] = "元記事へのリンク"; -App::$strings["Page layout"] = ""; -App::$strings["You can create your own with the layouts tool"] = ""; -App::$strings["BBcode"] = ""; -App::$strings["HTML"] = ""; -App::$strings["Markdown"] = ""; -App::$strings["Text"] = ""; -App::$strings["Comanche Layout"] = ""; -App::$strings["PHP"] = ""; -App::$strings["Page content type"] = ""; -App::$strings["activity"] = ""; -App::$strings["a-z, 0-9, -, and _ only"] = ""; -App::$strings["Design Tools"] = ""; -App::$strings["Blocks"] = ""; -App::$strings["Menus"] = ""; -App::$strings["Layouts"] = ""; -App::$strings["Pages"] = ""; -App::$strings["Import"] = ""; -App::$strings["Import website..."] = ""; -App::$strings["Select folder to import"] = ""; -App::$strings["Import from a zipped folder:"] = ""; -App::$strings["Import from cloud files:"] = ""; -App::$strings["/cloud/channel/path/to/folder"] = ""; -App::$strings["Enter path to website files"] = ""; -App::$strings["Select folder"] = ""; -App::$strings["Export website..."] = ""; -App::$strings["Export to a zip file"] = ""; -App::$strings["website.zip"] = ""; -App::$strings["Enter a name for the zip file."] = ""; -App::$strings["Export to cloud files"] = ""; -App::$strings["/path/to/export/folder"] = ""; -App::$strings["Enter a path to a cloud files destination."] = ""; -App::$strings["Specify folder"] = ""; -App::$strings["Collection"] = ""; -App::$strings["Default"] = ""; -App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = ""; -App::$strings["Invalid data packet"] = ""; -App::$strings["Unable to verify channel signature"] = ""; -App::$strings["Unable to verify site signature for %s"] = ""; -App::$strings["invalid target signature"] = ""; -App::$strings["Source channel not found."] = ""; -App::$strings["Focus (Hubzilla default)"] = ""; -App::$strings["Theme settings"] = ""; -App::$strings["Narrow navbar"] = ""; -App::$strings["Navigation bar background color"] = ""; -App::$strings["Navigation bar icon color "] = ""; -App::$strings["Navigation bar active icon color "] = ""; -App::$strings["Link color"] = ""; -App::$strings["Set font-color for banner"] = ""; -App::$strings["Set the background color"] = ""; -App::$strings["Set the background image"] = ""; -App::$strings["Set the background color of items"] = ""; -App::$strings["Set the background color of comments"] = ""; -App::$strings["Set font-size for the entire application"] = ""; -App::$strings["Examples: 1rem, 100%, 16px"] = ""; -App::$strings["Set font-color for posts and comments"] = ""; -App::$strings["Set radius of corners"] = ""; -App::$strings["Example: 4px"] = ""; -App::$strings["Set shadow depth of photos"] = ""; -App::$strings["Set maximum width of content region in pixel"] = ""; -App::$strings["Leave empty for default width"] = ""; -App::$strings["Set size of conversation author photo"] = ""; -App::$strings["Set size of followup author photos"] = ""; -App::$strings["Show advanced settings"] = ""; -App::$strings["Social Networking"] = ""; -App::$strings["Social - Federation"] = ""; -App::$strings["Social - Mostly Public"] = ""; -App::$strings["Social - Restricted"] = ""; -App::$strings["Social - Private"] = ""; -App::$strings["Community Forum"] = ""; -App::$strings["Forum - Mostly Public"] = ""; -App::$strings["Forum - Restricted"] = ""; -App::$strings["Forum - Private"] = ""; -App::$strings["Feed Republish"] = ""; -App::$strings["Feed - Mostly Public"] = ""; -App::$strings["Feed - Restricted"] = ""; -App::$strings["Special Purpose"] = ""; -App::$strings["Special - Celebrity/Soapbox"] = ""; -App::$strings["Special - Group Repository"] = ""; -App::$strings["Custom/Expert Mode"] = ""; -App::$strings["Can view my channel stream and posts"] = ""; -App::$strings["Can send me their channel stream and posts"] = ""; -App::$strings["Can view my default channel profile"] = ""; -App::$strings["Can view my connections"] = ""; -App::$strings["Can view my file storage and photos"] = ""; -App::$strings["Can upload/modify my file storage and photos"] = ""; -App::$strings["Can view my channel webpages"] = ""; -App::$strings["Can view my wiki pages"] = ""; -App::$strings["Can create/edit my channel webpages"] = ""; -App::$strings["Can write to my wiki pages"] = ""; -App::$strings["Can post on my channel (wall) page"] = ""; -App::$strings["Can comment on or like my posts"] = ""; -App::$strings["Can send me private mail messages"] = ""; -App::$strings["Can like/dislike profiles and profile things"] = ""; -App::$strings["Can forward to all my channel connections via ! mentions in posts"] = ""; -App::$strings["Can chat with me"] = ""; -App::$strings["Can source my public posts in derived channels"] = ""; -App::$strings["Can administer my channel"] = ""; -App::$strings["Likes %1\$s's %2\$s"] = ""; -App::$strings["Doesn't like %1\$s's %2\$s"] = ""; -App::$strings["Will attend %1\$s's %2\$s"] = ""; -App::$strings["Will not attend %1\$s's %2\$s"] = ""; -App::$strings["May attend %1\$s's %2\$s"] = ""; -App::$strings["🔁 Repeated %1\$s's %2\$s"] = ""; -App::$strings["Apps"] = ""; -App::$strings["Affinity Tool"] = ""; -App::$strings["Site Admin"] = ""; -App::$strings["Report Bug"] = ""; -App::$strings["Content Filter"] = ""; -App::$strings["Content Import"] = ""; -App::$strings["Remote Diagnostics"] = ""; -App::$strings["Suggest Channels"] = ""; +App::$strings["Page layout"] = "ページレイアウト"; +App::$strings["You can create your own with the layouts tool"] = "レイアウトツールを使用して独自に作成できます"; +App::$strings["BBcode"] = "BBcode"; +App::$strings["HTML"] = "HTML"; +App::$strings["Markdown"] = "マークダウン"; +App::$strings["Text"] = "テキスト"; +App::$strings["Comanche Layout"] = "コマンチレイアウト"; +App::$strings["PHP"] = "PHP"; +App::$strings["Page content type"] = "ページコンテンツタイプ"; +App::$strings["activity"] = "アクティビティ"; +App::$strings["a-z, 0-9, -, and _ only"] = "az、0-9、-、および_のみ"; +App::$strings["Design Tools"] = "設計ツール"; +App::$strings["Blocks"] = "ブロック"; +App::$strings["Menus"] = "メニュー"; +App::$strings["Layouts"] = "レイアウト"; +App::$strings["Pages"] = "Pages"; +App::$strings["Import"] = "インポート"; +App::$strings["Import website..."] = "ウェブサイトをインポート..."; +App::$strings["Select folder to import"] = "インポートするフォルダーを選択"; +App::$strings["Import from a zipped folder:"] = "zipフォルダーからインポート:"; +App::$strings["Import from cloud files:"] = "クラウドファイルからインポート:"; +App::$strings["/cloud/channel/path/to/folder"] = "/ cloud / channel / path / to / folder"; +App::$strings["Enter path to website files"] = "ウェブサイトのファイルへのパスを入力してください"; +App::$strings["Select folder"] = "フォルダーを選択"; +App::$strings["Export website..."] = "ウェブサイトをエクスポート..."; +App::$strings["Export to a zip file"] = "zipファイルにエクスポートする"; +App::$strings["website.zip"] = "website.zip"; +App::$strings["Enter a name for the zip file."] = "zipファイルの名前を入力します。"; +App::$strings["Export to cloud files"] = "クラウドファイルにエクスポートする"; +App::$strings["/path/to/export/folder"] = "/ path / to / export / folder"; +App::$strings["Enter a path to a cloud files destination."] = "クラウドファイルの保存先へのパスを入力します。"; +App::$strings["Specify folder"] = "フォルダーを指定"; +App::$strings["Collection"] = "コレクション"; +App::$strings["Default"] = "デフォルト"; +App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$sは%2\$s歓迎します"; +App::$strings["Invalid data packet"] = "無効なデータパケット"; +App::$strings["Unable to verify channel signature"] = "チャンネルの署名を確認できません"; +App::$strings["Unable to verify site signature for %s"] = "%sサイト署名を確認できません"; +App::$strings["invalid target signature"] = "無効なターゲット署名"; +App::$strings["Source channel not found."] = "ソースチャネルが見つかりません。"; +App::$strings["Focus (Hubzilla default)"] = "フォーカス(Hubzillaのデフォルト)"; +App::$strings["Theme settings"] = "テーマ設定"; +App::$strings["Narrow navbar"] = "狭いナビゲーションバー"; +App::$strings["Navigation bar background color"] = "ナビゲーションバーの背景色"; +App::$strings["Navigation bar icon color "] = "ナビゲーションバーのアイコンの色"; +App::$strings["Navigation bar active icon color "] = "ナビゲーションバーのアクティブなアイコンの色"; +App::$strings["Link color"] = "リンクの色"; +App::$strings["Set font-color for banner"] = "バナーのフォント色を設定"; +App::$strings["Set the background color"] = "背景色を設定する"; +App::$strings["Set the background image"] = "背景画像を設定する"; +App::$strings["Set the background color of items"] = "アイテムの背景色を設定する"; +App::$strings["Set the background color of comments"] = "コメントの背景色を設定する"; +App::$strings["Set font-size for the entire application"] = "アプリケーション全体のフォントサイズを設定する"; +App::$strings["Examples: 1rem, 100%, 16px"] = "例:1rem、100%、16px"; +App::$strings["Set font-color for posts and comments"] = "投稿とコメントのフォント色を設定する"; +App::$strings["Set radius of corners"] = "角の半径を設定する"; +App::$strings["Example: 4px"] = "例:4px"; +App::$strings["Set shadow depth of photos"] = "写真の影の深さを設定する"; +App::$strings["Set maximum width of content region in pixel"] = "コンテンツ領域の最大幅をピクセル単位で設定します"; +App::$strings["Leave empty for default width"] = "デフォルトの幅の場合は空のままにします"; +App::$strings["Set size of conversation author photo"] = "会話の著者の写真のサイズを設定する"; +App::$strings["Set size of followup author photos"] = "フォローアップ著者の写真のサイズを設定する"; +App::$strings["Show advanced settings"] = "詳細設定を表示する"; +App::$strings["Social Networking"] = "ソーシャルネットワーキング"; +App::$strings["Social - Federation"] = "ソーシャル-フェデレーション"; +App::$strings["Social - Mostly Public"] = "ソーシャル-ほとんど公開"; +App::$strings["Social - Restricted"] = "ソーシャル-制限付き"; +App::$strings["Social - Private"] = "ソーシャル-プライベート"; +App::$strings["Community Forum"] = "コミュニティフォーラム"; +App::$strings["Forum - Mostly Public"] = "フォーラム-ほとんど公開"; +App::$strings["Forum - Restricted"] = "フォーラム-制限付き"; +App::$strings["Forum - Private"] = "フォーラム-プライベート"; +App::$strings["Feed Republish"] = "フィードの再公開"; +App::$strings["Feed - Mostly Public"] = "フィード-ほとんど公開"; +App::$strings["Feed - Restricted"] = "フィード-制限付き"; +App::$strings["Special Purpose"] = "特別な目的"; +App::$strings["Special - Celebrity/Soapbox"] = "スペシャル-セレブ/ソープボックス"; +App::$strings["Special - Group Repository"] = "特別-グループリポジトリ"; +App::$strings["Custom/Expert Mode"] = "カスタム/エキスパートモード"; +App::$strings["Can view my channel stream and posts"] = "チャンネルストリームと投稿を表示できます"; +App::$strings["Can send me their channel stream and posts"] = "チャンネルストリームと投稿を送信できます"; +App::$strings["Can view my default channel profile"] = "デフォルトのチャンネルプロファイルを表示できます"; +App::$strings["Can view my connections"] = "接続を表示できます"; +App::$strings["Can view my file storage and photos"] = "ファイルストレージと写真を表示できます"; +App::$strings["Can upload/modify my file storage and photos"] = "ファイルストレージと写真をアップロード/変更できます"; +App::$strings["Can view my channel webpages"] = "チャンネルのウェブページを表示できます"; +App::$strings["Can view my wiki pages"] = "Wikiページを表示できます"; +App::$strings["Can create/edit my channel webpages"] = "チャンネルWebページを作成/編集できます"; +App::$strings["Can write to my wiki pages"] = "wikiページに書き込むことができます"; +App::$strings["Can post on my channel (wall) page"] = "チャンネル(ウォール)ページに投稿できます"; +App::$strings["Can comment on or like my posts"] = "自分の投稿にコメントしたり、いいねをしたりできます"; +App::$strings["Can send me private mail messages"] = "プライベートメールメッセージを送信できます"; +App::$strings["Can like/dislike profiles and profile things"] = "好き嫌いのあるプロファイルとプロファイルのもの"; +App::$strings["Can forward to all my channel connections via ! mentions in posts"] = "経由ですべてのチャンネル接続に転送できます!投稿のメンション"; +App::$strings["Can chat with me"] = "私とチャットできます"; +App::$strings["Can source my public posts in derived channels"] = "派生チャンネルで公開投稿を入手できますか"; +App::$strings["Can administer my channel"] = "チャンネルを管理できますか"; +App::$strings["Likes %1\$s's %2\$s"] = "%1\$sの%2\$s好きです"; +App::$strings["Doesn't like %1\$s's %2\$s"] = "%1\$sの%2\$s気に入らない"; +App::$strings["Will attend %1\$s's %2\$s"] = "%1\$sの%2\$s"; +App::$strings["Will not attend %1\$s's %2\$s"] = "%1\$sの%2\$s参加しません"; +App::$strings["May attend %1\$s's %2\$s"] = "%1\$sの%2\$s"; +App::$strings["🔁 Repeated %1\$s's %2\$s"] = "&#x1f501; %1\$sの%2\$s繰り返しました"; +App::$strings["Apps"] = "アプリ"; +App::$strings["Affinity Tool"] = "アフィニティツール"; +App::$strings["Site Admin"] = "サイト管理者"; +App::$strings["Report Bug"] = "バグを報告"; +App::$strings["Content Filter"] = "コンテンツフィルター"; +App::$strings["Content Import"] = "コンテンツのインポート"; +App::$strings["Remote Diagnostics"] = "リモート診断"; +App::$strings["Suggest Channels"] = "チャンネルを提案する"; App::$strings["Stream"] = "ストリーム"; -App::$strings["Mail"] = ""; -App::$strings["Mood"] = ""; -App::$strings["Chat"] = ""; -App::$strings["Probe"] = ""; -App::$strings["Suggest"] = ""; -App::$strings["Random Channel"] = ""; -App::$strings["Invite"] = ""; -App::$strings["Features"] = ""; -App::$strings["Language"] = ""; -App::$strings["Post"] = ""; -App::$strings["Profile Photo"] = ""; -App::$strings["Notifications"] = ""; -App::$strings["Order Apps"] = ""; -App::$strings["CardDAV"] = ""; -App::$strings["Channel Sources"] = ""; -App::$strings["Guest Access"] = ""; -App::$strings["Notes"] = ""; -App::$strings["OAuth Apps Manager"] = ""; -App::$strings["OAuth2 Apps Manager"] = ""; -App::$strings["PDL Editor"] = ""; -App::$strings["Permission Categories"] = ""; -App::$strings["Premium Channel"] = ""; +App::$strings["Mail"] = "郵便物"; +App::$strings["Mood"] = "気分"; +App::$strings["Chat"] = "チャット"; +App::$strings["Probe"] = "プローブ"; +App::$strings["Suggest"] = "提案する"; +App::$strings["Random Channel"] = "ランダムチャンネル"; +App::$strings["Invite"] = "招待する"; +App::$strings["Features"] = "特徴"; +App::$strings["Language"] = "言語"; +App::$strings["Post"] = "役職"; +App::$strings["Profile Photo"] = "プロフィール写真"; +App::$strings["Notifications"] = "通知"; +App::$strings["Order Apps"] = "アプリを注文する"; +App::$strings["CardDAV"] = "CardDAV"; +App::$strings["Channel Sources"] = "チャンネルソース"; +App::$strings["Guest Access"] = "ゲストアクセス"; +App::$strings["Notes"] = "ノート"; +App::$strings["OAuth Apps Manager"] = "OAuthアプリマネージャー"; +App::$strings["OAuth2 Apps Manager"] = "OAuth2アプリマネージャー"; +App::$strings["PDL Editor"] = "PDLエディター"; +App::$strings["Permission Categories"] = "許可カテゴリ"; +App::$strings["Premium Channel"] = "プレミアムチャンネル"; App::$strings["Public Stream"] = "連合ストリーム"; -App::$strings["My Chatrooms"] = ""; -App::$strings["Channel Export"] = ""; -App::$strings["Update"] = ""; -App::$strings["Install"] = ""; -App::$strings["Purchase"] = ""; -App::$strings["Undelete"] = ""; -App::$strings["Add to app-tray"] = ""; -App::$strings["Remove from app-tray"] = ""; -App::$strings["Pin to navbar"] = ""; -App::$strings["Unpin from navbar"] = ""; -App::$strings["Missing room name"] = ""; -App::$strings["Duplicate room name"] = ""; -App::$strings["Invalid room specifier."] = ""; -App::$strings["Room not found."] = ""; -App::$strings["Room is full"] = ""; -App::$strings["Update Error at %s"] = ""; -App::$strings["Update %s failed. See error logs."] = ""; -App::$strings["\$Projectname Notification"] = ""; -App::$strings["\$projectname"] = ""; -App::$strings["Thank You,"] = ""; -App::$strings["%s Administrator"] = ""; -App::$strings["This email was sent by %1\$s at %2\$s."] = ""; -App::$strings["\$Projectname"] = ""; -App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = ""; -App::$strings["To stop receiving these messages, please adjust your %s."] = ""; +App::$strings["My Chatrooms"] = "私のチャットルーム"; +App::$strings["Channel Export"] = "チャンネルのエクスポート"; +App::$strings["Update"] = "更新"; +App::$strings["Install"] = "インストール"; +App::$strings["Purchase"] = "購入"; +App::$strings["Undelete"] = "元に戻す"; +App::$strings["Add to app-tray"] = "アプリトレイに追加"; +App::$strings["Remove from app-tray"] = "アプリトレイから削除"; +App::$strings["Pin to navbar"] = "navbarに固定"; +App::$strings["Unpin from navbar"] = "navbarから固定解除"; +App::$strings["Missing room name"] = "部屋名がありません"; +App::$strings["Duplicate room name"] = "部屋名が重複しています"; +App::$strings["Invalid room specifier."] = "無効な部屋指定子。"; +App::$strings["Room not found."] = "部屋が見つかりません。"; +App::$strings["Room is full"] = "部屋がいっぱいです"; +App::$strings["Update Error at %s"] = "%s更新エラー"; +App::$strings["Update %s failed. See error logs."] = "%s更新に失敗しました。エラーログを参照してください。"; +App::$strings["\$Projectname Notification"] = "$ Projectname通知"; +App::$strings["\$projectname"] = "$ projectname"; +App::$strings["Thank You,"] = "ありがとうございました、"; +App::$strings["%s Administrator"] = "%s管理者"; +App::$strings["This email was sent by %1\$s at %2\$s."] = "このメールは%1\$sが%2\$sに送信しました。"; +App::$strings["\$Projectname"] = "$ Projectname"; +App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "これらのメッセージの受信を停止するには、通知設定を%sで調整してください"; +App::$strings["To stop receiving these messages, please adjust your %s."] = "これらのメッセージの受信を停止するには、 %sを調整してください。"; App::$strings["Notification Settings"] = "通知設定"; -App::$strings["%s "] = ""; -App::$strings["[\$Projectname:Notify] New mail received at %s"] = ""; -App::$strings["%1\$s sent you a new private message at %2\$s."] = ""; -App::$strings["%1\$s sent you %2\$s."] = ""; -App::$strings["a private message"] = ""; -App::$strings["Please visit %s to view and/or reply to your private messages."] = ""; -App::$strings["commented on"] = ""; -App::$strings["liked"] = ""; -App::$strings["disliked"] = ""; -App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = ""; -App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = ""; -App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = ""; -App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = ""; -App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; -App::$strings["%1\$s commented on an item/conversation you have been following."] = ""; -App::$strings["Please visit %s to view and/or reply to the conversation."] = ""; -App::$strings["Please visit %s to approve or reject this comment."] = ""; -App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = ""; -App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = ""; -App::$strings["%1\$s liked an item/conversation you created."] = ""; -App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = ""; -App::$strings["%1\$s posted to your profile wall at %2\$s"] = ""; -App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = ""; -App::$strings["[\$Projectname:Notify] %s tagged you"] = ""; -App::$strings["%1\$s tagged you at %2\$s"] = ""; -App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = ""; -App::$strings["[\$Projectname:Notify] %1\$s poked you"] = ""; -App::$strings["%1\$s poked you at %2\$s"] = ""; -App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = ""; -App::$strings["[\$Projectname:Notify] %s tagged your post"] = ""; -App::$strings["%1\$s tagged your post at %2\$s"] = ""; -App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = ""; -App::$strings["[\$Projectname:Notify] Introduction received"] = ""; -App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = ""; -App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = ""; -App::$strings["You may visit their profile at %s"] = ""; -App::$strings["Please visit %s to approve or reject the connection request."] = ""; -App::$strings["[\$Projectname:Notify] Friend suggestion received"] = ""; -App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = ""; -App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = ""; -App::$strings["Name:"] = ""; -App::$strings["Photo:"] = ""; -App::$strings["Please visit %s to approve or reject the suggestion."] = ""; -App::$strings["[\$Projectname:Notify]"] = ""; -App::$strings["created a new post"] = ""; -App::$strings["commented on %s's post"] = ""; -App::$strings["edited a post dated %s"] = ""; -App::$strings["edited a comment dated %s"] = ""; -App::$strings["Wiki updated successfully"] = ""; -App::$strings["Wiki files deleted successfully"] = ""; -App::$strings["(No Title)"] = ""; -App::$strings["Wiki page create failed."] = ""; -App::$strings["Wiki not found."] = ""; -App::$strings["Destination name already exists"] = ""; -App::$strings["Page not found"] = ""; -App::$strings["Error reading page content"] = ""; -App::$strings["Error reading wiki"] = ""; -App::$strings["Page update failed."] = ""; -App::$strings["Nothing deleted"] = ""; -App::$strings["Compare: object not found."] = ""; -App::$strings["Page updated"] = ""; -App::$strings["Untitled"] = ""; -App::$strings["Wiki resource_id required for git commit"] = ""; -App::$strings["Name"] = ""; -App::$strings["__ctx:wiki_history__ Message"] = ""; -App::$strings["Date"] = ""; -App::$strings["Revert"] = ""; -App::$strings["Compare"] = ""; -App::$strings["__ctx:permcat__ default"] = ""; -App::$strings["__ctx:permcat__ follower"] = ""; -App::$strings["__ctx:permcat__ contributor"] = ""; -App::$strings["__ctx:permcat__ publisher"] = ""; -App::$strings["Public"] = ""; -App::$strings["Anybody in the \$Projectname network"] = ""; -App::$strings["Any account on %s"] = ""; -App::$strings["Any of my connections"] = ""; -App::$strings["Only connections I specifically allow"] = ""; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = ""; -App::$strings["Any connections including those who haven't yet been approved"] = ""; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = ""; -App::$strings["This is your default setting for who can view your default channel profile"] = ""; -App::$strings["This is your default setting for who can view your connections"] = ""; -App::$strings["This is your default setting for who can view your file storage and photos"] = ""; -App::$strings["This is your default setting for the audience of your webpages"] = ""; -App::$strings["0. Beginner/Basic"] = ""; -App::$strings["1. Novice - not skilled but willing to learn"] = ""; -App::$strings["2. Intermediate - somewhat comfortable"] = ""; -App::$strings["3. Advanced - very comfortable"] = ""; -App::$strings["4. Expert - I can write computer code"] = ""; -App::$strings["5. Wizard - I probably know more than you do"] = ""; -App::$strings["Privacy conflict. Discretion advised."] = ""; +App::$strings["%s "] = "%s <!item_type!>"; +App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[$ Projectname:Notify] %s受信した新しいメール"; +App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$sから%2\$s新しいプライベートメッセージが送信されました。"; +App::$strings["%1\$s sent you %2\$s."] = "%1\$sから%2\$s送信されました。"; +App::$strings["a private message"] = "プライベートメッセージ"; +App::$strings["Please visit %s to view and/or reply to your private messages."] = "プライベートメッセージを表示または返信するには、 %sにアクセスしてください。"; +App::$strings["commented on"] = "コメントした"; +App::$strings["liked"] = "好きだった"; +App::$strings["disliked"] = "嫌い"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s %2\$s [zrl = %3\$s ] a %4\$s [/ zrl]"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s %2\$s [zrl = %3\$s ] %4\$sの%5\$s [/ zrl]"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s %2\$s [zrl = %3\$s ] %4\$s [/ zrl]"; +App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[$ Projectname:Notify]会話へのモデレートされたコメント# %1\$d by %2\$s"; +App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[$ Projectname:Notify]会話へのコメント# %1\$d by %2\$s"; +App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$sあなたがフォローしているアイテム/会話にコメントしました。"; +App::$strings["Please visit %s to view and/or reply to the conversation."] = "会話を表示または返信するには、 %sにアクセスしてください。"; +App::$strings["Please visit %s to approve or reject this comment."] = "このコメントを承認または拒否するには、 %sにアクセスしてください。"; +App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$sが[zrl = %2\$s ] %3\$s [/ zrl]を高く評価しました"; +App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[$ Projectname:Notify]会話# %1\$dから%2\$s受け取ったようです"; +App::$strings["%1\$s liked an item/conversation you created."] = "%1\$sがあなたが作成したアイテム/会話を気に入りました。"; +App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[$ Projectname:Notify] %sプロフィールウォールに投稿されました"; +App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$sがあなたのプロフィールウォールに%2\$s投稿されました"; +App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$sが[zrl = %2\$s ]壁[/ zrl]に投稿しました"; +App::$strings["[\$Projectname:Notify] %s tagged you"] = "[$ Projectname:Notify] %sがあなたにタグを付けました"; +App::$strings["%1\$s tagged you at %2\$s"] = "%1\$sがあなたを%2\$sでタグ付けしました"; +App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl = %2\$s ]あなたにタグを付けました[/ zrl]。"; +App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[$ Projectname:Notify] %1\$sあなたを突きました"; +App::$strings["%1\$s poked you at %2\$s"] = "%1\$s %2\$sであなたを突きました"; +App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl = %2\$s ]があなたを突きました[/ zrl]。"; +App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[$ Projectname:Notify] %sがあなたの投稿にタグを付けました"; +App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$sがあなたの投稿を%2\$sでタグ付けしました"; +App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$sが[zrl = %2\$s ]あなたの投稿にタグを付けました[/ zrl]"; +App::$strings["[\$Projectname:Notify] Introduction received"] = "[$ Projectname:Notify]紹介を受け取りました"; +App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "「 %1\$s 」から%2\$s新しい接続要求を受け取りました"; +App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "[zrl = %1\$s ] %2\$sから新しい接続要求[/ zrl]を受け取りました。"; +App::$strings["You may visit their profile at %s"] = "%sで彼らのプロフィールにアクセスできます"; +App::$strings["Please visit %s to approve or reject the connection request."] = "接続リクエストを承認または拒否するには、 %sにアクセスしてください。"; +App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[$ Projectname:Notify]友人の提案を受け取りました"; +App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "「 %1\$s 」から%2\$s友達の提案を受け取りました"; +App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "[zrl = %1\$s ] %3\$sから%3\$s %2\$s友人の提案[/ zrl]を受け取りました。"; +App::$strings["Name:"] = "名:"; +App::$strings["Photo:"] = "写真:"; +App::$strings["Please visit %s to approve or reject the suggestion."] = "提案を承認または拒否するには、 %sにアクセスしてください。"; +App::$strings["[\$Projectname:Notify]"] = "[$ Projectname:Notify]"; +App::$strings["created a new post"] = "新しい投稿を作成しました"; +App::$strings["commented on %s's post"] = "%sの投稿にコメントしました"; +App::$strings["edited a post dated %s"] = "%s日付の投稿を編集しました"; +App::$strings["edited a comment dated %s"] = "%s日付のコメントを編集しました"; +App::$strings["Wiki updated successfully"] = "Wikiが正常に更新されました"; +App::$strings["Wiki files deleted successfully"] = "Wikiファイルが正常に削除されました"; +App::$strings["(No Title)"] = "(無題)"; +App::$strings["Wiki page create failed."] = "Wikiページの作成に失敗しました。"; +App::$strings["Wiki not found."] = "Wikiが見つかりません。"; +App::$strings["Destination name already exists"] = "宛先名はすでに存在します"; +App::$strings["Page not found"] = "ページが見つかりません"; +App::$strings["Error reading page content"] = "ページコンテンツの読み取りエラー"; +App::$strings["Error reading wiki"] = "Wikiの読み取りエラー"; +App::$strings["Page update failed."] = "ページの更新に失敗しました。"; +App::$strings["Nothing deleted"] = "削除されたものはありません"; +App::$strings["Compare: object not found."] = "比較:オブジェクトが見つかりません。"; +App::$strings["Page updated"] = "ページを更新しました"; +App::$strings["Untitled"] = "無題"; +App::$strings["Wiki resource_id required for git commit"] = "gitコミットにはWiki resource_idが必要です"; +App::$strings["Name"] = "名"; +App::$strings["__ctx:wiki_history__ Message"] = "メッセージ"; +App::$strings["Date"] = "日付"; +App::$strings["Revert"] = "元に戻す"; +App::$strings["Compare"] = "比較する"; +App::$strings["__ctx:permcat__ default"] = "デフォルト"; +App::$strings["__ctx:permcat__ follower"] = "信者"; +App::$strings["__ctx:permcat__ contributor"] = "寄稿者"; +App::$strings["__ctx:permcat__ publisher"] = "出版社"; +App::$strings["Public"] = "パブリック"; +App::$strings["Anybody in the \$Projectname network"] = "$ Projectnameネットワークの誰でも"; +App::$strings["Any account on %s"] = "%sアカウント"; +App::$strings["Any of my connections"] = "私の接続のいずれか"; +App::$strings["Only connections I specifically allow"] = "特に許可している接続のみ"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "認証された誰でも(他のネットワークからの訪問者を含めることができます)"; +App::$strings["Any connections including those who haven't yet been approved"] = "まだ承認されていない人を含むすべての接続"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "これは、通常のストリームと投稿の視聴者に対するデフォルト設定です。"; +App::$strings["This is your default setting for who can view your default channel profile"] = "これは、デフォルトのチャンネルプロファイルを表示できるユーザーのデフォルト設定です"; +App::$strings["This is your default setting for who can view your connections"] = "これは、接続を表示できるユーザーのデフォルト設定です"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "これは、ファイルストレージと写真を表示できるユーザーのデフォルト設定です"; +App::$strings["This is your default setting for the audience of your webpages"] = "これは、Webページのオーディエンスのデフォルト設定です"; +App::$strings["0. Beginner/Basic"] = "0.初心者/基本"; +App::$strings["1. Novice - not skilled but willing to learn"] = "1.初心者-熟練していないが、学習したい"; +App::$strings["2. Intermediate - somewhat comfortable"] = "2.中級-やや快適"; +App::$strings["3. Advanced - very comfortable"] = "3.高度-非常に快適"; +App::$strings["4. Expert - I can write computer code"] = "4.エキスパート-コンピューターコードを書くことができます"; +App::$strings["5. Wizard - I probably know more than you do"] = "5.ウィザード-私はおそらくあなたよりも多くを知っています"; +App::$strings["Privacy conflict. Discretion advised."] = "プライバシーの競合。裁量をお勧めします。"; App::$strings["Admin Delete"] = "管理者権限で消去"; App::$strings["Save to Folder"] = "フォルダーへ保存"; App::$strings["I will attend"] = "参加予定"; @@ -1066,18 +1066,18 @@ App::$strings["I abstain"] = "棄権"; App::$strings["View all"] = "すべて表示"; App::$strings["Add Tag"] = "タグの追加"; App::$strings["I like this (toggle)"] = "好き(トグル)"; -App::$strings["I don't like this (toggle)"] = ""; +App::$strings["I don't like this (toggle)"] = "気に入らない(トグル)"; App::$strings["Share This"] = "この投稿を再共有"; App::$strings["share"] = "共有"; App::$strings["Delivery Report"] = "転送状況"; App::$strings["%d comment"] = "%d件のコメント"; App::$strings["View %s's profile - %s"] = "%sのプロファイルを見る - %s"; -App::$strings["to"] = ""; -App::$strings["via"] = ""; -App::$strings["Wall-to-Wall"] = ""; -App::$strings["via Wall-To-Wall:"] = ""; +App::$strings["to"] = "に"; +App::$strings["via"] = "経由で"; +App::$strings["Wall-to-Wall"] = "壁間"; +App::$strings["via Wall-To-Wall:"] = "Wall-to-Wall経由:"; App::$strings["Attend"] = "参加"; -App::$strings["Attendance Options"] = ""; +App::$strings["Attendance Options"] = "出席オプション"; App::$strings["Vote"] = "投票"; App::$strings["Voting Options"] = "投票オプション"; App::$strings["Save Bookmarks"] = "ブックマークを保存"; @@ -1085,267 +1085,267 @@ App::$strings["Add to Calendar"] = "カレンダーへ追加"; App::$strings["Mark all seen"] = "全てを既読にする"; App::$strings["__ctx:noun__ Likes"] = "好き"; App::$strings["__ctx:noun__ Dislikes"] = "嫌い"; -App::$strings["This is you"] = ""; -App::$strings["Image"] = ""; -App::$strings["Insert Link"] = ""; -App::$strings["Video"] = ""; -App::$strings["Your full name (required)"] = ""; -App::$strings["Your email address (required)"] = ""; -App::$strings["Your website URL (optional)"] = ""; -App::$strings["Some blurb about what to do when you're new here"] = ""; -App::$strings["network"] = ""; +App::$strings["This is you"] = "これはあなたです"; +App::$strings["Image"] = "画像"; +App::$strings["Insert Link"] = "リンクを挿入"; +App::$strings["Video"] = "ビデオ"; +App::$strings["Your full name (required)"] = "あなたの氏名(必須)"; +App::$strings["Your email address (required)"] = "あなたのメールアドレス(必須)"; +App::$strings["Your website URL (optional)"] = "WebサイトのURL(オプション)"; +App::$strings["Some blurb about what to do when you're new here"] = "ここに初めて来たときに何をすべきかについてのいくつかの宣伝文句"; +App::$strings["network"] = "ネットワーク"; App::$strings["%s account blocked/unblocked"] = array( - 0 => "", - 1 => "", + 0 => "%sアカウントがブロック/ブロック解除されました", + 1 => "%sアカウントがブロック/ブロック解除されました", ); App::$strings["%s account deleted"] = array( - 0 => "", - 1 => "", + 0 => "%sアカウントが削除されました", + 1 => "%sアカウントが削除されました", ); -App::$strings["Account not found"] = ""; -App::$strings["Account '%s' blocked"] = ""; -App::$strings["Account '%s' unblocked"] = ""; -App::$strings["Administration"] = ""; -App::$strings["Accounts"] = ""; -App::$strings["select all"] = ""; -App::$strings["Registrations waiting for confirm"] = ""; -App::$strings["Request date"] = ""; -App::$strings["No registrations."] = ""; -App::$strings["Deny"] = ""; -App::$strings["Block"] = ""; -App::$strings["Unblock"] = ""; -App::$strings["ID"] = ""; -App::$strings["All Channels"] = ""; -App::$strings["Register date"] = ""; -App::$strings["Last login"] = ""; -App::$strings["Expires"] = ""; -App::$strings["Service Class"] = ""; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["Password changed for account %d."] = ""; +App::$strings["Account not found"] = "アカウントが見つかりません"; +App::$strings["Account '%s' blocked"] = "アカウント ' %s 'はブロックされました"; +App::$strings["Account '%s' unblocked"] = "アカウント ' %s 'のブロックを解除しました"; +App::$strings["Administration"] = "運営"; +App::$strings["Accounts"] = "アカウント"; +App::$strings["select all"] = "すべて選択"; +App::$strings["Registrations waiting for confirm"] = "確認待ちの登録"; +App::$strings["Request date"] = "依頼日"; +App::$strings["No registrations."] = "登録なし。"; +App::$strings["Deny"] = "拒否する"; +App::$strings["Block"] = "ブロック"; +App::$strings["Unblock"] = "ブロック解除"; +App::$strings["ID"] = "ID"; +App::$strings["All Channels"] = "すべてのチャンネル"; +App::$strings["Register date"] = "登録日"; +App::$strings["Last login"] = "前回のログイン"; +App::$strings["Expires"] = "期限切れ"; +App::$strings["Service Class"] = "サービスクラス"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "選択したアカウントは削除されます!\\ n \\ nこれらのアカウントがこのサイトに投稿したものはすべて完全に削除されます!\\ n \\ nよろしいですか?"; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "アカウント{0}は削除されます。\\ n \\ nこのアカウントがこのサイトに投稿したものはすべて完全に削除されます!\\ n \\ nよろしいですか?"; +App::$strings["Password changed for account %d."] = "アカウント%dパスワードが変更されました。"; App::$strings["Account settings updated."] = "アカウント設定は更新されました。"; -App::$strings["Account not found."] = ""; -App::$strings["Account Edit"] = ""; -App::$strings["New Password"] = ""; -App::$strings["New Password again"] = ""; -App::$strings["Account language (for emails)"] = ""; -App::$strings["Service class"] = ""; -App::$strings["Plugin %s disabled."] = ""; -App::$strings["Plugin %s enabled."] = ""; -App::$strings["Disable"] = ""; -App::$strings["Enable"] = ""; -App::$strings["Addons"] = ""; -App::$strings["Toggle"] = ""; -App::$strings["Author: "] = ""; -App::$strings["Maintainer: "] = ""; -App::$strings["Minimum project version: "] = ""; -App::$strings["Maximum project version: "] = ""; -App::$strings["Minimum PHP version: "] = ""; -App::$strings["Compatible Server Roles: "] = ""; -App::$strings["Requires: "] = ""; -App::$strings["Disabled - version incompatibility"] = ""; -App::$strings["Enter the public git repository URL of the addon repo."] = ""; -App::$strings["Addon repo git URL"] = ""; -App::$strings["Custom repo name"] = ""; -App::$strings["(optional)"] = ""; -App::$strings["Download Addon Repo"] = ""; -App::$strings["Install new repo"] = ""; -App::$strings["Manage Repos"] = ""; -App::$strings["Installed Addon Repositories"] = ""; -App::$strings["Install a New Addon Repository"] = ""; -App::$strings["Switch branch"] = ""; -App::$strings["Remove"] = ""; +App::$strings["Account not found."] = "アカウントが見つかりません。"; +App::$strings["Account Edit"] = "アカウント編集"; +App::$strings["New Password"] = "新しいパスワード"; +App::$strings["New Password again"] = "新しいパスワードを再入力"; +App::$strings["Account language (for emails)"] = "アカウント言語(メール用)"; +App::$strings["Service class"] = "サービスクラス"; +App::$strings["Plugin %s disabled."] = "プラグイン%s無効です。"; +App::$strings["Plugin %s enabled."] = "プラグイン%s有効になりました。"; +App::$strings["Disable"] = "無効にする"; +App::$strings["Enable"] = "有効にする"; +App::$strings["Addons"] = "アドオン"; +App::$strings["Toggle"] = "トグル"; +App::$strings["Author: "] = "著者:"; +App::$strings["Maintainer: "] = "メンテナー:"; +App::$strings["Minimum project version: "] = "最小プロジェクトバージョン:"; +App::$strings["Maximum project version: "] = "最大プロジェクトバージョン:"; +App::$strings["Minimum PHP version: "] = "最小PHPバージョン:"; +App::$strings["Compatible Server Roles: "] = "互換性のあるサーバーの役割:"; +App::$strings["Requires: "] = "必要なもの:"; +App::$strings["Disabled - version incompatibility"] = "無効-バージョンの非互換性"; +App::$strings["Enter the public git repository URL of the addon repo."] = "アドオンリポジトリの公開gitリポジトリURLを入力します。"; +App::$strings["Addon repo git URL"] = "アドオンリポジトリgit URL"; +App::$strings["Custom repo name"] = "カスタムリポジトリ名"; +App::$strings["(optional)"] = "(オプション)"; +App::$strings["Download Addon Repo"] = "アドオンリポジトリのダウンロード"; +App::$strings["Install new repo"] = "新しいレポをインストールする"; +App::$strings["Manage Repos"] = "リポジトリの管理"; +App::$strings["Installed Addon Repositories"] = "インストールされたアドオンリポジトリ"; +App::$strings["Install a New Addon Repository"] = "新しいアドオンリポジトリをインストールする"; +App::$strings["Switch branch"] = "スイッチブランチ"; +App::$strings["Remove"] = "削除する"; App::$strings["%s channel censored/uncensored"] = array( - 0 => "", - 1 => "", + 0 => "%sチャンネルの検閲/無検閲", + 1 => "%sチャンネルの検閲/無検閲", ); App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "", - 1 => "", + 0 => "%sチャンネルコードの許可/禁止", + 1 => "%sチャンネルコードの許可/禁止", ); App::$strings["%s channel deleted"] = array( - 0 => "", - 1 => "", + 0 => "%sチャンネルが削除されました", + 1 => "%sチャンネルが削除されました", ); -App::$strings["Channel not found"] = ""; -App::$strings["Channel '%s' deleted"] = ""; -App::$strings["Channel '%s' censored"] = ""; -App::$strings["Channel '%s' uncensored"] = ""; -App::$strings["Channel '%s' code allowed"] = ""; -App::$strings["Channel '%s' code disallowed"] = ""; -App::$strings["Channels"] = ""; -App::$strings["Censor"] = ""; -App::$strings["Uncensor"] = ""; -App::$strings["Allow Code"] = ""; -App::$strings["Disallow Code"] = ""; -App::$strings["UID"] = ""; -App::$strings["Address"] = ""; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["Update has been marked successful"] = ""; -App::$strings["Executing %s failed. Check system logs."] = ""; -App::$strings["Update %s was successfully applied."] = ""; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = ""; -App::$strings["Update function %s could not be found."] = ""; -App::$strings["Failed Updates"] = ""; -App::$strings["Mark success (if update was manually applied)"] = ""; -App::$strings["Attempt to execute this update step automatically"] = ""; -App::$strings["No failed updates."] = ""; -App::$strings["Lock feature %s"] = ""; -App::$strings["Manage Additional Features"] = ""; +App::$strings["Channel not found"] = "チャンネルが見つかりません"; +App::$strings["Channel '%s' deleted"] = "チャンネル「 %s 」を削除しました"; +App::$strings["Channel '%s' censored"] = "チャンネル ' %s 'は打ち切られました"; +App::$strings["Channel '%s' uncensored"] = "チャンネル ' %s 'は無修正"; +App::$strings["Channel '%s' code allowed"] = "チャンネル「 %s 」コードが許可されています"; +App::$strings["Channel '%s' code disallowed"] = "チャンネル ' %s 'コードは許可されていません"; +App::$strings["Channels"] = "チャンネル"; +App::$strings["Censor"] = "検閲"; +App::$strings["Uncensor"] = "無修正"; +App::$strings["Allow Code"] = "コードを許可"; +App::$strings["Disallow Code"] = "コードを許可しない"; +App::$strings["UID"] = "UID"; +App::$strings["Address"] = "住所"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "選択したチャンネルは削除されます!\\ n \\ nこのサイトのこれらのチャンネルに投稿されたものはすべて完全に削除されます!\\ n \\ nよろしいですか?"; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "チャンネル{0}は削除されます!\\ n \\ nこのサイトでこのチャンネルに投稿されたすべてのものは完全に削除されます!\\ n \\ nよろしいですか?"; +App::$strings["Update has been marked successful"] = "更新に成功のマークが付けられました"; +App::$strings["Executing %s failed. Check system logs."] = "%s実行に失敗しました。システムログを確認してください。"; +App::$strings["Update %s was successfully applied."] = "更新%sが正常に適用されました。"; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "更新%sはステータスを返しませんでした。成功した場合は不明です。"; +App::$strings["Update function %s could not be found."] = "更新関数%sが見つかりませんでした。"; +App::$strings["Failed Updates"] = "失敗した更新"; +App::$strings["Mark success (if update was manually applied)"] = "成功をマーク(更新が手動で適用された場合)"; +App::$strings["Attempt to execute this update step automatically"] = "この更新手順を自動的に実行しようとします"; +App::$strings["No failed updates."] = "失敗した更新はありません。"; +App::$strings["Lock feature %s"] = "機能%sロック"; +App::$strings["Manage Additional Features"] = "追加機能を管理する"; App::$strings["Log settings updated."] = "ログ設定が更新されました。"; -App::$strings["Logs"] = ""; -App::$strings["Clear"] = ""; -App::$strings["Debugging"] = ""; -App::$strings["Log file"] = ""; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = ""; -App::$strings["Log level"] = ""; -App::$strings["New Profile Field"] = ""; -App::$strings["Field nickname"] = ""; -App::$strings["System name of field"] = ""; -App::$strings["Input type"] = ""; -App::$strings["Field Name"] = ""; -App::$strings["Label on profile pages"] = ""; -App::$strings["Help text"] = ""; -App::$strings["Additional info (optional)"] = ""; -App::$strings["Field definition not found"] = ""; -App::$strings["Edit Profile Field"] = ""; -App::$strings["Profile Fields"] = ""; -App::$strings["Basic Profile Fields"] = ""; -App::$strings["Advanced Profile Fields"] = ""; -App::$strings["(In addition to basic fields)"] = ""; -App::$strings["All available fields"] = ""; -App::$strings["Custom Fields"] = ""; -App::$strings["Create Custom Field"] = ""; -App::$strings["Queue Statistics"] = ""; -App::$strings["Total Entries"] = ""; -App::$strings["Priority"] = ""; -App::$strings["Destination URL"] = ""; -App::$strings["Mark hub permanently offline"] = ""; -App::$strings["Empty queue for this hub"] = ""; -App::$strings["Last known contact"] = ""; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = ""; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = ""; -App::$strings["https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = ""; -App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = ""; -App::$strings["Security"] = ""; -App::$strings["Block public"] = ""; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = ""; -App::$strings["Provide a cloud root directory"] = ""; -App::$strings["The cloud root directory lists all channel names which provide public files"] = ""; -App::$strings["Show total disk space available to cloud uploads"] = ""; -App::$strings["Set \"Transport Security\" HTTP header"] = ""; -App::$strings["Set \"Content Security Policy\" HTTP header"] = ""; -App::$strings["Allowed email domains"] = ""; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; -App::$strings["Not allowed email domains"] = ""; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = ""; -App::$strings["Allow communications only from these sites"] = ""; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = ""; -App::$strings["Block communications from these sites"] = ""; -App::$strings["Allow communications only from these channels"] = ""; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = ""; -App::$strings["Block communications from these channels"] = ""; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = ""; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = ""; -App::$strings["One site per line. By default embedded content is filtered."] = ""; -App::$strings["Block embedded HTML from these domains"] = ""; +App::$strings["Logs"] = "ログ"; +App::$strings["Clear"] = "クリア"; +App::$strings["Debugging"] = "デバッグ"; +App::$strings["Log file"] = "ログファイル"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Webサーバーから書き込み可能である必要があります。最上位のWebサーバーディレクトリに関連します。"; +App::$strings["Log level"] = "ログレベル"; +App::$strings["New Profile Field"] = "新しいプロファイルフィールド"; +App::$strings["Field nickname"] = "フィールドのニックネーム"; +App::$strings["System name of field"] = "フィールドのシステム名"; +App::$strings["Input type"] = "入力方式"; +App::$strings["Field Name"] = "フィールド名"; +App::$strings["Label on profile pages"] = "プロフィールページのラベル"; +App::$strings["Help text"] = "ヘルプテキスト"; +App::$strings["Additional info (optional)"] = "追加情報(オプション)"; +App::$strings["Field definition not found"] = "フィールド定義が見つかりません"; +App::$strings["Edit Profile Field"] = "プロファイルフィールドの編集"; +App::$strings["Profile Fields"] = "プロファイルフィールド"; +App::$strings["Basic Profile Fields"] = "基本プロファイルフィールド"; +App::$strings["Advanced Profile Fields"] = "高度なプロファイルフィールド"; +App::$strings["(In addition to basic fields)"] = "(基本的なフィールドに加えて)"; +App::$strings["All available fields"] = "利用可能なすべてのフィールド"; +App::$strings["Custom Fields"] = "カスタムフィールド"; +App::$strings["Create Custom Field"] = "カスタムフィールドを作成"; +App::$strings["Queue Statistics"] = "キュー統計"; +App::$strings["Total Entries"] = "総エントリー数"; +App::$strings["Priority"] = "優先度"; +App::$strings["Destination URL"] = "リンク先URL"; +App::$strings["Mark hub permanently offline"] = "ハブを完全にオフラインとしてマークする"; +App::$strings["Empty queue for this hub"] = "このハブの空のキュー"; +App::$strings["Last known contact"] = "最後の既知の連絡先"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "デフォルトでは、埋め込みメディアではフィルタリングされていないHTMLが許可されています。これは本質的に安全ではありません。"; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "推奨される設定は、次のサイトからのフィルタリングされていないHTMLのみを許可することです。"; +App::$strings["https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "他のすべての埋め込みコンテンツはフィルタリングされ、そのサイトからの埋め込みコンテンツが明示的にブロックされない限り 。"; +App::$strings["Security"] = "セキュリティ"; +App::$strings["Block public"] = "一般公開をブロック"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "現在認証されていない限り、このサイトで公開されている他のすべての個人ページへの公開アクセスをブロックする場合にオンにします。"; +App::$strings["Provide a cloud root directory"] = "クラウドルートディレクトリを提供する"; +App::$strings["The cloud root directory lists all channel names which provide public files"] = "クラウドルートディレクトリには、パブリックファイルを提供するすべてのチャネル名がリストされます"; +App::$strings["Show total disk space available to cloud uploads"] = "クラウドアップロードに使用可能な合計ディスク容量を表示する"; +App::$strings["Set \"Transport Security\" HTTP header"] = "\ "Transport Security \" HTTPヘッダーを設定します"; +App::$strings["Set \"Content Security Policy\" HTTP header"] = "「コンテンツセキュリティポリシー」HTTPヘッダーを設定します"; +App::$strings["Allowed email domains"] = "許可されたメールドメイン"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "このサイトへの登録用の電子メールアドレスで許可されるドメインのカンマ区切りリスト。ワイルドカードが受け入れられます。すべてのドメインを許可するには空"; +App::$strings["Not allowed email domains"] = "メールドメインは許可されていません"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "このサイトへの登録用の電子メールアドレスで許可されていないドメインのカンマ区切りリスト。ワイルドカードが受け入れられます。許可されたドメインが定義されていない限り、すべてのドメインを許可するには空にします。"; +App::$strings["Allow communications only from these sites"] = "これらのサイトからの通信のみを許可する"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "1行に1つのサイト。空のままにして、デフォルトでどこからでも通信できるようにします"; +App::$strings["Block communications from these sites"] = "これらのサイトからの通信をブロックする"; +App::$strings["Allow communications only from these channels"] = "これらのチャネルからの通信のみを許可する"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "1行に1つのチャネル(ハッシュ)。デフォルトで任意のチャンネルから許可するには空のままにします"; +App::$strings["Block communications from these channels"] = "これらのチャネルからの通信をブロックする"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "安全な(SSL)Webサイトおよびリンクからの埋め込みのみを許可します。"; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "これらのドメインからのみ、フィルタリングされていない埋め込みHTMLコンテンツを許可します"; +App::$strings["One site per line. By default embedded content is filtered."] = "1行に1つのサイト。デフォルトでは、埋め込みコンテンツはフィルタリングされます。"; +App::$strings["Block embedded HTML from these domains"] = "これらのドメインからの埋め込みHTMLをブロックする"; App::$strings["Site settings updated."] = "サイトの設定は更新されました。"; -App::$strings["%s - (Incompatible)"] = ""; -App::$strings["mobile"] = ""; -App::$strings["experimental"] = ""; -App::$strings["unsupported"] = ""; -App::$strings["Yes - with approval"] = ""; -App::$strings["My site is not a public server"] = ""; -App::$strings["My site has paid access only"] = ""; -App::$strings["My site has free access only"] = ""; -App::$strings["My site offers free accounts with optional paid upgrades"] = ""; +App::$strings["%s - (Incompatible)"] = "%s (互換性なし)"; +App::$strings["mobile"] = "モバイル"; +App::$strings["experimental"] = "実験的"; +App::$strings["unsupported"] = "サポートされていない"; +App::$strings["Yes - with approval"] = "はい-承認済み"; +App::$strings["My site is not a public server"] = "私のサイトは公開サーバーではありません"; +App::$strings["My site has paid access only"] = "私のサイトは有料アクセスのみです"; +App::$strings["My site has free access only"] = "私のサイトは無料アクセスのみです"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "私のサイトはオプションの有料アップグレードで無料アカウントを提供しています"; App::$strings["Default permission role for new accounts"] = "新しいアカウントへのデフォルトの権限定義"; -App::$strings["This role will be used for the first channel created after registration."] = ""; +App::$strings["This role will be used for the first channel created after registration."] = "この役割は、登録後に作成される最初のチャネルに使用されます。"; App::$strings["Site"] = "サイト"; App::$strings["Registration"] = "登録"; App::$strings["File upload"] = "ファイルをアップロード"; App::$strings["Policies"] = "ポリシー"; App::$strings["Site name"] = "サイト名"; App::$strings["Banner/Logo"] = "バナー/ロゴ"; -App::$strings["Unfiltered HTML/CSS/JS is allowed"] = ""; +App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "フィルタリングされていないHTML / CSS / JSは許可されます"; App::$strings["Administrator Information"] = "管理者情報"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = ""; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "サイト管理者の連絡先情報。 siteinfoページに表示されます。 BBCodeはここで使用できます"; App::$strings["Site Information"] = "サイト情報"; -App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = ""; +App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "このサイトの一般公開されている説明。 siteinfoページに表示されます。 BBCodeはここで使用できます"; App::$strings["System language"] = "システム言語"; App::$strings["System theme"] = "システムテーマ"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; -App::$strings["Allow Feeds as Connections"] = ""; -App::$strings["(Heavy system resource usage)"] = ""; -App::$strings["Maximum image size"] = ""; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; -App::$strings["Does this site allow new member registration?"] = ""; -App::$strings["Invitation only"] = ""; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = ""; -App::$strings["Minimum age"] = ""; -App::$strings["Minimum age (in years) for who may register on this site."] = ""; -App::$strings["Which best describes the types of account offered by this hub?"] = ""; -App::$strings["This is displayed on the public server site list."] = ""; -App::$strings["Register text"] = ""; -App::$strings["Will be displayed prominently on the registration page."] = ""; -App::$strings["Site homepage to show visitors (default: login box)"] = ""; -App::$strings["example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = ""; -App::$strings["Preserve site homepage URL"] = ""; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = ""; -App::$strings["Accounts abandoned after x days"] = ""; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; -App::$strings["Allowed friend domains"] = ""; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; -App::$strings["Verify Email Addresses"] = ""; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = ""; -App::$strings["Force publish"] = ""; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = ""; -App::$strings["Import Public Streams"] = ""; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = ""; -App::$strings["Site only Public Streams"] = ""; -App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = ""; -App::$strings["Allow anybody on the internet to access the Public streams"] = ""; -App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = ""; -App::$strings["Only import Public stream posts with this text"] = ""; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = ""; -App::$strings["Do not import Public stream posts with this text"] = ""; -App::$strings["Login on Homepage"] = ""; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = ""; -App::$strings["Enable context help"] = ""; -App::$strings["Display contextual help for the current page when the help button is pressed."] = ""; -App::$strings["Reply-to email address for system generated email."] = ""; -App::$strings["Sender (From) email address for system generated email."] = ""; -App::$strings["Name of email sender for system generated email."] = ""; -App::$strings["Directory Server URL"] = ""; -App::$strings["Default directory server"] = ""; -App::$strings["Proxy user"] = ""; -App::$strings["Proxy URL"] = ""; -App::$strings["Network timeout"] = ""; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; -App::$strings["Delivery interval"] = ""; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; -App::$strings["Deliveries per process"] = ""; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = ""; -App::$strings["Queue Threshold"] = ""; -App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = ""; -App::$strings["Poll interval"] = ""; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; -App::$strings["Path to ImageMagick convert program"] = ""; -App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = ""; -App::$strings["Allow SVG thumbnails in file browser"] = ""; -App::$strings["WARNING: SVG images may contain malicious code."] = ""; -App::$strings["Maximum Load Average"] = ""; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; -App::$strings["Expiration period in days for imported (grid/network) content"] = ""; -App::$strings["0 for no expiration of imported content"] = ""; -App::$strings["Do not expire any posts which have comments less than this many days ago"] = ""; -App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = ""; -App::$strings["Create this page first. Default is %s/register"] = ""; -App::$strings["Page to display after creating a new channel"] = ""; -App::$strings["Default: profiles"] = ""; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "デフォルトのシステムテーマ-ユーザープロファイルによって上書きされる場合があります-テーマ設定の変更"; +App::$strings["Allow Feeds as Connections"] = "接続としてフィードを許可する"; +App::$strings["(Heavy system resource usage)"] = "(重いシステムリソースの使用)"; +App::$strings["Maximum image size"] = "最大画像サイズ"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "アップロードされる画像の最大サイズ(バイト単位)。デフォルトは0で、制限がないことを意味します。"; +App::$strings["Does this site allow new member registration?"] = "このサイトは新規会員登録を許可していますか?"; +App::$strings["Invitation only"] = "招待のみ"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "招待コードを使用した新しいメンバー登録のみを許可します。上記の登録ポリシーは「はい」に設定する必要があります。"; +App::$strings["Minimum age"] = "最低年齢"; +App::$strings["Minimum age (in years) for who may register on this site."] = "このサイトに登録できる最低年齢(年)。"; +App::$strings["Which best describes the types of account offered by this hub?"] = "このハブが提供するアカウントの種類を最もよく説明しているのはどれですか?"; +App::$strings["This is displayed on the public server site list."] = "これは、公開サーバーのサイトリストに表示されます。"; +App::$strings["Register text"] = "登録テキスト"; +App::$strings["Will be displayed prominently on the registration page."] = "登録ページに目立つように表示されます。"; +App::$strings["Site homepage to show visitors (default: login box)"] = "訪問者を表示するサイトのホームページ(デフォルト:ログインボックス)"; +App::$strings["example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "例:パブリックストリームを表示する「pubstream」、「home」または「include:home.html」と呼ばれるシステムWebページを表示する「page / sys / home」はファイルを含めます。"; +App::$strings["Preserve site homepage URL"] = "サイトのホームページURLを保持"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "リダイレクトする代わりに、サイトのホームページを元の場所のフレームに表示します"; +App::$strings["Accounts abandoned after x days"] = "x日後に放棄されたアカウント"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "放棄されたアカウントの外部サイトをポーリングするシステムリソースを無駄にしません。時間制限なしの場合は0を入力します。"; +App::$strings["Allowed friend domains"] = "許可された友達ドメイン"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "このサイトとの友情を確立できるドメインのカンマ区切りリスト。ワイルドカードが受け入れられます。すべてのドメインを許可するには空"; +App::$strings["Verify Email Addresses"] = "メールアドレスを確認する"; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = "アカウント登録で使用されるメールアドレスを確認してください(推奨)。"; +App::$strings["Force publish"] = "強制公開"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "このサイトのすべてのプロファイルがサイトディレクトリにリストされるように強制する場合はオンにします。"; +App::$strings["Import Public Streams"] = "パブリックストリームをインポートする"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "他のサイトから取得した公開コンテンツをインポートしてアクセスを許可します。警告:このコンテンツはモデレートされていません。"; +App::$strings["Site only Public Streams"] = "サイトのみの公開ストリーム"; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "インポートされたパブリックストリームが無効になっている場合、このサイトからのみ発信されるパブリックコンテンツへのアクセスを許可します。"; +App::$strings["Allow anybody on the internet to access the Public streams"] = "インターネット上の誰でもパブリックストリームにアクセスできるようにする"; +App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "表示する前に認証を要求するには無効にします。警告:このコンテンツはモデレートされていません。"; +App::$strings["Only import Public stream posts with this text"] = "このテキストを含む公開ストリーム投稿のみをインポートします"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "1行に1語ずつ、または#tagsまたは/ patterns /またはlang = xx。すべての投稿をインポートするには空白のままにします"; +App::$strings["Do not import Public stream posts with this text"] = "このテキストを含む公開ストリームの投稿をインポートしないでください"; +App::$strings["Login on Homepage"] = "ホームページにログイン"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "他のコンテンツが設定されていない場合、ホームページで訪問者にログインボックスを提示します。"; +App::$strings["Enable context help"] = "コンテキストヘルプを有効にする"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "ヘルプボタンが押されたときに、現在のページのコンテキストヘルプを表示します。"; +App::$strings["Reply-to email address for system generated email."] = "システム生成メールの返信先メールアドレス。"; +App::$strings["Sender (From) email address for system generated email."] = "システムが生成した電子メールの送信者(差出人)電子メールアドレス。"; +App::$strings["Name of email sender for system generated email."] = "システムが生成した電子メールの電子メール送信者の名前。"; +App::$strings["Directory Server URL"] = "ディレクトリサーバーのURL"; +App::$strings["Default directory server"] = "デフォルトのディレクトリサーバー"; +App::$strings["Proxy user"] = "プロキシユーザー"; +App::$strings["Proxy URL"] = "プロキシURL"; +App::$strings["Network timeout"] = "ネットワークタイムアウト"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "値は秒単位です。無制限の場合は0に設定します(推奨されません)。"; +App::$strings["Delivery interval"] = "配送間隔"; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "システムの負荷を軽減するには、バックグラウンド配信プロセスをこの数秒遅らせます。推奨:共有ホストには4〜5、仮想プライベートサーバーには2〜3。大規模な専用サーバーの場合は0-1。"; +App::$strings["Deliveries per process"] = "プロセスごとの配達"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "単一のオペレーティングシステムプロセスで試行する配信の数。必要に応じて調整して、システムのパフォーマンスを調整します。推奨:1-5。"; +App::$strings["Queue Threshold"] = "キューのしきい値"; +App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "キューにこの数を超えるエントリが含まれる場合は、即時配信を常に延期します。"; +App::$strings["Poll interval"] = "ポーリング間隔"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "バックグラウンドポーリングプロセスをこの数秒遅らせて、システムの負荷を減らします。 0の場合、配信間隔を使用します。"; +App::$strings["Path to ImageMagick convert program"] = "ImageMagick変換プログラムへのパス"; +App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "設定されている場合、このプログラムを使用して巨大な画像(いずれかの次元で4000ピクセル以上)の写真のサムネイルを生成します。そうしないと、メモリ不足が発生する可能性があります。例:/ usr / bin / convert"; +App::$strings["Allow SVG thumbnails in file browser"] = "ファイルブラウザでSVGサムネイルを許可する"; +App::$strings["WARNING: SVG images may contain malicious code."] = "警告:SVG画像には悪意のあるコードが含まれている場合があります。"; +App::$strings["Maximum Load Average"] = "最大負荷平均"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "配信およびポーリングプロセスが延期される前の最大システム負荷-デフォルトは50。"; +App::$strings["Expiration period in days for imported (grid/network) content"] = "インポートされた(グリッド/ネットワーク)コンテンツの有効期限(日数)"; +App::$strings["0 for no expiration of imported content"] = "インポートされたコンテンツの有効期限がない場合は0"; +App::$strings["Do not expire any posts which have comments less than this many days ago"] = "この数日前よりもコメントが少ない投稿を期限切れにしないでください。"; +App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "パブリックサーバー:新規登録者向けのオプションのランディング(マーケティング)Webページ"; +App::$strings["Create this page first. Default is %s/register"] = "最初にこのページを作成します。デフォルトは%s / registerです"; +App::$strings["Page to display after creating a new channel"] = "新しいチャンネルを作成した後に表示するページ"; +App::$strings["Default: profiles"] = "デフォルト:プロファイル"; App::$strings["Optional: site location"] = "サイトの所在地:オプション"; -App::$strings["Region or country"] = ""; +App::$strings["Region or country"] = "地域または国"; App::$strings["Theme settings updated."] = "テーマ設定は保存されました。"; App::$strings["No themes found."] = "テーマが見つかりませんでした。"; App::$strings["Screenshot"] = "スクリーンショット"; @@ -1353,1322 +1353,1322 @@ App::$strings["Themes"] = "テーマ"; App::$strings["[Experimental]"] = "[実験的]"; App::$strings["[Unsupported]"] = "[サポート無し]"; App::$strings["Blocked accounts"] = "ブロックされたアカウント"; -App::$strings["Expired accounts"] = ""; -App::$strings["Expiring accounts"] = ""; +App::$strings["Expired accounts"] = "期限切れのアカウント"; +App::$strings["Expiring accounts"] = "期限切れのアカウント"; App::$strings["Message queues"] = "メッセージのキュー"; App::$strings["Your software should be updated"] = "ソフトのアップデートをしてください。"; -App::$strings["Summary"] = ""; +App::$strings["Summary"] = "概要"; App::$strings["Registered accounts"] = "登録されているアカウント"; -App::$strings["Pending registrations"] = ""; +App::$strings["Pending registrations"] = "保留中の登録"; App::$strings["Registered channels"] = "登録されているチャンネル"; App::$strings["Active addons"] = "有効なアドオン"; App::$strings["Version"] = "バージョン"; App::$strings["Repository version (master)"] = "リポジトリバージョン(master)"; App::$strings["Repository version (dev)"] = "リポジトリバージョン(dev)"; -App::$strings["Affinity Tool settings updated."] = ""; -App::$strings["This app presents a slider control in your connection editor and also on your network page. The slider represents your degree of friendship (affinity) with each connection. It allows you to zoom in or out and display conversations from only your closest friends or everybody in your stream."] = ""; -App::$strings["Affinity Tool App"] = ""; -App::$strings["Not Installed"] = ""; -App::$strings["The numbers below represent the minimum and maximum slider default positions for your network/stream page as a percentage."] = ""; -App::$strings["Default maximum affinity level"] = ""; -App::$strings["0-99 default 99"] = ""; -App::$strings["Default minimum affinity level"] = ""; -App::$strings["0-99 - default 0"] = ""; -App::$strings["Persistent affinity levels"] = ""; -App::$strings["If disabled the max and min levels will be reset to default after page reload"] = ""; -App::$strings["Affinity Tool Settings"] = ""; -App::$strings["Authorize application connection"] = ""; -App::$strings["Return to your app and insert this Security Code:"] = ""; -App::$strings["Please login to continue."] = ""; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = ""; -App::$strings["App installed."] = ""; -App::$strings["Malformed app."] = ""; -App::$strings["Embed code"] = ""; -App::$strings["Edit App"] = ""; -App::$strings["Create App"] = ""; -App::$strings["Name of app"] = ""; -App::$strings["Location (URL) of app"] = ""; -App::$strings["Description"] = ""; -App::$strings["Photo icon URL"] = ""; -App::$strings["80 x 80 pixels - optional"] = ""; -App::$strings["Categories (optional, comma separated list)"] = ""; -App::$strings["Version ID"] = ""; -App::$strings["Price of app"] = ""; -App::$strings["Location (URL) to purchase app"] = ""; -App::$strings["Change Order of Pinned Navbar Apps"] = ""; -App::$strings["Change Order of App Tray Apps"] = ""; -App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = ""; -App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = ""; -App::$strings["Available Apps"] = ""; -App::$strings["Installed Apps"] = ""; -App::$strings["Manage Apps"] = ""; -App::$strings["Create Custom App"] = ""; -App::$strings["Articles App"] = ""; -App::$strings["Create interactive articles"] = ""; -App::$strings["Add Article"] = ""; -App::$strings["Create"] = ""; -App::$strings["Item not found"] = ""; -App::$strings["Channel not found."] = ""; -App::$strings["Edit Article"] = ""; -App::$strings["Item not available."] = ""; -App::$strings["Unknown App"] = ""; -App::$strings["Authorize"] = ""; -App::$strings["Do you authorize the app %s to access your channel data?"] = ""; -App::$strings["Allow"] = ""; -App::$strings["Invalid item."] = ""; -App::$strings["Block Name"] = ""; -App::$strings["Block Title"] = ""; -App::$strings["Created"] = ""; -App::$strings["Edited"] = ""; -App::$strings["View"] = ""; -App::$strings["Bookmark added"] = ""; -App::$strings["Bookmarks App"] = ""; -App::$strings["Bookmark links from posts and manage them"] = ""; -App::$strings["My Bookmarks"] = ""; -App::$strings["My Connections Bookmarks"] = ""; -App::$strings["Permissions denied."] = ""; -App::$strings["l, F j"] = ""; -App::$strings["Edit Event"] = ""; -App::$strings["Create Event"] = ""; -App::$strings["Previous"] = ""; -App::$strings["Next"] = ""; -App::$strings["Today"] = ""; -App::$strings["Cards App"] = ""; -App::$strings["Create personal planning cards"] = ""; -App::$strings["Add Card"] = ""; -App::$strings["INVALID EVENT DISMISSED!"] = ""; -App::$strings["Summary: "] = ""; -App::$strings["Date: "] = ""; -App::$strings["Reason: "] = ""; -App::$strings["INVALID CARD DISMISSED!"] = ""; -App::$strings["Name: "] = ""; -App::$strings["CalDAV App"] = ""; -App::$strings["CalDAV capable calendar"] = ""; -App::$strings["CardDAV App"] = ""; -App::$strings["CalDAV capable addressbook"] = ""; -App::$strings["Event title"] = ""; -App::$strings["Start date and time"] = ""; -App::$strings["End date and time"] = ""; -App::$strings["Month"] = ""; -App::$strings["Week"] = ""; -App::$strings["Day"] = ""; -App::$strings["List month"] = ""; -App::$strings["List week"] = ""; -App::$strings["List day"] = ""; -App::$strings["More"] = ""; -App::$strings["Less"] = ""; -App::$strings["Select calendar"] = ""; -App::$strings["Delete all"] = ""; -App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = ""; -App::$strings["Organisation"] = ""; -App::$strings["Title"] = ""; -App::$strings["Phone"] = ""; -App::$strings["Instant messenger"] = ""; -App::$strings["Website"] = ""; -App::$strings["Note"] = ""; -App::$strings["Add Contact"] = ""; -App::$strings["Add Field"] = ""; -App::$strings["P.O. Box"] = ""; -App::$strings["Additional"] = ""; -App::$strings["Street"] = ""; -App::$strings["Locality"] = ""; -App::$strings["Region"] = ""; -App::$strings["ZIP Code"] = ""; -App::$strings["Country"] = ""; -App::$strings["Default Calendar"] = ""; -App::$strings["Default Addressbook"] = ""; -App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = ""; -App::$strings["Change channel nickname/address"] = ""; -App::$strings["WARNING: "] = ""; -App::$strings["Any/all connections on other networks will be lost!"] = ""; -App::$strings["Please enter your password for verification:"] = ""; -App::$strings["New channel address"] = ""; -App::$strings["Rename Channel"] = ""; -App::$strings["You must be logged in to see this page."] = ""; -App::$strings["Posts and comments"] = ""; -App::$strings["Only posts"] = ""; -App::$strings["Insufficient permissions. Request redirected to profile page."] = ""; -App::$strings["Search Results For:"] = ""; -App::$strings["Reset form"] = ""; -App::$strings["You must enable javascript for your browser to be able to view this content."] = ""; -App::$strings["toggle full screen mode"] = ""; -App::$strings["Chatrooms App"] = ""; -App::$strings["Access Controlled Chatrooms"] = ""; -App::$strings["Room not found"] = ""; -App::$strings["Leave Room"] = ""; -App::$strings["Delete Room"] = ""; -App::$strings["I am away right now"] = ""; -App::$strings["I am online"] = ""; -App::$strings["Bookmark this room"] = ""; -App::$strings["New Chatroom"] = ""; -App::$strings["Chatroom name"] = ""; -App::$strings["Expiration of chats (minutes)"] = ""; -App::$strings["%1\$s's Chatrooms"] = ""; -App::$strings["No chatrooms available"] = ""; -App::$strings["Create New"] = ""; -App::$strings["Expiration"] = ""; -App::$strings["min"] = ""; -App::$strings["Away"] = ""; -App::$strings["Online"] = ""; -App::$strings["Not found"] = ""; -App::$strings["Please refresh page"] = ""; -App::$strings["Unknown error"] = ""; -App::$strings["No channel."] = ""; -App::$strings["No connections in common."] = ""; -App::$strings["View Common Connections"] = ""; -App::$strings["Continue"] = ""; -App::$strings["Premium Channel App"] = ""; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = ""; -App::$strings["Premium Channel Setup"] = ""; -App::$strings["Enable premium channel connection restrictions"] = ""; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = ""; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = ""; -App::$strings["Potential connections will then see the following text before proceeding:"] = ""; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = ""; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = ""; -App::$strings["Restricted or Premium Channel"] = ""; -App::$strings["Active"] = ""; -App::$strings["Blocked"] = ""; -App::$strings["Ignored"] = ""; -App::$strings["Hidden"] = ""; -App::$strings["Archived/Unreachable"] = ""; -App::$strings["New"] = ""; -App::$strings["All"] = ""; -App::$strings["Active Connections"] = ""; -App::$strings["Show active connections"] = ""; -App::$strings["New Connections"] = ""; -App::$strings["Show pending (new) connections"] = ""; -App::$strings["Only show blocked connections"] = ""; -App::$strings["Only show ignored connections"] = ""; -App::$strings["Only show archived/unreachable connections"] = ""; -App::$strings["Only show hidden connections"] = ""; -App::$strings["All Connections"] = ""; -App::$strings["Show all connections"] = ""; -App::$strings["Pending approval"] = ""; -App::$strings["Archived"] = ""; -App::$strings["Not connected at this location"] = ""; -App::$strings["%1\$s [%2\$s]"] = ""; -App::$strings["Edit connection"] = ""; -App::$strings["Delete connection"] = ""; -App::$strings["Channel address"] = ""; -App::$strings["Call"] = ""; -App::$strings["Status"] = ""; -App::$strings["Connected"] = ""; -App::$strings["Approve connection"] = ""; -App::$strings["Ignore connection"] = ""; -App::$strings["Ignore"] = ""; -App::$strings["Recent activity"] = ""; -App::$strings["Search your connections"] = ""; -App::$strings["Connections search"] = ""; -App::$strings["Could not access contact record."] = ""; -App::$strings["Could not locate selected profile."] = ""; -App::$strings["Connection updated."] = ""; -App::$strings["Failed to update connection record."] = ""; -App::$strings["is now connected to"] = ""; -App::$strings["Could not access address book record."] = ""; -App::$strings["Refresh failed - channel is currently unavailable."] = ""; -App::$strings["Unable to set address book parameters."] = ""; -App::$strings["Connection has been removed."] = ""; -App::$strings["View %s's profile"] = ""; -App::$strings["Refresh Permissions"] = ""; -App::$strings["Fetch updated permissions"] = ""; -App::$strings["Refresh Photo"] = ""; -App::$strings["Fetch updated photo"] = ""; -App::$strings["View recent posts and comments"] = ""; -App::$strings["Block (or Unblock) all communications with this connection"] = ""; -App::$strings["This connection is blocked!"] = ""; -App::$strings["Unignore"] = ""; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = ""; -App::$strings["This connection is ignored!"] = ""; -App::$strings["Unarchive"] = ""; -App::$strings["Archive"] = ""; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = ""; -App::$strings["This connection is archived!"] = ""; -App::$strings["Unhide"] = ""; -App::$strings["Hide"] = ""; -App::$strings["Hide or Unhide this connection from your other connections"] = ""; -App::$strings["This connection is hidden!"] = ""; -App::$strings["Delete this connection"] = ""; -App::$strings["Fetch Vcard"] = ""; -App::$strings["Fetch electronic calling card for this connection"] = ""; -App::$strings["Open Individual Permissions section by default"] = ""; -App::$strings["Affinity"] = ""; -App::$strings["Open Set Affinity section by default"] = ""; -App::$strings["Me"] = ""; -App::$strings["Family"] = ""; -App::$strings["Acquaintances"] = ""; -App::$strings["Filter"] = ""; -App::$strings["Open Custom Filter section by default"] = ""; -App::$strings["Approve this connection"] = ""; -App::$strings["Accept connection to allow communication"] = ""; -App::$strings["Set Affinity"] = ""; -App::$strings["Set Profile"] = ""; -App::$strings["Set Affinity & Profile"] = ""; -App::$strings["This connection is unreachable from this location."] = ""; -App::$strings["This connection may be unreachable from other channel locations."] = ""; -App::$strings["Location independence is not supported by their network."] = ""; -App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = ""; -App::$strings["Connection Default Permissions"] = ""; -App::$strings["Apply these permissions automatically"] = ""; -App::$strings["Connection requests will be approved without your interaction"] = ""; -App::$strings["Permission role"] = ""; -App::$strings["Add permission role"] = ""; -App::$strings["This connection's primary address is"] = ""; -App::$strings["Available locations:"] = ""; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = ""; -App::$strings["Connection Tools"] = ""; -App::$strings["Slide to adjust your degree of friendship"] = ""; -App::$strings["Slide to adjust your rating"] = ""; -App::$strings["Optionally explain your rating"] = ""; -App::$strings["Custom Filter"] = ""; -App::$strings["Only import posts with this text"] = ""; -App::$strings["Do not import posts with this text"] = ""; -App::$strings["This information is public!"] = ""; -App::$strings["Connection Pending Approval"] = ""; -App::$strings["inherited"] = ""; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = ""; -App::$strings["Their Settings"] = ""; -App::$strings["My Settings"] = ""; -App::$strings["Individual Permissions"] = ""; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = ""; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = ""; -App::$strings["Last update:"] = ""; -App::$strings["Details"] = ""; -App::$strings["Image uploaded but image cropping failed."] = ""; -App::$strings["Cover Photos"] = ""; -App::$strings["Image resize failed."] = ""; -App::$strings["Image upload failed."] = ""; -App::$strings["Unable to process image."] = ""; -App::$strings["Photo not available."] = ""; -App::$strings["Your cover photo may be visible to anybody on the internet"] = ""; -App::$strings["Upload File:"] = ""; -App::$strings["Select a profile:"] = ""; -App::$strings["Change Cover Photo"] = ""; -App::$strings["Upload"] = ""; -App::$strings["Use a photo from your albums"] = ""; -App::$strings["Choose a different album"] = ""; -App::$strings["Select existing photo"] = ""; -App::$strings["Crop Image"] = ""; -App::$strings["Please adjust the image cropping for optimum viewing."] = ""; -App::$strings["Done Editing"] = ""; -App::$strings["Settings updated."] = ""; -App::$strings["Default Permissions App"] = ""; -App::$strings["Set custom default permissions for new connections"] = ""; -App::$strings["If enabled, connection requests will be approved without your interaction"] = ""; -App::$strings["Automatic approval settings"] = ""; -App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = ""; -App::$strings["Public access denied."] = ""; -App::$strings["No default suggestions were found."] = ""; +App::$strings["Affinity Tool settings updated."] = "アフィニティツールの設定が更新されました。"; +App::$strings["This app presents a slider control in your connection editor and also on your network page. The slider represents your degree of friendship (affinity) with each connection. It allows you to zoom in or out and display conversations from only your closest friends or everybody in your stream."] = "このアプリは、接続エディターおよびネットワークページにスライダーコントロールを表示します。スライダーは、各接続との友好度(親和性)を表します。ズームインまたはズームアウトして、親しい友人またはストリーム内の全員からの会話を表示できます。"; +App::$strings["Affinity Tool App"] = "アフィニティツールアプリ"; +App::$strings["Not Installed"] = "インストールされていない"; +App::$strings["The numbers below represent the minimum and maximum slider default positions for your network/stream page as a percentage."] = "以下の数字は、ネットワーク/ストリームページのスライダーのデフォルトの最小および最大位置をパーセンテージで表しています。"; +App::$strings["Default maximum affinity level"] = "デフォルトの最大アフィニティレベル"; +App::$strings["0-99 default 99"] = "0-99デフォルト99"; +App::$strings["Default minimum affinity level"] = "デフォルトの最小アフィニティレベル"; +App::$strings["0-99 - default 0"] = "0-99-デフォルト0"; +App::$strings["Persistent affinity levels"] = "永続的なアフィニティレベル"; +App::$strings["If disabled the max and min levels will be reset to default after page reload"] = "無効にすると、ページのリロード後に最大レベルと最小レベルがデフォルトにリセットされます"; +App::$strings["Affinity Tool Settings"] = "アフィニティツールの設定"; +App::$strings["Authorize application connection"] = "アプリケーション接続を許可する"; +App::$strings["Return to your app and insert this Security Code:"] = "アプリに戻り、このセキュリティコードを挿入します。"; +App::$strings["Please login to continue."] = "続行するにはログインしてください。"; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "このアプリケーションを許可して、投稿や連絡先にアクセスしたり、新しい投稿を作成したりしますか?"; +App::$strings["App installed."] = "アプリがインストールされました。"; +App::$strings["Malformed app."] = "不正なアプリ。"; +App::$strings["Embed code"] = "埋め込みコード"; +App::$strings["Edit App"] = "アプリを編集"; +App::$strings["Create App"] = "アプリを作成"; +App::$strings["Name of app"] = "アプリの名前"; +App::$strings["Location (URL) of app"] = "アプリの場所(URL)"; +App::$strings["Description"] = "説明"; +App::$strings["Photo icon URL"] = "写真アイコンURL"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80ピクセル-オプション"; +App::$strings["Categories (optional, comma separated list)"] = "カテゴリー(オプション、コンマ区切りリスト)"; +App::$strings["Version ID"] = "バージョンID"; +App::$strings["Price of app"] = "アプリの価格"; +App::$strings["Location (URL) to purchase app"] = "アプリを購入する場所(URL)"; +App::$strings["Change Order of Pinned Navbar Apps"] = "固定されたNavbarアプリの順序を変更する"; +App::$strings["Change Order of App Tray Apps"] = "アプリトレイアプリの順序を変更する"; +App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "矢印を使用して、対応するアプリをナビゲーションバーで左(上)または右(下)に移動します"; +App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "矢印を使用して、対応するアプリをアプリトレイ内で上下に移動します"; +App::$strings["Available Apps"] = "利用可能なアプリ"; +App::$strings["Installed Apps"] = "インストール済みアプリ"; +App::$strings["Manage Apps"] = "アプリを管理する"; +App::$strings["Create Custom App"] = "カスタムアプリを作成する"; +App::$strings["Articles App"] = "記事アプリ"; +App::$strings["Create interactive articles"] = "インタラクティブな記事を作成する"; +App::$strings["Add Article"] = "記事を追加"; +App::$strings["Create"] = "作成する"; +App::$strings["Item not found"] = "アイテムが見つかりません"; +App::$strings["Channel not found."] = "チャンネルが見つかりません。"; +App::$strings["Edit Article"] = "記事を編集"; +App::$strings["Item not available."] = "アイテムは利用できません。"; +App::$strings["Unknown App"] = "不明なアプリ"; +App::$strings["Authorize"] = "許可する"; +App::$strings["Do you authorize the app %s to access your channel data?"] = "アプリ%sにチャンネルデータへのアクセスを許可していますか?"; +App::$strings["Allow"] = "許可する"; +App::$strings["Invalid item."] = "無効なアイテム。"; +App::$strings["Block Name"] = "ブロック名"; +App::$strings["Block Title"] = "ブロックタイトル"; +App::$strings["Created"] = "作成した"; +App::$strings["Edited"] = "編集済み"; +App::$strings["View"] = "表示する"; +App::$strings["Bookmark added"] = "ブックマークを追加しました"; +App::$strings["Bookmarks App"] = "ブックマークアプリ"; +App::$strings["Bookmark links from posts and manage them"] = "投稿のリンクをブックマークして管理する"; +App::$strings["My Bookmarks"] = "私のブックマーク"; +App::$strings["My Connections Bookmarks"] = "私の接続ブックマーク"; +App::$strings["Permissions denied."] = "許可が拒否されました。"; +App::$strings["l, F j"] = "l、F j"; +App::$strings["Edit Event"] = "イベントを編集"; +App::$strings["Create Event"] = "イベントを作成"; +App::$strings["Previous"] = "前"; +App::$strings["Next"] = "次"; +App::$strings["Today"] = "今日"; +App::$strings["Cards App"] = "カードアプリ"; +App::$strings["Create personal planning cards"] = "個人計画カードを作成する"; +App::$strings["Add Card"] = "カードを追加"; +App::$strings["INVALID EVENT DISMISSED!"] = "無効なイベントは破棄されました!"; +App::$strings["Summary: "] = "概要:"; +App::$strings["Date: "] = "日付:"; +App::$strings["Reason: "] = "理由:"; +App::$strings["INVALID CARD DISMISSED!"] = "無効なカードが破棄されました!"; +App::$strings["Name: "] = "名:"; +App::$strings["CalDAV App"] = "CalDAVアプリ"; +App::$strings["CalDAV capable calendar"] = "CalDAV対応カレンダー"; +App::$strings["CardDAV App"] = "CardDAVアプリ"; +App::$strings["CalDAV capable addressbook"] = "CalDAV対応のアドレス帳"; +App::$strings["Event title"] = "イベントタイトル"; +App::$strings["Start date and time"] = "開始日時"; +App::$strings["End date and time"] = "終了日時"; +App::$strings["Month"] = "月"; +App::$strings["Week"] = "週間"; +App::$strings["Day"] = "日"; +App::$strings["List month"] = "月のリスト"; +App::$strings["List week"] = "リスト週"; +App::$strings["List day"] = "リスト日"; +App::$strings["More"] = "もっと"; +App::$strings["Less"] = "もっと少なく"; +App::$strings["Select calendar"] = "カレンダーを選択"; +App::$strings["Delete all"] = "すべて削除"; +App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "ごめんなさい!繰り返しイベントの編集はまだ実装されていません。"; +App::$strings["Organisation"] = "組織"; +App::$strings["Title"] = "タイトル"; +App::$strings["Phone"] = "電話"; +App::$strings["Instant messenger"] = "インスタントメッセンジャー"; +App::$strings["Website"] = "ウェブサイト"; +App::$strings["Note"] = "注意"; +App::$strings["Add Contact"] = "連絡先を追加"; +App::$strings["Add Field"] = "フィールドを追加"; +App::$strings["P.O. Box"] = "私書箱"; +App::$strings["Additional"] = "追加"; +App::$strings["Street"] = "通り"; +App::$strings["Locality"] = "局所性"; +App::$strings["Region"] = "領域"; +App::$strings["ZIP Code"] = "郵便番号"; +App::$strings["Country"] = "国"; +App::$strings["Default Calendar"] = "デフォルトのカレンダー"; +App::$strings["Default Addressbook"] = "デフォルトのアドレス帳"; +App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "アカウントパスワードを変更してから48時間以内にチャンネル名を変更することはできません。"; +App::$strings["Change channel nickname/address"] = "チャンネルのニックネーム/アドレスを変更する"; +App::$strings["WARNING: "] = "警告:"; +App::$strings["Any/all connections on other networks will be lost!"] = "他のネットワーク上の接続はすべて失われます!"; +App::$strings["Please enter your password for verification:"] = "確認のためにパスワードを入力してください:"; +App::$strings["New channel address"] = "新しいチャンネルアドレス"; +App::$strings["Rename Channel"] = "チャンネル名を変更"; +App::$strings["You must be logged in to see this page."] = "このページを表示するには、ログインする必要があります。"; +App::$strings["Posts and comments"] = "投稿とコメント"; +App::$strings["Only posts"] = "投稿のみ"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "権限が不十分です。プロフィールページにリダイレクトされたリクエスト。"; +App::$strings["Search Results For:"] = "の検索結果:"; +App::$strings["Reset form"] = "フォームをリセット"; +App::$strings["You must enable javascript for your browser to be able to view this content."] = "このコンテンツを表示するには、ブラウザのJavaScriptを有効にする必要があります。"; +App::$strings["toggle full screen mode"] = "全画面モードを切り替える"; +App::$strings["Chatrooms App"] = "チャットルームアプリ"; +App::$strings["Access Controlled Chatrooms"] = "アクセス制御されたチャットルーム"; +App::$strings["Room not found"] = "部屋が見つかりません"; +App::$strings["Leave Room"] = "部屋を出る"; +App::$strings["Delete Room"] = "部屋を削除"; +App::$strings["I am away right now"] = "私は今不在です"; +App::$strings["I am online"] = "オンライン中"; +App::$strings["Bookmark this room"] = "この部屋をブックマークする"; +App::$strings["New Chatroom"] = "新しいチャットルーム"; +App::$strings["Chatroom name"] = "チャットルーム名"; +App::$strings["Expiration of chats (minutes)"] = "チャットの有効期限(分)"; +App::$strings["%1\$s's Chatrooms"] = "%1\$sのチャットルーム"; +App::$strings["No chatrooms available"] = "利用可能なチャットルームはありません"; +App::$strings["Create New"] = "新しく作る"; +App::$strings["Expiration"] = "有効期限"; +App::$strings["min"] = "分"; +App::$strings["Away"] = "離れて"; +App::$strings["Online"] = "オンライン"; +App::$strings["Not found"] = "見つかりません"; +App::$strings["Please refresh page"] = "ページを更新してください"; +App::$strings["Unknown error"] = "未知のエラー"; +App::$strings["No channel."] = "チャンネルなし。"; +App::$strings["No connections in common."] = "共通の接続はありません。"; +App::$strings["View Common Connections"] = "共通接続を表示する"; +App::$strings["Continue"] = "持続する"; +App::$strings["Premium Channel App"] = "プレミアムチャンネルアプリ"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "チャンネルに接続するものに制限と条件を設定できます"; +App::$strings["Premium Channel Setup"] = "プレミアムチャンネルのセットアップ"; +App::$strings["Enable premium channel connection restrictions"] = "プレミアムチャネル接続制限を有効にする"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "PayPalレシート、使用ガイドラインなどの制限または条件を入力してください。"; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "このチャネルでは、接続する前に次の条件の追加手順または確認が必要になる場合があります。"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "潜在的な接続では、続行する前に次のテキストが表示されます。"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "続行することにより、このページに記載されている指示を遵守したことを保証します。"; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(チャンネル所有者から具体的な指示は提供されていません。)"; +App::$strings["Restricted or Premium Channel"] = "制限付きチャンネルまたはプレミアムチャンネル"; +App::$strings["Active"] = "アクティブ"; +App::$strings["Blocked"] = "ブロックされました"; +App::$strings["Ignored"] = "無視された"; +App::$strings["Hidden"] = "非表示"; +App::$strings["Archived/Unreachable"] = "アーカイブ済み/到達不能"; +App::$strings["New"] = "新しい"; +App::$strings["All"] = "すべて"; +App::$strings["Active Connections"] = "アクティブな接続"; +App::$strings["Show active connections"] = "アクティブな接続を表示"; +App::$strings["New Connections"] = "新しい接続"; +App::$strings["Show pending (new) connections"] = "保留中の(新しい)接続を表示"; +App::$strings["Only show blocked connections"] = "ブロックされた接続のみを表示"; +App::$strings["Only show ignored connections"] = "無視された接続のみを表示"; +App::$strings["Only show archived/unreachable connections"] = "アーカイブされた/到達不能な接続のみを表示する"; +App::$strings["Only show hidden connections"] = "非表示の接続のみを表示"; +App::$strings["All Connections"] = "すべての接続"; +App::$strings["Show all connections"] = "すべての接続を表示"; +App::$strings["Pending approval"] = "承認待ちの"; +App::$strings["Archived"] = "アーカイブ済み"; +App::$strings["Not connected at this location"] = "この場所では接続されていません"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [ %2\$s ]"; +App::$strings["Edit connection"] = "接続を編集"; +App::$strings["Delete connection"] = "接続を削除"; +App::$strings["Channel address"] = "チャンネルアドレス"; +App::$strings["Call"] = "コール"; +App::$strings["Status"] = "状態"; +App::$strings["Connected"] = "接続済み"; +App::$strings["Approve connection"] = "接続を承認する"; +App::$strings["Ignore connection"] = "接続を無視"; +App::$strings["Ignore"] = "無視する"; +App::$strings["Recent activity"] = "最近の活動"; +App::$strings["Search your connections"] = "接続を検索する"; +App::$strings["Connections search"] = "接続検索"; +App::$strings["Could not access contact record."] = "連絡先レコードにアクセスできませんでした。"; +App::$strings["Could not locate selected profile."] = "選択したプロファイルが見つかりませんでした。"; +App::$strings["Connection updated."] = "接続が更新されました。"; +App::$strings["Failed to update connection record."] = "接続レコードの更新に失敗しました。"; +App::$strings["is now connected to"] = "に接続されました"; +App::$strings["Could not access address book record."] = "アドレス帳のレコードにアクセスできませんでした。"; +App::$strings["Refresh failed - channel is currently unavailable."] = "更新に失敗しました-チャンネルは現在利用できません。"; +App::$strings["Unable to set address book parameters."] = "アドレス帳のパラメーターを設定できません。"; +App::$strings["Connection has been removed."] = "接続が削除されました。"; +App::$strings["View %s's profile"] = "%sのプロフィールを表示"; +App::$strings["Refresh Permissions"] = "権限を更新"; +App::$strings["Fetch updated permissions"] = "更新された権限を取得する"; +App::$strings["Refresh Photo"] = "写真を更新"; +App::$strings["Fetch updated photo"] = "更新された写真を取得する"; +App::$strings["View recent posts and comments"] = "最近の投稿とコメントを見る"; +App::$strings["Block (or Unblock) all communications with this connection"] = "この接続とのすべての通信をブロック(またはブロック解除)"; +App::$strings["This connection is blocked!"] = "この接続はブロックされています!"; +App::$strings["Unignore"] = "無視しない"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "この接続からのすべてのインバウンド通信を無視(または無視しない)"; +App::$strings["This connection is ignored!"] = "この接続は無視されます!"; +App::$strings["Unarchive"] = "アーカイブ解除"; +App::$strings["Archive"] = "アーカイブ"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "この接続をアーカイブ(またはアーカイブ解除)します-チャンネルをデッドにマークしますが、コンテンツは保持します"; +App::$strings["This connection is archived!"] = "この接続はアーカイブされています!"; +App::$strings["Unhide"] = "再表示"; +App::$strings["Hide"] = "隠す"; +App::$strings["Hide or Unhide this connection from your other connections"] = "この接続を他の接続から非表示または非表示にします"; +App::$strings["This connection is hidden!"] = "この接続は非表示です!"; +App::$strings["Delete this connection"] = "この接続を削除"; +App::$strings["Fetch Vcard"] = "Vcardを取得"; +App::$strings["Fetch electronic calling card for this connection"] = "この接続の電子通話カードを取得する"; +App::$strings["Open Individual Permissions section by default"] = "デフォルトで個人権限セクションを開く"; +App::$strings["Affinity"] = "親和性"; +App::$strings["Open Set Affinity section by default"] = "デフォルトでセットアフィニティセクションを開く"; +App::$strings["Me"] = "私"; +App::$strings["Family"] = "家族"; +App::$strings["Acquaintances"] = "知人"; +App::$strings["Filter"] = "フィルタ"; +App::$strings["Open Custom Filter section by default"] = "デフォルトでカスタムフィルターセクションを開く"; +App::$strings["Approve this connection"] = "この接続を承認"; +App::$strings["Accept connection to allow communication"] = "接続を受け入れて通信を許可する"; +App::$strings["Set Affinity"] = "アフィニティを設定する"; +App::$strings["Set Profile"] = "プロファイルを設定"; +App::$strings["Set Affinity & Profile"] = "アフィニティとプロファイルを設定する"; +App::$strings["This connection is unreachable from this location."] = "この場所からこの接続に到達できません。"; +App::$strings["This connection may be unreachable from other channel locations."] = "この接続は、他のチャネルの場所から到達できない場合があります。"; +App::$strings["Location independence is not supported by their network."] = "場所の独立性は、ネットワークではサポートされていません。"; +App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "この場所からこの接続に到達できません。場所の独立性は、ネットワークではサポートされていません。"; +App::$strings["Connection Default Permissions"] = "接続のデフォルト許可"; +App::$strings["Apply these permissions automatically"] = "これらの許可を自動的に適用する"; +App::$strings["Connection requests will be approved without your interaction"] = "接続要求はユーザーの操作なしで承認されます"; +App::$strings["Permission role"] = "許可の役割"; +App::$strings["Add permission role"] = "権限ロールを追加"; +App::$strings["This connection's primary address is"] = "この接続のプライマリアドレスは"; +App::$strings["Available locations:"] = "利用可能な場所:"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "このページに示されている権限は、すべての新しい接続に適用されます。"; +App::$strings["Connection Tools"] = "接続ツール"; +App::$strings["Slide to adjust your degree of friendship"] = "スライドして友好度を調整します"; +App::$strings["Slide to adjust your rating"] = "スライドして評価を調整します"; +App::$strings["Optionally explain your rating"] = "オプションで、評価を説明してください"; +App::$strings["Custom Filter"] = "カスタムフィルター"; +App::$strings["Only import posts with this text"] = "このテキストを含む投稿のみをインポートする"; +App::$strings["Do not import posts with this text"] = "このテキストを含む投稿をインポートしないでください"; +App::$strings["This information is public!"] = "この情報は公開されています!"; +App::$strings["Connection Pending Approval"] = "接続の保留中の承認"; +App::$strings["inherited"] = "継承されました"; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "プロフィールを安全に表示するときに、 %sに表示するプロフィールを選択してください。"; +App::$strings["Their Settings"] = "それらの設定"; +App::$strings["My Settings"] = "私の設定"; +App::$strings["Individual Permissions"] = "個別の許可"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "一部の権限は、チャンネルの プライバシー設定 から継承される場合があり、個々の設定よりも優先度が高くなります。ここでこれらの設定を変更することはできません。"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "一部の権限は、チャンネルの プライバシー設定 から継承される場合があり、個々の設定よりも優先度が高くなります。これらの設定はここで変更できますが、継承された設定が変更されない限り、影響はありません。"; +App::$strings["Last update:"] = "最後の更新:"; +App::$strings["Details"] = "詳細"; +App::$strings["Image uploaded but image cropping failed."] = "画像はアップロードされましたが、画像の切り取りに失敗しました。"; +App::$strings["Cover Photos"] = "カバー写真"; +App::$strings["Image resize failed."] = "画像のサイズ変更に失敗しました。"; +App::$strings["Image upload failed."] = "画像のアップロードに失敗しました。"; +App::$strings["Unable to process image."] = "画像を処理できません。"; +App::$strings["Photo not available."] = "写真は利用できません。"; +App::$strings["Your cover photo may be visible to anybody on the internet"] = "カバー写真はインターネット上の誰でも見ることができます"; +App::$strings["Upload File:"] = "ファイルをアップロードする:"; +App::$strings["Select a profile:"] = "プロファイルを選択:"; +App::$strings["Change Cover Photo"] = "カバー写真を変更"; +App::$strings["Upload"] = "アップロードする"; +App::$strings["Use a photo from your albums"] = "アルバムの写真を使用する"; +App::$strings["Choose a different album"] = "別のアルバムを選択してください"; +App::$strings["Select existing photo"] = "既存の写真を選択"; +App::$strings["Crop Image"] = "クロップ画像"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "最適な表示になるように画像のトリミングを調整してください。"; +App::$strings["Done Editing"] = "編集完了"; +App::$strings["Settings updated."] = "設定が更新されました。"; +App::$strings["Default Permissions App"] = "デフォルトの権限アプリ"; +App::$strings["Set custom default permissions for new connections"] = "新しい接続のカスタムデフォルト許可を設定する"; +App::$strings["If enabled, connection requests will be approved without your interaction"] = "有効にすると、ユーザーの操作なしで接続要求が承認されます"; +App::$strings["Automatic approval settings"] = "自動承認設定"; +App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "チャンネルの種類とプライバシー設定に基づいて、個々の権限が事前設定またはロックされている場合があります。"; +App::$strings["Public access denied."] = "パブリックアクセスが拒否されました。"; +App::$strings["No default suggestions were found."] = "デフォルトの提案は見つかりませんでした。"; App::$strings["%d rating"] = array( - 0 => "", - 1 => "", + 0 => "%d評価", + 1 => "%d評価", ); -App::$strings["Gender: "] = ""; -App::$strings["Status: "] = ""; -App::$strings["Homepage: "] = ""; -App::$strings["Description:"] = ""; -App::$strings["Public Forum:"] = ""; -App::$strings["Keywords: "] = ""; -App::$strings["Don't suggest"] = ""; -App::$strings["Common connections (estimated):"] = ""; -App::$strings["Global Directory"] = ""; -App::$strings["Local Directory"] = ""; -App::$strings["Finding:"] = ""; -App::$strings["next page"] = ""; -App::$strings["previous page"] = ""; -App::$strings["Sort options"] = ""; -App::$strings["Alphabetic"] = ""; -App::$strings["Reverse Alphabetic"] = ""; -App::$strings["Newest to Oldest"] = ""; -App::$strings["Oldest to Newest"] = ""; -App::$strings["No entries (some entries may be hidden)."] = ""; -App::$strings["This site is not a directory server"] = ""; -App::$strings["This directory server requires an access token"] = ""; -App::$strings["Article"] = ""; -App::$strings["Item has been removed."] = ""; -App::$strings["Edit Block"] = ""; -App::$strings["Layout Name"] = ""; -App::$strings["Layout Description (Optional)"] = ""; -App::$strings["Edit Layout"] = ""; -App::$strings["Item is not editable"] = ""; -App::$strings["Edit post"] = ""; -App::$strings["Page link"] = ""; -App::$strings["Edit Webpage"] = ""; -App::$strings["Token verification failed."] = ""; -App::$strings["Email verification resent"] = ""; -App::$strings["Unable to resend email verification message."] = ""; -App::$strings["Email Verification Required"] = ""; -App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = ""; -App::$strings["Resend Email"] = ""; -App::$strings["Validation token"] = ""; -App::$strings["View Photo"] = ""; -App::$strings["Edit Album"] = ""; -App::$strings["Calendar entries imported."] = ""; -App::$strings["No calendar entries found."] = ""; -App::$strings["Event can not end before it has started."] = ""; -App::$strings["Unable to generate preview."] = ""; -App::$strings["Event title and start time are required."] = ""; -App::$strings["Event not found."] = ""; -App::$strings["Edit event title"] = ""; -App::$strings["Categories (comma-separated list)"] = ""; -App::$strings["Edit Category"] = ""; -App::$strings["Category"] = ""; -App::$strings["Edit start date and time"] = ""; -App::$strings["Finish date and time are not known or not relevant"] = ""; -App::$strings["Edit finish date and time"] = ""; -App::$strings["Finish date and time"] = ""; -App::$strings["Adjust for viewer timezone"] = ""; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = ""; -App::$strings["Edit Description"] = ""; -App::$strings["Edit Location"] = ""; -App::$strings["Timezone:"] = ""; -App::$strings["Advanced Options"] = ""; -App::$strings["Edit event"] = ""; -App::$strings["Delete event"] = ""; -App::$strings["calendar"] = ""; -App::$strings["Event removed"] = ""; -App::$strings["Failed to remove event"] = ""; -App::$strings["Enter a folder name"] = ""; -App::$strings["or select an existing folder (doubleclick)"] = ""; -App::$strings["File not found."] = ""; -App::$strings["Permission Denied."] = ""; -App::$strings["Edit file permissions"] = ""; -App::$strings["Set/edit permissions"] = ""; -App::$strings["Include all files and sub folders"] = ""; -App::$strings["Return to file list"] = ""; -App::$strings["Copy/paste this code to attach file to a post"] = ""; -App::$strings["Copy/paste this URL to link file from a web page"] = ""; -App::$strings["Share this file"] = ""; -App::$strings["Show URL to this file"] = ""; -App::$strings["Show in your contacts shared folder"] = ""; -App::$strings["Connection added."] = ""; -App::$strings["This page is available only to site members"] = ""; -App::$strings["Welcome"] = ""; -App::$strings["What would you like to do?"] = ""; -App::$strings["Please bookmark this page if you would like to return to it in the future"] = ""; -App::$strings["Upload a profile photo"] = ""; -App::$strings["Upload a cover photo"] = ""; -App::$strings["Edit your default profile"] = ""; -App::$strings["View friend suggestions"] = ""; -App::$strings["View the channel directory"] = ""; -App::$strings["View/edit your channel settings"] = ""; -App::$strings["View the site or project documentation"] = ""; -App::$strings["Visit your channel homepage"] = ""; -App::$strings["View your connections and/or add somebody whose address you already know"] = ""; -App::$strings["View your personal stream (this may be empty until you add some connections)"] = ""; -App::$strings["View the public stream. Warning: this content is not moderated"] = ""; -App::$strings["Privacy group created."] = ""; -App::$strings["Could not create privacy group."] = ""; -App::$strings["Privacy group updated."] = ""; +App::$strings["Gender: "] = "性別:"; +App::$strings["Status: "] = "状態:"; +App::$strings["Homepage: "] = "ホームページ:"; +App::$strings["Description:"] = "説明:"; +App::$strings["Public Forum:"] = "公開フォーラム:"; +App::$strings["Keywords: "] = "キーワード:"; +App::$strings["Don't suggest"] = "提案しないでください"; +App::$strings["Common connections (estimated):"] = "一般的な接続(推定):"; +App::$strings["Global Directory"] = "グローバルディレクトリ"; +App::$strings["Local Directory"] = "ローカルディレクトリ"; +App::$strings["Finding:"] = "発見:"; +App::$strings["next page"] = "次のページ"; +App::$strings["previous page"] = "前のページ"; +App::$strings["Sort options"] = "並べ替えオプション"; +App::$strings["Alphabetic"] = "アルファベット"; +App::$strings["Reverse Alphabetic"] = "逆アルファベット"; +App::$strings["Newest to Oldest"] = "最新から最新"; +App::$strings["Oldest to Newest"] = "最新から最新"; +App::$strings["No entries (some entries may be hidden)."] = "エントリなし(一部のエントリは非表示になる場合があります)。"; +App::$strings["This site is not a directory server"] = "このサイトはディレクトリサーバーではありません"; +App::$strings["This directory server requires an access token"] = "このディレクトリサーバーにはアクセストークンが必要です"; +App::$strings["Article"] = "記事"; +App::$strings["Item has been removed."] = "アイテムは削除されました。"; +App::$strings["Edit Block"] = "ブロックを編集"; +App::$strings["Layout Name"] = "レイアウト名"; +App::$strings["Layout Description (Optional)"] = "レイアウトの説明(オプション)"; +App::$strings["Edit Layout"] = "レイアウトを編集"; +App::$strings["Item is not editable"] = "アイテムは編集できません"; +App::$strings["Edit post"] = "投稿を編集"; +App::$strings["Page link"] = "ページリンク"; +App::$strings["Edit Webpage"] = "ウェブページを編集"; +App::$strings["Token verification failed."] = "トークンの検証に失敗しました。"; +App::$strings["Email verification resent"] = "メール確認の再送"; +App::$strings["Unable to resend email verification message."] = "メール確認メッセージを再送信できません。"; +App::$strings["Email Verification Required"] = "メール確認が必要です"; +App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "確認トークンがメールアドレス[ %s ]に送信されました。ここにトークンを入力して、アカウントの確認手順を完了します。配信に数分かかり、メッセージが表示されない場合はスパムフォルダーを確認してください。"; +App::$strings["Resend Email"] = "メールを再送"; +App::$strings["Validation token"] = "検証トークン"; +App::$strings["View Photo"] = "写真を見る"; +App::$strings["Edit Album"] = "アルバムを編集"; +App::$strings["Calendar entries imported."] = "インポートされたカレンダーエントリ。"; +App::$strings["No calendar entries found."] = "カレンダーエントリが見つかりません。"; +App::$strings["Event can not end before it has started."] = "イベントは開始する前に終了できません。"; +App::$strings["Unable to generate preview."] = "プレビューを生成できません。"; +App::$strings["Event title and start time are required."] = "イベントのタイトルと開始時間が必要です。"; +App::$strings["Event not found."] = "イベントが見つかりません。"; +App::$strings["Edit event title"] = "イベントのタイトルを編集"; +App::$strings["Categories (comma-separated list)"] = "カテゴリー(コンマ区切りリスト)"; +App::$strings["Edit Category"] = "カテゴリを編集"; +App::$strings["Category"] = "カテゴリー"; +App::$strings["Edit start date and time"] = "開始日時を編集する"; +App::$strings["Finish date and time are not known or not relevant"] = "終了日時がわからない、または関係ない"; +App::$strings["Edit finish date and time"] = "終了日時を編集する"; +App::$strings["Finish date and time"] = "終了日時"; +App::$strings["Adjust for viewer timezone"] = "視聴者のタイムゾーンに合わせて調整する"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "特定の場所で発生するイベントにとって重要です。世界的な休日には実用的ではありません。"; +App::$strings["Edit Description"] = "説明の編集"; +App::$strings["Edit Location"] = "場所を編集"; +App::$strings["Timezone:"] = "タイムゾーン:"; +App::$strings["Advanced Options"] = "高度なオプション"; +App::$strings["Edit event"] = "イベントを編集"; +App::$strings["Delete event"] = "イベントを削除"; +App::$strings["calendar"] = "カレンダー"; +App::$strings["Event removed"] = "イベントを削除しました"; +App::$strings["Failed to remove event"] = "イベントを削除できませんでした"; +App::$strings["Enter a folder name"] = "フォルダー名を入力してください"; +App::$strings["or select an existing folder (doubleclick)"] = "または、既存のフォルダーを選択します(ダブルクリック)"; +App::$strings["File not found."] = "ファイルが見つかりません。"; +App::$strings["Permission Denied."] = "アクセス拒否。"; +App::$strings["Edit file permissions"] = "ファイルのアクセス許可を編集する"; +App::$strings["Set/edit permissions"] = "許可の設定/編集"; +App::$strings["Include all files and sub folders"] = "すべてのファイルとサブフォルダーを含める"; +App::$strings["Return to file list"] = "ファイルリストに戻る"; +App::$strings["Copy/paste this code to attach file to a post"] = "このコードをコピーして貼り付けて、ファイルを投稿に添付します"; +App::$strings["Copy/paste this URL to link file from a web page"] = "このURLをコピー/貼り付けして、Webページからファイルをリンクします"; +App::$strings["Share this file"] = "このファイルを共有する"; +App::$strings["Show URL to this file"] = "このファイルへのURLを表示"; +App::$strings["Show in your contacts shared folder"] = "連絡先の共有フォルダーに表示する"; +App::$strings["Connection added."] = "接続が追加されました。"; +App::$strings["This page is available only to site members"] = "このページはサイトメンバーのみが利用できます"; +App::$strings["Welcome"] = "ようこそ"; +App::$strings["What would you like to do?"] = "何をしたいですか?"; +App::$strings["Please bookmark this page if you would like to return to it in the future"] = "今後このページに戻る場合は、このページをブックマークしてください"; +App::$strings["Upload a profile photo"] = "プロフィール写真をアップロードする"; +App::$strings["Upload a cover photo"] = "カバー写真をアップロードする"; +App::$strings["Edit your default profile"] = "デフォルトのプロファイルを編集する"; +App::$strings["View friend suggestions"] = "友達の提案を見る"; +App::$strings["View the channel directory"] = "チャンネルディレクトリを表示する"; +App::$strings["View/edit your channel settings"] = "チャンネル設定の表示/編集"; +App::$strings["View the site or project documentation"] = "サイトまたはプロジェクトのドキュメントを表示する"; +App::$strings["Visit your channel homepage"] = "チャンネルのホームページにアクセスします"; +App::$strings["View your connections and/or add somebody whose address you already know"] = "接続を表示したり、アドレスを既に知っている人を追加したりします"; +App::$strings["View your personal stream (this may be empty until you add some connections)"] = "パーソナルストリームを表示します(接続を追加するまで空の場合があります)"; +App::$strings["View the public stream. Warning: this content is not moderated"] = "パブリックストリームを表示します。警告:このコンテンツは管理されていません"; +App::$strings["Privacy group created."] = "プライバシーグループが作成されました。"; +App::$strings["Could not create privacy group."] = "プライバシーグループを作成できませんでした。"; +App::$strings["Privacy group updated."] = "プライバシーグループが更新されました。"; App::$strings["Privacy Groups App"] = "プライバシーグループアプリ"; App::$strings["Management of privacy groups"] = "プライバシーグループを管理する"; -App::$strings["Add Group"] = ""; -App::$strings["Privacy group name"] = ""; -App::$strings["Members are visible to other channels"] = ""; -App::$strings["Members"] = ""; -App::$strings["Privacy group removed."] = ""; -App::$strings["Unable to remove privacy group."] = ""; -App::$strings["Privacy Group: %s"] = ""; -App::$strings["Privacy group name: "] = ""; -App::$strings["Delete Group"] = ""; -App::$strings["Group members"] = ""; -App::$strings["Not in this group"] = ""; -App::$strings["Click a channel to toggle membership"] = ""; -App::$strings["Documentation Search"] = ""; -App::$strings["Administrators"] = ""; -App::$strings["Developers"] = ""; -App::$strings["Tutorials"] = ""; -App::$strings["\$Projectname Documentation"] = ""; -App::$strings["Contents"] = ""; -App::$strings["Welcome to %s"] = ""; -App::$strings["Welcome to Hubzilla!"] = ""; -App::$strings["You have got no unseen posts..."] = ""; -App::$strings["%s element installed"] = ""; -App::$strings["%s element installation failed"] = ""; -App::$strings["Nothing to import."] = ""; -App::$strings["Unable to download data from old server"] = ""; -App::$strings["Imported file is empty."] = ""; -App::$strings["Your service plan only allows %d channels."] = ""; -App::$strings["No channel. Import failed."] = ""; -App::$strings["Import completed."] = ""; -App::$strings["You must be logged in to use this feature."] = ""; -App::$strings["Import Channel"] = ""; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = ""; -App::$strings["File to Upload"] = ""; -App::$strings["Or provide the old server/hub details"] = ""; -App::$strings["Your old identity address (xyz@example.com)"] = ""; -App::$strings["Your old login email address"] = ""; -App::$strings["Your old login password"] = ""; -App::$strings["Import a few months of posts if possible (limited by available memory"] = ""; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = ""; -App::$strings["Make this hub my primary location"] = ""; -App::$strings["Move this channel (disable all previous locations)"] = ""; -App::$strings["Use this channel nickname instead of the one provided"] = ""; -App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = ""; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = ""; -App::$strings["Warning: Database versions differ by %1\$d updates."] = ""; -App::$strings["Import completed"] = ""; -App::$strings["Import Items"] = ""; -App::$strings["Use this form to import existing posts and content from an export file."] = ""; -App::$strings["Total invitation limit exceeded."] = ""; -App::$strings["%s : Not a valid email address."] = ""; -App::$strings["Please join us on \$Projectname"] = ""; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = ""; -App::$strings["%s : Message delivery failed."] = ""; +App::$strings["Add Group"] = "グループを追加"; +App::$strings["Privacy group name"] = "プライバシーグループ名"; +App::$strings["Members are visible to other channels"] = "メンバーは他のチャンネルに表示されます"; +App::$strings["Members"] = "会員"; +App::$strings["Privacy group removed."] = "プライバシーグループが削除されました。"; +App::$strings["Unable to remove privacy group."] = "プライバシーグループを削除できません。"; +App::$strings["Privacy Group: %s"] = "プライバシーグループ: %s"; +App::$strings["Privacy group name: "] = "プライバシーグループ名:"; +App::$strings["Delete Group"] = "グループを削除"; +App::$strings["Group members"] = "グループの人(仲間)たち"; +App::$strings["Not in this group"] = "このグループではない"; +App::$strings["Click a channel to toggle membership"] = "チャンネルをクリックしてメンバーシップを切り替えます"; +App::$strings["Documentation Search"] = "ドキュメント検索"; +App::$strings["Administrators"] = "管理者"; +App::$strings["Developers"] = "開発者"; +App::$strings["Tutorials"] = "チュートリアル"; +App::$strings["\$Projectname Documentation"] = "$ Projectnameドキュメント"; +App::$strings["Contents"] = "内容"; +App::$strings["Welcome to %s"] = "%sへようこそ"; +App::$strings["Welcome to Hubzilla!"] = "Hubzillaへようこそ!"; +App::$strings["You have got no unseen posts..."] = "未読の投稿はありません..."; +App::$strings["%s element installed"] = "%s要素がインストールされました"; +App::$strings["%s element installation failed"] = "%s要素のインストールに失敗しました"; +App::$strings["Nothing to import."] = "インポートするものはありません。"; +App::$strings["Unable to download data from old server"] = "古いサーバーからデータをダウンロードできません"; +App::$strings["Imported file is empty."] = "インポートされたファイルは空です。"; +App::$strings["Your service plan only allows %d channels."] = "サービスプランでは%dチャンネルのみが許可されています。"; +App::$strings["No channel. Import failed."] = "チャンネルなし。インポートに失敗しました。"; +App::$strings["Import completed."] = "インポートが完了しました。"; +App::$strings["You must be logged in to use this feature."] = "この機能を使用するには、ログインする必要があります。"; +App::$strings["Import Channel"] = "インポートチャンネル"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "このフォームを使用して、別のサーバー/ハブから既存のチャンネルをインポートします。ネットワーク経由で古いサーバー/ハブからチャネルIDを取得するか、エクスポートファイルを提供できます。"; +App::$strings["File to Upload"] = "アップロードするファイル"; +App::$strings["Or provide the old server/hub details"] = "または、古いサーバー/ハブの詳細を提供します"; +App::$strings["Your old identity address (xyz@example.com)"] = "古いIDアドレス(xyz@example.com)"; +App::$strings["Your old login email address"] = "古いログイン用メールアドレス"; +App::$strings["Your old login password"] = "古いログインパスワード"; +App::$strings["Import a few months of posts if possible (limited by available memory"] = "可能な場合は数か月分の投稿をインポートします(使用可能なメモリによって制限されます)"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "どちらのオプションでも、このハブを新しいプライマリアドレスにするか、古い場所でこの役割を継続するかを選択してください。どちらの場所からでも投稿できますが、ファイル、写真、およびメディアの主要な場所としてマークできるのは1つだけです。"; +App::$strings["Make this hub my primary location"] = "このハブを主要な場所にする"; +App::$strings["Move this channel (disable all previous locations)"] = "このチャネルを移動します(以前のすべての場所を無効にします)"; +App::$strings["Use this channel nickname instead of the one provided"] = "提供されたものの代わりにこのチャンネルのニックネームを使用します"; +App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "空白のままにして、既存のチャンネルのニックネームを保持します。いずれかの名前が既にこのサイトに割り当てられている場合、同様のニックネームがランダムに割り当てられます。"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "このプロセスが完了するまでに数分かかる場合があります。フォームを1回だけ送信し、完了するまでこのページを開いたままにしてください。"; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "警告:データベースのバージョンは%1\$d更新によって異なります。"; +App::$strings["Import completed"] = "インポート完了"; +App::$strings["Import Items"] = "アイテムをインポート"; +App::$strings["Use this form to import existing posts and content from an export file."] = "このフォームを使用して、エクスポートファイルから既存の投稿とコンテンツをインポートします。"; +App::$strings["Total invitation limit exceeded."] = "合計招待制限を超えました。"; +App::$strings["%s : Not a valid email address."] = "%s :有効なメールアドレスではありません。"; +App::$strings["Please join us on \$Projectname"] = "$ Projectnameにご参加ください"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "招待制限を超えました。サイト管理者に連絡してください。"; +App::$strings["%s : Message delivery failed."] = "%s :メッセージの配信に失敗しました。"; App::$strings["%d message sent."] = array( - 0 => "", - 1 => "", + 0 => "%dメッセージを送信しました。", + 1 => "%dメッセージを送信しました。", ); -App::$strings["Invite App"] = ""; -App::$strings["Send email invitations to join this network"] = ""; -App::$strings["You have no more invitations available"] = ""; -App::$strings["Send invitations"] = ""; -App::$strings["Enter email addresses, one per line:"] = ""; -App::$strings["Your message:"] = ""; -App::$strings["Please join my community on \$Projectname."] = ""; -App::$strings["You will need to supply this invitation code:"] = ""; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = ""; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = ""; -App::$strings["or visit"] = ""; -App::$strings["3. Click [Connect]"] = ""; -App::$strings["Unable to locate original post."] = ""; -App::$strings["Empty post discarded."] = ""; -App::$strings["Duplicate post suppressed."] = ""; -App::$strings["System error. Post not saved."] = ""; -App::$strings["Your comment is awaiting approval."] = ""; -App::$strings["Unable to obtain post information from database."] = ""; -App::$strings["You have reached your limit of %1$.0f top level posts."] = ""; -App::$strings["You have reached your limit of %1$.0f webpages."] = ""; -App::$strings["Language App"] = ""; -App::$strings["Change UI language"] = ""; -App::$strings["Comanche page description language help"] = ""; -App::$strings["Layout Description"] = ""; -App::$strings["Download PDL file"] = ""; -App::$strings["Like/Dislike"] = ""; -App::$strings["This action is restricted to members."] = ""; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = ""; -App::$strings["Invalid request."] = ""; -App::$strings["thing"] = ""; -App::$strings["Channel unavailable."] = ""; -App::$strings["Previous action reversed."] = ""; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = ""; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = ""; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = ""; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = ""; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = ""; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = ""; -App::$strings["Action completed."] = ""; -App::$strings["Thank you."] = ""; -App::$strings["Remote privacy information not available."] = ""; -App::$strings["Visible to:"] = ""; -App::$strings["Location not found."] = ""; -App::$strings["Location lookup failed."] = ""; -App::$strings["Please select another location to become primary before removing the primary location."] = ""; -App::$strings["Syncing locations"] = ""; -App::$strings["No locations found."] = ""; -App::$strings["Manage Channel Locations"] = ""; -App::$strings["Primary"] = ""; -App::$strings["Drop"] = ""; -App::$strings["Sync Now"] = ""; -App::$strings["Please wait several minutes between consecutive operations."] = ""; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = ""; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = ""; -App::$strings["No valid account found."] = ""; -App::$strings["Password reset request issued. Check your email."] = ""; -App::$strings["Site Member (%s)"] = ""; -App::$strings["Password reset requested at %s"] = ""; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = ""; -App::$strings["Your password has been reset as requested."] = ""; -App::$strings["Your new password is"] = ""; -App::$strings["Save or copy your new password - and then"] = ""; -App::$strings["click here to login"] = ""; -App::$strings["Your password may be changed from the Settings page after successful login."] = ""; -App::$strings["Your password has changed at %s"] = ""; -App::$strings["Forgot your Password?"] = ""; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = ""; -App::$strings["Email Address"] = ""; -App::$strings["Reset"] = ""; -App::$strings["Hub not found."] = ""; -App::$strings["Unable to lookup recipient."] = ""; -App::$strings["Unable to communicate with requested channel."] = ""; -App::$strings["Cannot verify requested channel."] = ""; -App::$strings["Selected channel has private message restrictions. Send failed."] = ""; -App::$strings["Messages"] = ""; -App::$strings["message"] = ""; -App::$strings["Message recalled."] = ""; -App::$strings["Conversation removed."] = ""; -App::$strings["Expires YYYY-MM-DD HH:MM"] = ""; -App::$strings["Requested channel is not in this network"] = ""; -App::$strings["Send Private Message"] = ""; -App::$strings["To:"] = ""; -App::$strings["Subject:"] = ""; -App::$strings["Attach file"] = ""; -App::$strings["Send"] = ""; -App::$strings["Delete message"] = ""; -App::$strings["Delivery report"] = ""; -App::$strings["Recall message"] = ""; -App::$strings["Message has been recalled."] = ""; -App::$strings["Delete Conversation"] = ""; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; -App::$strings["Send Reply"] = ""; -App::$strings["Your message for %s (%s):"] = ""; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = ""; -App::$strings["Create a new channel"] = ""; -App::$strings["Current Channel"] = ""; -App::$strings["Switch to one of your channels by selecting it."] = ""; -App::$strings["Default Channel"] = ""; -App::$strings["Make Default"] = ""; -App::$strings["%d new messages"] = ""; -App::$strings["%d new introductions"] = ""; -App::$strings["Delegated Channel"] = ""; -App::$strings["Unable to update menu."] = ""; -App::$strings["Unable to create menu."] = ""; -App::$strings["Menu Name"] = ""; -App::$strings["Unique name (not visible on webpage) - required"] = ""; -App::$strings["Menu Title"] = ""; -App::$strings["Visible on webpage - leave empty for no title"] = ""; -App::$strings["Allow Bookmarks"] = ""; -App::$strings["Menu may be used to store saved bookmarks"] = ""; -App::$strings["Submit and proceed"] = ""; -App::$strings["Bookmarks allowed"] = ""; -App::$strings["Delete this menu"] = ""; -App::$strings["Edit menu contents"] = ""; -App::$strings["Edit this menu"] = ""; -App::$strings["Menu could not be deleted."] = ""; -App::$strings["Menu not found."] = ""; -App::$strings["Edit Menu"] = ""; -App::$strings["Add or remove entries to this menu"] = ""; -App::$strings["Menu name"] = ""; -App::$strings["Must be unique, only seen by you"] = ""; -App::$strings["Menu title"] = ""; -App::$strings["Menu title as seen by others"] = ""; -App::$strings["Allow bookmarks"] = ""; -App::$strings["Not found."] = ""; -App::$strings["Unable to create element."] = ""; -App::$strings["Unable to update menu element."] = ""; -App::$strings["Unable to add menu element."] = ""; -App::$strings["Menu Item Permissions"] = ""; -App::$strings["(click to open/close)"] = ""; -App::$strings["Link Name"] = ""; -App::$strings["Link or Submenu Target"] = ""; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = ""; -App::$strings["Use magic-auth if available"] = ""; -App::$strings["Open link in new window"] = ""; -App::$strings["Order in list"] = ""; -App::$strings["Higher numbers will sink to bottom of listing"] = ""; -App::$strings["Submit and finish"] = ""; -App::$strings["Submit and continue"] = ""; -App::$strings["Menu:"] = ""; -App::$strings["Link Target"] = ""; -App::$strings["Edit menu"] = ""; -App::$strings["Edit element"] = ""; -App::$strings["Drop element"] = ""; -App::$strings["New element"] = ""; -App::$strings["Edit this menu container"] = ""; -App::$strings["Add menu element"] = ""; -App::$strings["Delete this menu item"] = ""; -App::$strings["Edit this menu item"] = ""; -App::$strings["Menu item not found."] = ""; -App::$strings["Menu item deleted."] = ""; -App::$strings["Menu item could not be deleted."] = ""; -App::$strings["Edit Menu Element"] = ""; -App::$strings["Link text"] = ""; -App::$strings["Comment approved"] = ""; -App::$strings["Comment deleted"] = ""; -App::$strings["Mood App"] = ""; -App::$strings["Set your current mood and tell your friends"] = ""; -App::$strings["No such group"] = ""; -App::$strings["No such channel"] = ""; -App::$strings["Privacy group is empty"] = ""; -App::$strings["Privacy group: "] = ""; -App::$strings["Invalid channel."] = ""; -App::$strings["Your real name is recommended."] = ""; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = ""; -App::$strings["This will be used to create a unique network address (like an email address)."] = ""; -App::$strings["Allowed characters are a-z 0-9, - and _"] = ""; -App::$strings["Channel name"] = ""; -App::$strings["Choose a short nickname"] = ""; -App::$strings["Channel role and privacy"] = ""; -App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = ""; -App::$strings["Read more about channel permission roles"] = ""; -App::$strings["Create a Channel"] = ""; -App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = ""; -App::$strings["or import an existing channel from another location."] = ""; -App::$strings["Validate"] = ""; -App::$strings["Notes App"] = ""; -App::$strings["A simple notes app with a widget (note: notes are not encrypted)"] = ""; -App::$strings["No more system notifications."] = ""; -App::$strings["System Notifications"] = ""; -App::$strings["Name is required"] = ""; -App::$strings["Key and Secret are required"] = ""; -App::$strings["OAuth Apps Manager App"] = ""; -App::$strings["OAuth authentication tokens for mobile and remote apps"] = ""; -App::$strings["Add application"] = ""; -App::$strings["Name of application"] = ""; -App::$strings["Consumer Key"] = ""; -App::$strings["Automatically generated - change if desired. Max length 20"] = ""; -App::$strings["Consumer Secret"] = ""; -App::$strings["Redirect"] = ""; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = ""; -App::$strings["Icon url"] = ""; -App::$strings["Optional"] = ""; -App::$strings["Application not found."] = ""; -App::$strings["Connected OAuth Apps"] = ""; -App::$strings["Client key starts with"] = ""; -App::$strings["No name"] = ""; -App::$strings["Remove authorization"] = ""; -App::$strings["Name and Secret are required"] = ""; -App::$strings["OAuth2 Apps Manager App"] = ""; -App::$strings["OAuth2 authenticatication tokens for mobile and remote apps"] = ""; -App::$strings["Add OAuth2 application"] = ""; -App::$strings["Grant Types"] = ""; -App::$strings["leave blank unless your application sepcifically requires this"] = ""; -App::$strings["Authorization scope"] = ""; -App::$strings["OAuth2 Application not found."] = ""; -App::$strings["leave blank unless your application specifically requires this"] = ""; -App::$strings["Connected OAuth2 Apps"] = ""; -App::$strings["Edit Card"] = ""; -App::$strings["Invalid message"] = ""; -App::$strings["no results"] = ""; -App::$strings["channel sync processed"] = ""; -App::$strings["queued"] = ""; -App::$strings["posted"] = ""; -App::$strings["accepted for delivery"] = ""; -App::$strings["updated"] = ""; -App::$strings["update ignored"] = ""; -App::$strings["permission denied"] = ""; -App::$strings["recipient not found"] = ""; -App::$strings["mail recalled"] = ""; -App::$strings["duplicate mail received"] = ""; -App::$strings["mail delivered"] = ""; -App::$strings["Delivery report for %1\$s"] = ""; -App::$strings["Options"] = ""; -App::$strings["Redeliver"] = ""; -App::$strings["Please login."] = ""; -App::$strings["Unable to find your hub."] = ""; -App::$strings["Post successful."] = ""; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = ""; -App::$strings["This setting requires special processing and editing has been blocked."] = ""; -App::$strings["Configuration Editor"] = ""; -App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = ""; -App::$strings["Layout updated."] = ""; -App::$strings["PDL Editor App"] = ""; -App::$strings["Provides the ability to edit system page layouts"] = ""; -App::$strings["Edit System Page Description"] = ""; -App::$strings["(modified)"] = ""; -App::$strings["Layout not found."] = ""; -App::$strings["Module Name:"] = ""; -App::$strings["Layout Help"] = ""; -App::$strings["Edit another layout"] = ""; -App::$strings["System layout"] = ""; -App::$strings["Permission category name is required."] = ""; -App::$strings["Permission category saved."] = ""; -App::$strings["Permission Categories App"] = ""; -App::$strings["Create custom connection permission limits"] = ""; -App::$strings["Use this form to create permission rules for various classes of people or connections."] = ""; -App::$strings["Permission category name"] = ""; -App::$strings["Page owner information could not be retrieved."] = ""; -App::$strings["Album not found."] = ""; -App::$strings["Delete Album"] = ""; -App::$strings["Delete Photo"] = ""; -App::$strings["No photos selected"] = ""; -App::$strings["Access to this item is restricted."] = ""; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = ""; -App::$strings["%1$.2f MB photo storage used."] = ""; -App::$strings["Upload Photos"] = ""; -App::$strings["Enter an album name"] = ""; -App::$strings["or select an existing album (doubleclick)"] = ""; -App::$strings["Create a status post for this upload"] = ""; -App::$strings["Description (optional)"] = ""; -App::$strings["Show Newest First"] = ""; -App::$strings["Show Oldest First"] = ""; -App::$strings["Add Photos"] = ""; -App::$strings["Permission denied. Access to this item may be restricted."] = ""; -App::$strings["Photo not available"] = ""; -App::$strings["Use as profile photo"] = ""; -App::$strings["Use as cover photo"] = ""; -App::$strings["Private Photo"] = ""; -App::$strings["View Full Size"] = ""; -App::$strings["Edit photo"] = ""; -App::$strings["Rotate CW (right)"] = ""; -App::$strings["Rotate CCW (left)"] = ""; -App::$strings["Move photo to album"] = ""; -App::$strings["Enter a new album name"] = ""; -App::$strings["or select an existing one (doubleclick)"] = ""; -App::$strings["Add a Tag"] = ""; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = ""; -App::$strings["Flag as adult in album view"] = ""; -App::$strings["Photo Tools"] = ""; -App::$strings["In This Photo:"] = ""; -App::$strings["Map"] = ""; -App::$strings["sent you a private message"] = ""; -App::$strings["added your channel"] = ""; -App::$strings["requires approval"] = ""; -App::$strings["g A l F d"] = ""; -App::$strings["[today]"] = ""; -App::$strings["posted an event"] = ""; -App::$strings["shared a file with you"] = ""; -App::$strings["Private forum"] = ""; -App::$strings["Public forum"] = ""; -App::$strings["Poke App"] = ""; -App::$strings["Poke somebody in your addressbook"] = ""; -App::$strings["Poke somebody"] = ""; -App::$strings["Poke/Prod"] = ""; -App::$strings["Poke, prod or do other things to somebody"] = ""; -App::$strings["Recipient"] = ""; -App::$strings["Choose what you wish to do to recipient"] = ""; -App::$strings["Make this post private"] = ""; -App::$strings["Remote Diagnostics App"] = ""; -App::$strings["Perform diagnostics on remote channels"] = ""; -App::$strings["vcard"] = ""; -App::$strings["Profile not found."] = ""; -App::$strings["Profile deleted."] = ""; -App::$strings["Profile-"] = ""; -App::$strings["New profile created."] = ""; -App::$strings["Profile unavailable to clone."] = ""; -App::$strings["Profile unavailable to export."] = ""; -App::$strings["Profile Name is required."] = ""; -App::$strings["Marital Status"] = ""; -App::$strings["Romantic Partner"] = ""; -App::$strings["Likes"] = ""; -App::$strings["Dislikes"] = ""; -App::$strings["Work/Employment"] = ""; -App::$strings["Religion"] = ""; -App::$strings["Political Views"] = ""; -App::$strings["Gender"] = ""; -App::$strings["Sexual Preference"] = ""; -App::$strings["Homepage"] = ""; -App::$strings["Interests"] = ""; -App::$strings["Profile updated."] = ""; -App::$strings["Hide your connections list from viewers of this profile"] = ""; -App::$strings["Edit Profile Details"] = ""; -App::$strings["View this profile"] = ""; -App::$strings["Profile Tools"] = ""; -App::$strings["Change cover photo"] = ""; -App::$strings["Create a new profile using these settings"] = ""; -App::$strings["Clone this profile"] = ""; -App::$strings["Delete this profile"] = ""; -App::$strings["Add profile things"] = ""; -App::$strings["Personal"] = ""; -App::$strings["Relationship"] = ""; -App::$strings["Import profile from file"] = ""; -App::$strings["Export profile to file"] = ""; -App::$strings["Your gender"] = ""; -App::$strings["Marital status"] = ""; -App::$strings["Sexual preference"] = ""; -App::$strings["Profile name"] = ""; -App::$strings["This is your default profile."] = ""; -App::$strings["Your full name"] = ""; -App::$strings["Title/Description"] = ""; -App::$strings["Street address"] = ""; -App::$strings["Locality/City"] = ""; -App::$strings["Region/State"] = ""; -App::$strings["Postal/Zip code"] = ""; -App::$strings["Who (if applicable)"] = ""; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = ""; -App::$strings["Since (date)"] = ""; -App::$strings["Tell us about yourself"] = ""; -App::$strings["Homepage URL"] = ""; -App::$strings["Hometown"] = ""; -App::$strings["Political views"] = ""; -App::$strings["Religious views"] = ""; -App::$strings["Keywords used in directory listings"] = ""; -App::$strings["Example: fishing photography software"] = ""; -App::$strings["Musical interests"] = ""; -App::$strings["Books, literature"] = ""; -App::$strings["Television"] = ""; -App::$strings["Film/Dance/Culture/Entertainment"] = ""; -App::$strings["Hobbies/Interests"] = ""; -App::$strings["Love/Romance"] = ""; -App::$strings["School/Education"] = ""; -App::$strings["Contact information and social networks"] = ""; -App::$strings["My other channels"] = ""; -App::$strings["Communications"] = ""; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; -App::$strings["Your default profile photo is visible to anybody on the internet. Profile photos for alternate profiles will inherit the permissions of the profile"] = ""; -App::$strings["Your profile photo is visible to anybody on the internet and may be distributed to other websites."] = ""; -App::$strings["Use Photo for Profile"] = ""; -App::$strings["Change Profile Photo"] = ""; -App::$strings["Use"] = ""; -App::$strings["Invalid profile identifier."] = ""; -App::$strings["Profile Visibility Editor"] = ""; -App::$strings["Click on a contact to add or remove."] = ""; -App::$strings["Visible To"] = ""; -App::$strings["Public Hubs"] = ""; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = ""; -App::$strings["Hub URL"] = ""; -App::$strings["Access Type"] = ""; -App::$strings["Registration Policy"] = ""; -App::$strings["Stats"] = ""; -App::$strings["Software"] = ""; -App::$strings["Rate"] = ""; -App::$strings["Public Stream App"] = ""; -App::$strings["The unmoderated public stream of this hub"] = ""; -App::$strings["Random Channel App"] = ""; -App::$strings["Visit a random channel in the \$Projectname network"] = ""; -App::$strings["Website:"] = ""; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = ""; -App::$strings["Rating (this information is public)"] = ""; -App::$strings["Optionally explain your rating (this information is public)"] = ""; -App::$strings["No ratings"] = ""; -App::$strings["Rating: "] = ""; -App::$strings["Website: "] = ""; -App::$strings["Description: "] = ""; -App::$strings["Select a bookmark folder"] = ""; -App::$strings["Save Bookmark"] = ""; -App::$strings["URL of bookmark"] = ""; -App::$strings["Or enter new bookmark folder name"] = ""; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = ""; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = ""; -App::$strings["Passwords do not match."] = ""; -App::$strings["Registration successful. Continue to create your first channel..."] = ""; -App::$strings["Registration successful. Please check your email for validation instructions."] = ""; -App::$strings["Your registration is pending approval by the site owner."] = ""; -App::$strings["Your registration can not be processed."] = ""; -App::$strings["Registration on this hub is disabled."] = ""; -App::$strings["Registration on this hub is by approval only."] = ""; -App::$strings["Register at another affiliated hub."] = ""; -App::$strings["Registration on this hub is by invitation only."] = ""; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = ""; -App::$strings["Terms of Service"] = ""; -App::$strings["I accept the %s for this website"] = ""; -App::$strings["I am over %s years of age and accept the %s for this website"] = ""; -App::$strings["Your email address"] = ""; -App::$strings["Choose a password"] = ""; -App::$strings["Please re-enter your password"] = ""; -App::$strings["Please enter your invitation code"] = ""; -App::$strings["Your Name"] = ""; -App::$strings["Real names are preferred."] = ""; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = ""; -App::$strings["Select a channel permission role for your usage needs and privacy requirements."] = ""; -App::$strings["no"] = ""; -App::$strings["yes"] = ""; -App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = ""; -App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = ""; -App::$strings["Remove This Account"] = ""; -App::$strings["This account and all its channels will be completely removed from the network. "] = ""; -App::$strings["This action is permanent and can not be undone!"] = ""; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = ""; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = ""; -App::$strings["Remove Account"] = ""; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = ""; -App::$strings["Remove This Channel"] = ""; -App::$strings["This channel will be completely removed from the network. "] = ""; -App::$strings["Remove this channel and all its clones from the network"] = ""; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = ""; -App::$strings["Remove Channel"] = ""; -App::$strings["Authentication failed."] = ""; -App::$strings["Items tagged with: %s"] = ""; -App::$strings["Search results for: %s"] = ""; -App::$strings["No service class restrictions found."] = ""; -App::$strings["Not valid email."] = ""; -App::$strings["Protected email address. Cannot change to that email."] = ""; -App::$strings["System failure storing new email. Please try again."] = ""; -App::$strings["Password verification failed."] = ""; -App::$strings["Passwords do not match. Password unchanged."] = ""; -App::$strings["Empty passwords are not allowed. Password unchanged."] = ""; -App::$strings["Password changed."] = ""; -App::$strings["Password update failed. Please try again."] = ""; -App::$strings["Account Settings"] = ""; -App::$strings["Current Password"] = ""; -App::$strings["Enter New Password"] = ""; -App::$strings["Confirm New Password"] = ""; -App::$strings["Leave password fields blank unless changing"] = ""; -App::$strings["Email Address:"] = ""; -App::$strings["Remove this account including all its channels"] = ""; -App::$strings["CalDAV Settings"] = ""; -App::$strings["Nobody except yourself"] = ""; -App::$strings["Only those you specifically allow"] = ""; -App::$strings["Approved connections"] = ""; -App::$strings["Any connections"] = ""; -App::$strings["Anybody on this website"] = ""; -App::$strings["Anybody in this network"] = ""; -App::$strings["Anybody authenticated"] = ""; -App::$strings["Anybody on the internet"] = ""; -App::$strings["Publish your default profile in the network directory"] = ""; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = ""; -App::$strings["or"] = ""; -App::$strings["Your channel address is"] = ""; -App::$strings["Your files/photos are accessible via WebDAV at"] = ""; -App::$strings["Automatic membership approval"] = ""; -App::$strings["Channel Settings"] = ""; -App::$strings["Basic Settings"] = ""; -App::$strings["Your Timezone:"] = ""; -App::$strings["Default Post Location:"] = ""; -App::$strings["Geographical location to display on your posts"] = ""; -App::$strings["Use Browser Location:"] = ""; -App::$strings["Adult Content"] = ""; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = ""; -App::$strings["Security and Privacy Settings"] = ""; -App::$strings["Your permissions are already configured. Click to view/adjust"] = ""; -App::$strings["Hide my online presence"] = ""; -App::$strings["Prevents displaying in your profile that you are online"] = ""; -App::$strings["Simple Privacy Settings:"] = ""; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = ""; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = ""; -App::$strings["Private - default private, never open or public"] = ""; -App::$strings["Blocked - default blocked to/from everybody"] = ""; -App::$strings["Allow others to tag your posts"] = ""; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = ""; -App::$strings["Channel Permission Limits"] = ""; -App::$strings["Expire other channel content after this many days"] = ""; -App::$strings["0 or blank to use the website limit."] = ""; -App::$strings["This website expires after %d days."] = ""; -App::$strings["This website does not expire imported content."] = ""; -App::$strings["The website limit takes precedence if lower than your limit."] = ""; -App::$strings["Maximum Friend Requests/Day:"] = ""; -App::$strings["May reduce spam activity"] = ""; -App::$strings["Default Privacy Group"] = ""; -App::$strings["Use my default audience setting for the type of object published"] = ""; -App::$strings["Default permissions category"] = ""; -App::$strings["Maximum private messages per day from unknown people:"] = ""; -App::$strings["Useful to reduce spamming"] = ""; -App::$strings["By default post a status message when:"] = ""; -App::$strings["accepting a friend request"] = ""; -App::$strings["joining a forum/community"] = ""; -App::$strings["making an interesting profile change"] = ""; -App::$strings["Send a notification email when:"] = ""; -App::$strings["You receive a connection request"] = ""; -App::$strings["Your connections are confirmed"] = ""; -App::$strings["Someone writes on your profile wall"] = ""; -App::$strings["Someone writes a followup comment"] = ""; -App::$strings["You receive a private message"] = ""; -App::$strings["You receive a friend suggestion"] = ""; -App::$strings["You are tagged in a post"] = ""; -App::$strings["You are poked/prodded/etc. in a post"] = ""; -App::$strings["Someone likes your post/comment"] = ""; -App::$strings["Show visual notifications including:"] = ""; -App::$strings["Unseen stream activity"] = ""; -App::$strings["Unseen channel activity"] = ""; -App::$strings["Unseen private messages"] = ""; -App::$strings["Recommended"] = ""; -App::$strings["Upcoming events"] = ""; -App::$strings["Events today"] = ""; -App::$strings["Upcoming birthdays"] = ""; -App::$strings["Not available in all themes"] = ""; -App::$strings["System (personal) notifications"] = ""; -App::$strings["System info messages"] = ""; -App::$strings["System critical alerts"] = ""; -App::$strings["New connections"] = ""; -App::$strings["System Registrations"] = ""; -App::$strings["Unseen shared files"] = ""; -App::$strings["Unseen public stream activity"] = ""; -App::$strings["Unseen likes and dislikes"] = ""; -App::$strings["Unseen forum posts"] = ""; -App::$strings["Email notification hub (hostname)"] = ""; -App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = ""; -App::$strings["Show new wall posts, private messages and connections under Notices"] = ""; -App::$strings["Notify me of events this many days in advance"] = ""; -App::$strings["Must be greater than 0"] = ""; -App::$strings["Advanced Account/Page Type Settings"] = ""; -App::$strings["Change the behaviour of this account for special situations"] = ""; -App::$strings["Miscellaneous Settings"] = ""; -App::$strings["Default photo upload folder"] = ""; -App::$strings["%Y - current year, %m - current month"] = ""; -App::$strings["Default file upload folder"] = ""; -App::$strings["Remove this channel."] = ""; -App::$strings["Max height of content (in pixels)"] = ""; -App::$strings["Click to expand content exceeding this height"] = ""; -App::$strings["Personal menu to display in your channel pages"] = ""; -App::$strings["Channel Home Settings"] = ""; -App::$strings["Connections Settings"] = ""; -App::$strings["Settings saved."] = ""; -App::$strings["Settings saved. Reload page please."] = ""; -App::$strings["Conversation Settings"] = ""; -App::$strings["Directory Settings"] = ""; -App::$strings["%s - (Experimental)"] = ""; -App::$strings["Display Settings"] = ""; -App::$strings["Theme Settings"] = ""; -App::$strings["Custom Theme Settings"] = ""; -App::$strings["Content Settings"] = ""; -App::$strings["Display Theme:"] = ""; -App::$strings["Select scheme"] = ""; -App::$strings["Preload images before rendering the page"] = ""; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = ""; -App::$strings["Enable user zoom on mobile devices"] = ""; -App::$strings["Update browser every xx seconds"] = ""; -App::$strings["Minimum of 10 seconds, no maximum"] = ""; -App::$strings["Maximum number of conversations to load at any time:"] = ""; -App::$strings["Maximum of 100 items"] = ""; -App::$strings["Show emoticons (smilies) as images"] = ""; -App::$strings["Provide channel menu in navigation bar"] = ""; -App::$strings["Default: channel menu located in app menu"] = ""; -App::$strings["Manual conversation updates"] = ""; -App::$strings["Default is on, turning this off may increase screen jumping"] = ""; -App::$strings["Link post titles to source"] = ""; -App::$strings["New Member Links"] = ""; -App::$strings["Display new member quick links menu"] = ""; -App::$strings["Editor Settings"] = ""; -App::$strings["Events Settings"] = ""; -App::$strings["No feature settings configured"] = ""; -App::$strings["Addon Settings"] = ""; -App::$strings["Please save/submit changes to any panel before opening another."] = ""; -App::$strings["Additional Features"] = ""; -App::$strings["Channel Manager Settings"] = ""; -App::$strings["Stream Settings"] = ""; -App::$strings["Photos Settings"] = ""; -App::$strings["Profiles Settings"] = ""; -App::$strings["\$Projectname Server - Setup"] = ""; -App::$strings["Could not connect to database."] = ""; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = ""; -App::$strings["Could not create table."] = ""; -App::$strings["Your site database has been installed."] = ""; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = ""; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = ""; -App::$strings["System check"] = ""; -App::$strings["Check again"] = ""; -App::$strings["Database connection"] = ""; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = ""; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = ""; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = ""; -App::$strings["Database Server Name"] = ""; -App::$strings["Default is 127.0.0.1"] = ""; -App::$strings["Database Port"] = ""; -App::$strings["Communication port number - use 0 for default"] = ""; -App::$strings["Database Login Name"] = ""; -App::$strings["Database Login Password"] = ""; -App::$strings["Database Name"] = ""; -App::$strings["Database Type"] = ""; -App::$strings["Site administrator email address"] = ""; -App::$strings["Your account email address must match this in order to use the web admin panel."] = ""; -App::$strings["Website URL"] = ""; -App::$strings["Please use SSL (https) URL if available."] = ""; -App::$strings["Please select a default timezone for your website"] = ""; -App::$strings["Site settings"] = ""; -App::$strings["PHP version 7.1 or greater is required."] = ""; -App::$strings["PHP version"] = ""; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = ""; -App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = ""; -App::$strings["PHP executable path"] = ""; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; -App::$strings["Command line PHP"] = ""; -App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = ""; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = ""; -App::$strings["This is required for message delivery to work."] = ""; -App::$strings["PHP register_argc_argv"] = ""; -App::$strings["This is not sufficient to upload larger images or files. You should be able to upload at least 4 MB at once."] = ""; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = ""; -App::$strings["You can adjust these settings in the server php.ini file."] = ""; -App::$strings["PHP upload limits"] = ""; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = ""; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = ""; -App::$strings["Generate encryption keys"] = ""; -App::$strings["libCurl PHP module"] = ""; -App::$strings["GD graphics PHP module"] = ""; -App::$strings["OpenSSL PHP module"] = ""; -App::$strings["PDO database PHP module"] = ""; -App::$strings["mb_string PHP module"] = ""; -App::$strings["xml PHP module"] = ""; -App::$strings["zip PHP module"] = ""; -App::$strings["Apache mod_rewrite module"] = ""; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = ""; -App::$strings["exec"] = ""; -App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = ""; -App::$strings["shell_exec"] = ""; -App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = ""; -App::$strings["Error: libCURL PHP module required but not installed."] = ""; -App::$strings["Error: GD PHP module with JPEG support or ImageMagick graphics library required but not installed."] = ""; -App::$strings["Error: openssl PHP module required but not installed."] = ""; -App::$strings["Error: PDO database PHP module missing a driver for either mysql or pgsql."] = ""; -App::$strings["Error: PDO database PHP module required but not installed."] = ""; -App::$strings["Error: mb_string PHP module required but not installed."] = ""; -App::$strings["Error: xml PHP module required for DAV but not installed."] = ""; -App::$strings["Error: zip PHP module required but not installed."] = ""; -App::$strings[".htconfig.php is writable"] = ""; -App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = ""; -App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = ""; -App::$strings["Please see install/INSTALL.txt for additional information."] = ""; -App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = ""; -App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; -App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = ""; -App::$strings["%s is writable"] = ""; -App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the top level web folder"] = ""; -App::$strings["store is writable"] = ""; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = ""; -App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = ""; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = ""; -App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = ""; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = ""; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = ""; -App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = ""; -App::$strings["SSL certificate validation"] = ""; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = ""; -App::$strings["Url rewrite is working"] = ""; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; -App::$strings["Errors encountered creating database tables."] = ""; -App::$strings["

What next?

"] = ""; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; -App::$strings["Post repeated"] = ""; -App::$strings["Files: shared with me"] = ""; -App::$strings["NEW"] = ""; -App::$strings["Last Modified"] = ""; -App::$strings["Remove all files"] = ""; -App::$strings["Remove this file"] = ""; -App::$strings["About this site"] = ""; -App::$strings["Site Name"] = ""; -App::$strings["Administrator"] = ""; -App::$strings["Software and Project information"] = ""; -App::$strings["This site is powered by \$Projectname"] = ""; -App::$strings["Federated and decentralised networking and identity services provided by Zot"] = ""; -App::$strings["Additional federated transport protocols:"] = ""; -App::$strings["Version %s"] = ""; -App::$strings["Project homepage"] = ""; -App::$strings["Developer homepage"] = ""; -App::$strings["Failed to create source. No channel selected."] = ""; -App::$strings["Source created."] = ""; -App::$strings["Source updated."] = ""; -App::$strings["Sources App"] = ""; -App::$strings["Automatically import channel content from other channels or feeds"] = ""; -App::$strings["*"] = ""; -App::$strings["Manage remote sources of content for your channel."] = ""; -App::$strings["New Source"] = ""; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = ""; -App::$strings["Only import content with these words (one per line)"] = ""; -App::$strings["Leave blank to import all public content"] = ""; -App::$strings["Channel Name"] = ""; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = ""; -App::$strings["Resend posts with this channel as author"] = ""; -App::$strings["Copyrights may apply"] = ""; -App::$strings["Source not found."] = ""; -App::$strings["Edit Source"] = ""; -App::$strings["Delete Source"] = ""; -App::$strings["Source removed"] = ""; -App::$strings["Unable to remove source."] = ""; -App::$strings["%1\$s is following %2\$s's %3\$s"] = ""; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = ""; -App::$strings["Suggest Channels App"] = ""; -App::$strings["Suggestions for channels in the \$Projectname network you might be interested in"] = ""; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; -App::$strings["Ignore/Hide"] = ""; -App::$strings["Post not found."] = ""; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = ""; -App::$strings["Tag removed"] = ""; -App::$strings["Remove Item Tag"] = ""; -App::$strings["Select a tag to remove: "] = ""; -App::$strings["Thing updated"] = ""; -App::$strings["Object store: failed"] = ""; -App::$strings["Thing added"] = ""; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = ""; -App::$strings["Show Thing"] = ""; -App::$strings["item not found."] = ""; -App::$strings["Edit Thing"] = ""; -App::$strings["Select a profile"] = ""; -App::$strings["Post an activity"] = ""; -App::$strings["Only sends to viewers of the applicable profile"] = ""; -App::$strings["Name of thing e.g. something"] = ""; -App::$strings["URL of thing (optional)"] = ""; -App::$strings["URL for photo of thing (optional)"] = ""; -App::$strings["Add Thing to your Profile"] = ""; -App::$strings["This channel is limited to %d tokens"] = ""; -App::$strings["Name and Password are required."] = ""; -App::$strings["Token saved."] = ""; -App::$strings["Guest Access App"] = ""; -App::$strings["Create access tokens so that non-members can access private content"] = ""; -App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = ""; -App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = ""; -App::$strings["Guest Access Tokens"] = ""; -App::$strings["Login Name"] = ""; -App::$strings["Login Password"] = ""; -App::$strings["Expires (yyyy-mm-dd)"] = ""; -App::$strings["Channel Export App"] = ""; -App::$strings["Export your channel"] = ""; -App::$strings["Export Channel"] = ""; -App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = ""; -App::$strings["Export Content"] = ""; -App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = ""; -App::$strings["Export your posts from a given year."] = ""; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = ""; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = ""; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = ""; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = ""; -App::$strings["No connections."] = ""; -App::$strings["Visit %s's profile [%s]"] = ""; -App::$strings["View Connections"] = ""; -App::$strings["item"] = ""; -App::$strings["Webpages App"] = ""; -App::$strings["Provide managed web pages on your channel"] = ""; -App::$strings["Import Webpage Elements"] = ""; -App::$strings["Import selected"] = ""; -App::$strings["Export Webpage Elements"] = ""; -App::$strings["Export selected"] = ""; -App::$strings["Actions"] = ""; -App::$strings["Page Link"] = ""; -App::$strings["Page Title"] = ""; -App::$strings["Invalid file type."] = ""; -App::$strings["Error opening zip file"] = ""; -App::$strings["Invalid folder path."] = ""; -App::$strings["No webpage elements detected."] = ""; -App::$strings["Import complete."] = ""; -App::$strings["Profile Unavailable."] = ""; -App::$strings["Wiki App"] = ""; -App::$strings["Provide a wiki for your channel"] = ""; -App::$strings["Invalid channel"] = ""; -App::$strings["Error retrieving wiki"] = ""; -App::$strings["Error creating zip file export folder"] = ""; -App::$strings["Error downloading wiki: "] = ""; -App::$strings["Download"] = ""; -App::$strings["Wiki name"] = ""; -App::$strings["Content type"] = ""; -App::$strings["Type"] = ""; -App::$strings["Any type"] = ""; -App::$strings["Lock content type"] = ""; -App::$strings["Create a status post for this wiki"] = ""; -App::$strings["Edit Wiki Name"] = ""; -App::$strings["Wiki not found"] = ""; -App::$strings["Rename page"] = ""; -App::$strings["Error retrieving page content"] = ""; -App::$strings["New page"] = ""; -App::$strings["Revision Comparison"] = ""; -App::$strings["Short description of your changes (optional)"] = ""; -App::$strings["Source"] = ""; -App::$strings["New page name"] = ""; -App::$strings["Embed image from photo albums"] = ""; -App::$strings["History"] = ""; -App::$strings["Error creating wiki. Invalid name."] = ""; -App::$strings["A wiki with this name already exists."] = ""; -App::$strings["Wiki created, but error creating Home page."] = ""; -App::$strings["Error creating wiki"] = ""; -App::$strings["Error updating wiki. Invalid name."] = ""; -App::$strings["Error updating wiki"] = ""; -App::$strings["Wiki delete permission denied."] = ""; -App::$strings["Error deleting wiki"] = ""; -App::$strings["New page created"] = ""; -App::$strings["Cannot delete Home"] = ""; -App::$strings["Current Revision"] = ""; -App::$strings["Selected Revision"] = ""; -App::$strings["You must be authenticated."] = ""; -App::$strings["Xchan Lookup"] = ""; -App::$strings["Lookup xchan beginning with (or webbie): "] = ""; -App::$strings["parent"] = ""; -App::$strings["Principal"] = ""; -App::$strings["Addressbook"] = ""; -App::$strings["Schedule Inbox"] = ""; -App::$strings["Schedule Outbox"] = ""; -App::$strings["Total"] = ""; -App::$strings["Shared"] = ""; -App::$strings["Add Files"] = ""; -App::$strings["You are using %1\$s of your available file storage."] = ""; -App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = ""; -App::$strings["WARNING:"] = ""; -App::$strings["Create new folder"] = ""; -App::$strings["Upload file"] = ""; -App::$strings["Drop files here to immediately upload"] = ""; -App::$strings["__ctx:widget__ Activity"] = ""; -App::$strings["Show posts related to the %s privacy group"] = ""; +App::$strings["Invite App"] = "アプリを招待"; +App::$strings["Send email invitations to join this network"] = "このネットワークに参加するための招待メールを送信する"; +App::$strings["You have no more invitations available"] = "利用可能な招待はもうありません"; +App::$strings["Send invitations"] = "招待状を送信"; +App::$strings["Enter email addresses, one per line:"] = "電子メールアドレスを1行に1つずつ入力します。"; +App::$strings["Your message:"] = "あなたのメッセージ:"; +App::$strings["Please join my community on \$Projectname."] = "$ Projectnameでコミュニティに参加してください。"; +App::$strings["You will need to supply this invitation code:"] = "この招待コードを提供する必要があります。"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1.任意の$ Projectnameの場所に登録します(すべて相互に接続されています)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. $ Projectnameネットワークアドレスをサイト検索バーに入力します。"; +App::$strings["or visit"] = "または訪問"; +App::$strings["3. Click [Connect]"] = "3. [接続]をクリックします"; +App::$strings["Unable to locate original post."] = "元の投稿が見つかりません。"; +App::$strings["Empty post discarded."] = "空の投稿は破棄されました。"; +App::$strings["Duplicate post suppressed."] = "重複した投稿は抑制されました。"; +App::$strings["System error. Post not saved."] = "システムエラー。投稿は保存されませんでした。"; +App::$strings["Your comment is awaiting approval."] = "あなたのコメントは承認待ちです。"; +App::$strings["Unable to obtain post information from database."] = "データベースから投稿情報を取得できません。"; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "トップレベルの投稿の上限%1 $ .0fに達しました。"; +App::$strings["You have reached your limit of %1$.0f webpages."] = "ウェブページの制限%1 $ .0fに達しました。"; +App::$strings["Language App"] = "言語アプリ"; +App::$strings["Change UI language"] = "UI言語を変更する"; +App::$strings["Comanche page description language help"] = "Comancheページ記述言語のヘルプ"; +App::$strings["Layout Description"] = "レイアウトの説明"; +App::$strings["Download PDL file"] = "PDLファイルをダウンロードする"; +App::$strings["Like/Dislike"] = "好き/嫌い"; +App::$strings["This action is restricted to members."] = "このアクションはメンバーに制限されています。"; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "続行するには、 $ Projectname IDでログインするか、新しい$ Projectnameメンバーとして登録してください。"; +App::$strings["Invalid request."] = "無効なリクエスト。"; +App::$strings["thing"] = "事"; +App::$strings["Channel unavailable."] = "チャンネルは利用できません。"; +App::$strings["Previous action reversed."] = "前のアクションが逆になりました。"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$s同意します"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$sと一致しません"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$s決定を棄権します"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$s"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$s参加していません"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$s"; +App::$strings["Action completed."] = "アクションが完了しました。"; +App::$strings["Thank you."] = "ありがとうございました。"; +App::$strings["Remote privacy information not available."] = "リモートプライバシー情報は利用できません。"; +App::$strings["Visible to:"] = "に表示:"; +App::$strings["Location not found."] = "場所が見つかりません。"; +App::$strings["Location lookup failed."] = "場所の検索に失敗しました。"; +App::$strings["Please select another location to become primary before removing the primary location."] = "プライマリロケーションを削除する前に、プライマリになる別のロケーションを選択してください。"; +App::$strings["Syncing locations"] = "場所の同期"; +App::$strings["No locations found."] = "場所が見つかりません。"; +App::$strings["Manage Channel Locations"] = "チャンネルの場所を管理する"; +App::$strings["Primary"] = "一次"; +App::$strings["Drop"] = "ドロップ"; +App::$strings["Sync Now"] = "今すぐ同期"; +App::$strings["Please wait several minutes between consecutive operations."] = "連続した操作の間に数分待ってください。"; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "可能であれば、そのWebサイト/ハブにログインしてチャンネルを削除して、場所を削除します。"; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "ハブが動作しなくなった場合、このフォームを使用して場所を削除します。"; +App::$strings["No valid account found."] = "有効なアカウントが見つかりません。"; +App::$strings["Password reset request issued. Check your email."] = "パスワードリセット要求が発行されました。あなたのメールをチェック。"; +App::$strings["Site Member (%s)"] = "サイトメンバー( %s )"; +App::$strings["Password reset requested at %s"] = "%s要求されたパスワードのリセット"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "リクエストを確認できませんでした。 (以前に送信した可能性があります。)パスワードのリセットに失敗しました。"; +App::$strings["Your password has been reset as requested."] = "パスワードは要求どおりにリセットされました。"; +App::$strings["Your new password is"] = "新しいパスワードは"; +App::$strings["Save or copy your new password - and then"] = "新しいパスワードを保存またはコピーします-その後"; +App::$strings["click here to login"] = "ここをクリックしてログイン"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "ログインに成功すると、パスワードは設定ページから変更される場合があります。"; +App::$strings["Your password has changed at %s"] = "パスワードは%s変更されました"; +App::$strings["Forgot your Password?"] = "パスワードをお忘れですか?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "メールアドレスを入力して送信し、パスワードをリセットしてください。その後、メールで詳細な手順を確認してください。"; +App::$strings["Email Address"] = "電子メールアドレス"; +App::$strings["Reset"] = "リセットする"; +App::$strings["Hub not found."] = "ハブが見つかりません。"; +App::$strings["Unable to lookup recipient."] = "受信者を検索できません。"; +App::$strings["Unable to communicate with requested channel."] = "要求されたチャネルと通信できません。"; +App::$strings["Cannot verify requested channel."] = "要求されたチャンネルを確認できません。"; +App::$strings["Selected channel has private message restrictions. Send failed."] = "選択したチャンネルにはプライベートメッセージの制限があります。送信に失敗しました。"; +App::$strings["Messages"] = "メッセージ"; +App::$strings["message"] = "メッセージ"; +App::$strings["Message recalled."] = "メッセージを思い出しました。"; +App::$strings["Conversation removed."] = "会話を削除しました。"; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "有効期限YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "要求されたチャンネルはこのネットワークにありません"; +App::$strings["Send Private Message"] = "プライベートメッセージを送信"; +App::$strings["To:"] = "に:"; +App::$strings["Subject:"] = "件名:"; +App::$strings["Attach file"] = "ファイルを添付する"; +App::$strings["Send"] = "送る"; +App::$strings["Delete message"] = "メッセージを削除"; +App::$strings["Delivery report"] = "送達通知"; +App::$strings["Recall message"] = "リコールメッセージ"; +App::$strings["Message has been recalled."] = "メッセージが呼び戻されました。"; +App::$strings["Delete Conversation"] = "会話を削除"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "安全な通信は利用できません。送信者のプロファイルページから 返信できる場合があります。"; +App::$strings["Send Reply"] = "返信する"; +App::$strings["Your message for %s (%s):"] = "%s ( %s ) %sメッセージ:"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "%2 $ .0fの%1 $ .0fが許可されたチャンネルを作成しました。"; +App::$strings["Create a new channel"] = "新しいチャンネルを作成する"; +App::$strings["Current Channel"] = "現在のチャンネル"; +App::$strings["Switch to one of your channels by selecting it."] = "チャンネルを選択して切り替えます。"; +App::$strings["Default Channel"] = "デフォルトチャンネル"; +App::$strings["Make Default"] = "デフォルトにする"; +App::$strings["%d new messages"] = "%d新しいメッセージ"; +App::$strings["%d new introductions"] = "%d新しい紹介"; +App::$strings["Delegated Channel"] = "委任チャンネル"; +App::$strings["Unable to update menu."] = "メニューを更新できません。"; +App::$strings["Unable to create menu."] = "メニューを作成できません。"; +App::$strings["Menu Name"] = "メニュー名"; +App::$strings["Unique name (not visible on webpage) - required"] = "一意の名前(Webページには表示されません)-必須"; +App::$strings["Menu Title"] = "メニュータイトル"; +App::$strings["Visible on webpage - leave empty for no title"] = "Webページに表示-タイトルがない場合は空のままにします"; +App::$strings["Allow Bookmarks"] = "ブックマークを許可"; +App::$strings["Menu may be used to store saved bookmarks"] = "メニューを使用して、保存したブックマークを保存できます"; +App::$strings["Submit and proceed"] = "送信して続行"; +App::$strings["Bookmarks allowed"] = "ブックマークを許可"; +App::$strings["Delete this menu"] = "このメニューを削除"; +App::$strings["Edit menu contents"] = "メニューの内容を編集"; +App::$strings["Edit this menu"] = "このメニューを編集"; +App::$strings["Menu could not be deleted."] = "メニューを削除できませんでした。"; +App::$strings["Menu not found."] = "メニューが見つかりません。"; +App::$strings["Edit Menu"] = "編集メニュー"; +App::$strings["Add or remove entries to this menu"] = "このメニューにエントリを追加または削除します"; +App::$strings["Menu name"] = "メニュー名"; +App::$strings["Must be unique, only seen by you"] = "唯一でなければならない、あなただけが見られる"; +App::$strings["Menu title"] = "メニュータイトル"; +App::$strings["Menu title as seen by others"] = "他の人に表示されるメニュータイトル"; +App::$strings["Allow bookmarks"] = "ブックマークを許可する"; +App::$strings["Not found."] = "見つかりません。"; +App::$strings["Unable to create element."] = "要素を作成できません。"; +App::$strings["Unable to update menu element."] = "メニュー要素を更新できません。"; +App::$strings["Unable to add menu element."] = "メニュー要素を追加できません。"; +App::$strings["Menu Item Permissions"] = "メニュー項目の許可"; +App::$strings["(click to open/close)"] = "(クリックして開閉)"; +App::$strings["Link Name"] = "リンク名"; +App::$strings["Link or Submenu Target"] = "リンクまたはサブメニューターゲット"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "リンクのURLを入力するか、メニュー名を選択してサブメニューを作成します"; +App::$strings["Use magic-auth if available"] = "可能であればmagic-authを使用する"; +App::$strings["Open link in new window"] = "新しいウィンドウでリンクを開く"; +App::$strings["Order in list"] = "リスト内の順序"; +App::$strings["Higher numbers will sink to bottom of listing"] = "数字が大きいほどリストの最後に沈みます"; +App::$strings["Submit and finish"] = "提出して終了"; +App::$strings["Submit and continue"] = "送信して続行"; +App::$strings["Menu:"] = "メニュー:"; +App::$strings["Link Target"] = "リンク先"; +App::$strings["Edit menu"] = "編集メニュー"; +App::$strings["Edit element"] = "要素を編集"; +App::$strings["Drop element"] = "ドロップ要素"; +App::$strings["New element"] = "新しい要素"; +App::$strings["Edit this menu container"] = "このメニューコンテナを編集"; +App::$strings["Add menu element"] = "メニュー要素を追加"; +App::$strings["Delete this menu item"] = "このメニュー項目を削除"; +App::$strings["Edit this menu item"] = "このメニュー項目を編集"; +App::$strings["Menu item not found."] = "メニュー項目が見つかりません。"; +App::$strings["Menu item deleted."] = "メニュー項目が削除されました。"; +App::$strings["Menu item could not be deleted."] = "メニュー項目を削除できませんでした。"; +App::$strings["Edit Menu Element"] = "メニュー要素の編集"; +App::$strings["Link text"] = "リンクテキスト"; +App::$strings["Comment approved"] = "コメントが承認されました"; +App::$strings["Comment deleted"] = "コメントを削除しました"; +App::$strings["Mood App"] = "ムードアプリ"; +App::$strings["Set your current mood and tell your friends"] = "現在の気分を設定して友達に伝える"; +App::$strings["No such group"] = "そのようなグループはありません"; +App::$strings["No such channel"] = "そのようなチャンネルはありません"; +App::$strings["Privacy group is empty"] = "プライバシーグループが空です"; +App::$strings["Privacy group: "] = "プライバシーグループ:"; +App::$strings["Invalid channel."] = "無効なチャンネル。"; +App::$strings["Your real name is recommended."] = "あなたの本名が推奨されます。"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "例:\ "Bob Jameson \"、\ "Lisa and her Horses \"、\ "Soccer \"、\ "Aviation Group \""; +App::$strings["This will be used to create a unique network address (like an email address)."] = "これは、一意のネットワークアドレス(電子メールアドレスなど)を作成するために使用されます。"; +App::$strings["Allowed characters are a-z 0-9, - and _"] = "許可される文字はaz 0-9、-および_です"; +App::$strings["Channel name"] = "チャンネル名"; +App::$strings["Choose a short nickname"] = "短いニックネームを選択してください"; +App::$strings["Channel role and privacy"] = "チャンネルの役割とプライバシー"; +App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = "使用ニーズとプライバシー要件に適合するチャンネル許可ロールを選択します。"; +App::$strings["Read more about channel permission roles"] = "チャネル許可の役割の詳細を読む"; +App::$strings["Create a Channel"] = "チャンネルを作成する"; +App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = "チャネルは、一意のネットワークIDです。それは、人(ソーシャルネットワークプロファイル)、フォーラム(グループ)、ビジネスまたは有名人のページ、ニュースフィード、および他の多くのものを表すことができます。"; +App::$strings["or import an existing channel from another location."] = "または既存のチャンネルを別の場所からインポートします。"; +App::$strings["Validate"] = "検証"; +App::$strings["Notes App"] = "ノートアプリ"; +App::$strings["A simple notes app with a widget (note: notes are not encrypted)"] = "ウィジェットを備えたシンプルなメモアプリ(メモ:メモは暗号化されません)"; +App::$strings["No more system notifications."] = "これ以上のシステム通知はありません。"; +App::$strings["System Notifications"] = "システム通知"; +App::$strings["Name is required"] = "名前が必要です"; +App::$strings["Key and Secret are required"] = "キーとシークレットが必要です"; +App::$strings["OAuth Apps Manager App"] = "OAuth Apps Managerアプリ"; +App::$strings["OAuth authentication tokens for mobile and remote apps"] = "モバイルアプリとリモートアプリのOAuth認証トークン"; +App::$strings["Add application"] = "アプリケーションを追加"; +App::$strings["Name of application"] = "アプリケーション名"; +App::$strings["Consumer Key"] = "消費者キー"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "自動生成-必要に応じて変更します。最大長20"; +App::$strings["Consumer Secret"] = "消費者の秘密"; +App::$strings["Redirect"] = "リダイレクト"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "リダイレクトURI-アプリケーションで特に必要な場合を除き、空白のままにします"; +App::$strings["Icon url"] = "アイコンのURL"; +App::$strings["Optional"] = "オプショナル"; +App::$strings["Application not found."] = "アプリケーションは見つかりませんでした。"; +App::$strings["Connected OAuth Apps"] = "接続されたOAuthアプリ"; +App::$strings["Client key starts with"] = "クライアントキーで始まる"; +App::$strings["No name"] = "ノーネーム"; +App::$strings["Remove authorization"] = "承認を削除"; +App::$strings["Name and Secret are required"] = "名前と秘密が必要です"; +App::$strings["OAuth2 Apps Manager App"] = "OAuth2 Apps Managerアプリ"; +App::$strings["OAuth2 authenticatication tokens for mobile and remote apps"] = "モバイルアプリおよびリモートアプリ用のOAuth2認証トークン"; +App::$strings["Add OAuth2 application"] = "OAuth2アプリケーションを追加する"; +App::$strings["Grant Types"] = "助成金の種類"; +App::$strings["leave blank unless your application sepcifically requires this"] = "アプリケーションが個別にこれを必要としない限り、空白のままにしてください"; +App::$strings["Authorization scope"] = "認可範囲"; +App::$strings["OAuth2 Application not found."] = "OAuth2アプリケーションが見つかりません。"; +App::$strings["leave blank unless your application specifically requires this"] = "アプリケーションで特に必要な場合を除き、空白のままにしてください"; +App::$strings["Connected OAuth2 Apps"] = "接続されたOAuth2アプリ"; +App::$strings["Edit Card"] = "カードを編集"; +App::$strings["Invalid message"] = "無効なメッセージ"; +App::$strings["no results"] = "結果がありません"; +App::$strings["channel sync processed"] = "処理されたチャネル同期"; +App::$strings["queued"] = "待機中"; +App::$strings["posted"] = "掲載"; +App::$strings["accepted for delivery"] = "配達可"; +App::$strings["updated"] = "更新しました"; +App::$strings["update ignored"] = "無視された更新"; +App::$strings["permission denied"] = "アクセス拒否"; +App::$strings["recipient not found"] = "受信者が見つかりません"; +App::$strings["mail recalled"] = "リコールされたメール"; +App::$strings["duplicate mail received"] = "重複メール受信"; +App::$strings["mail delivered"] = "メール配信"; +App::$strings["Delivery report for %1\$s"] = "%1\$s配信レポート"; +App::$strings["Options"] = "オプション"; +App::$strings["Redeliver"] = "再配信"; +App::$strings["Please login."] = "ログインしてください。"; +App::$strings["Unable to find your hub."] = "ハブが見つかりません。"; +App::$strings["Post successful."] = "投稿に成功しました。"; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet、consectetur adipiscing elit、sed do eiusmod tempor incididunt ut Labore et dolore magna aliqua。 Ut enim ad minim veniam、quis nostrud exercitation ullamco Laboris nisi ut aliquip ex ea commodo consequat。 Duip aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur。 Sint occaecat cupidatat non proident、culpa qui officia deserunt mollit anim id est Laborumで例外を除きます。"; +App::$strings["This setting requires special processing and editing has been blocked."] = "この設定には特別な処理が必要であり、編集はブロックされています。"; +App::$strings["Configuration Editor"] = "構成エディター"; +App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "警告:一部の設定を変更すると、チャンネルが動作しなくなる可能性があります。この機能を正しく使用する方法に慣れていない場合は、このページを離れてください。"; +App::$strings["Layout updated."] = "レイアウトが更新されました。"; +App::$strings["PDL Editor App"] = "PDLエディターアプリ"; +App::$strings["Provides the ability to edit system page layouts"] = "システムページレイアウトを編集する機能を提供します。"; +App::$strings["Edit System Page Description"] = "システムページの説明の編集"; +App::$strings["(modified)"] = "(変更)"; +App::$strings["Layout not found."] = "レイアウトが見つかりません。"; +App::$strings["Module Name:"] = "モジュール名:"; +App::$strings["Layout Help"] = "レイアウトヘルプ"; +App::$strings["Edit another layout"] = "別のレイアウトを編集する"; +App::$strings["System layout"] = "システムレイアウト"; +App::$strings["Permission category name is required."] = "許可カテゴリ名が必要です。"; +App::$strings["Permission category saved."] = "許可カテゴリが保存されました。"; +App::$strings["Permission Categories App"] = "許可カテゴリアプリ"; +App::$strings["Create custom connection permission limits"] = "カスタム接続許可制限を作成する"; +App::$strings["Use this form to create permission rules for various classes of people or connections."] = "このフォームを使用して、さまざまなクラスの人または接続の許可ルールを作成します。"; +App::$strings["Permission category name"] = "許可カテゴリ名"; +App::$strings["Page owner information could not be retrieved."] = "ページ所有者情報を取得できませんでした。"; +App::$strings["Album not found."] = "アルバムが見つかりません。"; +App::$strings["Delete Album"] = "アルバムを削除"; +App::$strings["Delete Photo"] = "写真を削除"; +App::$strings["No photos selected"] = "写真が選択されていません"; +App::$strings["Access to this item is restricted."] = "このアイテムへのアクセスは制限されています。"; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%2 $ .2f MBの%1 $ .2f MBの写真ストレージが使用されています。"; +App::$strings["%1$.2f MB photo storage used."] = "%1 $ .2f MBの写真ストレージが使用されています。"; +App::$strings["Upload Photos"] = "写真をアップロードする"; +App::$strings["Enter an album name"] = "アルバム名を入力してください"; +App::$strings["or select an existing album (doubleclick)"] = "または既存のアルバムを選択します(ダブルクリック)"; +App::$strings["Create a status post for this upload"] = "このアップロードのステータス投稿を作成"; +App::$strings["Description (optional)"] = "説明(オプション)"; +App::$strings["Show Newest First"] = "最新を最初に表示"; +App::$strings["Show Oldest First"] = "最も古いものを最初に表示"; +App::$strings["Add Photos"] = "写真を追加"; +App::$strings["Permission denied. Access to this item may be restricted."] = "アクセス拒否。このアイテムへのアクセスは制限される場合があります。"; +App::$strings["Photo not available"] = "写真は利用できません"; +App::$strings["Use as profile photo"] = "プロフィール写真として使用"; +App::$strings["Use as cover photo"] = "カバー写真として使用"; +App::$strings["Private Photo"] = "プライベート写真"; +App::$strings["View Full Size"] = "フルサイズを表示"; +App::$strings["Edit photo"] = "写真を編集する"; +App::$strings["Rotate CW (right)"] = "CWを回転(右)"; +App::$strings["Rotate CCW (left)"] = "CCWを回転(左)"; +App::$strings["Move photo to album"] = "写真をアルバムに移動"; +App::$strings["Enter a new album name"] = "新しいアルバム名を入力してください"; +App::$strings["or select an existing one (doubleclick)"] = "または、既存のものを選択します(ダブルクリック)"; +App::$strings["Add a Tag"] = "タグを追加する"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "例:@ bob、@ Barbara_Jensen、@ jim @ example.com"; +App::$strings["Flag as adult in album view"] = "アルバムビューでアダルトとしてフラグを立てる"; +App::$strings["Photo Tools"] = "写真ツール"; +App::$strings["In This Photo:"] = "この写真の中で:"; +App::$strings["Map"] = "地図"; +App::$strings["sent you a private message"] = "あなたにプライベートメッセージを送りました"; +App::$strings["added your channel"] = "チャンネルを追加しました"; +App::$strings["requires approval"] = "承認が必要です"; +App::$strings["g A l F d"] = "g A l F d"; +App::$strings["[today]"] = "[今日]"; +App::$strings["posted an event"] = "イベントを投稿しました"; +App::$strings["shared a file with you"] = "あなたとファイルを共有しました"; +App::$strings["Private forum"] = "プライベートフォーラム"; +App::$strings["Public forum"] = "公開フォーラム"; +App::$strings["Poke App"] = "ポケアプリ"; +App::$strings["Poke somebody in your addressbook"] = "アドレス帳で誰かを突く"; +App::$strings["Poke somebody"] = "誰かを突く"; +App::$strings["Poke/Prod"] = "突く/製品"; +App::$strings["Poke, prod or do other things to somebody"] = "突く、突き出す、または他のことを誰かに行う"; +App::$strings["Recipient"] = "受取人"; +App::$strings["Choose what you wish to do to recipient"] = "受信者にしたいことを選択してください"; +App::$strings["Make this post private"] = "この投稿を非公開にします"; +App::$strings["Remote Diagnostics App"] = "リモート診断アプリ"; +App::$strings["Perform diagnostics on remote channels"] = "リモートチャネルで診断を実行する"; +App::$strings["vcard"] = "vcard"; +App::$strings["Profile not found."] = "プロファイルが見つかりません。"; +App::$strings["Profile deleted."] = "プロファイルが削除されました。"; +App::$strings["Profile-"] = "プロフィール-"; +App::$strings["New profile created."] = "新しいプロファイルが作成されました。"; +App::$strings["Profile unavailable to clone."] = "プロファイルを複製できません。"; +App::$strings["Profile unavailable to export."] = "プロファイルをエクスポートできません。"; +App::$strings["Profile Name is required."] = "プロファイル名が必要です。"; +App::$strings["Marital Status"] = "配偶者の有無"; +App::$strings["Romantic Partner"] = "ロマンチックなパートナー"; +App::$strings["Likes"] = "いいね"; +App::$strings["Dislikes"] = "嫌い"; +App::$strings["Work/Employment"] = "仕事/雇用"; +App::$strings["Religion"] = "宗教"; +App::$strings["Political Views"] = "政見"; +App::$strings["Gender"] = "性別"; +App::$strings["Sexual Preference"] = "性的嗜好"; +App::$strings["Homepage"] = "ホームページ"; +App::$strings["Interests"] = "趣味"; +App::$strings["Profile updated."] = "プロフィール更新済み。"; +App::$strings["Hide your connections list from viewers of this profile"] = "このプロファイルの閲覧者から接続リストを非表示にします"; +App::$strings["Edit Profile Details"] = "プロファイルの詳細を編集"; +App::$strings["View this profile"] = "このプロフィールを見る"; +App::$strings["Profile Tools"] = "プロファイルツール"; +App::$strings["Change cover photo"] = "カバー写真を変更"; +App::$strings["Create a new profile using these settings"] = "これらの設定を使用して新しいプロファイルを作成します"; +App::$strings["Clone this profile"] = "このプロファイルを複製"; +App::$strings["Delete this profile"] = "このプロファイルを削除"; +App::$strings["Add profile things"] = "プロフィールを追加する"; +App::$strings["Personal"] = "パーソナル"; +App::$strings["Relationship"] = "関係"; +App::$strings["Import profile from file"] = "ファイルからプロファイルをインポート"; +App::$strings["Export profile to file"] = "プロファイルをファイルにエクスポート"; +App::$strings["Your gender"] = "あなたの性別"; +App::$strings["Marital status"] = "配偶者の有無"; +App::$strings["Sexual preference"] = "性的嗜好"; +App::$strings["Profile name"] = "プロファイル名"; +App::$strings["This is your default profile."] = "これがデフォルトのプロファイルです。"; +App::$strings["Your full name"] = "あなたのフルネーム"; +App::$strings["Title/Description"] = "タイトル説明"; +App::$strings["Street address"] = "住所"; +App::$strings["Locality/City"] = "地方/市"; +App::$strings["Region/State"] = "地域/州"; +App::$strings["Postal/Zip code"] = "郵便番号"; +App::$strings["Who (if applicable)"] = "誰(該当する場合)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "例:cathy123、Cathy Williams、cathy @ example.com"; +App::$strings["Since (date)"] = "以来(日付)"; +App::$strings["Tell us about yourself"] = "あなた自身について教えてください"; +App::$strings["Homepage URL"] = "ホームページURL"; +App::$strings["Hometown"] = "出身地"; +App::$strings["Political views"] = "政見"; +App::$strings["Religious views"] = "宗教的見解"; +App::$strings["Keywords used in directory listings"] = "ディレクトリリストで使用されるキーワード"; +App::$strings["Example: fishing photography software"] = "例:釣り写真ソフトウェア"; +App::$strings["Musical interests"] = "音楽的興味"; +App::$strings["Books, literature"] = "本、文学"; +App::$strings["Television"] = "テレビ"; +App::$strings["Film/Dance/Culture/Entertainment"] = "映画/ダンス/文化/エンターテイメント"; +App::$strings["Hobbies/Interests"] = "趣味/興味"; +App::$strings["Love/Romance"] = "愛/ロマンス"; +App::$strings["School/Education"] = "学校教育"; +App::$strings["Contact information and social networks"] = "連絡先情報とソーシャルネットワーク"; +App::$strings["My other channels"] = "私の他のチャンネル"; +App::$strings["Communications"] = "コミュニケーションズ"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "新しい写真がすぐに表示されない場合は、Shiftキーを押しながらページをリロードするか、ブラウザーのキャッシュをクリアします。"; +App::$strings["Your default profile photo is visible to anybody on the internet. Profile photos for alternate profiles will inherit the permissions of the profile"] = "デフォルトのプロフィール写真は、インターネット上の誰でも見ることができます。代替プロファイルのプロファイル写真は、プロファイルの権限を継承します"; +App::$strings["Your profile photo is visible to anybody on the internet and may be distributed to other websites."] = "あなたのプロフィール写真はインターネット上の誰でも見ることができ、他のウェブサイトに配布される場合があります。"; +App::$strings["Use Photo for Profile"] = "プロフィールに写真を使用"; +App::$strings["Change Profile Photo"] = "プロフィール写真の変更"; +App::$strings["Use"] = "つかいます"; +App::$strings["Invalid profile identifier."] = "無効なプロファイル識別子。"; +App::$strings["Profile Visibility Editor"] = "プロファイル可視性エディター"; +App::$strings["Click on a contact to add or remove."] = "連絡先をクリックして追加または削除します。"; +App::$strings["Visible To"] = "に見える"; +App::$strings["Public Hubs"] = "公共ハブ"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "リストされたハブは、$ Projectnameネットワークのパブリック登録を許可します。ネットワーク内のすべてのハブは相互にリンクされているため、ハブのいずれかのメンバーシップはネットワーク全体のメンバーシップを伝えます。一部のハブでは、サブスクリプションが必要な場合や、段階的なサービスプランを提供する場合があります。ハブ自体が追加の詳細を提供する場合があります 。"; +App::$strings["Hub URL"] = "ハブURL"; +App::$strings["Access Type"] = "アクセスタイプ"; +App::$strings["Registration Policy"] = "登録ポリシー"; +App::$strings["Stats"] = "統計"; +App::$strings["Software"] = "ソフトウェア"; +App::$strings["Rate"] = "レート"; +App::$strings["Public Stream App"] = "パブリックストリームアプリ"; +App::$strings["The unmoderated public stream of this hub"] = "このハブのモデレートされていないパブリックストリーム"; +App::$strings["Random Channel App"] = "ランダムチャンネルアプリ"; +App::$strings["Visit a random channel in the \$Projectname network"] = "$ Projectnameネットワークのランダムチャネルにアクセスします"; +App::$strings["Website:"] = "ウェブサイト:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "リモートチャネル[ %s ](このサイトではまだ知られていない)"; +App::$strings["Rating (this information is public)"] = "評価(この情報は公開されています)"; +App::$strings["Optionally explain your rating (this information is public)"] = "オプションで、評価を説明してください(この情報は公開されています)"; +App::$strings["No ratings"] = "評価なし"; +App::$strings["Rating: "] = "評価:"; +App::$strings["Website: "] = "ウェブサイト:"; +App::$strings["Description: "] = "説明:"; +App::$strings["Select a bookmark folder"] = "ブックマークフォルダを選択"; +App::$strings["Save Bookmark"] = "ブックマークを保存"; +App::$strings["URL of bookmark"] = "ブックマークのURL"; +App::$strings["Or enter new bookmark folder name"] = "または、新しいブックマークフォルダ名を入力してください"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "1日の最大サイト登録数を超えました。明日もう一度お試しください。"; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "利用規約への同意を示してください。登録に失敗しました。"; +App::$strings["Passwords do not match."] = "パスワードが一致していません。"; +App::$strings["Registration successful. Continue to create your first channel..."] = "登録に成功。最初のチャンネルを作成し続けます..."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "登録に成功。検証手順については、メールを確認してください。"; +App::$strings["Your registration is pending approval by the site owner."] = "登録はサイト所有者による承認待ちです。"; +App::$strings["Your registration can not be processed."] = "登録を処理できません。"; +App::$strings["Registration on this hub is disabled."] = "このハブでの登録は無効になっています。"; +App::$strings["Registration on this hub is by approval only."] = "このハブへの登録は承認のみです。"; +App::$strings["Register at another affiliated hub."] = "別の提携ハブに登録します。"; +App::$strings["Registration on this hub is by invitation only."] = "このハブへの登録は招待のみです。"; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "このサイトは、許可されている1日のアカウント登録数を超えています。明日もう一度お試しください。"; +App::$strings["Terms of Service"] = "利用規約"; +App::$strings["I accept the %s for this website"] = "このウェブサイトの%sに同意します"; +App::$strings["I am over %s years of age and accept the %s for this website"] = "私は%s歳以上で、このウェブサイトの%sを受け入れます"; +App::$strings["Your email address"] = "メールアドレス"; +App::$strings["Choose a password"] = "パスワードを決めて下さい"; +App::$strings["Please re-enter your password"] = "パスワードを再入力してください"; +App::$strings["Please enter your invitation code"] = "招待コードを入力してください"; +App::$strings["Your Name"] = "あなたの名前"; +App::$strings["Real names are preferred."] = "本名が優先されます。"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "ニックネームは、ニックネーム%s覚えやすいチャネルアドレスを作成するために使用されます"; +App::$strings["Select a channel permission role for your usage needs and privacy requirements."] = "使用上のニーズとプライバシーの要件に応じて、チャンネル許可の役割を選択します。"; +App::$strings["no"] = "いや"; +App::$strings["yes"] = "はい"; +App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "このサイトではメールの確認が必要です。このフォームに記入した後、詳細な手順についてはメールを確認してください。"; +App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "アカウントのパスワードを変更してから48時間以内にアカウントを削除することはできません。"; +App::$strings["Remove This Account"] = "このアカウントを削除"; +App::$strings["This account and all its channels will be completely removed from the network. "] = "このアカウントとそのすべてのチャネルは、ネットワークから完全に削除されます。"; +App::$strings["This action is permanent and can not be undone!"] = "このアクションは永続的であり、元に戻すことはできません!"; +App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "このアカウント、そのすべてのチャンネル、およびそのすべてのチャンネルクローンをネットワークから削除します"; +App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "デフォルトでは、このハブにあるチャネルのインスタンスのみがネットワークから削除されます"; +App::$strings["Remove Account"] = "アカウントを削除"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "アカウントのパスワードを変更してから48時間以内にチャンネルを削除することはできません。"; +App::$strings["Remove This Channel"] = "このチャンネルを削除"; +App::$strings["This channel will be completely removed from the network. "] = "このチャネルはネットワークから完全に削除されます。"; +App::$strings["Remove this channel and all its clones from the network"] = "このチャネルとそのすべてのクローンをネットワークから削除します"; +App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "デフォルトでは、このハブにあるチャネルのインスタンスのみがネットワークから削除されます"; +App::$strings["Remove Channel"] = "チャンネルを削除"; +App::$strings["Authentication failed."] = "認証に失敗しました。"; +App::$strings["Items tagged with: %s"] = "タグ付けされたアイテム: %s"; +App::$strings["Search results for: %s"] = "%s検索結果"; +App::$strings["No service class restrictions found."] = "サービスクラスの制限は見つかりませんでした。"; +App::$strings["Not valid email."] = "無効なメール。"; +App::$strings["Protected email address. Cannot change to that email."] = "保護されたメールアドレス。そのメールに変更できません。"; +App::$strings["System failure storing new email. Please try again."] = "新しいメールの保存中にシステム障害が発生しました。もう一度試してください。"; +App::$strings["Password verification failed."] = "パスワードの確認に失敗しました。"; +App::$strings["Passwords do not match. Password unchanged."] = "パスワードが一致していません。パスワードは変更されていません。"; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "空のパスワードは許可されていません。パスワードは変更されていません。"; +App::$strings["Password changed."] = "パスワード変更済み。"; +App::$strings["Password update failed. Please try again."] = "パスワードの更新に失敗しました。もう一度試してください。"; +App::$strings["Account Settings"] = "アカウント設定"; +App::$strings["Current Password"] = "現在のパスワード"; +App::$strings["Enter New Password"] = "新しいパスワードを入力してください"; +App::$strings["Confirm New Password"] = "新しいパスワードを確認"; +App::$strings["Leave password fields blank unless changing"] = "変更しない限り、パスワードフィールドは空白のままにしてください"; +App::$strings["Email Address:"] = "電子メールアドレス:"; +App::$strings["Remove this account including all its channels"] = "すべてのチャンネルを含むこのアカウントを削除します"; +App::$strings["CalDAV Settings"] = "CalDAV設定"; +App::$strings["Nobody except yourself"] = "自分以外は誰もいません"; +App::$strings["Only those you specifically allow"] = "特に許可したもののみ"; +App::$strings["Approved connections"] = "承認された接続"; +App::$strings["Any connections"] = "すべての接続"; +App::$strings["Anybody on this website"] = "このウェブサイトの誰でも"; +App::$strings["Anybody in this network"] = "このネットワークの誰でも"; +App::$strings["Anybody authenticated"] = "誰でも認証済み"; +App::$strings["Anybody on the internet"] = "インターネット上の誰でも"; +App::$strings["Publish your default profile in the network directory"] = "ネットワークディレクトリでデフォルトプロファイルを公開する"; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = "あなたを新しいメンバーの潜在的な友人として提案させてください。"; +App::$strings["or"] = "または"; +App::$strings["Your channel address is"] = "あなたのチャンネルのアドレスは"; +App::$strings["Your files/photos are accessible via WebDAV at"] = "ファイル/写真には、WebDAVからアクセスできます"; +App::$strings["Automatic membership approval"] = "自動会員承認"; +App::$strings["Channel Settings"] = "チャンネル設定"; +App::$strings["Basic Settings"] = "基本設定"; +App::$strings["Your Timezone:"] = "あなたのタイムゾーン:"; +App::$strings["Default Post Location:"] = "デフォルトの投稿場所:"; +App::$strings["Geographical location to display on your posts"] = "投稿に表示する地理的な場所"; +App::$strings["Use Browser Location:"] = "ブラウザの場所を使用:"; +App::$strings["Adult Content"] = "成人コンテンツ"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "このチャンネルは頻繁または定期的にアダルトコンテンツを公開しています。 (成人向けの素材やヌードには#NSFWのタグを付けてください)"; +App::$strings["Security and Privacy Settings"] = "セキュリティとプライバシーの設定"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "許可はすでに構成されています。クリックして表示/調整"; +App::$strings["Hide my online presence"] = "オンラインプレゼンスを非表示にする"; +App::$strings["Prevents displaying in your profile that you are online"] = "あなたがオンラインであることをあなたのプロフィールに表示しないようにします"; +App::$strings["Simple Privacy Settings:"] = "シンプルなプライバシー設定:"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "非常にパブリック-非常に寛容です(注意して使用する必要があります)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "標準-必要に応じてデフォルトのパブリック、プライバシー(ソーシャルネットワークのアクセス許可に似ていますが、プライバシーが改善されます)"; +App::$strings["Private - default private, never open or public"] = "非公開-デフォルトでは非公開、非公開または公開"; +App::$strings["Blocked - default blocked to/from everybody"] = "ブロック済み-デフォルトですべてのユーザーとの間でブロック"; +App::$strings["Allow others to tag your posts"] = "他のユーザーがあなたの投稿にタグ付けできるようにします"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "コミュニティが不適切なコンテンツを遡ってフラグを立てるためによく使用します"; +App::$strings["Channel Permission Limits"] = "チャンネル許可の制限"; +App::$strings["Expire other channel content after this many days"] = "この数日後に他のチャンネルコンテンツを期限切れにする"; +App::$strings["0 or blank to use the website limit."] = "Webサイトの制限を使用する場合は0または空白。"; +App::$strings["This website expires after %d days."] = "このウェブサイトは%d日後に有効期限が切れます。"; +App::$strings["This website does not expire imported content."] = "このWebサイトは、インポートされたコンテンツを期限切れにしません。"; +App::$strings["The website limit takes precedence if lower than your limit."] = "Webサイトの制限は、制限より低い場合に優先されます。"; +App::$strings["Maximum Friend Requests/Day:"] = "最大友達リクエスト/日:"; +App::$strings["May reduce spam activity"] = "スパム活動を減らす可能性があります"; +App::$strings["Default Privacy Group"] = "デフォルトのプライバシーグループ"; +App::$strings["Use my default audience setting for the type of object published"] = "公開されたオブジェクトのタイプにデフォルトのオーディエンス設定を使用します"; +App::$strings["Default permissions category"] = "デフォルトの許可カテゴリ"; +App::$strings["Maximum private messages per day from unknown people:"] = "不明な人からの1日あたりの最大プライベートメッセージ:"; +App::$strings["Useful to reduce spamming"] = "スパムを減らすのに役立ちます"; +App::$strings["By default post a status message when:"] = "デフォルトでは、次の場合にステータスメッセージを投稿します。"; +App::$strings["accepting a friend request"] = "友達リクエストを受け入れる"; +App::$strings["joining a forum/community"] = "フォーラム/コミュニティへの参加"; +App::$strings["making an interesting profile change"] = "興味深いプロファイルの変更を行う"; +App::$strings["Send a notification email when:"] = "次の場合に通知メールを送信します。"; +App::$strings["You receive a connection request"] = "接続要求を受け取ります"; +App::$strings["Your connections are confirmed"] = "接続が確認されました"; +App::$strings["Someone writes on your profile wall"] = "誰かがあなたのプロフィールウォールに書き込みます"; +App::$strings["Someone writes a followup comment"] = "誰かがフォローアップコメントを書く"; +App::$strings["You receive a private message"] = "プライベートメッセージを受け取ります"; +App::$strings["You receive a friend suggestion"] = "友達の提案を受け取ります"; +App::$strings["You are tagged in a post"] = "あなたは投稿でタグ付けされています"; +App::$strings["You are poked/prodded/etc. in a post"] = "あなたは突かれた/突かれた/などです。投稿で"; +App::$strings["Someone likes your post/comment"] = "誰かがあなたの投稿/コメントを気に入っています"; +App::$strings["Show visual notifications including:"] = "以下を含む視覚的な通知を表示します。"; +App::$strings["Unseen stream activity"] = "目に見えないストリーム活動"; +App::$strings["Unseen channel activity"] = "目に見えないチャンネルアクティビティ"; +App::$strings["Unseen private messages"] = "目に見えないプライベートメッセージ"; +App::$strings["Recommended"] = "お勧め"; +App::$strings["Upcoming events"] = "今後のイベント"; +App::$strings["Events today"] = "今日のイベント"; +App::$strings["Upcoming birthdays"] = "今後の誕生日"; +App::$strings["Not available in all themes"] = "すべてのテーマで利用できない"; +App::$strings["System (personal) notifications"] = "システム(個人)通知"; +App::$strings["System info messages"] = "システム情報メッセージ"; +App::$strings["System critical alerts"] = "システムクリティカルアラート"; +App::$strings["New connections"] = "新しい接続"; +App::$strings["System Registrations"] = "システム登録"; +App::$strings["Unseen shared files"] = "見えない共有ファイル"; +App::$strings["Unseen public stream activity"] = "未公開の公開ストリームアクティビティ"; +App::$strings["Unseen likes and dislikes"] = "目に見えない好き嫌い"; +App::$strings["Unseen forum posts"] = "未公開のフォーラム投稿"; +App::$strings["Email notification hub (hostname)"] = "電子メール通知ハブ(ホスト名)"; +App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "チャンネルが複数のハブにミラーリングされている場合、これを好みの場所に設定します。これにより、電子メール通知の重複が防止されます。例: %s"; +App::$strings["Show new wall posts, private messages and connections under Notices"] = "お知らせの下に新しい壁の投稿、プライベートメッセージ、接続を表示します"; +App::$strings["Notify me of events this many days in advance"] = "この数日前にイベントを通知してください"; +App::$strings["Must be greater than 0"] = "0より大きくなければなりません"; +App::$strings["Advanced Account/Page Type Settings"] = "アカウント/ページタイプの詳細設定"; +App::$strings["Change the behaviour of this account for special situations"] = "特別な状況でこのアカウントの動作を変更する"; +App::$strings["Miscellaneous Settings"] = "その他の設定"; +App::$strings["Default photo upload folder"] = "デフォルトの写真アップロードフォルダ"; +App::$strings["%Y - current year, %m - current month"] = "%Y-現在の年、%m-現在の月"; +App::$strings["Default file upload folder"] = "デフォルトのファイルアップロードフォルダ"; +App::$strings["Remove this channel."] = "このチャンネルを削除してください。"; +App::$strings["Max height of content (in pixels)"] = "コンテンツの最大の高さ(ピクセル単位)"; +App::$strings["Click to expand content exceeding this height"] = "クリックしてこの高さを超えるコンテンツを展開します"; +App::$strings["Personal menu to display in your channel pages"] = "チャンネルページに表示する個人メニュー"; +App::$strings["Channel Home Settings"] = "チャンネルのホーム設定"; +App::$strings["Connections Settings"] = "接続設定"; +App::$strings["Settings saved."] = "保存された設定。"; +App::$strings["Settings saved. Reload page please."] = "保存された設定。ページをリロードしてください。"; +App::$strings["Conversation Settings"] = "会話設定"; +App::$strings["Directory Settings"] = "ディレクトリ設定"; +App::$strings["%s - (Experimental)"] = "%s (実験的)"; +App::$strings["Display Settings"] = "ディスプレイの設定"; +App::$strings["Theme Settings"] = "テーマ設定"; +App::$strings["Custom Theme Settings"] = "カスタムテーマ設定"; +App::$strings["Content Settings"] = "コンテンツ設定"; +App::$strings["Display Theme:"] = "ディスプレイテーマ:"; +App::$strings["Select scheme"] = "スキームを選択"; +App::$strings["Preload images before rendering the page"] = "ページをレンダリングする前に画像をプリロードする"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "主観的なページの読み込み時間は長くなりますが、表示されるとページの準備が整います"; +App::$strings["Enable user zoom on mobile devices"] = "モバイルデバイスでユーザーズームを有効にする"; +App::$strings["Update browser every xx seconds"] = "xx秒ごとにブラウザーを更新する"; +App::$strings["Minimum of 10 seconds, no maximum"] = "最小10秒、最大なし"; +App::$strings["Maximum number of conversations to load at any time:"] = "常にロードする会話の最大数:"; +App::$strings["Maximum of 100 items"] = "最大100アイテム"; +App::$strings["Show emoticons (smilies) as images"] = "絵文字(スマイリー)を画像として表示する"; +App::$strings["Provide channel menu in navigation bar"] = "ナビゲーションバーにチャンネルメニューを提供する"; +App::$strings["Default: channel menu located in app menu"] = "デフォルト:アプリメニューにあるチャンネルメニュー"; +App::$strings["Manual conversation updates"] = "手動会話の更新"; +App::$strings["Default is on, turning this off may increase screen jumping"] = "デフォルトはオンです。これをオフにすると、画面ジャンプが増加する場合があります"; +App::$strings["Link post titles to source"] = "投稿のタイトルをソースにリンクする"; +App::$strings["New Member Links"] = "新規会員リンク"; +App::$strings["Display new member quick links menu"] = "新しいメンバーのクイックリンクメニューを表示する"; +App::$strings["Editor Settings"] = "エディター設定"; +App::$strings["Events Settings"] = "イベント設定"; +App::$strings["No feature settings configured"] = "機能設定が構成されていません"; +App::$strings["Addon Settings"] = "アドオン設定"; +App::$strings["Please save/submit changes to any panel before opening another."] = "別のパネルを開く前に、パネルの変更を保存/送信してください。"; +App::$strings["Additional Features"] = "追加機能"; +App::$strings["Channel Manager Settings"] = "チャネルマネージャーの設定"; +App::$strings["Stream Settings"] = "ストリーム設定"; +App::$strings["Photos Settings"] = "写真の設定"; +App::$strings["Profiles Settings"] = "プロファイル設定"; +App::$strings["\$Projectname Server - Setup"] = "$ Projectnameサーバー-セットアップ"; +App::$strings["Could not connect to database."] = "データベースに接続できません。"; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "指定されたサイトURLに接続できませんでした。 SSL証明書またはDNSの問題の可能性。"; +App::$strings["Could not create table."] = "テーブルを作成できませんでした。"; +App::$strings["Your site database has been installed."] = "サイトデータベースがインストールされました。"; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "データベースクライアントを使用して、手動でファイル\ "install / schema_xxx.sql \"をインポートする必要がある場合があります。"; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "ファイル「install / INSTALL.txt」を参照してください。"; +App::$strings["System check"] = "システムチェック"; +App::$strings["Check again"] = "再び確かめる"; +App::$strings["Database connection"] = "データベース接続"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "$ Projectnameをインストールするには、データベースへの接続方法を知る必要があります。"; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "これらの設定について質問がある場合は、ホスティングプロバイダーまたはサイト管理者にお問い合わせください。"; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "以下で指定するデータベースはすでに存在している必要があります。存在しない場合は、続行する前に作成してください。"; +App::$strings["Database Server Name"] = "データベースサーバー名"; +App::$strings["Default is 127.0.0.1"] = "デフォルトは127.0.0.1"; +App::$strings["Database Port"] = "データベースポート"; +App::$strings["Communication port number - use 0 for default"] = "通信ポート番号-デフォルトには0を使用"; +App::$strings["Database Login Name"] = "データベースのログイン名"; +App::$strings["Database Login Password"] = "データベースログインパスワード"; +App::$strings["Database Name"] = "データベース名"; +App::$strings["Database Type"] = "データベースの種類"; +App::$strings["Site administrator email address"] = "サイト管理者のメールアドレス"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "ウェブ管理パネルを使用するには、アカウントのメールアドレスがこれと一致する必要があります。"; +App::$strings["Website URL"] = "ウェブサイトのURL"; +App::$strings["Please use SSL (https) URL if available."] = "可能な場合は、SSL(https)URLを使用してください。"; +App::$strings["Please select a default timezone for your website"] = "ウェブサイトのデフォルトのタイムゾーンを選択してください"; +App::$strings["Site settings"] = "サイト設定"; +App::$strings["PHP version 7.1 or greater is required."] = "PHPバージョン7.1以降が必要です。"; +App::$strings["PHP version"] = "PHPバージョン"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = "WebサーバーPATHにコマンドラインバージョンのPHPが見つかりませんでした。"; +App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "PHPのコマンドラインバージョンがサーバーにインストールされていない場合、cronを介してバックグラウンドポーリングを実行することはできません。"; +App::$strings["PHP executable path"] = "PHP実行可能パス"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "php実行可能ファイルへのフルパスを入力します。これを空白のままにしてインストールを続行できます。"; +App::$strings["Command line PHP"] = "コマンドラインPHP"; +App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "shell_exec()が無効になっているため、コマンドラインPHPをチェックできません。これは必須です。"; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "ご使用のシステムのコマンドラインバージョンのPHPでは、\ "register_argc_argv \"が有効になっていません。"; +App::$strings["This is required for message delivery to work."] = "これは、メッセージ配信が機能するために必要です。"; +App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +App::$strings["This is not sufficient to upload larger images or files. You should be able to upload at least 4 MB at once."] = "これは、大きな画像やファイルをアップロードするには不十分です。少なくとも4 MBを一度にアップロードできる必要があります。"; +App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "アップロードの最大許容合計サイズは%s設定されています。アップロードする1つのファイルの最大サイズは%s設定されています。一度に最大%dファイルをアップロードできます。"; +App::$strings["You can adjust these settings in the server php.ini file."] = "サーバーのphp.iniファイルでこれらの設定を調整できます。"; +App::$strings["PHP upload limits"] = "PHPアップロード制限"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "エラー:このシステムの\ "openssl_pkey_new \"関数は暗号化キーを生成できません"; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Windowsで実行している場合は、「http://www.php.net/manual/en/openssl.installation.php \」を参照してください。"; +App::$strings["Generate encryption keys"] = "暗号化キーを生成する"; +App::$strings["libCurl PHP module"] = "libCurl PHPモジュール"; +App::$strings["GD graphics PHP module"] = "GDグラフィックスPHPモジュール"; +App::$strings["OpenSSL PHP module"] = "OpenSSL PHPモジュール"; +App::$strings["PDO database PHP module"] = "PDOデータベースPHPモジュール"; +App::$strings["mb_string PHP module"] = "mb_string PHPモジュール"; +App::$strings["xml PHP module"] = "XML PHPモジュール"; +App::$strings["zip PHP module"] = "zip PHPモジュール"; +App::$strings["Apache mod_rewrite module"] = "Apache mod_rewriteモジュール"; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "エラー:Apache webserver mod-rewriteモジュールが必要ですが、インストールされていません。"; +App::$strings["exec"] = "幹部"; +App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "エラー:execが必要ですが、インストールされていないか、php.iniで無効にされています"; +App::$strings["shell_exec"] = "shell_exec"; +App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "エラー:shell_execが必要ですが、インストールされていないか、php.iniで無効にされています"; +App::$strings["Error: libCURL PHP module required but not installed."] = "エラー:libCURL PHPモジュールが必要ですが、インストールされていません。"; +App::$strings["Error: GD PHP module with JPEG support or ImageMagick graphics library required but not installed."] = "エラー:JPEGサポートまたはImageMagickグラフィックライブラリを備えたGD PHPモジュールが必要ですが、インストールされていません。"; +App::$strings["Error: openssl PHP module required but not installed."] = "エラー:openssl PHPモジュールが必要ですが、インストールされていません。"; +App::$strings["Error: PDO database PHP module missing a driver for either mysql or pgsql."] = "エラー:PDOデータベースPHPモジュールにmysqlまたはpgsqlのいずれかのドライバーがありません。"; +App::$strings["Error: PDO database PHP module required but not installed."] = "エラー:PDOデータベースPHPモジュールが必要ですが、インストールされていません。"; +App::$strings["Error: mb_string PHP module required but not installed."] = "エラー:mb_string PHPモジュールが必要ですが、インストールされていません。"; +App::$strings["Error: xml PHP module required for DAV but not installed."] = "エラー:DAVにはXML PHPモジュールが必要ですが、インストールされていません。"; +App::$strings["Error: zip PHP module required but not installed."] = "エラー:zip PHPモジュールが必要ですが、インストールされていません。"; +App::$strings[".htconfig.php is writable"] = ".htconfig.phpは書き込み可能です"; +App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Webインストーラーは、Webサーバーの最上位フォルダーに\ "。htconfig.php \"というファイルを作成できる必要がありますが、作成できません。"; +App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "これはほとんどの場合、Webサーバーがフォルダーにファイルを書き込むことができない場合でも、許可設定です。"; +App::$strings["Please see install/INSTALL.txt for additional information."] = "詳細については、install / INSTALL.txtを参照してください。"; +App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "このソフトウェアは、Smarty3テンプレートエンジンを使用してWebビューをレンダリングします。 Smarty3はテンプレートをPHPにコンパイルして、レンダリングを高速化します。"; +App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "これらのコンパイル済みテンプレートを保存するには、Webサーバーが最上位のWebフォルダー%s下のディレクトリ%sへの書き込みアクセス権を持っている必要があります。"; +App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Webサーバーを実行するユーザー(www-dataなど)がこのフォルダーへの書き込みアクセス権を持っていることを確認してください。"; +App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "注:セキュリティ対策として、Webサーバーに含まれるテンプレートファイル(.tpl)ではなく、 %sへの書き込みアクセスを許可する必要があります。"; +App::$strings["%s is writable"] = "%sは書き込み可能です"; +App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the top level web folder"] = "このソフトウェアは、ストアディレクトリを使用して、アップロードされたファイルを保存します。 Webサーバーには、最上位Webフォルダーの下のストアディレクトリへの書き込みアクセスが必要です。"; +App::$strings["store is writable"] = "ストアは書き込み可能です"; +App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL証明書を検証できません。証明書を修正するか、このサイトへのhttpsアクセスを無効にします。"; +App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Webサイトへのhttpsアクセスがある場合、またはTCPポート443(https:ポート)への接続を許可する場合は、ブラウザーで有効な証明書を使用する必要があります。自己署名証明書を使用してはいけません!"; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "あなたからの一般公開の投稿には、たとえばあなた自身のハブ上の画像への参照が含まれている可能性があるため、この制限が組み込まれています。"; +App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "証明書が認識されない場合、他のサイトのメンバー(自分自身が有効な証明書を持っている可能性があります)は、自分のサイトでセキュリティの問題について不平を言っている警告メッセージを受け取ります。"; +App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "これにより、他の場所(ユーザのサイトだけでなく)でユーザビリティの問題が発生する可能性があるため、この要件を主張する必要があります。"; +App::$strings["Providers are available that issue free certificates which are browser-valid."] = "ブラウザで有効な無料の証明書を発行するプロバイダーが利用可能です。"; +App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "証明書が有効であり、信頼できる機関によって署名されていると確信している場合は、中間証明書のインストールに失敗したかどうかを確認してください。これらは通常ブラウザには必要ありませんが、サーバー間の通信には必要です。"; +App::$strings["SSL certificate validation"] = "SSL証明書の検証"; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = ".htaccessのURL書き換えが機能していません。サーバーの構成を確認します。テスト:"; +App::$strings["Url rewrite is working"] = "URLの書き換えが機能しています"; +App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "データベース構成ファイル\ "。htconfig.php \"を書き込めませんでした。同封のテキストを使用して、Webサーバーのルートに構成ファイルを作成してください。"; +App::$strings["Errors encountered creating database tables."] = "データベーステーブルの作成中にエラーが発生しました。"; +App::$strings["

What next?

"] = "

次は何ですか"; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "重要:ポーラーのスケジュールされたタスクを[手動で]設定する必要があります。"; +App::$strings["Post repeated"] = "繰り返し投稿"; +App::$strings["Files: shared with me"] = "ファイル:私と共有"; +App::$strings["NEW"] = "新しい"; +App::$strings["Last Modified"] = "最終更新日"; +App::$strings["Remove all files"] = "すべてのファイルを削除する"; +App::$strings["Remove this file"] = "このファイルを削除"; +App::$strings["About this site"] = "このサイトについて"; +App::$strings["Site Name"] = "サイト名"; +App::$strings["Administrator"] = "管理者"; +App::$strings["Software and Project information"] = "ソフトウェアおよびプロジェクト情報"; +App::$strings["This site is powered by \$Projectname"] = "このサイトは$ Projectnameを使用しています"; +App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Zotが提供する統合および分散型のネットワークおよびIDサービス"; +App::$strings["Additional federated transport protocols:"] = "追加の統合トランスポートプロトコル:"; +App::$strings["Version %s"] = "バージョン%s"; +App::$strings["Project homepage"] = "プロジェクトのホームページ"; +App::$strings["Developer homepage"] = "開発者ホームページ"; +App::$strings["Failed to create source. No channel selected."] = "ソースの作成に失敗しました。チャンネルが選択されていません。"; +App::$strings["Source created."] = "ソースが作成されました。"; +App::$strings["Source updated."] = "ソースが更新されました。"; +App::$strings["Sources App"] = "ソースアプリ"; +App::$strings["Automatically import channel content from other channels or feeds"] = "他のチャンネルまたはフィードからチャンネルコンテンツを自動的にインポートする"; +App::$strings["*"] = "*"; +App::$strings["Manage remote sources of content for your channel."] = "チャンネルのコンテンツのリモートソースを管理します。"; +App::$strings["New Source"] = "新しいソース"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "次のチャネルからすべてまたは選択したコンテンツをこのチャネルにインポートし、チャネル設定に従って配信します。"; +App::$strings["Only import content with these words (one per line)"] = "これらの単語を含むコンテンツのみをインポートします(1行に1つ)"; +App::$strings["Leave blank to import all public content"] = "すべての公開コンテンツをインポートするには空白のままにします"; +App::$strings["Channel Name"] = "チャンネル名"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "このソースからインポートされた投稿に次のカテゴリを追加します(カンマ区切り)"; +App::$strings["Resend posts with this channel as author"] = "このチャンネルを著者として投稿を再送信する"; +App::$strings["Copyrights may apply"] = "著作権が適用される場合があります"; +App::$strings["Source not found."] = "ソースが見つかりません。"; +App::$strings["Edit Source"] = "ソースを編集"; +App::$strings["Delete Source"] = "ソースを削除"; +App::$strings["Source removed"] = "ソースを削除しました"; +App::$strings["Unable to remove source."] = "ソースを削除できません。"; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$sフォローしています"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s %2\$sの%3\$sの後に%1\$sが停止しました"; +App::$strings["Suggest Channels App"] = "チャンネルアプリの提案"; +App::$strings["Suggestions for channels in the \$Projectname network you might be interested in"] = "興味があるかもしれない$ Projectnameネットワークのチャンネルの提案"; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "利用可能な提案はありません。新しいサイトの場合は、24時間後にもう一度お試しください。"; +App::$strings["Ignore/Hide"] = "無視/非表示"; +App::$strings["Post not found."] = "投稿が見つかりません。"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$sが%2\$sの%3\$sに%4\$s %1\$sタグを付けました"; +App::$strings["Tag removed"] = "タグを削除しました"; +App::$strings["Remove Item Tag"] = "アイテムタグを削除"; +App::$strings["Select a tag to remove: "] = "削除するタグを選択:"; +App::$strings["Thing updated"] = "更新されたもの"; +App::$strings["Object store: failed"] = "オブジェクトストア:失敗"; +App::$strings["Thing added"] = "追加されたもの"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "ものを見る"; +App::$strings["item not found."] = "アイテムが見つかりません。"; +App::$strings["Edit Thing"] = "ものを編集"; +App::$strings["Select a profile"] = "プロフィールを選択"; +App::$strings["Post an activity"] = "アクティビティを投稿する"; +App::$strings["Only sends to viewers of the applicable profile"] = "該当するプロファイルの閲覧者にのみ送信します"; +App::$strings["Name of thing e.g. something"] = "何かの名前、たとえば何か"; +App::$strings["URL of thing (optional)"] = "モノのURL(オプション)"; +App::$strings["URL for photo of thing (optional)"] = "モノの写真のURL(オプション)"; +App::$strings["Add Thing to your Profile"] = "プロフィールにモノを追加"; +App::$strings["This channel is limited to %d tokens"] = "このチャンネルは%dトークンに制限されています"; +App::$strings["Name and Password are required."] = "名前とパスワードが必要です。"; +App::$strings["Token saved."] = "トークンを保存しました。"; +App::$strings["Guest Access App"] = "ゲストアクセスアプリ"; +App::$strings["Create access tokens so that non-members can access private content"] = "非メンバーがプライベートコンテンツにアクセスできるようにアクセストークンを作成する"; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "このフォームを使用して、一時的なアクセス識別子を作成し、非メンバーと物事を共有します。これらのIDはアクセス制御リストで使用でき、訪問者はこれらの資格情報を使用してログインしてプライベートコンテンツにアクセスできます。"; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "示されているように、特定のサイトURLにログインパスワードを追加することにより、友人や仲間に dropbox スタイルのアクセスリンクを提供することもできます。例:"; +App::$strings["Guest Access Tokens"] = "ゲストアクセストークン"; +App::$strings["Login Name"] = "ログイン名"; +App::$strings["Login Password"] = "ログインパスワード"; +App::$strings["Expires (yyyy-mm-dd)"] = "有効期限(yyyy-mm-dd)"; +App::$strings["Channel Export App"] = "チャンネルエクスポートアプリ"; +App::$strings["Export your channel"] = "チャンネルをエクスポートする"; +App::$strings["Export Channel"] = "輸出チャンネル"; +App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "基本的なチャネル情報をファイルにエクスポートします。これは、接続、権限、プロファイル、および基本データのバックアップとして機能し、データを新しいサーバーハブにインポートするために使用できますが、コンテンツは含まれません。"; +App::$strings["Export Content"] = "コンテンツをエクスポート"; +App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "チャンネル情報と最近のコンテンツをJSONバックアップにエクスポートし、別のサーバーハブに復元またはインポートできます。これにより、すべての接続、権限、プロファイルデータ、および数か月分の投稿がバックアップされます。このファイルは非常に大きい場合があります。しばらくお待ちください。このダウンロードが開始されるまで数分かかる場合があります。"; +App::$strings["Export your posts from a given year."] = "特定の年の投稿をエクスポートします。"; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "特定の年または月の投稿と会話をエクスポートすることもできます。ブラウザのロケーションバーで日付を調整して、他の日付を選択します。エクスポートが失敗した場合(サーバーハブのメモリ不足が原因である可能性があります)、より制限された日付範囲の選択を再試行してください。"; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "今年など、特定の年のすべての投稿を選択するには、 %2\$s にアクセスしてください"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "今年の1月など、特定の月のすべての投稿を選択するには、 %2\$s にアクセスしてください"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "これらのコンテンツファイルは、チャンネルを含むサイトで %2\$s に%1\$sしてインポートまたは復元できます。最良の結果を得るには、これらを日付順に(最も古いものから)インポートまたは復元してください。"; +App::$strings["No connections."] = "接続なし。"; +App::$strings["Visit %s's profile [%s]"] = "%sのプロフィール[ %s ]にアクセスしてください"; +App::$strings["View Connections"] = "接続を表示"; +App::$strings["item"] = "項目"; +App::$strings["Webpages App"] = "ウェブページアプリ"; +App::$strings["Provide managed web pages on your channel"] = "チャンネルで管理されたWebページを提供する"; +App::$strings["Import Webpage Elements"] = "Webページ要素をインポートする"; +App::$strings["Import selected"] = "選択したインポート"; +App::$strings["Export Webpage Elements"] = "Webページ要素のエクスポート"; +App::$strings["Export selected"] = "選択したエクスポート"; +App::$strings["Actions"] = "行動"; +App::$strings["Page Link"] = "ページリンク"; +App::$strings["Page Title"] = "ページタイトル"; +App::$strings["Invalid file type."] = "無効なファイルタイプ。"; +App::$strings["Error opening zip file"] = "zipファイルを開く際のエラー"; +App::$strings["Invalid folder path."] = "無効なフォルダーパス。"; +App::$strings["No webpage elements detected."] = "Webページ要素は検出されませんでした。"; +App::$strings["Import complete."] = "インポートが完了しました。"; +App::$strings["Profile Unavailable."] = "プロファイルを利用できません。"; +App::$strings["Wiki App"] = "Wikiアプリ"; +App::$strings["Provide a wiki for your channel"] = "チャンネルのウィキを提供する"; +App::$strings["Invalid channel"] = "無効なチャンネル"; +App::$strings["Error retrieving wiki"] = "Wikiの取得エラー"; +App::$strings["Error creating zip file export folder"] = "zipファイルエクスポートフォルダーの作成エラー"; +App::$strings["Error downloading wiki: "] = "Wikiのダウンロードエラー:"; +App::$strings["Download"] = "ダウンロード"; +App::$strings["Wiki name"] = "ウィキ名"; +App::$strings["Content type"] = "コンテンツの種類"; +App::$strings["Type"] = "タイプ"; +App::$strings["Any type"] = "任意のタイプ"; +App::$strings["Lock content type"] = "コンテンツタイプをロックする"; +App::$strings["Create a status post for this wiki"] = "このウィキのステータスポストを作成する"; +App::$strings["Edit Wiki Name"] = "Wiki名を編集"; +App::$strings["Wiki not found"] = "ウィキが見つかりません"; +App::$strings["Rename page"] = "ページの名前を変更"; +App::$strings["Error retrieving page content"] = "ページコンテンツの取得エラー"; +App::$strings["New page"] = "新しいページ"; +App::$strings["Revision Comparison"] = "リビジョン比較"; +App::$strings["Short description of your changes (optional)"] = "変更の簡単な説明(オプション)"; +App::$strings["Source"] = "ソース"; +App::$strings["New page name"] = "新しいページ名"; +App::$strings["Embed image from photo albums"] = "フォトアルバムから画像を埋め込む"; +App::$strings["History"] = "歴史"; +App::$strings["Error creating wiki. Invalid name."] = "Wikiの作成エラー。無効な名前。"; +App::$strings["A wiki with this name already exists."] = "この名前のウィキは既に存在します。"; +App::$strings["Wiki created, but error creating Home page."] = "Wikiは作成されましたが、ホームページの作成中にエラーが発生しました。"; +App::$strings["Error creating wiki"] = "Wikiの作成エラー"; +App::$strings["Error updating wiki. Invalid name."] = "Wikiの更新エラー。無効な名前。"; +App::$strings["Error updating wiki"] = "Wikiの更新エラー"; +App::$strings["Wiki delete permission denied."] = "Wikiの削除許可が拒否されました。"; +App::$strings["Error deleting wiki"] = "Wikiの削除エラー"; +App::$strings["New page created"] = "新しいページが作成されました"; +App::$strings["Cannot delete Home"] = "ホームを削除できません"; +App::$strings["Current Revision"] = "現在の改訂"; +App::$strings["Selected Revision"] = "選択されたリビジョン"; +App::$strings["You must be authenticated."] = "認証される必要があります。"; +App::$strings["Xchan Lookup"] = "Xchanルックアップ"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "(またはwebbie)で始まるxchanを検索します。"; +App::$strings["parent"] = "親"; +App::$strings["Principal"] = "主要な"; +App::$strings["Addressbook"] = "住所録"; +App::$strings["Schedule Inbox"] = "受信トレイのスケジュール"; +App::$strings["Schedule Outbox"] = "送信トレイのスケジュール"; +App::$strings["Total"] = "合計"; +App::$strings["Shared"] = "共有"; +App::$strings["Add Files"] = "追加ファイル"; +App::$strings["You are using %1\$s of your available file storage."] = "使用可能なファイルストレージ%1\$sを使用しています。"; +App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "%1\$sの%2\$s使用可能なファイルストレージを使用しています。 ( %3\$s &#37;)"; +App::$strings["WARNING:"] = "警告:"; +App::$strings["Create new folder"] = "新しいフォルダーを作成"; +App::$strings["Upload file"] = "ファイルをアップロードする"; +App::$strings["Drop files here to immediately upload"] = "ここにファイルをドロップして、すぐにアップロードします"; +App::$strings["__ctx:widget__ Activity"] = "アクティビティ"; +App::$strings["Show posts related to the %s privacy group"] = "%sプライバシーグループに関連する投稿を表示"; App::$strings["Show my privacy groups"] = "自分のプライバシーグループを表示する"; -App::$strings["Show posts to this forum"] = ""; -App::$strings["Forums"] = ""; -App::$strings["Show forums"] = ""; -App::$strings["Starred Posts"] = ""; -App::$strings["Show posts that I have starred"] = ""; -App::$strings["Personal Posts"] = ""; -App::$strings["Show posts that mention or involve me"] = ""; -App::$strings["Show posts that I have filed to %s"] = ""; -App::$strings["Show filed post categories"] = ""; -App::$strings["Panel search"] = ""; -App::$strings["Filter by name"] = ""; -App::$strings["Remove active filter"] = ""; +App::$strings["Show posts to this forum"] = "このフォーラムへの投稿を表示"; +App::$strings["Forums"] = "フォーラム"; +App::$strings["Show forums"] = "フォーラムを表示"; +App::$strings["Starred Posts"] = "スター付き投稿"; +App::$strings["Show posts that I have starred"] = "スターを付けた投稿を表示"; +App::$strings["Personal Posts"] = "個人的な投稿"; +App::$strings["Show posts that mention or involve me"] = "自分に言及または関与している投稿を表示する"; +App::$strings["Show posts that I have filed to %s"] = "%s提出した投稿を表示"; +App::$strings["Show filed post categories"] = "提出済みの投稿カテゴリを表示"; +App::$strings["Panel search"] = "パネル検索"; +App::$strings["Filter by name"] = "名前で絞り込む"; +App::$strings["Remove active filter"] = "アクティブなフィルターを削除"; App::$strings["ters"] = "投稿のフィルタリング"; App::$strings["Commented Date"] = "最新のコメント順"; App::$strings["Order by last commented date"] = "コメントが新しい投稿の順に並べます。"; @@ -2677,7 +2677,7 @@ App::$strings["Order by last posted date"] = "投稿本体の時間が新しい App::$strings["Date Unthreaded"] = "スレッド化しない"; App::$strings["Order unthreaded by date"] = "投稿とコメントを分けずに最新の順に一緒に並べます。"; App::$strings["Stream Order"] = "投稿の並べ替え"; -App::$strings["Member registrations waiting for confirmation"] = ""; +App::$strings["Member registrations waiting for confirmation"] = "確認待ちの会員登録"; App::$strings["Inspect queue"] = "待機中のキュー"; App::$strings["DB updates"] = "DBアップデート"; App::$strings["Addon Features"] = "アドオンの機能"; @@ -2688,59 +2688,59 @@ App::$strings["Archives"] = "アーカイブ"; App::$strings["Bookmarked Chatrooms"] = "ブックマーク済みチャットルーム"; App::$strings["Select Channel"] = "チャンネルの選択"; App::$strings["Read-write"] = "読みー書き"; -App::$strings["Read-only"] = ""; -App::$strings["My Calendars"] = ""; -App::$strings["Shared Calendars"] = ""; -App::$strings["Share this calendar"] = ""; -App::$strings["Calendar name and color"] = ""; -App::$strings["Create new calendar"] = ""; -App::$strings["Calendar Name"] = ""; -App::$strings["Calendar Tools"] = ""; -App::$strings["Import calendar"] = ""; -App::$strings["Select a calendar to import to"] = ""; -App::$strings["Addressbooks"] = ""; -App::$strings["Addressbook name"] = ""; -App::$strings["Create new addressbook"] = ""; -App::$strings["Addressbook Name"] = ""; -App::$strings["Addressbook Tools"] = ""; -App::$strings["Import addressbook"] = ""; -App::$strings["Select an addressbook to import to"] = ""; -App::$strings["Overview"] = ""; -App::$strings["Chat Members"] = ""; -App::$strings["Received Messages"] = ""; -App::$strings["Sent Messages"] = ""; -App::$strings["Conversations"] = ""; -App::$strings["No messages."] = ""; -App::$strings["Delete conversation"] = ""; -App::$strings["Click to show more"] = ""; -App::$strings["Events Tools"] = ""; -App::$strings["Export Calendar"] = ""; -App::$strings["Import Calendar"] = ""; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = ""; -App::$strings["Add New Connection"] = ""; -App::$strings["Enter channel address"] = ""; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = ""; -App::$strings["HQ Control Panel"] = ""; -App::$strings["Create a new post"] = ""; -App::$strings["Private Mail Menu"] = ""; -App::$strings["Combined View"] = ""; -App::$strings["Inbox"] = ""; -App::$strings["Outbox"] = ""; -App::$strings["New Message"] = ""; -App::$strings["Profile Creation"] = ""; -App::$strings["Upload profile photo"] = ""; -App::$strings["Upload cover photo"] = ""; -App::$strings["Find and Connect with others"] = ""; -App::$strings["View the directory"] = ""; -App::$strings["Manage your connections"] = ""; -App::$strings["Communicate"] = ""; -App::$strings["View your channel homepage"] = ""; -App::$strings["View your network stream"] = ""; -App::$strings["Documentation"] = ""; -App::$strings["Missing Features?"] = ""; -App::$strings["Pin apps to navigation bar"] = ""; -App::$strings["Install more apps"] = ""; -App::$strings["View public stream"] = ""; +App::$strings["Read-only"] = "読み取り専用"; +App::$strings["My Calendars"] = "私のカレンダー"; +App::$strings["Shared Calendars"] = "共有カレンダー"; +App::$strings["Share this calendar"] = "このカレンダーを共有する"; +App::$strings["Calendar name and color"] = "カレンダーの名前と色"; +App::$strings["Create new calendar"] = "新しいカレンダーを作成"; +App::$strings["Calendar Name"] = "カレンダー名"; +App::$strings["Calendar Tools"] = "カレンダーツール"; +App::$strings["Import calendar"] = "カレンダーをインポート"; +App::$strings["Select a calendar to import to"] = "インポートするカレンダーを選択します"; +App::$strings["Addressbooks"] = "アドレス帳"; +App::$strings["Addressbook name"] = "アドレス帳名"; +App::$strings["Create new addressbook"] = "新しいアドレス帳を作成"; +App::$strings["Addressbook Name"] = "アドレス帳名"; +App::$strings["Addressbook Tools"] = "アドレス帳ツール"; +App::$strings["Import addressbook"] = "アドレス帳をインポート"; +App::$strings["Select an addressbook to import to"] = "インポートするアドレス帳を選択します"; +App::$strings["Overview"] = "概要"; +App::$strings["Chat Members"] = "チャットメンバー"; +App::$strings["Received Messages"] = "受信したメッセージ"; +App::$strings["Sent Messages"] = "メッセージを送った"; +App::$strings["Conversations"] = "会話"; +App::$strings["No messages."] = "メッセージはありません。"; +App::$strings["Delete conversation"] = "会話を削除"; +App::$strings["Click to show more"] = "クリックして詳細を表示"; +App::$strings["Events Tools"] = "イベントツール"; +App::$strings["Export Calendar"] = "カレンダーをエクスポート"; +App::$strings["Import Calendar"] = "カレンダーをインポート"; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "%2 $ .0fの%1 $ .0fが接続を許可されています。"; +App::$strings["Add New Connection"] = "新しい接続を追加"; +App::$strings["Enter channel address"] = "チャンネルのアドレスを入力してください"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "例:bob @ example.com、https://example.com/barbara"; +App::$strings["HQ Control Panel"] = "HQコントロールパネル"; +App::$strings["Create a new post"] = "新しい投稿を作成する"; +App::$strings["Private Mail Menu"] = "プライベートメールメニュー"; +App::$strings["Combined View"] = "複合ビュー"; +App::$strings["Inbox"] = "受信トレイ"; +App::$strings["Outbox"] = "送信トレイ"; +App::$strings["New Message"] = "新しいメッセージ"; +App::$strings["Profile Creation"] = "プロファイル作成"; +App::$strings["Upload profile photo"] = "プロフィール写真をアップロード"; +App::$strings["Upload cover photo"] = "カバー写真をアップロード"; +App::$strings["Find and Connect with others"] = "他の人を見つけてつながる"; +App::$strings["View the directory"] = "ディレクトリを表示する"; +App::$strings["Manage your connections"] = "接続を管理する"; +App::$strings["Communicate"] = "通信する"; +App::$strings["View your channel homepage"] = "チャンネルのホームページを表示する"; +App::$strings["View your network stream"] = "ネットワークストリームを表示する"; +App::$strings["Documentation"] = "ドキュメンテーション"; +App::$strings["Missing Features?"] = "機能がありませんか?"; +App::$strings["Pin apps to navigation bar"] = "アプリをナビゲーションバーに固定する"; +App::$strings["Install more apps"] = "さらにアプリをインストールする"; +App::$strings["View public stream"] = "公開ストリームを表示"; App::$strings["New Network Activity"] = "ホーム"; App::$strings["New Network Activity Notifications"] = "ホームへの通知"; App::$strings["View your network activity"] = "ホームを見る"; @@ -2751,18 +2751,18 @@ App::$strings["New Home Activity"] = "自分への新しいアクティビティ App::$strings["New Home Activity Notifications"] = "自分への新しいアクティビティ通知"; App::$strings["View your home activity"] = "自分の投稿を見る"; App::$strings["Mark all notifications seen"] = "全部既読にする"; -App::$strings["New Mails"] = ""; -App::$strings["New Mails Notifications"] = ""; -App::$strings["View your private mails"] = ""; -App::$strings["Mark all messages seen"] = ""; -App::$strings["New Events"] = ""; -App::$strings["New Events Notifications"] = ""; -App::$strings["View events"] = ""; -App::$strings["Mark all events seen"] = ""; -App::$strings["New Connections Notifications"] = ""; -App::$strings["View all connections"] = ""; -App::$strings["New Files"] = ""; -App::$strings["New Files Notifications"] = ""; +App::$strings["New Mails"] = "新着メール"; +App::$strings["New Mails Notifications"] = "新規メール通知"; +App::$strings["View your private mails"] = "プライベートメールを表示する"; +App::$strings["Mark all messages seen"] = "すべてのメッセージを確認済みにする"; +App::$strings["New Events"] = "新しいイベント"; +App::$strings["New Events Notifications"] = "新しいイベント通知"; +App::$strings["View events"] = "イベントを見る"; +App::$strings["Mark all events seen"] = "すべてのイベントを確認済みにする"; +App::$strings["New Connections Notifications"] = "新しい接続通知"; +App::$strings["View all connections"] = "すべての接続を表示"; +App::$strings["New Files"] = "新しいファイル"; +App::$strings["New Files Notifications"] = "新しいファイルの通知"; App::$strings["Notices"] = "通知"; App::$strings["View all notices"] = "全ての通知を表示する"; App::$strings["Mark all notices seen"] = "全ての通知を既読扱いにする"; @@ -2772,10 +2772,10 @@ App::$strings["Public Stream Notifications"] = "連合ストリーム通知"; App::$strings["View the public stream"] = "連合ストリームを表示する"; App::$strings["Sorry, you have got no notifications at the moment"] = "今"; App::$strings["photo/image"] = "画像/イメージ"; -App::$strings["Rating Tools"] = ""; -App::$strings["Rate Me"] = ""; -App::$strings["View Ratings"] = ""; -App::$strings["Remove term"] = ""; +App::$strings["Rating Tools"] = "評価ツール"; +App::$strings["Rate Me"] = "私を評価"; +App::$strings["View Ratings"] = "評価を見る"; +App::$strings["Remove term"] = "用語を削除"; App::$strings["Account settings"] = "アカウント設定"; App::$strings["Channel settings"] = "チャンネル設定"; App::$strings["Display settings"] = "表示設定"; @@ -2787,5 +2787,5 @@ App::$strings["Tasks"] = "タスク"; App::$strings["Add new page"] = "新しいページの追加"; App::$strings["Wiki Pages"] = "ウィキページ"; App::$strings["Page name"] = "ページ名"; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = ""; +App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "リモート認証がブロックされました。このサイトにローカルでログインしています。ログアウトして再試行してください。"; App::$strings["Welcome %s. Remote authentication successful."] = "ようこそ%s!!リモートログインは成功しました!"; From 5dc70562bf70233ffbe388dfe68271ab37a75b42 Mon Sep 17 00:00:00 2001 From: harukin Date: Fri, 6 Sep 2019 11:49:55 +0900 Subject: [PATCH 17/18] =?UTF-8?q?=E6=A9=9F=E6=A2=B0=E7=BF=BB=E8=A8=B3?= =?UTF-8?q?=E3=83=9F=E3=82=B9=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- view/ja/hmessages.po | 209 +++++++++++++++++++++---------------------- 1 file changed, 104 insertions(+), 105 deletions(-) diff --git a/view/ja/hmessages.po b/view/ja/hmessages.po index 13a86ba06..8e612a991 100644 --- a/view/ja/hmessages.po +++ b/view/ja/hmessages.po @@ -122,7 +122,7 @@ msgstr "ウェブサイトのssl認証ができません。修正してくださ #: ../../boot.php:2555 #, php-format msgid "[$Projectname] Cron tasks not running on %s" -msgstr "[$ Projectname] Cronタスクが%s実行されていません" +msgstr "[$Projectname] Cronタスクが%s実行されていません" #: ../../boot.php:2560 msgid "Cron/Scheduled tasks not running." @@ -2123,7 +2123,7 @@ msgstr "アクセス拒否" #: ../../include/items.php:965 ../../include/items.php:1025 msgid "(Unknown)" -msgstr "(道の)" +msgstr "(不明)" #: ../../include/items.php:1213 msgid "Visible to anybody on the internet." @@ -2980,7 +2980,7 @@ msgstr "プロフィール写真" #: ../../include/photos.php:151 #, php-format msgid "Image exceeds website size limit of %lu bytes" -msgstr "画像がウェブサイトのサイズ制限%luバイトを超えています" +msgstr "画像がウェブサイトのサイズ制限%luバイトを超えています" #: ../../include/photos.php:162 msgid "Image file is empty." @@ -4134,11 +4134,11 @@ msgstr "%s更新に失敗しました。エラーログを参照してくださ #: ../../Zotlabs/Lib/Enotify.php:60 msgid "$Projectname Notification" -msgstr "$ Projectname通知" +msgstr "$Projectname通知" #: ../../Zotlabs/Lib/Enotify.php:61 msgid "$projectname" -msgstr "$ projectname" +msgstr "$projectname" #: ../../Zotlabs/Lib/Enotify.php:63 msgid "Thank You," @@ -4157,7 +4157,7 @@ msgstr "このメールは%1$sが%2$sに送信しました。" #: ../../Zotlabs/Lib/Enotify.php:66 ../../Zotlabs/Module/Home.php:72 #: ../../Zotlabs/Module/Home.php:80 msgid "$Projectname" -msgstr "$ Projectname" +msgstr "$Projectname" #: ../../Zotlabs/Lib/Enotify.php:67 #, php-format @@ -4179,12 +4179,12 @@ msgstr "通知設定" #: ../../Zotlabs/Lib/Enotify.php:123 #, php-format msgid "%s " -msgstr "%s <!item_type!>" +msgstr "%s " #: ../../Zotlabs/Lib/Enotify.php:127 #, php-format msgid "[$Projectname:Notify] New mail received at %s" -msgstr "[$ Projectname:Notify] %s受信した新しいメール" +msgstr "[$Projectname:Notify] %s受信した新しいメール" #: ../../Zotlabs/Lib/Enotify.php:129 #, php-format @@ -4211,7 +4211,7 @@ msgstr "コメントした" #: ../../Zotlabs/Lib/Enotify.php:155 msgid "liked" -msgstr "好きだった" +msgstr "すこ" #: ../../Zotlabs/Lib/Enotify.php:158 msgid "disliked" @@ -4235,12 +4235,12 @@ msgstr "%1$s %2$s [zrl = %3$s ] %4$s [/ zrl]" #: ../../Zotlabs/Lib/Enotify.php:230 #, php-format msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" -msgstr "[$ Projectname:Notify]会話へのモデレートされたコメント# %1$d by %2$s" +msgstr "[$ Projectname:Notify]会話へのモデレートされたコメント#%1$d by %2$s" #: ../../Zotlabs/Lib/Enotify.php:232 #, php-format msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[$ Projectname:Notify]会話へのコメント# %1$d by %2$s" +msgstr "[$ Projectname:Notify]会話へのコメント#%1$d by %2$s" #: ../../Zotlabs/Lib/Enotify.php:233 #, php-format @@ -4876,13 +4876,13 @@ msgstr "サービスクラス" msgid "" "Selected accounts will be deleted!\\n\\nEverything these accounts had posted " "on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "選択したアカウントは削除されます!\\ n \\ nこれらのアカウントがこのサイトに投稿したものはすべて完全に削除されます!\\ n \\ nよろしいですか?" +msgstr "選択したアカウントは削除されます!\\n\\nこれらのアカウントがこのサイトに投稿したものはすべて完全に削除されます!\\n\\nよろしいですか?" #: ../../Zotlabs/Module/Admin/Accounts.php:191 msgid "" "The account {0} will be deleted!\\n\\nEverything this account has posted on " "this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "アカウント{0}は削除されます。\\ n \\ nこのアカウントがこのサイトに投稿したものはすべて完全に削除されます!\\ n \\ nよろしいですか?" +msgstr "アカウント{0}は削除されます。\\n\\nこのアカウントがこのサイトに投稿したものはすべて完全に削除されます!\\n\\nよろしいですか?" #: ../../Zotlabs/Module/Admin/Account_edit.php:29 #, php-format @@ -5120,7 +5120,7 @@ msgstr "選択したチャンネルは削除されます!\\ n \\ nこのサイ msgid "" "The channel {0} will be deleted!\\n\\nEverything that was posted in this " "channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "チャンネル{0}は削除されます!\\ n \\ nこのサイトでこのチャンネルに投稿されたすべてのものは完全に削除されます!\\ n \\ nよろしいですか?" +msgstr "チャンネル{0}は削除されます!\\n \\nこのサイトでこのチャンネルに投稿されたすべてのものは完全に削除されます!\\n \\nよろしいですか?" #: ../../Zotlabs/Module/Admin/Dbsync.php:19 msgid "Update has been marked successful" @@ -5358,7 +5358,7 @@ msgstr "クラウドアップロードに使用可能な合計ディスク容量 #: ../../Zotlabs/Module/Admin/Security.php:98 msgid "Set \"Transport Security\" HTTP header" -msgstr "\ "Transport Security \" HTTPヘッダーを設定します" +msgstr "\"Transport Security \" HTTPヘッダーを設定します" #: ../../Zotlabs/Module/Admin/Security.php:99 msgid "Set \"Content Security Policy\" HTTP header" @@ -5373,7 +5373,7 @@ msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" -msgstr "このサイトへの登録用の電子メールアドレスで許可されるドメインのカンマ区切りリスト。ワイルドカードが受け入れられます。すべてのドメインを許可するには空" +msgstr "このサイトへの登録用の電子メールアドレスで許可されるドメインのカンマ区切りリスト。ワイルドカードが受け入れられます。すべてのドメインを許可するには空にしてください。" #: ../../Zotlabs/Module/Admin/Security.php:101 msgid "Not allowed email domains" @@ -5808,7 +5808,7 @@ msgid "" "If set, use this program to generate photo thumbnails for huge images ( > " "4000 pixels in either dimension), otherwise memory exhaustion may occur. " "Example: /usr/bin/convert" -msgstr "設定されている場合、このプログラムを使用して巨大な画像(いずれかの次元で4000ピクセル以上)の写真のサムネイルを生成します。そうしないと、メモリ不足が発生する可能性があります。例:/ usr / bin / convert" +msgstr "設定されている場合、このプログラムを使用して巨大な画像(いずれかの方向で4000ピクセル以上)の写真のサムネイルを生成します。そうしないと、メモリ不足が発生する可能性があります。例:/usr/bin/convert" #: ../../Zotlabs/Module/Admin/Site.php:344 msgid "Allow SVG thumbnails in file browser" @@ -7758,7 +7758,7 @@ msgstr "チュートリアル" #: ../../Zotlabs/Module/Help.php:95 msgid "$Projectname Documentation" -msgstr "$ Projectnameドキュメント" +msgstr "$Projectnameドキュメント" #: ../../Zotlabs/Module/Help.php:96 msgid "Contents" @@ -7913,7 +7913,7 @@ msgstr "%s :有効なメールアドレスではありません。" #: ../../Zotlabs/Module/Invite.php:75 msgid "Please join us on $Projectname" -msgstr "$ Projectnameにご参加ください" +msgstr "$Projectnameに参加してください" #: ../../Zotlabs/Module/Invite.php:85 msgid "Invitation limit exceeded. Please contact your site administrator." @@ -7928,8 +7928,8 @@ msgstr "%s :メッセージの配信に失敗しました。" #, php-format msgid "%d message sent." msgid_plural "%d messages sent." -msgstr[0] "%dメッセージを送信しました。" -msgstr[1] "%dメッセージを送信しました。" +msgstr[0] "%d件のメッセージを送信しました。" +msgstr[1] "%d件のメッセージを送信しました。" #: ../../Zotlabs/Module/Invite.php:110 msgid "Invite App" @@ -7957,7 +7957,7 @@ msgstr "あなたのメッセージ:" #: ../../Zotlabs/Module/Invite.php:158 msgid "Please join my community on $Projectname." -msgstr "$ Projectnameでコミュニティに参加してください。" +msgstr "$Projectnameでコミュニティに参加してください。" #: ../../Zotlabs/Module/Invite.php:160 msgid "You will need to supply this invitation code:" @@ -7965,11 +7965,11 @@ msgstr "この招待コードを提供する必要があります。" #: ../../Zotlabs/Module/Invite.php:161 msgid "1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1.任意の$ Projectnameの場所に登録します(すべて相互に接続されています)" +msgstr "1.任意の$Projectnameの場所に登録します(すべて相互に接続されています)" #: ../../Zotlabs/Module/Invite.php:163 msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. $ Projectnameネットワークアドレスをサイト検索バーに入力します。" +msgstr "2. $Projectnameネットワークアドレスをサイト検索バーに入力します。" #: ../../Zotlabs/Module/Invite.php:164 msgid "or visit" @@ -8006,12 +8006,12 @@ msgstr "データベースから投稿情報を取得できません。" #: ../../Zotlabs/Module/Item.php:1363 #, php-format msgid "You have reached your limit of %1$.0f top level posts." -msgstr "トップレベルの投稿の上限%1 $ .0fに達しました。" +msgstr "トップレベルの投稿の上限%1$.0fに達しました。" #: ../../Zotlabs/Module/Item.php:1370 #, php-format msgid "You have reached your limit of %1$.0f webpages." -msgstr "ウェブページの制限%1 $ .0fに達しました。" +msgstr "ウェブページの制限%1$.0fに達しました。" #: ../../Zotlabs/Module/Lang.php:17 msgid "Language App" @@ -8045,7 +8045,7 @@ msgstr "このアクションはメンバーに制限されています。" msgid "" "Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "続行するには、 $ Projectname IDでログインするか、新しい$ Projectnameメンバーとして登録してください。" +msgstr "続行するには、 $Projectname IDでログインするか、新しい$Projectnameメンバーとして登録してください。" #: ../../Zotlabs/Module/Like.php:111 ../../Zotlabs/Module/Like.php:137 #: ../../Zotlabs/Module/Like.php:175 @@ -8092,7 +8092,7 @@ msgstr "%1$sは%2$sの%3$s参加していません" #: ../../Zotlabs/Module/Like.php:461 #, php-format msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$sは%2$sの%3$s" +msgstr "%1$sは%2$sの%3$sに参加するかも" #: ../../Zotlabs/Module/Like.php:572 msgid "Action completed." @@ -8108,7 +8108,7 @@ msgstr "リモートプライバシー情報は利用できません。" #: ../../Zotlabs/Module/Lockview.php:96 msgid "Visible to:" -msgstr "に表示:" +msgstr "表示:" #: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 msgid "Location not found." @@ -8142,7 +8142,7 @@ msgstr "一次" #: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:176 msgid "Drop" -msgstr "ドロップ" +msgstr "消去" #: ../../Zotlabs/Module/Locs.php:122 msgid "Sync Now" @@ -8150,13 +8150,13 @@ msgstr "今すぐ同期" #: ../../Zotlabs/Module/Locs.php:123 msgid "Please wait several minutes between consecutive operations." -msgstr "連続した操作の間に数分待ってください。" +msgstr "作業中は数分そのまま待機してください。" #: ../../Zotlabs/Module/Locs.php:124 msgid "" "When possible, drop a location by logging into that website/hub and removing " "your channel." -msgstr "可能であれば、そのWebサイト/ハブにログインしてチャンネルを削除して、場所を削除します。" +msgstr "可能であれば、そのWebサイト/ハブにログインしてチャンネルを削除して、場所を削除してください。" #: ../../Zotlabs/Module/Locs.php:125 msgid "Use this form to drop the location if the hub is no longer operating." @@ -8319,7 +8319,7 @@ msgstr "会話を削除" msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." -msgstr "安全な通信は利用できません。送信者のプロファイルページから 返信できる場合があります。" +msgstr "安全な通信は利用できません。送信者のプロファイルページから返信できるかもしれません。" #: ../../Zotlabs/Module/Mail.php:420 msgid "Send Reply" @@ -8333,7 +8333,7 @@ msgstr "%s ( %s ) %sメッセージ:" #: ../../Zotlabs/Module/Manage.php:138 ../../Zotlabs/Module/New_channel.php:147 #, php-format msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "%2 $ .0fの%1 $ .0fが許可されたチャンネルを作成しました。" +msgstr "%2$.0fの%1$.0fが許可されたチャンネルを作成しました。" #: ../../Zotlabs/Module/Manage.php:145 msgid "Create a new channel" @@ -8443,7 +8443,7 @@ msgstr "メニュー名" #: ../../Zotlabs/Module/Menu.php:219 msgid "Must be unique, only seen by you" -msgstr "唯一でなければならない、あなただけが見られる" +msgstr "固有である必要があります。あなただけに表示されます。" #: ../../Zotlabs/Module/Menu.php:220 msgid "Menu title" @@ -8623,7 +8623,7 @@ msgstr "あなたの本名が推奨されます。" msgid "" "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " "Group\"" -msgstr "例:\ "Bob Jameson \"、\ "Lisa and her Horses \"、\ "Soccer \"、\ "Aviation Group \"" +msgstr "例:\"Bob Jameson \"、\"Lisa and her Horses \"、\"Soccer \"、\"Aviation Group \"" #: ../../Zotlabs/Module/New_channel.php:165 msgid "" @@ -8942,7 +8942,7 @@ msgstr "システムページの説明の編集" #: ../../Zotlabs/Module/Pdledit.php:77 msgid "(modified)" -msgstr "(変更)" +msgstr "(変更済み)" #: ../../Zotlabs/Module/Pdledit.php:94 msgid "Layout not found." @@ -9017,12 +9017,12 @@ msgstr "このアイテムへのアクセスは制限されています。" #: ../../Zotlabs/Module/Photos.php:661 #, php-format msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%2 $ .2f MBの%1 $ .2f MBの写真ストレージが使用されています。" +msgstr "%2$.2f MB中%1$.2f MBの写真ストレージが使用されています。" #: ../../Zotlabs/Module/Photos.php:664 #, php-format msgid "%1$.2f MB photo storage used." -msgstr "%1 $ .2f MBの写真ストレージが使用されています。" +msgstr "%1$.2f MBの写真ストレージが使用されています。" #: ../../Zotlabs/Module/Photos.php:706 msgid "Upload Photos" @@ -9046,11 +9046,11 @@ msgstr "説明(オプション)" #: ../../Zotlabs/Module/Photos.php:800 msgid "Show Newest First" -msgstr "最新を最初に表示" +msgstr "新しいもの順に表示" #: ../../Zotlabs/Module/Photos.php:802 msgid "Show Oldest First" -msgstr "最も古いものを最初に表示" +msgstr "古いもの順に表示" #: ../../Zotlabs/Module/Photos.php:859 ../../Zotlabs/Module/Photos.php:1405 msgid "Add Photos" @@ -9058,7 +9058,7 @@ msgstr "写真を追加" #: ../../Zotlabs/Module/Photos.php:907 msgid "Permission denied. Access to this item may be restricted." -msgstr "アクセス拒否。このアイテムへのアクセスは制限される場合があります。" +msgstr "アクセスが拒否されました。このアイテムへのアクセスは制限されている場合があります。" #: ../../Zotlabs/Module/Photos.php:909 msgid "Photo not available" @@ -9110,7 +9110,7 @@ msgstr "タグを追加する" #: ../../Zotlabs/Module/Photos.php:1093 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "例:@ bob、@ Barbara_Jensen、@ jim @ example.com" +msgstr "例:@bob、@Barbara_Jensen、@jim@example.com" #: ../../Zotlabs/Module/Photos.php:1096 msgid "Flag as adult in album view" @@ -9166,7 +9166,7 @@ msgstr "公開フォーラム" #: ../../Zotlabs/Module/Poke.php:165 msgid "Poke App" -msgstr "ポケアプリ" +msgstr "Pokeアプリ" #: ../../Zotlabs/Module/Poke.php:166 msgid "Poke somebody in your addressbook" @@ -9178,7 +9178,7 @@ msgstr "誰かを突く" #: ../../Zotlabs/Module/Poke.php:203 msgid "Poke/Prod" -msgstr "突く/製品" +msgstr "" #: ../../Zotlabs/Module/Poke.php:204 msgid "Poke, prod or do other things to somebody" @@ -9219,7 +9219,7 @@ msgstr "プロファイルが削除されました。" #: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 msgid "Profile-" -msgstr "プロフィール-" +msgstr "プロファイル-" #: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 msgid "New profile created." @@ -9251,7 +9251,7 @@ msgstr "いいね" #: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:773 msgid "Dislikes" -msgstr "嫌い" +msgstr "わるいね" #: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:780 msgid "Work/Employment" @@ -9489,7 +9489,7 @@ msgstr "プロフィール写真の変更" #: ../../Zotlabs/Module/Profile_photo.php:459 msgid "Use" -msgstr "つかいます" +msgstr "使用する" #: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 msgid "Invalid profile identifier." @@ -9505,7 +9505,7 @@ msgstr "連絡先をクリックして追加または削除します。" #: ../../Zotlabs/Module/Profperm.php:124 msgid "Visible To" -msgstr "に見える" +msgstr "に表示" #: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 msgid "Public Hubs" @@ -9518,8 +9518,7 @@ msgid "" "membership in the network as a whole. Some hubs may require subscription or " "provide tiered service plans. The hub itself may provide " "additional details." -msgstr "リストされたハブは、$ Projectnameネットワークのパブリック登録を許可します。ネットワーク内のすべてのハブは相互にリンクされているため、ハブのいずれかのメンバーシップはネットワーク全体のメンバーシップを伝えます。一部のハブでは、サブスクリプションが必要な場合や、段階的なサービスプランを提供する場合があります。ハブ自体が追加の詳細を提供する場合があります 。" - +msgstr "このリスト化されたハブは$Projectnameのネットワークに登録が許可されています。全てのハブは相互にリンクしておりどこのハブにいても接続できます。それぞれのハブには独自の制約がある可能性もあります。" #: ../../Zotlabs/Module/Pubsites.php:33 msgid "Hub URL" msgstr "ハブURL" @@ -9558,7 +9557,7 @@ msgstr "ランダムチャンネルアプリ" #: ../../Zotlabs/Module/Randprof.php:30 msgid "Visit a random channel in the $Projectname network" -msgstr "$ Projectnameネットワークのランダムチャネルにアクセスします" +msgstr "$Projectnameネットワークのランダムチャネルにアクセスします" #: ../../Zotlabs/Module/Rate.php:156 msgid "Website:" @@ -9645,7 +9644,7 @@ msgstr "このハブでの登録は無効になっています。" #: ../../Zotlabs/Module/Register.php:201 msgid "Registration on this hub is by approval only." -msgstr "このハブへの登録は承認のみです。" +msgstr "このハブへの登録は承認された人のみです。" #: ../../Zotlabs/Module/Register.php:202 ../../Zotlabs/Module/Register.php:211 msgid "Register at another affiliated hub." @@ -9653,7 +9652,7 @@ msgstr "別の提携ハブに登録します。" #: ../../Zotlabs/Module/Register.php:210 msgid "Registration on this hub is by invitation only." -msgstr "このハブへの登録は招待のみです。" +msgstr "このハブへ登録できるのは招待状を持っている人のみです。" #: ../../Zotlabs/Module/Register.php:221 msgid "" @@ -9704,7 +9703,7 @@ msgstr "本名が優先されます。" msgid "" "Your nickname will be used to create an easy to remember channel address e." "g. nickname%s" -msgstr "ニックネームは、ニックネーム%s覚えやすいチャネルアドレスを作成するために使用されます" +msgstr "ニックネームは覚えやすいチャンネルアドレスを作成するために使用されます。ニックネーム:%s" #: ../../Zotlabs/Module/Register.php:261 msgid "" @@ -9972,7 +9971,7 @@ msgstr "セキュリティとプライバシーの設定" #: ../../Zotlabs/Module/Settings/Channel.php:509 msgid "Your permissions are already configured. Click to view/adjust" -msgstr "許可はすでに構成されています。クリックして表示/調整" +msgstr "権限はすでに構成されています。クリックして表示/調整" #: ../../Zotlabs/Module/Settings/Channel.php:511 msgid "Hide my online presence" @@ -9989,13 +9988,13 @@ msgstr "シンプルなプライバシー設定:" #: ../../Zotlabs/Module/Settings/Channel.php:514 msgid "" "Very Public - extremely permissive (should be used with caution)" -msgstr "非常にパブリック-非常に寛容です(注意して使用する必要があります)" +msgstr "非常にパブリック-非常に寛容です(注意して使用する必要があります)" #: ../../Zotlabs/Module/Settings/Channel.php:515 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" -msgstr "標準-必要に応じてデフォルトのパブリック、プライバシー(ソーシャルネットワークのアクセス許可に似ていますが、プライバシーが改善されます)" +msgstr "標準-必要に応じてデフォルトのパブリック、プライバシー(ソーシャルネットワークのアクセス許可に似ていますが、プライバシーが改善されます)" #: ../../Zotlabs/Module/Settings/Channel.php:516 msgid "Private - default private, never open or public" @@ -10073,15 +10072,15 @@ msgstr "デフォルトでは、次の場合にステータスメッセージを #: ../../Zotlabs/Module/Settings/Channel.php:547 msgid "accepting a friend request" -msgstr "友達リクエストを受け入れる" +msgstr "友達リクエストを受け入れたとき" #: ../../Zotlabs/Module/Settings/Channel.php:548 msgid "joining a forum/community" -msgstr "フォーラム/コミュニティへの参加" +msgstr "フォーラム/コミュニティへ参加したとき" #: ../../Zotlabs/Module/Settings/Channel.php:549 msgid "making an interesting profile change" -msgstr "興味深いプロファイルの変更を行う" +msgstr "興味深いプロファイルの変更を行ったとき" #: ../../Zotlabs/Module/Settings/Channel.php:550 msgid "Send a notification email when:" @@ -10089,39 +10088,39 @@ msgstr "次の場合に通知メールを送信します。" #: ../../Zotlabs/Module/Settings/Channel.php:551 msgid "You receive a connection request" -msgstr "接続要求を受け取ります" +msgstr "接続要求を受け取ったとき" #: ../../Zotlabs/Module/Settings/Channel.php:552 msgid "Your connections are confirmed" -msgstr "接続が確認されました" +msgstr "接続が確認されたとき" #: ../../Zotlabs/Module/Settings/Channel.php:553 msgid "Someone writes on your profile wall" -msgstr "誰かがあなたのプロフィールウォールに書き込みます" +msgstr "誰かがあなたのプロフィールウォールに書き込んだとき" #: ../../Zotlabs/Module/Settings/Channel.php:554 msgid "Someone writes a followup comment" -msgstr "誰かがフォローアップコメントを書く" +msgstr "誰かがフォローアップコメントを書いたとき" #: ../../Zotlabs/Module/Settings/Channel.php:555 msgid "You receive a private message" -msgstr "プライベートメッセージを受け取ります" +msgstr "プライベートメッセージを受け取ったとき" #: ../../Zotlabs/Module/Settings/Channel.php:556 msgid "You receive a friend suggestion" -msgstr "友達の提案を受け取ります" +msgstr "友達の提案を受け取ったとき" #: ../../Zotlabs/Module/Settings/Channel.php:557 msgid "You are tagged in a post" -msgstr "あなたは投稿でタグ付けされています" +msgstr "あなたが投稿でタグ付けされたとき" #: ../../Zotlabs/Module/Settings/Channel.php:558 msgid "You are poked/prodded/etc. in a post" -msgstr "あなたは突かれた/突かれた/などです。投稿で" +msgstr "あなたの投稿にpokeやproddedをされたとき" #: ../../Zotlabs/Module/Settings/Channel.php:560 msgid "Someone likes your post/comment" -msgstr "誰かがあなたの投稿/コメントを気に入っています" +msgstr "誰かがあなたの投稿/コメントをいいね!したとき" #: ../../Zotlabs/Module/Settings/Channel.php:563 msgid "Show visual notifications including:" @@ -10160,7 +10159,7 @@ msgstr "今後の誕生日" #: ../../Zotlabs/Module/Settings/Channel.php:570 msgid "Not available in all themes" -msgstr "すべてのテーマで利用できない" +msgstr "テーマは利用できません" #: ../../Zotlabs/Module/Settings/Channel.php:571 msgid "System (personal) notifications" @@ -10184,7 +10183,7 @@ msgstr "システム登録" #: ../../Zotlabs/Module/Settings/Channel.php:576 msgid "Unseen shared files" -msgstr "見えない共有ファイル" +msgstr "未公開の共有ファイル" #: ../../Zotlabs/Module/Settings/Channel.php:577 msgid "Unseen public stream activity" @@ -10192,7 +10191,7 @@ msgstr "未公開の公開ストリームアクティビティ" #: ../../Zotlabs/Module/Settings/Channel.php:578 msgid "Unseen likes and dislikes" -msgstr "目に見えない好き嫌い" +msgstr "未公開の好き嫌い" #: ../../Zotlabs/Module/Settings/Channel.php:579 msgid "Unseen forum posts" @@ -10240,7 +10239,7 @@ msgstr "デフォルトの写真アップロードフォルダ" #: ../../Zotlabs/Module/Settings/Channel.php:592 #: ../../Zotlabs/Module/Settings/Channel.php:593 msgid "%Y - current year, %m - current month" -msgstr "%Y-現在の年、%m-現在の月" +msgstr "%Y-現在の年、%m-現在の月" #: ../../Zotlabs/Module/Settings/Channel.php:593 msgid "Default file upload folder" @@ -10248,7 +10247,7 @@ msgstr "デフォルトのファイルアップロードフォルダ" #: ../../Zotlabs/Module/Settings/Channel.php:595 msgid "Remove this channel." -msgstr "このチャンネルを削除してください。" +msgstr "このチャンネルを削除します。" #: ../../Zotlabs/Module/Settings/Channel_home.php:44 #: ../../Zotlabs/Module/Settings/Network.php:41 @@ -10258,7 +10257,7 @@ msgstr "コンテンツの最大の高さ(ピクセル単位)" #: ../../Zotlabs/Module/Settings/Channel_home.php:46 #: ../../Zotlabs/Module/Settings/Network.php:43 msgid "Click to expand content exceeding this height" -msgstr "クリックしてこの高さを超えるコンテンツを展開します" +msgstr "この高さを超えるコンテンツはクリックして展開します" #: ../../Zotlabs/Module/Settings/Channel_home.php:59 msgid "Personal menu to display in your channel pages" @@ -10278,7 +10277,7 @@ msgstr "保存された設定。" #: ../../Zotlabs/Module/Settings/Conversation.php:24 msgid "Settings saved. Reload page please." -msgstr "保存された設定。ページをリロードしてください。" +msgstr "設定は保存されました。ページをリロードしてください。" #: ../../Zotlabs/Module/Settings/Conversation.php:46 msgid "Conversation Settings" @@ -10446,7 +10445,7 @@ msgstr "サイトデータベースがインストールされました。" msgid "" "You may need to import the file \"install/schema_xxx.sql\" manually using a " "database client." -msgstr "データベースクライアントを使用して、手動でファイル\ "install / schema_xxx.sql \"をインポートする必要がある場合があります。" +msgstr "データベースクライアントを使用して、手動でファイル\"install / schema_xxx.sql \"をインポートする必要がある場合があります。" #: ../../Zotlabs/Module/Setup.php:195 ../../Zotlabs/Module/Setup.php:259 #: ../../Zotlabs/Module/Setup.php:766 @@ -10459,7 +10458,7 @@ msgstr "システムチェック" #: ../../Zotlabs/Module/Setup.php:261 msgid "Check again" -msgstr "再び確かめる" +msgstr "再確認" #: ../../Zotlabs/Module/Setup.php:282 msgid "Database connection" @@ -10469,7 +10468,7 @@ msgstr "データベース接続" msgid "" "In order to install $Projectname we need to know how to connect to your " "database." -msgstr "$ Projectnameをインストールするには、データベースへの接続方法を知る必要があります。" +msgstr "$Projectnameをインストールするには、データベースへの接続方法を知る必要があります。" #: ../../Zotlabs/Module/Setup.php:284 msgid "" @@ -10497,7 +10496,7 @@ msgstr "データベースポート" #: ../../Zotlabs/Module/Setup.php:290 msgid "Communication port number - use 0 for default" -msgstr "通信ポート番号-デフォルトには0を使用" +msgstr "通信ポート番号 - 0でデフォルト値を使用します。" #: ../../Zotlabs/Module/Setup.php:291 msgid "Database Login Name" @@ -10583,7 +10582,7 @@ msgstr "shell_exec()が無効になっているため、コマンドライ msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." -msgstr "ご使用のシステムのコマンドラインバージョンのPHPでは、\ "register_argc_argv \"が有効になっていません。" +msgstr "ご使用のシステムのコマンドラインバージョンのPHPでは、\"register_argc_argv \"が有効になっていません。" #: ../../Zotlabs/Module/Setup.php:421 msgid "This is required for message delivery to work." @@ -10618,7 +10617,7 @@ msgstr "PHPアップロード制限" msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" -msgstr "エラー:このシステムの\ "openssl_pkey_new \"関数は暗号化キーを生成できません" +msgstr "エラー:このシステムの\"openssl_pkey_new \"関数は暗号化キーを生成できません" #: ../../Zotlabs/Module/Setup.php:478 msgid "" @@ -10730,13 +10729,13 @@ msgstr ".htconfig.phpは書き込み可能です" msgid "" "The web installer needs to be able to create a file called \".htconfig.php\" " "in the top folder of your web server and it is unable to do so." -msgstr "Webインストーラーは、Webサーバーの最上位フォルダーに\ "。htconfig.php \"というファイルを作成できる必要がありますが、作成できません。" +msgstr "Webインストーラーは、Webサーバーの最上位フォルダーに\"。htconfig.php \"というファイルを作成できる必要がありますが、作成できません。" #: ../../Zotlabs/Module/Setup.php:584 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." -msgstr "これはほとんどの場合、Webサーバーがフォルダーにファイルを書き込むことができない場合でも、許可設定です。" +msgstr "これはほとんどの場合、Webサーバーがフォルダーにファイルを書き込むことができない場合でも、許可にできる設定です。" #: ../../Zotlabs/Module/Setup.php:585 msgid "Please see install/INSTALL.txt for additional information." @@ -10753,7 +10752,7 @@ msgstr "このソフトウェアは、Smarty3テンプレートエンジンを msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." -msgstr "これらのコンパイル済みテンプレートを保存するには、Webサーバーが最上位のWebフォルダー%s下のディレクトリ%sへの書き込みアクセス権を持っている必要があります。" +msgstr "これらのコンパイル済みテンプレートを保存するには、Webサーバーが最上位のWebフォルダー%s下のディレクトリへの書き込みアクセス権を持っている必要があります。" #: ../../Zotlabs/Module/Setup.php:603 ../../Zotlabs/Module/Setup.php:624 msgid "" @@ -10848,7 +10847,7 @@ msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." -msgstr "データベース構成ファイル\ "。htconfig.php \"を書き込めませんでした。同封のテキストを使用して、Webサーバーのルートに構成ファイルを作成してください。" +msgstr "データベース構成ファイル\"。htconfig.php \"を書き込めませんでした。同封のテキストを使用して、Webサーバーのルートに構成ファイルを作成してください。" #: ../../Zotlabs/Module/Setup.php:718 msgid "Errors encountered creating database tables." @@ -10856,7 +10855,7 @@ msgstr "データベーステーブルの作成中にエラーが発生しまし #: ../../Zotlabs/Module/Setup.php:764 msgid "

What next?

" -msgstr "

次は何ですか" +msgstr "

次にすること

" #: ../../Zotlabs/Module/Setup.php:765 msgid "" @@ -10920,7 +10919,7 @@ msgstr "追加の統合トランスポートプロトコル:" #: ../../Zotlabs/Module/Siteinfo.php:36 #, php-format msgid "Version %s" -msgstr "バージョン%s" +msgstr "バージョン: %s" #: ../../Zotlabs/Module/Siteinfo.php:37 msgid "Project homepage" @@ -11017,12 +11016,12 @@ msgstr "ソースを削除できません。" #: ../../Zotlabs/Module/Subthread.php:143 #, php-format msgid "%1$s is following %2$s's %3$s" -msgstr "%1$sは%2$sの%3$sフォローしています" +msgstr "%1$sは%2$sの%3$sをフォローしています" #: ../../Zotlabs/Module/Subthread.php:145 #, php-format msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s %2$sの%3$sの後に%1$sが停止しました" +msgstr "%1$sが%2$sの%3$sのフォローを停止しました" #: ../../Zotlabs/Module/Suggest.php:40 msgid "Suggest Channels App" @@ -11032,7 +11031,7 @@ msgstr "チャンネルアプリの提案" msgid "" "Suggestions for channels in the $Projectname network you might be interested " "in" -msgstr "興味があるかもしれない$ Projectnameネットワークのチャンネルの提案" +msgstr "興味あるかも?" #: ../../Zotlabs/Module/Suggest.php:54 msgid "" @@ -11051,7 +11050,7 @@ msgstr "投稿が見つかりません。" #: ../../Zotlabs/Module/Tagger.php:119 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$sが%2$sの%3$sに%4$s %1$sタグを付けました" +msgstr "%1$sが%2$sの%3$sに%4$sとタグを付けました" #: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 msgid "Tag removed" @@ -11075,7 +11074,7 @@ msgstr "オブジェクトストア:失敗" #: ../../Zotlabs/Module/Thing.php:176 msgid "Thing added" -msgstr "追加されたもの" +msgstr "モノは追加されました。" #: ../../Zotlabs/Module/Thing.php:202 #, php-format @@ -11155,7 +11154,7 @@ msgid "" "You may also provide dropbox style access links to friends and " "associates by adding the Login Password to any specific site URL as shown. " "Examples:" -msgstr "示されているように、特定のサイトURLにログインパスワードを追加することにより、友人や仲間に dropbox スタイルのアクセスリンクを提供することもできます。例:" +msgstr "示されているように、特定のサイトURLにログインパスワードを追加することにより、友人や仲間に dropbox スタイルのアクセスリンクを提供することもできます。例:" #: ../../Zotlabs/Module/Tokens.php:170 msgid "Guest Access Tokens" @@ -11229,7 +11228,7 @@ msgstr "今年など、特定の年のすべての投稿を選択するには、 msgid "" "To select all posts for a given month, such as January of this year, visit " "%2$s" -msgstr "今年の1月など、特定の月のすべての投稿を選択するには、 %2$s にアクセスしてください" +msgstr "今年の1月など、特定の月のすべての投稿を選択するには、%2$sにアクセスしてください" #: ../../Zotlabs/Module/Uexport.php:83 #, php-format @@ -11246,7 +11245,7 @@ msgstr "接続なし。" #: ../../Zotlabs/Module/Viewconnections.php:83 #, php-format msgid "Visit %s's profile [%s]" -msgstr "%sのプロフィール[ %s ]にアクセスしてください" +msgstr "%sのプロフィール[%s]にアクセスしています。" #: ../../Zotlabs/Module/Viewconnections.php:113 msgid "View Connections" @@ -11462,15 +11461,15 @@ msgstr "選択されたリビジョン" #: ../../Zotlabs/Module/Wiki.php:853 msgid "You must be authenticated." -msgstr "認証される必要があります。" +msgstr "認証されている必要があります。" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" -msgstr "Xchanルックアップ" +msgstr "Xchan検索" #: ../../Zotlabs/Module/Xchan.php:13 msgid "Lookup xchan beginning with (or webbie): " -msgstr "(またはwebbie)で始まるxchanを検索します。" +msgstr "xchan(またはwebbie)を検索:" #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:295 msgid "parent" @@ -11512,7 +11511,7 @@ msgstr "使用可能なファイルストレージ%1$sを使用しています #: ../../Zotlabs/Storage/Browser.php:372 #, php-format msgid "You are using %1$s of %2$s available file storage. (%3$s%)" -msgstr "%1$sの%2$s使用可能なファイルストレージを使用しています。 ( %3$s &#37;)" +msgstr "%1$sの%2$s使用可能なファイルストレージを使用しています。(%3$s%)" #: ../../Zotlabs/Storage/Browser.php:383 msgid "WARNING:" @@ -11670,7 +11669,7 @@ msgstr "チャンネルの選択" #: ../../Zotlabs/Widget/Cdav.php:42 msgid "Read-write" -msgstr "読みー書き" +msgstr "読み書き" #: ../../Zotlabs/Widget/Cdav.php:43 msgid "Read-only" @@ -11787,7 +11786,7 @@ msgstr "カレンダーをインポート" #: ../../Zotlabs/Widget/Follow.php:22 #, php-format msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "%2 $ .0fの%1 $ .0fが接続を許可されています。" +msgstr "%2$.0fの%1$.0fが接続を許可されています。" #: ../../Zotlabs/Widget/Follow.php:29 msgid "Add New Connection" @@ -11867,7 +11866,7 @@ msgstr "ネットワークストリームを表示する" #: ../../Zotlabs/Widget/Newmember.php:54 msgid "Documentation" -msgstr "ドキュメンテーション" +msgstr "説明書" #: ../../Zotlabs/Widget/Newmember.php:57 msgid "Missing Features?" @@ -12010,7 +12009,7 @@ msgstr "連合ストリームを表示する" #: ../../Zotlabs/Widget/Notifications.php:161 msgid "Sorry, you have got no notifications at the moment" -msgstr "今" +msgstr "現在通知はありません。" #: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 msgid "photo/image" From 172fe3d7fff42a1dbc6806a150c57fbaab1eedc4 Mon Sep 17 00:00:00 2001 From: harukin Date: Fri, 6 Sep 2019 11:53:19 +0900 Subject: [PATCH 18/18] =?UTF-8?q?php=E5=A4=89=E6=8F=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- view/ja/hstrings.php | 208 +++++++++++++++++++++---------------------- 1 file changed, 104 insertions(+), 104 deletions(-) diff --git a/view/ja/hstrings.php b/view/ja/hstrings.php index 03ab91920..6e1d1b99b 100644 --- a/view/ja/hstrings.php +++ b/view/ja/hstrings.php @@ -15,7 +15,7 @@ App::$strings["Forgot your password?"] = "パスワードを忘れましたか App::$strings["Password Reset"] = "パスワードのリセット"; App::$strings["[\$Projectname] Website SSL error for %s"] = "[$ Projectname] %s WebサイトSSLエラー"; App::$strings["Website SSL certificate is not valid. Please correct."] = "ウェブサイトのssl認証ができません。修正してください。"; -App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[$ Projectname] Cronタスクが%s実行されていません"; +App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Cronタスクが%s実行されていません"; App::$strings["Cron/Scheduled tasks not running."] = "Cron/スケジュール済みタスクが実行されていません。"; App::$strings["never"] = "一度もなし"; App::$strings["Not a valid email address"] = "未認証のメールアドレス"; @@ -477,7 +477,7 @@ App::$strings["Cannot create a duplicate channel identifier on this system. Impo App::$strings["Unable to create a unique channel address. Import failed."] = "一意のチャネルアドレスを作成できません。インポートに失敗しました。"; App::$strings["Cloned channel not found. Import failed."] = "複製されたチャンネルが見つかりません。インポートに失敗しました。"; App::$strings["Permission denied"] = "アクセス拒否"; -App::$strings["(Unknown)"] = "(道の)"; +App::$strings["(Unknown)"] = "(不明)"; App::$strings["Visible to anybody on the internet."] = "インターネット上の誰でも閲覧できます。"; App::$strings["Visible to you only."] = "あなただけに表示されます。"; App::$strings["Visible to anybody in this network."] = "このネットワーク内のすべてのユーザーに表示されます。"; @@ -676,7 +676,7 @@ App::$strings[" on "] = "に"; App::$strings["Embedded content"] = "埋め込みコンテンツ"; App::$strings["Embedding disabled"] = "埋め込みが無効です"; App::$strings["Profile Photos"] = "プロフィール写真"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "画像がウェブサイトのサイズ制限%luバイトを超えています"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "画像がウェブサイトのサイズ制限%luバイトを超えています"; App::$strings["Image file is empty."] = "画像ファイルが空です。"; App::$strings["Unable to process image"] = "画像を処理できません"; App::$strings["Photo storage failed."] = "写真の保存に失敗しました。"; @@ -955,29 +955,29 @@ App::$strings["Room not found."] = "部屋が見つかりません。"; App::$strings["Room is full"] = "部屋がいっぱいです"; App::$strings["Update Error at %s"] = "%s更新エラー"; App::$strings["Update %s failed. See error logs."] = "%s更新に失敗しました。エラーログを参照してください。"; -App::$strings["\$Projectname Notification"] = "$ Projectname通知"; -App::$strings["\$projectname"] = "$ projectname"; +App::$strings["\$Projectname Notification"] = "\$Projectname通知"; +App::$strings["\$projectname"] = "\$projectname"; App::$strings["Thank You,"] = "ありがとうございました、"; App::$strings["%s Administrator"] = "%s管理者"; App::$strings["This email was sent by %1\$s at %2\$s."] = "このメールは%1\$sが%2\$sに送信しました。"; -App::$strings["\$Projectname"] = "$ Projectname"; +App::$strings["\$Projectname"] = "\$Projectname"; App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "これらのメッセージの受信を停止するには、通知設定を%sで調整してください"; App::$strings["To stop receiving these messages, please adjust your %s."] = "これらのメッセージの受信を停止するには、 %sを調整してください。"; App::$strings["Notification Settings"] = "通知設定"; -App::$strings["%s "] = "%s <!item_type!>"; -App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[$ Projectname:Notify] %s受信した新しいメール"; +App::$strings["%s "] = "%s "; +App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Notify] %s受信した新しいメール"; App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$sから%2\$s新しいプライベートメッセージが送信されました。"; App::$strings["%1\$s sent you %2\$s."] = "%1\$sから%2\$s送信されました。"; App::$strings["a private message"] = "プライベートメッセージ"; App::$strings["Please visit %s to view and/or reply to your private messages."] = "プライベートメッセージを表示または返信するには、 %sにアクセスしてください。"; App::$strings["commented on"] = "コメントした"; -App::$strings["liked"] = "好きだった"; +App::$strings["liked"] = "すこ"; App::$strings["disliked"] = "嫌い"; App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s %2\$s [zrl = %3\$s ] a %4\$s [/ zrl]"; App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s %2\$s [zrl = %3\$s ] %4\$sの%5\$s [/ zrl]"; App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s %2\$s [zrl = %3\$s ] %4\$s [/ zrl]"; -App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[$ Projectname:Notify]会話へのモデレートされたコメント# %1\$d by %2\$s"; -App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[$ Projectname:Notify]会話へのコメント# %1\$d by %2\$s"; +App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[$ Projectname:Notify]会話へのモデレートされたコメント#%1\$d by %2\$s"; +App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[$ Projectname:Notify]会話へのコメント#%1\$d by %2\$s"; App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$sあなたがフォローしているアイテム/会話にコメントしました。"; App::$strings["Please visit %s to view and/or reply to the conversation."] = "会話を表示または返信するには、 %sにアクセスしてください。"; App::$strings["Please visit %s to approve or reject this comment."] = "このコメントを承認または拒否するには、 %sにアクセスしてください。"; @@ -1120,8 +1120,8 @@ App::$strings["Register date"] = "登録日"; App::$strings["Last login"] = "前回のログイン"; App::$strings["Expires"] = "期限切れ"; App::$strings["Service Class"] = "サービスクラス"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "選択したアカウントは削除されます!\\ n \\ nこれらのアカウントがこのサイトに投稿したものはすべて完全に削除されます!\\ n \\ nよろしいですか?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "アカウント{0}は削除されます。\\ n \\ nこのアカウントがこのサイトに投稿したものはすべて完全に削除されます!\\ n \\ nよろしいですか?"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "選択したアカウントは削除されます!\\n\\nこれらのアカウントがこのサイトに投稿したものはすべて完全に削除されます!\\n\\nよろしいですか?"; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "アカウント{0}は削除されます。\\n\\nこのアカウントがこのサイトに投稿したものはすべて完全に削除されます!\\n\\nよろしいですか?"; App::$strings["Password changed for account %d."] = "アカウント%dパスワードが変更されました。"; App::$strings["Account settings updated."] = "アカウント設定は更新されました。"; App::$strings["Account not found."] = "アカウントが見つかりません。"; @@ -1181,7 +1181,7 @@ App::$strings["Disallow Code"] = "コードを許可しない"; App::$strings["UID"] = "UID"; App::$strings["Address"] = "住所"; App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "選択したチャンネルは削除されます!\\ n \\ nこのサイトのこれらのチャンネルに投稿されたものはすべて完全に削除されます!\\ n \\ nよろしいですか?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "チャンネル{0}は削除されます!\\ n \\ nこのサイトでこのチャンネルに投稿されたすべてのものは完全に削除されます!\\ n \\ nよろしいですか?"; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "チャンネル{0}は削除されます!\\n \\nこのサイトでこのチャンネルに投稿されたすべてのものは完全に削除されます!\\n \\nよろしいですか?"; App::$strings["Update has been marked successful"] = "更新に成功のマークが付けられました"; App::$strings["Executing %s failed. Check system logs."] = "%s実行に失敗しました。システムログを確認してください。"; App::$strings["Update %s was successfully applied."] = "更新%sが正常に適用されました。"; @@ -1234,10 +1234,10 @@ App::$strings["Check to block public access to all otherwise public personal pag App::$strings["Provide a cloud root directory"] = "クラウドルートディレクトリを提供する"; App::$strings["The cloud root directory lists all channel names which provide public files"] = "クラウドルートディレクトリには、パブリックファイルを提供するすべてのチャネル名がリストされます"; App::$strings["Show total disk space available to cloud uploads"] = "クラウドアップロードに使用可能な合計ディスク容量を表示する"; -App::$strings["Set \"Transport Security\" HTTP header"] = "\ "Transport Security \" HTTPヘッダーを設定します"; +App::$strings["Set \"Transport Security\" HTTP header"] = "\"Transport Security \" HTTPヘッダーを設定します"; App::$strings["Set \"Content Security Policy\" HTTP header"] = "「コンテンツセキュリティポリシー」HTTPヘッダーを設定します"; App::$strings["Allowed email domains"] = "許可されたメールドメイン"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "このサイトへの登録用の電子メールアドレスで許可されるドメインのカンマ区切りリスト。ワイルドカードが受け入れられます。すべてのドメインを許可するには空"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "このサイトへの登録用の電子メールアドレスで許可されるドメインのカンマ区切りリスト。ワイルドカードが受け入れられます。すべてのドメインを許可するには空にしてください。"; App::$strings["Not allowed email domains"] = "メールドメインは許可されていません"; App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "このサイトへの登録用の電子メールアドレスで許可されていないドメインのカンマ区切りリスト。ワイルドカードが受け入れられます。許可されたドメインが定義されていない限り、すべてのドメインを許可するには空にします。"; App::$strings["Allow communications only from these sites"] = "これらのサイトからの通信のみを許可する"; @@ -1332,7 +1332,7 @@ App::$strings["Always defer immediate delivery if queue contains more than this App::$strings["Poll interval"] = "ポーリング間隔"; App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "バックグラウンドポーリングプロセスをこの数秒遅らせて、システムの負荷を減らします。 0の場合、配信間隔を使用します。"; App::$strings["Path to ImageMagick convert program"] = "ImageMagick変換プログラムへのパス"; -App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "設定されている場合、このプログラムを使用して巨大な画像(いずれかの次元で4000ピクセル以上)の写真のサムネイルを生成します。そうしないと、メモリ不足が発生する可能性があります。例:/ usr / bin / convert"; +App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "設定されている場合、このプログラムを使用して巨大な画像(いずれかの方向で4000ピクセル以上)の写真のサムネイルを生成します。そうしないと、メモリ不足が発生する可能性があります。例:/usr/bin/convert"; App::$strings["Allow SVG thumbnails in file browser"] = "ファイルブラウザでSVGサムネイルを許可する"; App::$strings["WARNING: SVG images may contain malicious code."] = "警告:SVG画像には悪意のあるコードが含まれている場合があります。"; App::$strings["Maximum Load Average"] = "最大負荷平均"; @@ -1778,7 +1778,7 @@ App::$strings["Documentation Search"] = "ドキュメント検索"; App::$strings["Administrators"] = "管理者"; App::$strings["Developers"] = "開発者"; App::$strings["Tutorials"] = "チュートリアル"; -App::$strings["\$Projectname Documentation"] = "$ Projectnameドキュメント"; +App::$strings["\$Projectname Documentation"] = "\$Projectnameドキュメント"; App::$strings["Contents"] = "内容"; App::$strings["Welcome to %s"] = "%sへようこそ"; App::$strings["Welcome to Hubzilla!"] = "Hubzillaへようこそ!"; @@ -1812,12 +1812,12 @@ App::$strings["Import Items"] = "アイテムをインポート"; App::$strings["Use this form to import existing posts and content from an export file."] = "このフォームを使用して、エクスポートファイルから既存の投稿とコンテンツをインポートします。"; App::$strings["Total invitation limit exceeded."] = "合計招待制限を超えました。"; App::$strings["%s : Not a valid email address."] = "%s :有効なメールアドレスではありません。"; -App::$strings["Please join us on \$Projectname"] = "$ Projectnameにご参加ください"; +App::$strings["Please join us on \$Projectname"] = "\$Projectnameに参加してください"; App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "招待制限を超えました。サイト管理者に連絡してください。"; App::$strings["%s : Message delivery failed."] = "%s :メッセージの配信に失敗しました。"; App::$strings["%d message sent."] = array( - 0 => "%dメッセージを送信しました。", - 1 => "%dメッセージを送信しました。", + 0 => "%d件のメッセージを送信しました。", + 1 => "%d件のメッセージを送信しました。", ); App::$strings["Invite App"] = "アプリを招待"; App::$strings["Send email invitations to join this network"] = "このネットワークに参加するための招待メールを送信する"; @@ -1825,10 +1825,10 @@ App::$strings["You have no more invitations available"] = "利用可能な招待 App::$strings["Send invitations"] = "招待状を送信"; App::$strings["Enter email addresses, one per line:"] = "電子メールアドレスを1行に1つずつ入力します。"; App::$strings["Your message:"] = "あなたのメッセージ:"; -App::$strings["Please join my community on \$Projectname."] = "$ Projectnameでコミュニティに参加してください。"; +App::$strings["Please join my community on \$Projectname."] = "\$Projectnameでコミュニティに参加してください。"; App::$strings["You will need to supply this invitation code:"] = "この招待コードを提供する必要があります。"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1.任意の$ Projectnameの場所に登録します(すべて相互に接続されています)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. $ Projectnameネットワークアドレスをサイト検索バーに入力します。"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1.任意の\$Projectnameの場所に登録します(すべて相互に接続されています)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. \$Projectnameネットワークアドレスをサイト検索バーに入力します。"; App::$strings["or visit"] = "または訪問"; App::$strings["3. Click [Connect]"] = "3. [接続]をクリックします"; App::$strings["Unable to locate original post."] = "元の投稿が見つかりません。"; @@ -1837,8 +1837,8 @@ App::$strings["Duplicate post suppressed."] = "重複した投稿は抑制され App::$strings["System error. Post not saved."] = "システムエラー。投稿は保存されませんでした。"; App::$strings["Your comment is awaiting approval."] = "あなたのコメントは承認待ちです。"; App::$strings["Unable to obtain post information from database."] = "データベースから投稿情報を取得できません。"; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "トップレベルの投稿の上限%1 $ .0fに達しました。"; -App::$strings["You have reached your limit of %1$.0f webpages."] = "ウェブページの制限%1 $ .0fに達しました。"; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "トップレベルの投稿の上限%1$.0fに達しました。"; +App::$strings["You have reached your limit of %1$.0f webpages."] = "ウェブページの制限%1$.0fに達しました。"; App::$strings["Language App"] = "言語アプリ"; App::$strings["Change UI language"] = "UI言語を変更する"; App::$strings["Comanche page description language help"] = "Comancheページ記述言語のヘルプ"; @@ -1846,7 +1846,7 @@ App::$strings["Layout Description"] = "レイアウトの説明"; App::$strings["Download PDL file"] = "PDLファイルをダウンロードする"; App::$strings["Like/Dislike"] = "好き/嫌い"; App::$strings["This action is restricted to members."] = "このアクションはメンバーに制限されています。"; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "続行するには、 $ Projectname IDでログインするか、新しい$ Projectnameメンバーとして登録してください。"; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "続行するには、 \$Projectname IDでログインするか、新しい\$Projectnameメンバーとして登録してください。"; App::$strings["Invalid request."] = "無効なリクエスト。"; App::$strings["thing"] = "事"; App::$strings["Channel unavailable."] = "チャンネルは利用できません。"; @@ -1856,11 +1856,11 @@ App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$s App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$s決定を棄権します"; App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$s"; App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$s参加していません"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$s"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$sに参加するかも"; App::$strings["Action completed."] = "アクションが完了しました。"; App::$strings["Thank you."] = "ありがとうございました。"; App::$strings["Remote privacy information not available."] = "リモートプライバシー情報は利用できません。"; -App::$strings["Visible to:"] = "に表示:"; +App::$strings["Visible to:"] = "表示:"; App::$strings["Location not found."] = "場所が見つかりません。"; App::$strings["Location lookup failed."] = "場所の検索に失敗しました。"; App::$strings["Please select another location to become primary before removing the primary location."] = "プライマリロケーションを削除する前に、プライマリになる別のロケーションを選択してください。"; @@ -1868,10 +1868,10 @@ App::$strings["Syncing locations"] = "場所の同期"; App::$strings["No locations found."] = "場所が見つかりません。"; App::$strings["Manage Channel Locations"] = "チャンネルの場所を管理する"; App::$strings["Primary"] = "一次"; -App::$strings["Drop"] = "ドロップ"; +App::$strings["Drop"] = "消去"; App::$strings["Sync Now"] = "今すぐ同期"; -App::$strings["Please wait several minutes between consecutive operations."] = "連続した操作の間に数分待ってください。"; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "可能であれば、そのWebサイト/ハブにログインしてチャンネルを削除して、場所を削除します。"; +App::$strings["Please wait several minutes between consecutive operations."] = "作業中は数分そのまま待機してください。"; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "可能であれば、そのWebサイト/ハブにログインしてチャンネルを削除して、場所を削除してください。"; App::$strings["Use this form to drop the location if the hub is no longer operating."] = "ハブが動作しなくなった場合、このフォームを使用して場所を削除します。"; App::$strings["No valid account found."] = "有効なアカウントが見つかりません。"; App::$strings["Password reset request issued. Check your email."] = "パスワードリセット要求が発行されました。あなたのメールをチェック。"; @@ -1909,10 +1909,10 @@ App::$strings["Delivery report"] = "送達通知"; App::$strings["Recall message"] = "リコールメッセージ"; App::$strings["Message has been recalled."] = "メッセージが呼び戻されました。"; App::$strings["Delete Conversation"] = "会話を削除"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "安全な通信は利用できません。送信者のプロファイルページから 返信できる場合があります。"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "安全な通信は利用できません。送信者のプロファイルページから返信できるかもしれません。"; App::$strings["Send Reply"] = "返信する"; App::$strings["Your message for %s (%s):"] = "%s ( %s ) %sメッセージ:"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "%2 $ .0fの%1 $ .0fが許可されたチャンネルを作成しました。"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "%2$.0fの%1$.0fが許可されたチャンネルを作成しました。"; App::$strings["Create a new channel"] = "新しいチャンネルを作成する"; App::$strings["Current Channel"] = "現在のチャンネル"; App::$strings["Switch to one of your channels by selecting it."] = "チャンネルを選択して切り替えます。"; @@ -1939,7 +1939,7 @@ App::$strings["Menu not found."] = "メニューが見つかりません。"; App::$strings["Edit Menu"] = "編集メニュー"; App::$strings["Add or remove entries to this menu"] = "このメニューにエントリを追加または削除します"; App::$strings["Menu name"] = "メニュー名"; -App::$strings["Must be unique, only seen by you"] = "唯一でなければならない、あなただけが見られる"; +App::$strings["Must be unique, only seen by you"] = "固有である必要があります。あなただけに表示されます。"; App::$strings["Menu title"] = "メニュータイトル"; App::$strings["Menu title as seen by others"] = "他の人に表示されるメニュータイトル"; App::$strings["Allow bookmarks"] = "ブックマークを許可する"; @@ -1983,7 +1983,7 @@ App::$strings["Privacy group is empty"] = "プライバシーグループが空 App::$strings["Privacy group: "] = "プライバシーグループ:"; App::$strings["Invalid channel."] = "無効なチャンネル。"; App::$strings["Your real name is recommended."] = "あなたの本名が推奨されます。"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "例:\ "Bob Jameson \"、\ "Lisa and her Horses \"、\ "Soccer \"、\ "Aviation Group \""; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "例:\"Bob Jameson \"、\"Lisa and her Horses \"、\"Soccer \"、\"Aviation Group \""; App::$strings["This will be used to create a unique network address (like an email address)."] = "これは、一意のネットワークアドレス(電子メールアドレスなど)を作成するために使用されます。"; App::$strings["Allowed characters are a-z 0-9, - and _"] = "許可される文字はaz 0-9、-および_です"; App::$strings["Channel name"] = "チャンネル名"; @@ -2055,7 +2055,7 @@ App::$strings["Layout updated."] = "レイアウトが更新されました。"; App::$strings["PDL Editor App"] = "PDLエディターアプリ"; App::$strings["Provides the ability to edit system page layouts"] = "システムページレイアウトを編集する機能を提供します。"; App::$strings["Edit System Page Description"] = "システムページの説明の編集"; -App::$strings["(modified)"] = "(変更)"; +App::$strings["(modified)"] = "(変更済み)"; App::$strings["Layout not found."] = "レイアウトが見つかりません。"; App::$strings["Module Name:"] = "モジュール名:"; App::$strings["Layout Help"] = "レイアウトヘルプ"; @@ -2073,17 +2073,17 @@ App::$strings["Delete Album"] = "アルバムを削除"; App::$strings["Delete Photo"] = "写真を削除"; App::$strings["No photos selected"] = "写真が選択されていません"; App::$strings["Access to this item is restricted."] = "このアイテムへのアクセスは制限されています。"; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%2 $ .2f MBの%1 $ .2f MBの写真ストレージが使用されています。"; -App::$strings["%1$.2f MB photo storage used."] = "%1 $ .2f MBの写真ストレージが使用されています。"; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%2$.2f MB中%1$.2f MBの写真ストレージが使用されています。"; +App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MBの写真ストレージが使用されています。"; App::$strings["Upload Photos"] = "写真をアップロードする"; App::$strings["Enter an album name"] = "アルバム名を入力してください"; App::$strings["or select an existing album (doubleclick)"] = "または既存のアルバムを選択します(ダブルクリック)"; App::$strings["Create a status post for this upload"] = "このアップロードのステータス投稿を作成"; App::$strings["Description (optional)"] = "説明(オプション)"; -App::$strings["Show Newest First"] = "最新を最初に表示"; -App::$strings["Show Oldest First"] = "最も古いものを最初に表示"; +App::$strings["Show Newest First"] = "新しいもの順に表示"; +App::$strings["Show Oldest First"] = "古いもの順に表示"; App::$strings["Add Photos"] = "写真を追加"; -App::$strings["Permission denied. Access to this item may be restricted."] = "アクセス拒否。このアイテムへのアクセスは制限される場合があります。"; +App::$strings["Permission denied. Access to this item may be restricted."] = "アクセスが拒否されました。このアイテムへのアクセスは制限されている場合があります。"; App::$strings["Photo not available"] = "写真は利用できません"; App::$strings["Use as profile photo"] = "プロフィール写真として使用"; App::$strings["Use as cover photo"] = "カバー写真として使用"; @@ -2096,7 +2096,7 @@ App::$strings["Move photo to album"] = "写真をアルバムに移動"; App::$strings["Enter a new album name"] = "新しいアルバム名を入力してください"; App::$strings["or select an existing one (doubleclick)"] = "または、既存のものを選択します(ダブルクリック)"; App::$strings["Add a Tag"] = "タグを追加する"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "例:@ bob、@ Barbara_Jensen、@ jim @ example.com"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "例:@bob、@Barbara_Jensen、@jim@example.com"; App::$strings["Flag as adult in album view"] = "アルバムビューでアダルトとしてフラグを立てる"; App::$strings["Photo Tools"] = "写真ツール"; App::$strings["In This Photo:"] = "この写真の中で:"; @@ -2110,10 +2110,10 @@ App::$strings["posted an event"] = "イベントを投稿しました"; App::$strings["shared a file with you"] = "あなたとファイルを共有しました"; App::$strings["Private forum"] = "プライベートフォーラム"; App::$strings["Public forum"] = "公開フォーラム"; -App::$strings["Poke App"] = "ポケアプリ"; +App::$strings["Poke App"] = "Pokeアプリ"; App::$strings["Poke somebody in your addressbook"] = "アドレス帳で誰かを突く"; App::$strings["Poke somebody"] = "誰かを突く"; -App::$strings["Poke/Prod"] = "突く/製品"; +App::$strings["Poke/Prod"] = ""; App::$strings["Poke, prod or do other things to somebody"] = "突く、突き出す、または他のことを誰かに行う"; App::$strings["Recipient"] = "受取人"; App::$strings["Choose what you wish to do to recipient"] = "受信者にしたいことを選択してください"; @@ -2123,7 +2123,7 @@ App::$strings["Perform diagnostics on remote channels"] = "リモートチャネ App::$strings["vcard"] = "vcard"; App::$strings["Profile not found."] = "プロファイルが見つかりません。"; App::$strings["Profile deleted."] = "プロファイルが削除されました。"; -App::$strings["Profile-"] = "プロフィール-"; +App::$strings["Profile-"] = "プロファイル-"; App::$strings["New profile created."] = "新しいプロファイルが作成されました。"; App::$strings["Profile unavailable to clone."] = "プロファイルを複製できません。"; App::$strings["Profile unavailable to export."] = "プロファイルをエクスポートできません。"; @@ -2131,7 +2131,7 @@ App::$strings["Profile Name is required."] = "プロファイル名が必要で App::$strings["Marital Status"] = "配偶者の有無"; App::$strings["Romantic Partner"] = "ロマンチックなパートナー"; App::$strings["Likes"] = "いいね"; -App::$strings["Dislikes"] = "嫌い"; +App::$strings["Dislikes"] = "わるいね"; App::$strings["Work/Employment"] = "仕事/雇用"; App::$strings["Religion"] = "宗教"; App::$strings["Political Views"] = "政見"; @@ -2189,13 +2189,13 @@ App::$strings["Your default profile photo is visible to anybody on the internet. App::$strings["Your profile photo is visible to anybody on the internet and may be distributed to other websites."] = "あなたのプロフィール写真はインターネット上の誰でも見ることができ、他のウェブサイトに配布される場合があります。"; App::$strings["Use Photo for Profile"] = "プロフィールに写真を使用"; App::$strings["Change Profile Photo"] = "プロフィール写真の変更"; -App::$strings["Use"] = "つかいます"; +App::$strings["Use"] = "使用する"; App::$strings["Invalid profile identifier."] = "無効なプロファイル識別子。"; App::$strings["Profile Visibility Editor"] = "プロファイル可視性エディター"; App::$strings["Click on a contact to add or remove."] = "連絡先をクリックして追加または削除します。"; -App::$strings["Visible To"] = "に見える"; +App::$strings["Visible To"] = "に表示"; App::$strings["Public Hubs"] = "公共ハブ"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "リストされたハブは、$ Projectnameネットワークのパブリック登録を許可します。ネットワーク内のすべてのハブは相互にリンクされているため、ハブのいずれかのメンバーシップはネットワーク全体のメンバーシップを伝えます。一部のハブでは、サブスクリプションが必要な場合や、段階的なサービスプランを提供する場合があります。ハブ自体が追加の詳細を提供する場合があります 。"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "このリスト化されたハブは\$Projectnameのネットワークに登録が許可されています。全てのハブは相互にリンクしておりどこのハブにいても接続できます。それぞれのハブには独自の制約がある可能性もあります。"; App::$strings["Hub URL"] = "ハブURL"; App::$strings["Access Type"] = "アクセスタイプ"; App::$strings["Registration Policy"] = "登録ポリシー"; @@ -2205,7 +2205,7 @@ App::$strings["Rate"] = "レート"; App::$strings["Public Stream App"] = "パブリックストリームアプリ"; App::$strings["The unmoderated public stream of this hub"] = "このハブのモデレートされていないパブリックストリーム"; App::$strings["Random Channel App"] = "ランダムチャンネルアプリ"; -App::$strings["Visit a random channel in the \$Projectname network"] = "$ Projectnameネットワークのランダムチャネルにアクセスします"; +App::$strings["Visit a random channel in the \$Projectname network"] = "\$Projectnameネットワークのランダムチャネルにアクセスします"; App::$strings["Website:"] = "ウェブサイト:"; App::$strings["Remote Channel [%s] (not yet known on this site)"] = "リモートチャネル[ %s ](このサイトではまだ知られていない)"; App::$strings["Rating (this information is public)"] = "評価(この情報は公開されています)"; @@ -2226,9 +2226,9 @@ App::$strings["Registration successful. Please check your email for validation i App::$strings["Your registration is pending approval by the site owner."] = "登録はサイト所有者による承認待ちです。"; App::$strings["Your registration can not be processed."] = "登録を処理できません。"; App::$strings["Registration on this hub is disabled."] = "このハブでの登録は無効になっています。"; -App::$strings["Registration on this hub is by approval only."] = "このハブへの登録は承認のみです。"; +App::$strings["Registration on this hub is by approval only."] = "このハブへの登録は承認された人のみです。"; App::$strings["Register at another affiliated hub."] = "別の提携ハブに登録します。"; -App::$strings["Registration on this hub is by invitation only."] = "このハブへの登録は招待のみです。"; +App::$strings["Registration on this hub is by invitation only."] = "このハブへ登録できるのは招待状を持っている人のみです。"; App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "このサイトは、許可されている1日のアカウント登録数を超えています。明日もう一度お試しください。"; App::$strings["Terms of Service"] = "利用規約"; App::$strings["I accept the %s for this website"] = "このウェブサイトの%sに同意します"; @@ -2239,7 +2239,7 @@ App::$strings["Please re-enter your password"] = "パスワードを再入力し App::$strings["Please enter your invitation code"] = "招待コードを入力してください"; App::$strings["Your Name"] = "あなたの名前"; App::$strings["Real names are preferred."] = "本名が優先されます。"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "ニックネームは、ニックネーム%s覚えやすいチャネルアドレスを作成するために使用されます"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "ニックネームは覚えやすいチャンネルアドレスを作成するために使用されます。ニックネーム:%s"; App::$strings["Select a channel permission role for your usage needs and privacy requirements."] = "使用上のニーズとプライバシーの要件に応じて、チャンネル許可の役割を選択します。"; App::$strings["no"] = "いや"; App::$strings["yes"] = "はい"; @@ -2300,12 +2300,12 @@ App::$strings["Use Browser Location:"] = "ブラウザの場所を使用:"; App::$strings["Adult Content"] = "成人コンテンツ"; App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "このチャンネルは頻繁または定期的にアダルトコンテンツを公開しています。 (成人向けの素材やヌードには#NSFWのタグを付けてください)"; App::$strings["Security and Privacy Settings"] = "セキュリティとプライバシーの設定"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "許可はすでに構成されています。クリックして表示/調整"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "権限はすでに構成されています。クリックして表示/調整"; App::$strings["Hide my online presence"] = "オンラインプレゼンスを非表示にする"; App::$strings["Prevents displaying in your profile that you are online"] = "あなたがオンラインであることをあなたのプロフィールに表示しないようにします"; App::$strings["Simple Privacy Settings:"] = "シンプルなプライバシー設定:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "非常にパブリック-非常に寛容です(注意して使用する必要があります)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "標準-必要に応じてデフォルトのパブリック、プライバシー(ソーシャルネットワークのアクセス許可に似ていますが、プライバシーが改善されます)"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "非常にパブリック-非常に寛容です(注意して使用する必要があります)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "標準-必要に応じてデフォルトのパブリック、プライバシー(ソーシャルネットワークのアクセス許可に似ていますが、プライバシーが改善されます)"; App::$strings["Private - default private, never open or public"] = "非公開-デフォルトでは非公開、非公開または公開"; App::$strings["Blocked - default blocked to/from everybody"] = "ブロック済み-デフォルトですべてのユーザーとの間でブロック"; App::$strings["Allow others to tag your posts"] = "他のユーザーがあなたの投稿にタグ付けできるようにします"; @@ -2324,19 +2324,19 @@ App::$strings["Default permissions category"] = "デフォルトの許可カテ App::$strings["Maximum private messages per day from unknown people:"] = "不明な人からの1日あたりの最大プライベートメッセージ:"; App::$strings["Useful to reduce spamming"] = "スパムを減らすのに役立ちます"; App::$strings["By default post a status message when:"] = "デフォルトでは、次の場合にステータスメッセージを投稿します。"; -App::$strings["accepting a friend request"] = "友達リクエストを受け入れる"; -App::$strings["joining a forum/community"] = "フォーラム/コミュニティへの参加"; -App::$strings["making an interesting profile change"] = "興味深いプロファイルの変更を行う"; +App::$strings["accepting a friend request"] = "友達リクエストを受け入れたとき"; +App::$strings["joining a forum/community"] = "フォーラム/コミュニティへ参加したとき"; +App::$strings["making an interesting profile change"] = "興味深いプロファイルの変更を行ったとき"; App::$strings["Send a notification email when:"] = "次の場合に通知メールを送信します。"; -App::$strings["You receive a connection request"] = "接続要求を受け取ります"; -App::$strings["Your connections are confirmed"] = "接続が確認されました"; -App::$strings["Someone writes on your profile wall"] = "誰かがあなたのプロフィールウォールに書き込みます"; -App::$strings["Someone writes a followup comment"] = "誰かがフォローアップコメントを書く"; -App::$strings["You receive a private message"] = "プライベートメッセージを受け取ります"; -App::$strings["You receive a friend suggestion"] = "友達の提案を受け取ります"; -App::$strings["You are tagged in a post"] = "あなたは投稿でタグ付けされています"; -App::$strings["You are poked/prodded/etc. in a post"] = "あなたは突かれた/突かれた/などです。投稿で"; -App::$strings["Someone likes your post/comment"] = "誰かがあなたの投稿/コメントを気に入っています"; +App::$strings["You receive a connection request"] = "接続要求を受け取ったとき"; +App::$strings["Your connections are confirmed"] = "接続が確認されたとき"; +App::$strings["Someone writes on your profile wall"] = "誰かがあなたのプロフィールウォールに書き込んだとき"; +App::$strings["Someone writes a followup comment"] = "誰かがフォローアップコメントを書いたとき"; +App::$strings["You receive a private message"] = "プライベートメッセージを受け取ったとき"; +App::$strings["You receive a friend suggestion"] = "友達の提案を受け取ったとき"; +App::$strings["You are tagged in a post"] = "あなたが投稿でタグ付けされたとき"; +App::$strings["You are poked/prodded/etc. in a post"] = "あなたの投稿にpokeやproddedをされたとき"; +App::$strings["Someone likes your post/comment"] = "誰かがあなたの投稿/コメントをいいね!したとき"; App::$strings["Show visual notifications including:"] = "以下を含む視覚的な通知を表示します。"; App::$strings["Unseen stream activity"] = "目に見えないストリーム活動"; App::$strings["Unseen channel activity"] = "目に見えないチャンネルアクティビティ"; @@ -2345,15 +2345,15 @@ App::$strings["Recommended"] = "お勧め"; App::$strings["Upcoming events"] = "今後のイベント"; App::$strings["Events today"] = "今日のイベント"; App::$strings["Upcoming birthdays"] = "今後の誕生日"; -App::$strings["Not available in all themes"] = "すべてのテーマで利用できない"; +App::$strings["Not available in all themes"] = "テーマは利用できません"; App::$strings["System (personal) notifications"] = "システム(個人)通知"; App::$strings["System info messages"] = "システム情報メッセージ"; App::$strings["System critical alerts"] = "システムクリティカルアラート"; App::$strings["New connections"] = "新しい接続"; App::$strings["System Registrations"] = "システム登録"; -App::$strings["Unseen shared files"] = "見えない共有ファイル"; +App::$strings["Unseen shared files"] = "未公開の共有ファイル"; App::$strings["Unseen public stream activity"] = "未公開の公開ストリームアクティビティ"; -App::$strings["Unseen likes and dislikes"] = "目に見えない好き嫌い"; +App::$strings["Unseen likes and dislikes"] = "未公開の好き嫌い"; App::$strings["Unseen forum posts"] = "未公開のフォーラム投稿"; App::$strings["Email notification hub (hostname)"] = "電子メール通知ハブ(ホスト名)"; App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "チャンネルが複数のハブにミラーリングされている場合、これを好みの場所に設定します。これにより、電子メール通知の重複が防止されます。例: %s"; @@ -2364,16 +2364,16 @@ App::$strings["Advanced Account/Page Type Settings"] = "アカウント/ペー App::$strings["Change the behaviour of this account for special situations"] = "特別な状況でこのアカウントの動作を変更する"; App::$strings["Miscellaneous Settings"] = "その他の設定"; App::$strings["Default photo upload folder"] = "デフォルトの写真アップロードフォルダ"; -App::$strings["%Y - current year, %m - current month"] = "%Y-現在の年、%m-現在の月"; +App::$strings["%Y - current year, %m - current month"] = "%Y-現在の年、%m-現在の月"; App::$strings["Default file upload folder"] = "デフォルトのファイルアップロードフォルダ"; -App::$strings["Remove this channel."] = "このチャンネルを削除してください。"; +App::$strings["Remove this channel."] = "このチャンネルを削除します。"; App::$strings["Max height of content (in pixels)"] = "コンテンツの最大の高さ(ピクセル単位)"; -App::$strings["Click to expand content exceeding this height"] = "クリックしてこの高さを超えるコンテンツを展開します"; +App::$strings["Click to expand content exceeding this height"] = "この高さを超えるコンテンツはクリックして展開します"; App::$strings["Personal menu to display in your channel pages"] = "チャンネルページに表示する個人メニュー"; App::$strings["Channel Home Settings"] = "チャンネルのホーム設定"; App::$strings["Connections Settings"] = "接続設定"; App::$strings["Settings saved."] = "保存された設定。"; -App::$strings["Settings saved. Reload page please."] = "保存された設定。ページをリロードしてください。"; +App::$strings["Settings saved. Reload page please."] = "設定は保存されました。ページをリロードしてください。"; App::$strings["Conversation Settings"] = "会話設定"; App::$strings["Directory Settings"] = "ディレクトリ設定"; App::$strings["%s - (Experimental)"] = "%s (実験的)"; @@ -2413,18 +2413,18 @@ App::$strings["Could not connect to database."] = "データベースに接続 App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "指定されたサイトURLに接続できませんでした。 SSL証明書またはDNSの問題の可能性。"; App::$strings["Could not create table."] = "テーブルを作成できませんでした。"; App::$strings["Your site database has been installed."] = "サイトデータベースがインストールされました。"; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "データベースクライアントを使用して、手動でファイル\ "install / schema_xxx.sql \"をインポートする必要がある場合があります。"; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "データベースクライアントを使用して、手動でファイル\"install / schema_xxx.sql \"をインポートする必要がある場合があります。"; App::$strings["Please see the file \"install/INSTALL.txt\"."] = "ファイル「install / INSTALL.txt」を参照してください。"; App::$strings["System check"] = "システムチェック"; -App::$strings["Check again"] = "再び確かめる"; +App::$strings["Check again"] = "再確認"; App::$strings["Database connection"] = "データベース接続"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "$ Projectnameをインストールするには、データベースへの接続方法を知る必要があります。"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "\$Projectnameをインストールするには、データベースへの接続方法を知る必要があります。"; App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "これらの設定について質問がある場合は、ホスティングプロバイダーまたはサイト管理者にお問い合わせください。"; App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "以下で指定するデータベースはすでに存在している必要があります。存在しない場合は、続行する前に作成してください。"; App::$strings["Database Server Name"] = "データベースサーバー名"; App::$strings["Default is 127.0.0.1"] = "デフォルトは127.0.0.1"; App::$strings["Database Port"] = "データベースポート"; -App::$strings["Communication port number - use 0 for default"] = "通信ポート番号-デフォルトには0を使用"; +App::$strings["Communication port number - use 0 for default"] = "通信ポート番号 - 0でデフォルト値を使用します。"; App::$strings["Database Login Name"] = "データベースのログイン名"; App::$strings["Database Login Password"] = "データベースログインパスワード"; App::$strings["Database Name"] = "データベース名"; @@ -2443,14 +2443,14 @@ App::$strings["PHP executable path"] = "PHP実行可能パス"; App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "php実行可能ファイルへのフルパスを入力します。これを空白のままにしてインストールを続行できます。"; App::$strings["Command line PHP"] = "コマンドラインPHP"; App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "shell_exec()が無効になっているため、コマンドラインPHPをチェックできません。これは必須です。"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "ご使用のシステムのコマンドラインバージョンのPHPでは、\ "register_argc_argv \"が有効になっていません。"; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "ご使用のシステムのコマンドラインバージョンのPHPでは、\"register_argc_argv \"が有効になっていません。"; App::$strings["This is required for message delivery to work."] = "これは、メッセージ配信が機能するために必要です。"; App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; App::$strings["This is not sufficient to upload larger images or files. You should be able to upload at least 4 MB at once."] = "これは、大きな画像やファイルをアップロードするには不十分です。少なくとも4 MBを一度にアップロードできる必要があります。"; App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "アップロードの最大許容合計サイズは%s設定されています。アップロードする1つのファイルの最大サイズは%s設定されています。一度に最大%dファイルをアップロードできます。"; App::$strings["You can adjust these settings in the server php.ini file."] = "サーバーのphp.iniファイルでこれらの設定を調整できます。"; App::$strings["PHP upload limits"] = "PHPアップロード制限"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "エラー:このシステムの\ "openssl_pkey_new \"関数は暗号化キーを生成できません"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "エラー:このシステムの\"openssl_pkey_new \"関数は暗号化キーを生成できません"; App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Windowsで実行している場合は、「http://www.php.net/manual/en/openssl.installation.php \」を参照してください。"; App::$strings["Generate encryption keys"] = "暗号化キーを生成する"; App::$strings["libCurl PHP module"] = "libCurl PHPモジュール"; @@ -2475,11 +2475,11 @@ App::$strings["Error: mb_string PHP module required but not installed."] = "エ App::$strings["Error: xml PHP module required for DAV but not installed."] = "エラー:DAVにはXML PHPモジュールが必要ですが、インストールされていません。"; App::$strings["Error: zip PHP module required but not installed."] = "エラー:zip PHPモジュールが必要ですが、インストールされていません。"; App::$strings[".htconfig.php is writable"] = ".htconfig.phpは書き込み可能です"; -App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Webインストーラーは、Webサーバーの最上位フォルダーに\ "。htconfig.php \"というファイルを作成できる必要がありますが、作成できません。"; -App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "これはほとんどの場合、Webサーバーがフォルダーにファイルを書き込むことができない場合でも、許可設定です。"; +App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Webインストーラーは、Webサーバーの最上位フォルダーに\"。htconfig.php \"というファイルを作成できる必要がありますが、作成できません。"; +App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "これはほとんどの場合、Webサーバーがフォルダーにファイルを書き込むことができない場合でも、許可にできる設定です。"; App::$strings["Please see install/INSTALL.txt for additional information."] = "詳細については、install / INSTALL.txtを参照してください。"; App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "このソフトウェアは、Smarty3テンプレートエンジンを使用してWebビューをレンダリングします。 Smarty3はテンプレートをPHPにコンパイルして、レンダリングを高速化します。"; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "これらのコンパイル済みテンプレートを保存するには、Webサーバーが最上位のWebフォルダー%s下のディレクトリ%sへの書き込みアクセス権を持っている必要があります。"; +App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "これらのコンパイル済みテンプレートを保存するには、Webサーバーが最上位のWebフォルダー%s下のディレクトリへの書き込みアクセス権を持っている必要があります。"; App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Webサーバーを実行するユーザー(www-dataなど)がこのフォルダーへの書き込みアクセス権を持っていることを確認してください。"; App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "注:セキュリティ対策として、Webサーバーに含まれるテンプレートファイル(.tpl)ではなく、 %sへの書き込みアクセスを許可する必要があります。"; App::$strings["%s is writable"] = "%sは書き込み可能です"; @@ -2495,9 +2495,9 @@ App::$strings["If you are confident that the certificate is valid and signed by App::$strings["SSL certificate validation"] = "SSL証明書の検証"; App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = ".htaccessのURL書き換えが機能していません。サーバーの構成を確認します。テスト:"; App::$strings["Url rewrite is working"] = "URLの書き換えが機能しています"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "データベース構成ファイル\ "。htconfig.php \"を書き込めませんでした。同封のテキストを使用して、Webサーバーのルートに構成ファイルを作成してください。"; +App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "データベース構成ファイル\"。htconfig.php \"を書き込めませんでした。同封のテキストを使用して、Webサーバーのルートに構成ファイルを作成してください。"; App::$strings["Errors encountered creating database tables."] = "データベーステーブルの作成中にエラーが発生しました。"; -App::$strings["

What next?

"] = "

次は何ですか"; +App::$strings["

What next?

"] = "

次にすること

"; App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "重要:ポーラーのスケジュールされたタスクを[手動で]設定する必要があります。"; App::$strings["Post repeated"] = "繰り返し投稿"; App::$strings["Files: shared with me"] = "ファイル:私と共有"; @@ -2512,7 +2512,7 @@ App::$strings["Software and Project information"] = "ソフトウェアおよび App::$strings["This site is powered by \$Projectname"] = "このサイトは$ Projectnameを使用しています"; App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Zotが提供する統合および分散型のネットワークおよびIDサービス"; App::$strings["Additional federated transport protocols:"] = "追加の統合トランスポートプロトコル:"; -App::$strings["Version %s"] = "バージョン%s"; +App::$strings["Version %s"] = "バージョン: %s"; App::$strings["Project homepage"] = "プロジェクトのホームページ"; App::$strings["Developer homepage"] = "開発者ホームページ"; App::$strings["Failed to create source. No channel selected."] = "ソースの作成に失敗しました。チャンネルが選択されていません。"; @@ -2535,20 +2535,20 @@ App::$strings["Edit Source"] = "ソースを編集"; App::$strings["Delete Source"] = "ソースを削除"; App::$strings["Source removed"] = "ソースを削除しました"; App::$strings["Unable to remove source."] = "ソースを削除できません。"; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$sフォローしています"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s %2\$sの%3\$sの後に%1\$sが停止しました"; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$sをフォローしています"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$sが%2\$sの%3\$sのフォローを停止しました"; App::$strings["Suggest Channels App"] = "チャンネルアプリの提案"; -App::$strings["Suggestions for channels in the \$Projectname network you might be interested in"] = "興味があるかもしれない$ Projectnameネットワークのチャンネルの提案"; +App::$strings["Suggestions for channels in the \$Projectname network you might be interested in"] = "興味あるかも?"; App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "利用可能な提案はありません。新しいサイトの場合は、24時間後にもう一度お試しください。"; App::$strings["Ignore/Hide"] = "無視/非表示"; App::$strings["Post not found."] = "投稿が見つかりません。"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$sが%2\$sの%3\$sに%4\$s %1\$sタグを付けました"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$sが%2\$sの%3\$sに%4\$sとタグを付けました"; App::$strings["Tag removed"] = "タグを削除しました"; App::$strings["Remove Item Tag"] = "アイテムタグを削除"; App::$strings["Select a tag to remove: "] = "削除するタグを選択:"; App::$strings["Thing updated"] = "更新されたもの"; App::$strings["Object store: failed"] = "オブジェクトストア:失敗"; -App::$strings["Thing added"] = "追加されたもの"; +App::$strings["Thing added"] = "モノは追加されました。"; App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; App::$strings["Show Thing"] = "ものを見る"; App::$strings["item not found."] = "アイテムが見つかりません。"; @@ -2566,7 +2566,7 @@ App::$strings["Token saved."] = "トークンを保存しました。"; App::$strings["Guest Access App"] = "ゲストアクセスアプリ"; App::$strings["Create access tokens so that non-members can access private content"] = "非メンバーがプライベートコンテンツにアクセスできるようにアクセストークンを作成する"; App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "このフォームを使用して、一時的なアクセス識別子を作成し、非メンバーと物事を共有します。これらのIDはアクセス制御リストで使用でき、訪問者はこれらの資格情報を使用してログインしてプライベートコンテンツにアクセスできます。"; -App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "示されているように、特定のサイトURLにログインパスワードを追加することにより、友人や仲間に dropbox スタイルのアクセスリンクを提供することもできます。例:"; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "示されているように、特定のサイトURLにログインパスワードを追加することにより、友人や仲間に dropbox スタイルのアクセスリンクを提供することもできます。例:"; App::$strings["Guest Access Tokens"] = "ゲストアクセストークン"; App::$strings["Login Name"] = "ログイン名"; App::$strings["Login Password"] = "ログインパスワード"; @@ -2580,10 +2580,10 @@ App::$strings["Export your channel information and recent content to a JSON back App::$strings["Export your posts from a given year."] = "特定の年の投稿をエクスポートします。"; App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "特定の年または月の投稿と会話をエクスポートすることもできます。ブラウザのロケーションバーで日付を調整して、他の日付を選択します。エクスポートが失敗した場合(サーバーハブのメモリ不足が原因である可能性があります)、より制限された日付範囲の選択を再試行してください。"; App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "今年など、特定の年のすべての投稿を選択するには、 %2\$s にアクセスしてください"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "今年の1月など、特定の月のすべての投稿を選択するには、 %2\$s にアクセスしてください"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "今年の1月など、特定の月のすべての投稿を選択するには、%2\$sにアクセスしてください"; App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "これらのコンテンツファイルは、チャンネルを含むサイトで %2\$s に%1\$sしてインポートまたは復元できます。最良の結果を得るには、これらを日付順に(最も古いものから)インポートまたは復元してください。"; App::$strings["No connections."] = "接続なし。"; -App::$strings["Visit %s's profile [%s]"] = "%sのプロフィール[ %s ]にアクセスしてください"; +App::$strings["Visit %s's profile [%s]"] = "%sのプロフィール[%s]にアクセスしています。"; App::$strings["View Connections"] = "接続を表示"; App::$strings["item"] = "項目"; App::$strings["Webpages App"] = "ウェブページアプリ"; @@ -2637,9 +2637,9 @@ App::$strings["New page created"] = "新しいページが作成されました" App::$strings["Cannot delete Home"] = "ホームを削除できません"; App::$strings["Current Revision"] = "現在の改訂"; App::$strings["Selected Revision"] = "選択されたリビジョン"; -App::$strings["You must be authenticated."] = "認証される必要があります。"; -App::$strings["Xchan Lookup"] = "Xchanルックアップ"; -App::$strings["Lookup xchan beginning with (or webbie): "] = "(またはwebbie)で始まるxchanを検索します。"; +App::$strings["You must be authenticated."] = "認証されている必要があります。"; +App::$strings["Xchan Lookup"] = "Xchan検索"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "xchan(またはwebbie)を検索:"; App::$strings["parent"] = "親"; App::$strings["Principal"] = "主要な"; App::$strings["Addressbook"] = "住所録"; @@ -2649,7 +2649,7 @@ App::$strings["Total"] = "合計"; App::$strings["Shared"] = "共有"; App::$strings["Add Files"] = "追加ファイル"; App::$strings["You are using %1\$s of your available file storage."] = "使用可能なファイルストレージ%1\$sを使用しています。"; -App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "%1\$sの%2\$s使用可能なファイルストレージを使用しています。 ( %3\$s &#37;)"; +App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "%1\$sの%2\$s使用可能なファイルストレージを使用しています。(%3\$s%)"; App::$strings["WARNING:"] = "警告:"; App::$strings["Create new folder"] = "新しいフォルダーを作成"; App::$strings["Upload file"] = "ファイルをアップロードする"; @@ -2687,7 +2687,7 @@ App::$strings["Installed apps"] = "インストール済みアプリ"; App::$strings["Archives"] = "アーカイブ"; App::$strings["Bookmarked Chatrooms"] = "ブックマーク済みチャットルーム"; App::$strings["Select Channel"] = "チャンネルの選択"; -App::$strings["Read-write"] = "読みー書き"; +App::$strings["Read-write"] = "読み書き"; App::$strings["Read-only"] = "読み取り専用"; App::$strings["My Calendars"] = "私のカレンダー"; App::$strings["Shared Calendars"] = "共有カレンダー"; @@ -2716,7 +2716,7 @@ App::$strings["Click to show more"] = "クリックして詳細を表示"; App::$strings["Events Tools"] = "イベントツール"; App::$strings["Export Calendar"] = "カレンダーをエクスポート"; App::$strings["Import Calendar"] = "カレンダーをインポート"; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "%2 $ .0fの%1 $ .0fが接続を許可されています。"; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "%2$.0fの%1$.0fが接続を許可されています。"; App::$strings["Add New Connection"] = "新しい接続を追加"; App::$strings["Enter channel address"] = "チャンネルのアドレスを入力してください"; App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "例:bob @ example.com、https://example.com/barbara"; @@ -2736,7 +2736,7 @@ App::$strings["Manage your connections"] = "接続を管理する"; App::$strings["Communicate"] = "通信する"; App::$strings["View your channel homepage"] = "チャンネルのホームページを表示する"; App::$strings["View your network stream"] = "ネットワークストリームを表示する"; -App::$strings["Documentation"] = "ドキュメンテーション"; +App::$strings["Documentation"] = "説明書"; App::$strings["Missing Features?"] = "機能がありませんか?"; App::$strings["Pin apps to navigation bar"] = "アプリをナビゲーションバーに固定する"; App::$strings["Install more apps"] = "さらにアプリをインストールする"; @@ -2770,7 +2770,7 @@ App::$strings["New Registrations"] = "新規登録"; App::$strings["New Registrations Notifications"] = "新規登録通知"; App::$strings["Public Stream Notifications"] = "連合ストリーム通知"; App::$strings["View the public stream"] = "連合ストリームを表示する"; -App::$strings["Sorry, you have got no notifications at the moment"] = "今"; +App::$strings["Sorry, you have got no notifications at the moment"] = "現在通知はありません。"; App::$strings["photo/image"] = "画像/イメージ"; App::$strings["Rating Tools"] = "評価ツール"; App::$strings["Rate Me"] = "私を評価";