diff options
author | Max Kostikov <max@kostikov.co> | 2019-11-08 23:39:04 +0100 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2019-11-08 23:39:04 +0100 |
commit | ec68ede79faffd5733c3eaa24df2e4fb3b54eeb9 (patch) | |
tree | c26098c1c0ebff705dc4ef4f324b8b1656c61b9a | |
parent | 3706afbd01164c9f322c605d6ec242e6ca4770fa (diff) | |
parent | 478014f02a9241ec6d5b5e9672968897176302d2 (diff) | |
download | volse-hubzilla-ec68ede79faffd5733c3eaa24df2e4fb3b54eeb9.tar.gz volse-hubzilla-ec68ede79faffd5733c3eaa24df2e4fb3b54eeb9.tar.bz2 volse-hubzilla-ec68ede79faffd5733c3eaa24df2e4fb3b54eeb9.zip |
Merge branch 'dev' into 'dev'
Dev sync
See merge request kostikov/core!4
47 files changed, 15324 insertions, 121 deletions
diff --git a/.homeinstall/hubzilla-setup.sh b/.homeinstall/hubzilla-setup.sh index 1103bd5fd..f1395e8ce 100755 --- a/.homeinstall/hubzilla-setup.sh +++ b/.homeinstall/hubzilla-setup.sh @@ -448,11 +448,11 @@ function check_https { function install_hubzilla { print_info "installing addons..." cd /var/www/html/ - if git remote -v | grep -i "origin.*core.git" + if git remote -v | grep -i "origin.*hubzilla.*core" then print_info "hubzilla" util/add_addon_repo https://framagit.org/hubzilla/addons hzaddons - elif git remote -v | grep -i "origin.*zap.git" + elif git remote -v | grep -i "origin.*zap.*core" then print_info "zap" util/add_addon_repo https://framagit.org/zot/zap-addons.git zaddons diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 844127ee3..e41e165b1 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -87,8 +87,8 @@ class Activity { $headers = [ 'Accept' => 'application/activity+json, application/ld+json; profile="https://www.w3.org/ns/activitystreams"', 'Host' => $m['host'], - '(request-target)' => 'get ' . get_request_string($url), - 'Date' => datetime_convert('UTC','UTC','now','D, d M Y H:i:s') . ' UTC' + 'Date' => datetime_convert('UTC','UTC', 'now', 'D, d M Y H:i:s \\G\\M\\T'), + '(request-target)' => 'get ' . get_request_string($url) ]; if (isset($token)) { $headers['Authorization'] = 'Bearer ' . $token; @@ -401,26 +401,30 @@ class Activity { $ret = []; - if($item['tag']) { - foreach($item['tag'] as $t) { - if(! array_key_exists('type',$t)) + if ($item['tag'] && is_array($item['tag'])) { + $ptr = $item['tag']; + if (! array_key_exists(0,$ptr)) { + $ptr = [ $ptr ]; + } + foreach ($ptr as $t) { + if (! array_key_exists('type',$t)) $t['type'] = 'Hashtag'; switch($t['type']) { case 'Hashtag': - $ret[] = [ 'ttype' => TERM_HASHTAG, 'url' => ((isset($t['href'])) ? $t['href'] : $t['id']), 'term' => escape_tags((substr($t['name'],0,1) === '#') ? substr($t['name'],1) : $t['name']) ]; + $ret[] = [ 'ttype' => TERM_HASHTAG, 'url' => $t['href'], 'term' => escape_tags((substr($t['name'],0,1) === '#') ? substr($t['name'],1) : $t['name']) ]; break; case 'Mention': $mention_type = substr($t['name'],0,1); - if($mention_type === '!') { + if ($mention_type === '!') { $ret[] = [ 'ttype' => TERM_FORUM, 'url' => $t['href'], 'term' => escape_tags(substr($t['name'],1)) ]; } else { $ret[] = [ 'ttype' => TERM_MENTION, 'url' => $t['href'], 'term' => escape_tags((substr($t['name'],0,1) === '@') ? substr($t['name'],1) : $t['name']) ]; } break; - + default: break; } @@ -431,6 +435,7 @@ class Activity { } + static function encode_taxonomy($item) { $ret = []; diff --git a/Zotlabs/Lib/LDSignatures.php b/Zotlabs/Lib/LDSignatures.php index b13c4cf4a..16c8cfc18 100644 --- a/Zotlabs/Lib/LDSignatures.php +++ b/Zotlabs/Lib/LDSignatures.php @@ -30,7 +30,7 @@ class LDSignatures { 'type' => 'RsaSignature2017', 'nonce' => random_string(64), 'creator' => z_root() . '/channel/' . $channel['channel_address'], - 'created' => datetime_convert('UTC','UTC', 'now', 'Y-m-d\Th:i:s\Z') + 'created' => datetime_convert('UTC','UTC', 'now', 'Y-m-d\TH:i:s\Z') ]; $ohash = self::hash(self::signable_options($options)); diff --git a/Zotlabs/Lib/SvgSanitizer.php b/Zotlabs/Lib/SvgSanitizer.php new file mode 100644 index 000000000..c9bafc464 --- /dev/null +++ b/Zotlabs/Lib/SvgSanitizer.php @@ -0,0 +1,150 @@ +<?php + +namespace Zotlabs\Lib; +use DomDocument; + +/** + * SVGSantiizer + * + * Whitelist-based PHP SVG sanitizer. + * + * @link https://github.com/alister-/SVG-Sanitizer} + * @author Alister Norris + * @copyright Copyright (c) 2013 Alister Norris + * @license http://opensource.org/licenses/mit-license.php The MIT License + * @package svgsanitizer + */ + +class SvgSanitizer { + + private $xmlDoc; // PHP XML DOMDocument + + private $removedattrs = []; + + private static $allowed_functions = [ 'matrix', 'url', 'translate', 'rgb' ]; + + // defines the whitelist of elements and attributes allowed. + private static $whitelist = [ + 'a' => [ 'class', 'clip-path', 'clip-rule', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'id', 'mask', 'opacity', 'stroke', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'style', 'systemLanguage', 'transform', 'href', 'xlink:href', 'xlink:title' ], + 'circle' => [ 'class', 'clip-path', 'clip-rule', 'cx', 'cy', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'id', 'mask', 'opacity', 'r', 'requiredFeatures', 'stroke', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'style', 'systemLanguage', 'transform' ], + 'clipPath' => [ 'class', 'clipPathUnits', 'id' ], + 'defs' => [ ], + 'style' => [ 'type' ], + 'desc' => [ ], + 'ellipse' => [ 'class', 'clip-path', 'clip-rule', 'cx', 'cy', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'id', 'mask', 'opacity', 'requiredFeatures', 'rx', 'ry', 'stroke', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'style', 'systemLanguage', 'transform' ], + 'feGaussianBlur' => [ 'class', 'color-interpolation-filters', 'id', 'requiredFeatures', 'stdDeviation' ], + 'filter' => [ 'class', 'color-interpolation-filters', 'filterRes', 'filterUnits', 'height', 'id', 'primitiveUnits', 'requiredFeatures', 'width', 'x', 'xlink:href', 'y' ], + 'foreignObject' => [ 'class', 'font-size', 'height', 'id', 'opacity', 'requiredFeatures', 'style', 'transform', 'width', 'x', 'y' ], + 'g' => [ 'class', 'clip-path', 'clip-rule', 'id', 'display', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'mask', 'opacity', 'requiredFeatures', 'stroke', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'style', 'systemLanguage', 'transform', 'font-family', 'font-size', 'font-style', 'font-weight', 'text-anchor' ], + 'image' => [ 'class', 'clip-path', 'clip-rule', 'filter', 'height', 'id', 'mask', 'opacity', 'requiredFeatures', 'style', 'systemLanguage', 'transform', 'width', 'x', 'xlink:href', 'xlink:title', 'y' ], + 'line' => [ 'class', 'clip-path', 'clip-rule', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'id', 'marker-end', 'marker-mid', 'marker-start', 'mask', 'opacity', 'requiredFeatures', 'stroke', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'style', 'systemLanguage', 'transform', 'x1', 'x2', 'y1', 'y2' ], + 'linearGradient' => [ 'class', 'id', 'gradientTransform', 'gradientUnits', 'requiredFeatures', 'spreadMethod', 'systemLanguage', 'x1', 'x2', 'xlink:href', 'y1', 'y2' ], + 'marker' => [ 'id', 'class', 'markerHeight', 'markerUnits', 'markerWidth', 'orient', 'preserveAspectRatio', 'refX', 'refY', 'systemLanguage', 'viewBox' ], + 'mask' => [ 'class', 'height', 'id', 'maskContentUnits', 'maskUnits', 'width', 'x', 'y' ], + 'metadata' => [ 'class', 'id' ], + 'path' => [ 'class', 'clip-path', 'clip-rule', 'd', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'id', 'marker-end', 'marker-mid', 'marker-start', 'mask', 'opacity', 'requiredFeatures', 'stroke', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'style', 'systemLanguage', 'transform' ], + 'pattern' => [ 'class', 'height', 'id', 'patternContentUnits', 'patternTransform', 'patternUnits', 'requiredFeatures', 'style', 'systemLanguage', 'viewBox', 'width', 'x', 'xlink:href', 'y' ], + 'polygon' => [ 'class', 'clip-path', 'clip-rule', 'id', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'id', 'class', 'marker-end', 'marker-mid', 'marker-start', 'mask', 'opacity', 'points', 'requiredFeatures', 'stroke', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'style', 'systemLanguage', 'transform' ], + 'polyline' => [ 'class', 'clip-path', 'clip-rule', 'id', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'marker-end', 'marker-mid', 'marker-start', 'mask', 'opacity', 'points', 'requiredFeatures', 'stroke', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'style', 'systemLanguage', 'transform' ], + 'radialGradient' => [ 'class', 'cx', 'cy', 'fx', 'fy', 'gradientTransform', 'gradientUnits', 'id', 'r', 'requiredFeatures', 'spreadMethod', 'systemLanguage', 'xlink:href' ], + 'rect' => [ 'class', 'clip-path', 'clip-rule', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'height', 'id', 'mask', 'opacity', 'requiredFeatures', 'rx', 'ry', 'stroke', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'style', 'systemLanguage', 'transform', 'width', 'x', 'y' ], + 'stop' => [ 'class', 'id', 'offset', 'requiredFeatures', 'stop-color', 'stop-opacity', 'style', 'systemLanguage' ], + 'svg' => [ 'class', 'clip-path', 'clip-rule', 'filter', 'id', 'height', 'mask', 'preserveAspectRatio', 'requiredFeatures', 'style', 'systemLanguage', 'viewBox', 'width', 'x', 'xmlns', 'xmlns:se', 'xmlns:xlink', 'y' ], + 'switch' => [ 'class', 'id', 'requiredFeatures', 'systemLanguage' ], + 'symbol' => [ 'class', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'font-family', 'font-size', 'font-style', 'font-weight', 'id', 'opacity', 'preserveAspectRatio', 'requiredFeatures', 'stroke', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'style', 'systemLanguage', 'transform', 'viewBox' ], + 'text' => [ 'class', 'clip-path', 'clip-rule', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'font-family', 'font-size', 'font-style', 'font-weight', 'id', 'mask', 'opacity', 'requiredFeatures', 'stroke', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'style', 'systemLanguage', 'text-anchor', 'transform', 'x', 'xml:space', 'y' ], + 'textPath' => [ 'class', 'id', 'method', 'requiredFeatures', 'spacing', 'startOffset', 'style', 'systemLanguage', 'transform', 'xlink:href' ], + 'title' => [ ], + 'tspan' => [ 'class', 'clip-path', 'clip-rule', 'dx', 'dy', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'font-family', 'font-size', 'font-style', 'font-weight', 'id', 'mask', 'opacity', 'requiredFeatures', 'rotate', 'stroke', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'style', 'systemLanguage', 'text-anchor', 'textLength', 'transform', 'x', 'xml:space', 'y' ], + 'use' => [ 'class', 'clip-path', 'clip-rule', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'height', 'id', 'mask', 'stroke', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'style', 'transform', 'width', 'x', 'xlink:href', 'y' ], + ]; + + function __construct() { + $this->xmlDoc = new DOMDocument('1.0','UTF-8'); + $this->xmlDoc->preserveWhiteSpace = false; + libxml_use_internal_errors(true); + } + + // load XML SVG + function load($file) { + $this->xmlDoc->load($file); + } + + function loadXML($str) { + if (! $this->xmlDoc->loadXML($str)) { + logger('loadxml: ' . print_r(libxml_get_errors(),true), LOGGER_DEBUG); + return false; + } + return true; + } + + function sanitize() + { + // all elements in xml doc + $allElements = $this->xmlDoc->getElementsByTagName('*'); + + // loop through all elements + for($i = 0; $i < $allElements->length; $i++) + { + $this->removedattrs = []; + + $currentNode = $allElements->item($i); + + // logger('current_node: ' . print_r($currentNode,true)); + + // array of allowed attributes in specific element + $whitelist_attr_arr = self::$whitelist[$currentNode->tagName]; + + // does element exist in whitelist? + if(isset($whitelist_attr_arr)) { + $total = $currentNode->attributes->length; + + for($x = 0; $x < $total; $x++) { + + // get attributes name + $attrName = $currentNode->attributes->item($x)->nodeName; + + // logger('checking: ' . print_r($currentNode->attributes->item($x),true)); + $matches = false; + + // check if attribute isn't in whitelist + if(! in_array($attrName, $whitelist_attr_arr)) { + $this->removedattrs[] = $attrName; + } + // check for disallowed functions + elseif (preg_match_all('/([a-zA-Z0-9]+)[\s]*\(/', + $currentNode->attributes->item($x)->textContent,$matches,PREG_SET_ORDER)) { + if ($attrName === 'text') { + continue; + } + foreach ($matches as $match) { + if(! in_array($match[1],self::$allowed_functions)) { + logger('queue_remove_function: ' . $match[1],LOGGER_DEBUG); + $this->removedattrs[] = $attrName; + } + } + } + } + if ($this->removedattrs) { + foreach ($this->removedattrs as $attr) { + $currentNode->removeAttribute($attr); + logger('removed: ' . $attr, LOGGER_DEBUG); + } + } + + } + + // else remove element + else { + logger('remove_node: ' . print_r($currentNode,true)); + $currentNode->parentNode->removeChild($currentNode); + } + } + return true; + } + + function saveSVG() { + $this->xmlDoc->formatOutput = true; + return($this->xmlDoc->saveXML()); + } +} diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index cda8eabec..14881844d 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -817,11 +817,6 @@ class Item extends Controller { 'revision' => $r['data']['revision'] ); } - $ext = substr($r['data']['filename'],strrpos($r['data']['filename'],'.')); - if(strpos($r['data']['filetype'],'audio/') !== false) - $attach_link = '[audio]' . z_root() . '/attach/' . $r['data']['hash'] . '/' . $r['data']['revision'] . (($ext) ? $ext : '') . '[/audio]'; - elseif(strpos($r['data']['filetype'],'video/') !== false) - $attach_link = '[video]' . z_root() . '/attach/' . $r['data']['hash'] . '/' . $r['data']['revision'] . (($ext) ? $ext : '') . '[/video]'; $body = str_replace($match[1][$i],$attach_link,$body); $i++; } diff --git a/Zotlabs/Module/Menu.php b/Zotlabs/Module/Menu.php index ee6b45f87..836f6a1d5 100644 --- a/Zotlabs/Module/Menu.php +++ b/Zotlabs/Module/Menu.php @@ -54,9 +54,10 @@ class Menu extends \Zotlabs\Web\Controller { if($_REQUEST['menu_system']) $_REQUEST['menu_flags'] |= MENU_SYSTEM; - $menu_id = ((argc() > 1) ? intval(argv(1)) : 0); + $menu_id = ((argc() > 2) ? intval(argv(2)) : 0); + if($menu_id) { - $_REQUEST['menu_id'] = intval(argv(1)); + $_REQUEST['menu_id'] = $menu_id; $r = menu_edit($_REQUEST); if($r) { menu_sync_packet($uid,get_observer_hash(),$menu_id); diff --git a/Zotlabs/Module/Wall_attach.php b/Zotlabs/Module/Wall_attach.php index 0ede3ad90..e1088d18f 100644 --- a/Zotlabs/Module/Wall_attach.php +++ b/Zotlabs/Module/Wall_attach.php @@ -86,7 +86,7 @@ class Wall_attach extends \Zotlabs\Web\Controller { $def_attach = get_pconfig($channel['channel_id'],'system','attach_path'); $r = attach_store($channel,(($observer) ? $observer['xchan_hash'] : ''),'', array('source' => 'editor', 'visible' => 0, 'album' => $def_album, 'directory' => $def_attach, 'allow_cid' => '<' . $channel['channel_hash'] . '>')); - + if(! $r['success']) { notice( $r['message'] . EOL); killme(); @@ -111,9 +111,24 @@ class Wall_attach extends \Zotlabs\Web\Controller { } if(strpos($r['data']['filetype'],'audio') === 0) { $url = z_root() . '/cloud/' . $channel['channel_address'] . '/' . $r['data']['display_path']; - echo "\n\n" . '[zaudio]' . $url . '[/zaudio]' . "\n\n"; + $s = "\n\n" . '[zaudio]' . $url . '[/zaudio]' . "\n\n"; + } + if ($r['data']['filetype'] === 'image/svg+xml') { + $x = @file_get_contents('store/' . $channel['channel_address'] . '/' . $r['data']['os_path']); + if ($x) { + $bb = svg2bb($x); + if ($bb) { + $s .= "\n\n" . $bb; + } + else { + logger('empty return from svgbb'); + } + } + else { + logger('unable to read svg data file: ' . 'store/' . $channel['channel_address'] . '/' . $r['data']['os_path']); + } } - + $s .= "\n\n" . '[attachment]' . $r['data']['hash'] . ',' . $r['data']['revision'] . '[/attachment]' . "\n"; } diff --git a/composer.lock b/composer.lock index 1edaf585e..b4c8b9381 100644 --- a/composer.lock +++ b/composer.lock @@ -204,16 +204,16 @@ }, { "name": "ezyang/htmlpurifier", - "version": "v4.11.0", + "version": "v4.12.0", "source": { "type": "git", "url": "https://github.com/ezyang/htmlpurifier.git", - "reference": "83ab08bc1af7d808a9e0fbf024f1c24bfd73c0a7" + "reference": "a617e55bc62a87eec73bd456d146d134ad716f03" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/83ab08bc1af7d808a9e0fbf024f1c24bfd73c0a7", - "reference": "83ab08bc1af7d808a9e0fbf024f1c24bfd73c0a7", + "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/a617e55bc62a87eec73bd456d146d134ad716f03", + "reference": "a617e55bc62a87eec73bd456d146d134ad716f03", "shasum": "" }, "require": { @@ -247,20 +247,20 @@ "keywords": [ "html" ], - "time": "2019-07-14T18:58:38+00:00" + "time": "2019-10-28T03:44:26+00:00" }, { "name": "league/html-to-markdown", - "version": "4.8.2", + "version": "4.9.0", "source": { "type": "git", "url": "https://github.com/thephpleague/html-to-markdown.git", - "reference": "e747489191f8e9144a7270eb61f8b9516e99e413" + "reference": "71319108e3db506250b8987721b13568fd9fa446" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/html-to-markdown/zipball/e747489191f8e9144a7270eb61f8b9516e99e413", - "reference": "e747489191f8e9144a7270eb61f8b9516e99e413", + "url": "https://api.github.com/repos/thephpleague/html-to-markdown/zipball/71319108e3db506250b8987721b13568fd9fa446", + "reference": "71319108e3db506250b8987721b13568fd9fa446", "shasum": "" }, "require": { @@ -270,7 +270,7 @@ }, "require-dev": { "mikehaertl/php-shellcommand": "~1.1.0", - "phpunit/phpunit": "4.*", + "phpunit/phpunit": "^4.8|^5.7", "scrutinizer/ocular": "~1.1" }, "bin": [ @@ -279,7 +279,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.9-dev" + "dev-master": "4.10-dev" } }, "autoload": { @@ -311,7 +311,7 @@ "html", "markdown" ], - "time": "2019-08-02T11:57:39+00:00" + "time": "2019-11-02T14:54:14+00:00" }, { "name": "lukasreschke/id3parser", @@ -485,16 +485,16 @@ }, { "name": "psr/log", - "version": "1.1.0", + "version": "1.1.2", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd" + "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", - "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", + "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801", + "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801", "shasum": "" }, "require": { @@ -503,7 +503,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.1.x-dev" } }, "autoload": { @@ -528,7 +528,7 @@ "psr", "psr-3" ], - "time": "2018-11-20T15:27:04+00:00" + "time": "2019-11-01T11:05:21+00:00" }, { "name": "ramsey/uuid", diff --git a/doc/hook/comments_are_now_closed.bb b/doc/hook/comments_are_now_closed.bb new file mode 100644 index 000000000..4d3baa95a --- /dev/null +++ b/doc/hook/comments_are_now_closed.bb @@ -0,0 +1,11 @@ +[h3]comments_are_now_closed[/h3] + +Called when deciding whether or not commenting is closed for an item. + + +Hook data (array): + item => posted item + closed => 'unset' + + +To over-ride the default behaviour, change closed to true or false diff --git a/doc/hooklist.bb b/doc/hooklist.bb index e11bf1c6f..a923e7ae3 100644 --- a/doc/hooklist.bb +++ b/doc/hooklist.bb @@ -154,6 +154,9 @@ Hooks allow plugins/addons to "hook into" the code at many points and alter the [zrl=[baseurl]/help/hook/comment_buttons]comment_buttons[/zrl] Called when rendering the edit buttons for comments +[zrl=[baseurl]/help/hook/comments_are_now_closed]comments_are_now_closed[/zrl] + Called when deciding whether or not to present a comment box for a post + [zrl=[baseurl]/help/hook/connect_premium]connect_premium[/zrl] Called when connecting to a premium channel diff --git a/include/bbcode.php b/include/bbcode.php index bb9144b1d..c7dea53c5 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -4,6 +4,8 @@ * @brief BBCode related functions for parsing, etc. */ +use Zotlabs\Lib\SvgSanitizer; + require_once('include/oembed.php'); require_once('include/event.php'); require_once('include/zot.php'); @@ -267,6 +269,22 @@ function bb_parse_app($match) { return Zotlabs\Lib\Apps::app_render($app); } +function bb_svg($match) { + + $params = str_replace(['<br>', '"'], [ '', '"'],$match[1]); + $Text = str_replace([ '[',']' ], [ '<','>' ], $match[2]); + + $output = '<svg' . (($params) ? $params : ' width="100%" height="480" ') . '>' . str_replace(['<br>', '"', ' '], [ '', '"', ' '],$Text) . '</svg>'; + + $purify = new SvgSanitizer(); + $purify->loadXML($output); + $purify->sanitize(); + $output = $purify->saveSVG(); + $output = preg_replace("/\<\?xml(.*?)\?\>/",'',$output); + return $output; +} + + function bb_parse_element($match) { $j = json_decode(base64url_decode($match[1]),true); @@ -948,9 +966,9 @@ function bbcode($Text, $options = []) { if (strpos($Text,'http') !== false) { if($tryoembed) { - $Text = preg_replace_callback("/([^\]\='".'"'."\/]|^|\#\^)(https?\:\/\/$urlchars+)/ismu", 'tryoembed', $Text); + $Text = preg_replace_callback("/([^\]\='".'"'."\;\/]|^|\#\^)(https?\:\/\/$urlchars+)/ismu", 'tryoembed', $Text); } - $Text = preg_replace("/([^\]\='".'"'."\/]|^|\#\^)(https?\:\/\/$urlchars+)/ismu", '$1<a href="$2" ' . $target . ' rel="nofollow noopener">$2</a>', $Text); + $Text = preg_replace("/([^\]\='".'"'."\;\/]|^|\#\^)(https?\:\/\/$urlchars+)/ismu", '$1<a href="$2" ' . $target . ' rel="nofollow noopener">$2</a>', $Text); } if (strpos($Text,'[/share]') !== false) { @@ -1289,6 +1307,9 @@ function bbcode($Text, $options = []) { $Text = preg_replace_callback("/\[zaudio\](.*?\.(ogg|ogv|oga|ogm|webm|mp4|mp3|opus|m4a))\[\/zaudio\]/ism", 'tryzrlaudio', $Text); } + // SVG stuff + $Text = preg_replace_callback("/\[svg(.*?)\](.*?)\[\/svg\]/ism", 'bb_svg', $Text); + // Try to Oembed if ($tryoembed) { if (strpos($Text,'[/video]') !== false) { diff --git a/include/follow.php b/include/follow.php index 50b952881..a4d382545 100644 --- a/include/follow.php +++ b/include/follow.php @@ -142,7 +142,7 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) $sql_options = (($protocol) ? " and xchan_network = '" . dbesc($protocol) . "' " : ''); - $r = q("select * from xchan where xchan_hash = '%s' or xchan_url = '%s' $sql_options ", + $r = q("select * from xchan where (xchan_addr = '%s' or xchan_url = '%s') $sql_options ", dbesc($url), dbesc($url) ); diff --git a/include/items.php b/include/items.php index 6786b8b05..917808ad5 100755 --- a/include/items.php +++ b/include/items.php @@ -206,6 +206,25 @@ function collect_recipients($item, &$private_envelope,$include_groups = true) { } function comments_are_now_closed($item) { + + $x = [ + 'item' => $item, + 'closed' => 'unset' + ]; + + /** + * @hooks comments_are_now_closed + * Called to determine whether commenting should be closed + * * \e array \b item + * * \e boolean \b closed - return value + */ + + call_hooks('comments_are_now_closed', $x); + + if ($x['closed'] != 'unset') { + return $x['closed']; + } + if($item['comments_closed'] > NULL_DATE) { $d = datetime_convert(); if($d > $item['comments_closed']) diff --git a/include/markdown.php b/include/markdown.php index 213986867..69cc264df 100644 --- a/include/markdown.php +++ b/include/markdown.php @@ -246,6 +246,9 @@ function bb_to_markdown($Text, $options = []) { call_hooks('bb_to_markdown_bb', $x); $Text = $x['bbcode']; + + // Replace spoiler tag before BBcode conversion + $Text = preg_replace("/\[\/?spoiler\]/is", "\n--- " .t('spoiler') . " ---\n", $Text); // Convert it to HTML - don't try oembed $Text = bbcode($Text, [ 'tryoembed' => false ]); @@ -265,8 +268,8 @@ function bb_to_markdown($Text, $options = []) { // Remove empty zrl links $Text = preg_replace("/\[zrl\=\].*?\[\/zrl\]/is", "", $Text); - // Remove unprocessed spoiler HTML tags - $Text = preg_replace("/<div.+>([^<]+)<.+>(>.+)$/im", "$1\n$2", $Text); + // Replace unprocessed <br> in code + $Text = str_replace("<br></br>", "\n", $Text); $Text = trim($Text); diff --git a/include/text.php b/include/text.php index 54ad9ec7a..daa3c4c94 100644 --- a/include/text.php +++ b/include/text.php @@ -9,6 +9,8 @@ use Michelf\MarkdownExtra; use Ramsey\Uuid\Uuid; use Ramsey\Uuid\Exception\UnsatisfiedDependencyException; +use Zotlabs\Lib\SvgSanitizer; + require_once("include/bbcode.php"); // random string, there are 86 characters max in text mode, 128 for hex @@ -842,9 +844,9 @@ function get_tags($s) { $ret = array(); $match = array(); - // ignore anything in a code block - + // ignore anything in a code or svg block $s = preg_replace('/\[code(.*?)\](.*?)\[\/code\]/sm','',$s); + $s = preg_replace('/\[svg(.*?)\](.*?)\[\/svg\]/sm','',$s); // ignore anything in [style= ] $s = preg_replace('/\[style=(.*?)\]/sm','',$s); @@ -3412,18 +3414,20 @@ function cleanup_bbcode($body) { $body = preg_replace_callback('/\[code(.*?)\[\/(code)\]/ism','\red_escape_codeblock',$body); $body = preg_replace_callback('/\[url(.*?)\[\/(url)\]/ism','\red_escape_codeblock',$body); $body = preg_replace_callback('/\[zrl(.*?)\[\/(zrl)\]/ism','\red_escape_codeblock',$body); + $body = preg_replace_callback('/\[svg(.*?)\[\/(svg)\]/ism','\red_escape_codeblock',$body); - $body = preg_replace_callback("/([^\]\='".'"'."\/\{]|^|\#\^)(https?\:\/\/[a-zA-Z0-9\pL\:\/\-\?\&\;\.\=\@\_\~\#\%\$\!\\ + $body = preg_replace_callback("/([^\]\='".'"'."\;\/\{]|^|\#\^)(https?\:\/\/[a-zA-Z0-9\pL\:\/\-\?\&\;\.\=\@\_\~\#\%\$\!\\ +\,\(\)]+)/ismu", '\nakedoembed', $body); - $body = preg_replace_callback("/([^\]\='".'"'."\/\{]|^|\#\^)(https?\:\/\/[a-zA-Z0-9\pL\:\/\-\?\&\;\.\=\@\_\~\#\%\$\!\\ + $body = preg_replace_callback("/([^\]\='".'"'."\;\/\{]|^|\#\^)(https?\:\/\/[a-zA-Z0-9\pL\:\/\-\?\&\;\.\=\@\_\~\#\%\$\!\\ +\,\(\)]+)/ismu", '\red_zrl_callback', $body); $body = preg_replace_callback('/\[\$b64zrl(.*?)\[\/(zrl)\]/ism','\red_unescape_codeblock',$body); $body = preg_replace_callback('/\[\$b64url(.*?)\[\/(url)\]/ism','\red_unescape_codeblock',$body); $body = preg_replace_callback('/\[\$b64code(.*?)\[\/(code)\]/ism','\red_unescape_codeblock',$body); - + $body = preg_replace_callback('/\[\$b64svg(.*?)\[\/(svg)\]/ism','\red_unescape_codeblock',$body); + // fix any img tags that should be zmg $body = preg_replace_callback('/\[img(.*?)\](.*?)\[\/img\]/ism','\red_zrlify_img_callback',$body); @@ -3648,3 +3652,23 @@ function new_uuid() { return $hash; } + + +function svg2bb($s) { + + $s = preg_replace("/\<text (.*?)\>(.*?)\<(.*?)\<\/text\>/", '<text $1>$2<$3</text>', $s); + $s = preg_replace("/\<text (.*?)\>(.*?)\>(.*?)\<\/text\>/", '<text $1>$2>$3</text>', $s); + $s = preg_replace("/\<text (.*?)\>(.*?)\[(.*?)\<\/text\>/", '<text $1>$2[$3</text>', $s); + $s = preg_replace("/\<text (.*?)\>(.*?)\](.*?)\<\/text\>/", '<text $1>$2]$3</text>', $s); + $s = utf8_encode($s); + $purify = new SvgSanitizer(); + if ($purify->loadXML($s)) { + $purify->sanitize(); + $output = $purify->saveSVG(); + $output = preg_replace("/\<\?xml(.*?)\>/",'',$output); + $output = preg_replace("/\<\!\-\-(.*?)\-\-\>/",'',$output); + $output = str_replace(['<','>'],['[',']'],$output); + return $output; + } + return EMPTY_STR; +} diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index c006debcd..86f96c432 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -380,6 +380,9 @@ return array( 'Psr\\Log\\LoggerInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerInterface.php', 'Psr\\Log\\LoggerTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerTrait.php', 'Psr\\Log\\NullLogger' => $vendorDir . '/psr/log/Psr/Log/NullLogger.php', + 'Psr\\Log\\Test\\DummyTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', + 'Psr\\Log\\Test\\LoggerInterfaceTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', + 'Psr\\Log\\Test\\TestLogger' => $vendorDir . '/psr/log/Psr/Log/Test/TestLogger.php', 'Ramsey\\Uuid\\BinaryUtils' => $vendorDir . '/ramsey/uuid/src/BinaryUtils.php', 'Ramsey\\Uuid\\Builder\\DefaultUuidBuilder' => $vendorDir . '/ramsey/uuid/src/Builder/DefaultUuidBuilder.php', 'Ramsey\\Uuid\\Builder\\DegradedUuidBuilder' => $vendorDir . '/ramsey/uuid/src/Builder/DegradedUuidBuilder.php', diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 2c9c7dd96..107cc6a61 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -548,6 +548,9 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Psr\\Log\\LoggerInterface' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerInterface.php', 'Psr\\Log\\LoggerTrait' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerTrait.php', 'Psr\\Log\\NullLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/NullLogger.php', + 'Psr\\Log\\Test\\DummyTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', + 'Psr\\Log\\Test\\LoggerInterfaceTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', + 'Psr\\Log\\Test\\TestLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/TestLogger.php', 'Ramsey\\Uuid\\BinaryUtils' => __DIR__ . '/..' . '/ramsey/uuid/src/BinaryUtils.php', 'Ramsey\\Uuid\\Builder\\DefaultUuidBuilder' => __DIR__ . '/..' . '/ramsey/uuid/src/Builder/DefaultUuidBuilder.php', 'Ramsey\\Uuid\\Builder\\DegradedUuidBuilder' => __DIR__ . '/..' . '/ramsey/uuid/src/Builder/DegradedUuidBuilder.php', diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 9e099b5e9..cd3f3cadf 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -205,17 +205,17 @@ }, { "name": "ezyang/htmlpurifier", - "version": "v4.11.0", - "version_normalized": "4.11.0.0", + "version": "v4.12.0", + "version_normalized": "4.12.0.0", "source": { "type": "git", "url": "https://github.com/ezyang/htmlpurifier.git", - "reference": "83ab08bc1af7d808a9e0fbf024f1c24bfd73c0a7" + "reference": "a617e55bc62a87eec73bd456d146d134ad716f03" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/83ab08bc1af7d808a9e0fbf024f1c24bfd73c0a7", - "reference": "83ab08bc1af7d808a9e0fbf024f1c24bfd73c0a7", + "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/a617e55bc62a87eec73bd456d146d134ad716f03", + "reference": "a617e55bc62a87eec73bd456d146d134ad716f03", "shasum": "" }, "require": { @@ -224,7 +224,7 @@ "require-dev": { "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd" }, - "time": "2019-07-14T18:58:38+00:00", + "time": "2019-10-28T03:44:26+00:00", "type": "library", "installation-source": "dist", "autoload": { @@ -254,17 +254,17 @@ }, { "name": "league/html-to-markdown", - "version": "4.8.2", - "version_normalized": "4.8.2.0", + "version": "4.9.0", + "version_normalized": "4.9.0.0", "source": { "type": "git", "url": "https://github.com/thephpleague/html-to-markdown.git", - "reference": "e747489191f8e9144a7270eb61f8b9516e99e413" + "reference": "71319108e3db506250b8987721b13568fd9fa446" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/html-to-markdown/zipball/e747489191f8e9144a7270eb61f8b9516e99e413", - "reference": "e747489191f8e9144a7270eb61f8b9516e99e413", + "url": "https://api.github.com/repos/thephpleague/html-to-markdown/zipball/71319108e3db506250b8987721b13568fd9fa446", + "reference": "71319108e3db506250b8987721b13568fd9fa446", "shasum": "" }, "require": { @@ -274,17 +274,17 @@ }, "require-dev": { "mikehaertl/php-shellcommand": "~1.1.0", - "phpunit/phpunit": "4.*", + "phpunit/phpunit": "^4.8|^5.7", "scrutinizer/ocular": "~1.1" }, - "time": "2019-08-02T11:57:39+00:00", + "time": "2019-11-02T14:54:14+00:00", "bin": [ "bin/html-to-markdown" ], "type": "library", "extra": { "branch-alias": { - "dev-master": "4.9-dev" + "dev-master": "4.10-dev" } }, "installation-source": "dist", @@ -498,27 +498,27 @@ }, { "name": "psr/log", - "version": "1.1.0", - "version_normalized": "1.1.0.0", + "version": "1.1.2", + "version_normalized": "1.1.2.0", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd" + "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", - "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", + "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801", + "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801", "shasum": "" }, "require": { "php": ">=5.3.0" }, - "time": "2018-11-20T15:27:04+00:00", + "time": "2019-11-01T11:05:21+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.1.x-dev" } }, "installation-source": "dist", diff --git a/vendor/ezyang/htmlpurifier/NEWS b/vendor/ezyang/htmlpurifier/NEWS index de2f2782e..352835012 100644 --- a/vendor/ezyang/htmlpurifier/NEWS +++ b/vendor/ezyang/htmlpurifier/NEWS @@ -9,6 +9,12 @@ NEWS ( CHANGELOG and HISTORY ) HTMLPurifier . Internal change ========================== +4.12.0, released 2019-10-27 +! PHP 7.4 is supported, thank you Witold Wasiczko, Mateuz Turcza and + Edi ModriÄ +- PHPDocs for HTMLModule::addElement() and Bool attr are fixed (thanks + Mateusz) + 4.11.0, released 2019-07-14 # SafeScripting now matches case-sensitively against its whitelist (previously it was case-insensitive.) Thanks Dimitri Gritsajuk <gritsajuk.dimitri@gmail.com> diff --git a/vendor/ezyang/htmlpurifier/VERSION b/vendor/ezyang/htmlpurifier/VERSION index 91f3b4384..bcd250ed0 100644 --- a/vendor/ezyang/htmlpurifier/VERSION +++ b/vendor/ezyang/htmlpurifier/VERSION @@ -1 +1 @@ -4.11.0
\ No newline at end of file +4.12.0
\ No newline at end of file diff --git a/vendor/ezyang/htmlpurifier/WHATSNEW b/vendor/ezyang/htmlpurifier/WHATSNEW index d34a27f54..aec9b37c1 100644 --- a/vendor/ezyang/htmlpurifier/WHATSNEW +++ b/vendor/ezyang/htmlpurifier/WHATSNEW @@ -1,7 +1,2 @@ -HTML Purifier 4.11.x is a maintenance release, collecting a year -and a half of accumulated bug fixes. Most notable fixes are -compatibility with PHP 7.3, and case-sensitive matching for -the SafeScripting whitelist. There are a number small feature -enhancements, including an expanded supported color list, -initial and inherit support for {min-,max-,}{width,height} -and multidimensional array support for purifyArray. +HTML Purifier 4.12.x is a maintenance release which makes +compatibility fixes for PHP 7.4. diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier.includes.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier.includes.php index c88c55989..3158b2b86 100644 --- a/vendor/ezyang/htmlpurifier/library/HTMLPurifier.includes.php +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier.includes.php @@ -7,7 +7,7 @@ * primary concern and you are using an opcode cache. PLEASE DO NOT EDIT THIS * FILE, changes will be overwritten the next time the script is run. * - * @version 4.11.0 + * @version 4.12.0 * * @warning * You must *not* include any other HTML Purifier files before this file, diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier.php index 0bd2a3ba6..58bbddb02 100644 --- a/vendor/ezyang/htmlpurifier/library/HTMLPurifier.php +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier.php @@ -19,7 +19,7 @@ */ /* - HTML Purifier 4.11.0 - Standards Compliant HTML Filtering + HTML Purifier 4.12.0 - Standards Compliant HTML Filtering Copyright (C) 2006-2008 Edward Z. Yang This library is free software; you can redistribute it and/or @@ -58,12 +58,12 @@ class HTMLPurifier * Version of HTML Purifier. * @type string */ - public $version = '4.11.0'; + public $version = '4.12.0'; /** * Constant with version of HTML Purifier. */ - const VERSION = '4.11.0'; + const VERSION = '4.12.0'; /** * Global configuration object. diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php index dea15d2cd..be3bbc8dc 100644 --- a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php @@ -7,7 +7,7 @@ class HTMLPurifier_AttrDef_HTML_Bool extends HTMLPurifier_AttrDef { /** - * @type bool + * @type string */ protected $name; @@ -17,7 +17,7 @@ class HTMLPurifier_AttrDef_HTML_Bool extends HTMLPurifier_AttrDef public $minimized = true; /** - * @param bool $name + * @param bool|string $name */ public function __construct($name = false) { diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php index 128132e96..f515888a1 100644 --- a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php @@ -45,7 +45,7 @@ class HTMLPurifier_ChildDef_Custom extends HTMLPurifier_ChildDef protected function _compileRegex() { $raw = str_replace(' ', '', $this->dtd_regex); - if ($raw{0} != '(') { + if ($raw[0] != '(') { $raw = "($raw)"; } $el = '[#a-zA-Z0-9_.-]+'; diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Config.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Config.php index 21e8cd768..f569d40c9 100644 --- a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Config.php +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Config.php @@ -21,7 +21,7 @@ class HTMLPurifier_Config * HTML Purifier's version * @type string */ - public $version = '4.11.0'; + public $version = '4.12.0'; /** * Whether or not to automatically finalize diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Encoder.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Encoder.php index b94f17542..40a24266a 100644 --- a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Encoder.php +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Encoder.php @@ -159,7 +159,7 @@ class HTMLPurifier_Encoder $len = strlen($str); for ($i = 0; $i < $len; $i++) { - $in = ord($str{$i}); + $in = ord($str[$i]); $char .= $str[$i]; // append byte to char if (0 == $mState) { // When mState is zero we expect either a US-ASCII character diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule.php index bb3a9230b..6d898f80c 100644 --- a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule.php +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule.php @@ -132,9 +132,9 @@ class HTMLPurifier_HTMLModule * @param string $element Name of element to add * @param string|bool $type What content set should element be registered to? * Set as false to skip this step. - * @param string $contents Allowed children in form of: + * @param string|HTMLPurifier_ChildDef $contents Allowed children in form of: * "$content_model_type: $content_model" - * @param array $attr_includes What attribute collections to register to + * @param array|string $attr_includes What attribute collections to register to * element? * @param array $attr What unique attributes does the element define? * @see HTMLPurifier_ElementDef:: for in-depth descriptions of these parameters. diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/DOMLex.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/DOMLex.php index b573426de..ca5f25b84 100644 --- a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/DOMLex.php +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/DOMLex.php @@ -74,7 +74,12 @@ class HTMLPurifier_Lexer_DOMLex extends HTMLPurifier_Lexer } set_error_handler(array($this, 'muteErrorHandler')); - $doc->loadHTML($html, $options); + // loadHTML() fails on PHP 5.3 when second parameter is given + if ($options) { + $doc->loadHTML($html, $options); + } else { + $doc->loadHTML($html); + } restore_error_handler(); $body = $doc->getElementsByTagName('html')->item(0)-> // <html> diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php index 7853d90bc..768c9b153 100644 --- a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php @@ -75,7 +75,7 @@ class HTMLPurifier_TagTransform_Font extends HTMLPurifier_TagTransform if (isset($attr['size'])) { // normalize large numbers if ($attr['size'] !== '') { - if ($attr['size']{0} == '+' || $attr['size']{0} == '-') { + if ($attr['size'][0] == '+' || $attr['size'][0] == '-') { $size = (int)$attr['size']; if ($size < -2) { $attr['size'] = '-2'; diff --git a/vendor/league/html-to-markdown/.github/FUNDING.yml b/vendor/league/html-to-markdown/.github/FUNDING.yml index 09cdff5da..40a26fbff 100644 --- a/vendor/league/html-to-markdown/.github/FUNDING.yml +++ b/vendor/league/html-to-markdown/.github/FUNDING.yml @@ -1 +1,2 @@ +github: colinodell patreon: colinodell diff --git a/vendor/league/html-to-markdown/CHANGELOG.md b/vendor/league/html-to-markdown/CHANGELOG.md index 8f131fc46..ded540682 100644 --- a/vendor/league/html-to-markdown/CHANGELOG.md +++ b/vendor/league/html-to-markdown/CHANGELOG.md @@ -4,6 +4,14 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip ## [Unreleased][unreleased] +## [4.9.0] - 2019-11-02 +## Added + - Added new option to preserve comments (#177, #179) + +## [4.8.3] - 2019-10-31 +### Fixed + - Fixed whitespace preservation around `<code>` tags (#174, #178) + ## [4.8.2] - 2019-08-02 ### Fixed - Fixed headers not being placed onto a new line in some cases (#172) @@ -251,7 +259,9 @@ not ideally set, so this releases fixes that. Moving forwards this should reduce ### Added - Initial release -[unreleased]: https://github.com/thephpleague/html-to-markdown/compare/4.8.2...master +[unreleased]: https://github.com/thephpleague/html-to-markdown/compare/4.9.0...master +[4.9.0]: https://github.com/thephpleague/html-to-markdown/compare/4.8.3...4.9.0 +[4.8.3]: https://github.com/thephpleague/html-to-markdown/compare/4.8.2...4.8.3 [4.8.2]: https://github.com/thephpleague/html-to-markdown/compare/4.8.1...4.8.2 [4.8.1]: https://github.com/thephpleague/html-to-markdown/compare/4.8.0...4.8.1 [4.8.0]: https://github.com/thephpleague/html-to-markdown/compare/4.7.0...4.8.0 diff --git a/vendor/league/html-to-markdown/README.md b/vendor/league/html-to-markdown/README.md index ab80541e6..c7ae2dcab 100644 --- a/vendor/league/html-to-markdown/README.md +++ b/vendor/league/html-to-markdown/README.md @@ -28,7 +28,7 @@ Typically you would convert HTML to Markdown if: 1. You have an existing HTML document that needs to be edited by people with good taste. 2. You want to store new content in HTML format but edit it as Markdown. -3. You want to convert HTML email to plain text email. +3. You want to convert HTML email to plain text email. 4. You know a guy who's been converting HTML to Markdown for years, and now he can speak Elvish. You'd quite like to be able to speak Elvish. 5. You just really like Markdown. @@ -95,6 +95,24 @@ $html = '<span>Turnips!</span><div>Monkeys!</div>'; $markdown = $converter->convert($html); // $markdown now contains "" ``` +By default, all comments are stripped from the content. To preserve them, use the `preserve_comments` option, like this: + +```php +$converter = new HtmlConverter(array('preserve_comments' => true)); + +$html = '<span>Turnips!</span><!-- Monkeys! -->'; +$markdown = $converter->convert($html); // $markdown now contains "Turnips!<!-- Monkeys! -->" +``` + +To preserve only specific comments, set `preserve_comments` with an array of strings, like this: + +```php +$converter = new HtmlConverter(array('preserve_comments' => array('Eggs!'))); + +$html = '<span>Turnips!</span><!-- Monkeys! --><!-- Eggs! -->'; +$markdown = $converter->convert($html); // $markdown now contains "Turnips!<!-- Eggs! -->" +``` + ### Style options By default bold tags are converted using the asterisk syntax, and italic tags are converted using the underlined syntax. Change these by using the `bold_style` and `italic_style` options. @@ -161,7 +179,7 @@ $markdown = $converter->convert($html); // $markdown now contains "### Header" a Headers of H3 priority and lower always use atx style. -- Links and images are referenced inline. Footnote references (where image src and anchor href attributes are listed in the footnotes) are not used. +- Links and images are referenced inline. Footnote references (where image src and anchor href attributes are listed in the footnotes) are not used. - Blockquotes aren't line wrapped â it makes the converted Markdown easier to edit. ### Dependencies @@ -193,4 +211,3 @@ Use one of these great libraries: - [Parsedown](https://github.com/erusev/parsedown) No guarantees about the Elvish, though. - diff --git a/vendor/league/html-to-markdown/composer.json b/vendor/league/html-to-markdown/composer.json index 53403916e..7990bcace 100644 --- a/vendor/league/html-to-markdown/composer.json +++ b/vendor/league/html-to-markdown/composer.json @@ -36,13 +36,13 @@ }, "require-dev": { "mikehaertl/php-shellcommand": "~1.1.0", - "phpunit/phpunit": "4.*", + "phpunit/phpunit": "^4.8|^5.7", "scrutinizer/ocular": "~1.1" }, "bin": ["bin/html-to-markdown"], "extra": { "branch-alias": { - "dev-master": "4.9-dev" + "dev-master": "4.10-dev" } } } diff --git a/vendor/league/html-to-markdown/src/Converter/CommentConverter.php b/vendor/league/html-to-markdown/src/Converter/CommentConverter.php index 55038b254..959381d1b 100644 --- a/vendor/league/html-to-markdown/src/Converter/CommentConverter.php +++ b/vendor/league/html-to-markdown/src/Converter/CommentConverter.php @@ -2,17 +2,35 @@ namespace League\HTMLToMarkdown\Converter; +use League\HTMLToMarkdown\Configuration; +use League\HTMLToMarkdown\ConfigurationAwareInterface; use League\HTMLToMarkdown\ElementInterface; -class CommentConverter implements ConverterInterface +class CommentConverter implements ConverterInterface, ConfigurationAwareInterface { /** + * @var Configuration + */ + protected $config; + + /** + * @param Configuration $config + */ + public function setConfig(Configuration $config) + { + $this->config = $config; + } + + /** * @param ElementInterface $element * * @return string */ public function convert(ElementInterface $element) { + if ($this->shouldPreserve($element)) { + return '<!--' . $element->getValue() . '-->'; + } return ''; } @@ -23,4 +41,22 @@ class CommentConverter implements ConverterInterface { return array('#comment'); } + + /** + * @param ElementInterface $element + * + * @return bool + */ + private function shouldPreserve(ElementInterface $element) + { + $preserve = $this->config->getOption('preserve_comments'); + if ($preserve === true) { + return true; + } + if (is_array($preserve)) { + $value = trim($element->getValue()); + return in_array($value, $preserve); + } + return false; + } } diff --git a/vendor/league/html-to-markdown/src/Element.php b/vendor/league/html-to-markdown/src/Element.php index e1e9d1a09..80ae7a911 100644 --- a/vendor/league/html-to-markdown/src/Element.php +++ b/vendor/league/html-to-markdown/src/Element.php @@ -27,7 +27,6 @@ class Element implements ElementInterface switch ($this->getTagName()) { case 'blockquote': case 'body': - case 'code': case 'div': case 'h1': case 'h2': diff --git a/vendor/league/html-to-markdown/src/HtmlConverter.php b/vendor/league/html-to-markdown/src/HtmlConverter.php index 3381e1e1e..846131af6 100644 --- a/vendor/league/html-to-markdown/src/HtmlConverter.php +++ b/vendor/league/html-to-markdown/src/HtmlConverter.php @@ -40,6 +40,7 @@ class HtmlConverter implements HtmlConverterInterface 'remove_nodes' => '', // space-separated list of dom nodes that should be removed. example: 'meta style script' 'hard_break' => false, // Set to true to turn <br> into `\n` instead of ` \n` 'list_item_style' => '-', // Set the default character for each <li> in a <ul>. Can be '-', '*', or '+' + 'preserve_comments' => false, // Set to true to preserve comments, or set to an array of strings to preserve specific comments ); $this->environment = Environment::createDefaultEnvironment($defaults); @@ -229,13 +230,13 @@ class HtmlConverter implements HtmlConverterInterface return trim($markdown, "\n\r\0\x0B"); } - + /** * Pass a series of key-value pairs in an array; these will be passed * through the config and set. * The advantage of this is that it can allow for static use (IE in Laravel). * An example being: - * + * * HtmlConverter::setOptions(['strip_tags' => true])->convert('<h1>test</h1>'); */ public function setOptions(array $options) diff --git a/vendor/psr/log/Psr/Log/LoggerInterface.php b/vendor/psr/log/Psr/Log/LoggerInterface.php index 5ea72438b..e695046e3 100644 --- a/vendor/psr/log/Psr/Log/LoggerInterface.php +++ b/vendor/psr/log/Psr/Log/LoggerInterface.php @@ -118,6 +118,8 @@ interface LoggerInterface * @param array $context * * @return void + * + * @throws \Psr\Log\InvalidArgumentException */ public function log($level, $message, array $context = array()); } diff --git a/vendor/psr/log/Psr/Log/LoggerTrait.php b/vendor/psr/log/Psr/Log/LoggerTrait.php index 867225df1..e392fef0a 100644 --- a/vendor/psr/log/Psr/Log/LoggerTrait.php +++ b/vendor/psr/log/Psr/Log/LoggerTrait.php @@ -135,6 +135,8 @@ trait LoggerTrait * @param array $context * * @return void + * + * @throws \Psr\Log\InvalidArgumentException */ abstract public function log($level, $message, array $context = array()); } diff --git a/vendor/psr/log/Psr/Log/NullLogger.php b/vendor/psr/log/Psr/Log/NullLogger.php index d8cd682c8..c8f7293b1 100644 --- a/vendor/psr/log/Psr/Log/NullLogger.php +++ b/vendor/psr/log/Psr/Log/NullLogger.php @@ -20,6 +20,8 @@ class NullLogger extends AbstractLogger * @param array $context * * @return void + * + * @throws \Psr\Log\InvalidArgumentException */ public function log($level, $message, array $context = array()) { diff --git a/vendor/psr/log/README.md b/vendor/psr/log/README.md index 5571a25e8..a9f20c437 100644 --- a/vendor/psr/log/README.md +++ b/vendor/psr/log/README.md @@ -38,6 +38,12 @@ class Foo if ($this->logger) { $this->logger->info('Doing work'); } + + try { + $this->doSomethingElse(); + } catch (Exception $exception) { + $this->logger->error('Oh no!', array('exception' => $exception)); + } // do something useful } diff --git a/vendor/psr/log/composer.json b/vendor/psr/log/composer.json index 87934d707..3f6d4eea4 100644 --- a/vendor/psr/log/composer.json +++ b/vendor/psr/log/composer.json @@ -20,7 +20,7 @@ }, "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.1.x-dev" } } } diff --git a/view/css/mod_admin.css b/view/css/mod_admin.css index 5e22fc90c..409744402 100644 --- a/view/css/mod_admin.css +++ b/view/css/mod_admin.css @@ -70,21 +70,3 @@ margin-top: 0px !important; margin-left: 0px !important; } - -pre code { - background: #F5F5F5; - font-family: Courier, monospace; - font-size: 1em; - padding: 1em 1.5em; - display: block; - white-space: pre-wrap; -} - -code { - background: #F5F5F5; - font-family: Courier, monospace; - font-size: 1em; - display: inline; - padding: 0.2em 0.2em; - white-space: pre-wrap; -}
\ No newline at end of file diff --git a/view/ja/.gitkeep b/view/ja/.gitkeep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/view/ja/.gitkeep diff --git a/view/ja/hmessages.po b/view/ja/hmessages.po new file mode 100644 index 000000000..4ab8ae773 --- /dev/null +++ b/view/ja/hmessages.po @@ -0,0 +1,12090 @@ +# 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 <harukin@haruk.in>\n" +"Language-Team: harukin <gitlab.haruk.in>\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\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 "[$ Projectname] %s Webãµã€ãSSLãšã©ãŒ" + +#: ../../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 "[$Projectname] Cronã¿ã¹ã¯ã%så®è¡ãããŠããŸãã" + +#: ../../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 "ç»é²ç¢ºèª: %s" + +#: ../../include/account.php:380 +#, php-format +msgid "Registration request at %s" +msgstr "ç»é²ãªã¯ãšã¹ã: %s" + +#: ../../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 "ç»é²ã®è©³çŽ°: %s" + +#: ../../include/account.php:482 +msgid "Account approved." +msgstr "ã¢ã«ãŠã³ããæ¿èªãããŸããã" + +#: ../../include/account.php:522 +#, php-format +msgid "Registration revoked for %s" +msgstr "%sã®ç»é²ãåãæ¶ãããŸãã" + +#: ../../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.</br />These " +"permissions set who is allowed to view the post." +msgstr "æçš¿ãå
±æããåŸãæçš¿æš©é%sã%sã«å€æŽããããšã¯ã§ããŸããã</ br />ãããã®æš©éã¯ãæçš¿ã®é²èŠ§ãèš±å¯ãããŠãŒã¶ãŒãèšå®ããŸãã" + +#: ../../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 "%1$sã%2$sãïŒldquo;ã«å€æŽããŸãã%3$s ïŒrdquo;" + +#: ../../include/activities.php:60 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "%1$sã®%2$sã¢ã¯ã»ã¹" + +#: ../../include/activities.php:63 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$sã«ã¯æŽæ°ããã%2$s ã %3$så€æŽããŠããŸãã" + +#: ../../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 "ãã¡ã€ã«ã¯ãµã€ãºå¶é%dãè¶
ããŠããŸã" + +#: ../../include/attach.php:772 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "ïŒ
1 $ .0fã¡ã¬ãã€ãã®æ·»ä»ãã¡ã€ã«ã¹ãã¬ãŒãžã®å¶éã«éããŸããã" + +#: ../../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 "mkdirã倱æããŸããã" + +#: ../../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 "%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 "ãã®æçš¿ã«ã¯ã€ã³ã¹ããŒã«å¯èœãª%sèŠçŽ ãå«ãŸããŠããŸããããã®ãµã€ãã«ã€ã³ã¹ããŒã«ããæš©éããããŸããã" + +#: ../../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 "%1$sã¯æ¬¡ã®%2$s %3$sæžããŸãã" + +#: ../../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 "$ 1ã®æžã蟌ã¿ïŒ" + +#: ../../include/bookmarks.php:34 +#, php-format +msgid "%1$s's bookmarks" +msgstr "%1$sã®ããã¯ããŒã¯" + +#: ../../include/channel.php:43 +msgid "Unable to obtain identity information from database" +msgstr "ããŒã¿ããŒã¹ããIDæ
å ±ãååŸã§ããŸãã" + +#: ../../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 "äœæãããIDãååŸã§ããŸãã" + +#: ../../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 "å€æŽãããIDãååŸã§ããŸãã" + +#: ../../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 "j FãY" + +#: ../../include/channel.php:1675 +msgid "j F" +msgstr "j F" + +#: ../../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 "%1$d %2$s" + +#: ../../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 "ãã£ã³ãã«ã¢ãã¬ã¹ãå
¥åããŸãïŒäŸïŒchannel@example.comïŒ" + +#: ../../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 "ã¢ã«ãŠã³ãã %s ããåé€ããŸãã" + +#: ../../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] "%dæåŸ
å¯èœ" +msgstr[1] "%dæåŸ
å¯èœ" + +#: ../../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 "äŸïŒ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 "èŠã€ãã" + +#: ../../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 "é«åºŠãªäŸïŒ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 "ä¿åããããã©ã«ããŒ" + +#: ../../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 "ãã¹ãŠã®%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 "åç" + +#: ../../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 "%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 "%1$sã¯%2$sã®%3$s奜ãã§ã¯ãããŸãã" + +#: ../../include/conversation.php:169 +#, php-format +msgid "likes %1$s's %2$s" +msgstr "%1$sã®%2$sã奜ã" + +#: ../../include/conversation.php:172 +#, php-format +msgid "doesn't like %1$s's %2$s" +msgstr "%1$sã®%2$sãæ°ã«å
¥ããªã" + +#: ../../include/conversation.php:212 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$sã¯%2$sæ¥ç¶ãããŸãã" + +#: ../../include/conversation.php:247 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s %2$sãçªç ŽããŸãã" + +#: ../../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 "%1$sã¯%2$s" + +#: ../../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 "%sã®ãããã£ãŒã«@ %s" + +#: ../../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 "%sãã" + +#: ../../include/conversation.php:769 ../../Zotlabs/Lib/ThreadItem.php:405 +#, php-format +msgid "last edited: %s" +msgstr "æçµç·šéïŒ %s" + +#: ../../include/conversation.php:770 ../../Zotlabs/Lib/ThreadItem.php:406 +#, php-format +msgid "Expires: %s" +msgstr "æå¹æéïŒ %s" + +#: ../../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 "%sã¯ããã奜ãã§ãã" + +#: ../../include/conversation.php:1212 +#, php-format +msgid "%s doesn't like this." +msgstr "%sã¯ããã%sãŸããã" + +#: ../../include/conversation.php:1216 +#, php-format +msgid "<span %1$s>%2$d people</span> like this." +msgid_plural "<span %1$s>%2$d people</span> like this." +msgstr[0] "<span %1$s > %2$d人</ span>ãã®ããã«ã" +msgstr[1] "<span %1$s > %2$d人</ span>ãã®ããã«ã" + +#: ../../include/conversation.php:1218 +#, php-format +msgid "<span %1$s>%2$d people</span> don't like this." +msgid_plural "<span %1$s>%2$d people</span> don't like this." +msgstr[0] "<span %1$s > %2$d人</ span>ã¯ããã奜ãã§ã¯ãããŸããã" +msgstr[1] "<span %1$s > %2$d人</ span>ã¯ããã奜ãã§ã¯ãããŸããã" + +#: ../../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] "ãä»%d人" +msgstr[1] "ãä»%d人" + +#: ../../include/conversation.php:1228 +#, php-format +msgid "%s like this." +msgstr "ãã®ãããª%s ã" + +#: ../../include/conversation.php:1228 +#, php-format +msgid "%s don't like this." +msgstr "%sã¯ããã奜ãã§ã¯ãããŸããã" + +#: ../../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 "Webãªã³ã¯ãæ¿å
¥" + +#: ../../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 "ãªã³ã¯URLãå
¥åããŠãã ããïŒ" + +#: ../../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 "OK" + +#: ../../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 "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 "å¿
é " + +#: ../../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 "%1$d %2$så" + +#: ../../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 "%1$sã®èªçæ¥" + +#: ../../include/datetime.php:521 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "%1$sããèªçæ¥ããã§ãšãïŒ" + +#: ../../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 "l F dãY \\ @ gïŒi A" + +#: ../../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 "CalDAV" + +#: ../../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 "æçš¿ã«å€§ããªïŒ1024pxïŒåçã®ãµã ãã€ã«ãå«ãããæå¹ã«ãªã£ãŠããªãå Žåã¯ãå°ããïŒ640ãã¯ã»ã«ïŒåçã®ãµã ãã€ã«ã䜿çšããŸã" + +#: ../../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 "åäžã®ã³ã³ãã³ããå«ãæçš¿ããéä¿¡ãšéä¿¡ã®éã«2åæªæºã§å
¬éãããã®ãé²ããŸãã" + +#: ../../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 " +"<strong>may</strong> apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "ãã®ååã®åé€ãããã°ã«ãŒãã埩掻ããŸãããæ¢åã®ã¢ã€ãã ã®æš©éã¯ããã®ã°ã«ãŒããšå°æ¥ã®ã¡ã³ããŒã«é©çšãããå¯èœæ§ããããŸã<strong> </ strong>ããããæå³ãããã®ã§ãªãå Žåã¯ãå¥ã®ååã§å¥ã®ã°ã«ãŒããäœæããŠãã ããã" + +#: ../../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 "%s誰ã§ãé²èŠ§ã§ããŸãã" + +#: ../../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 "ãã©ã€ãã·ãŒã°ã«ãŒãïŒ %s" + +#: ../../include/items.php:4328 ../../Zotlabs/Module/Connedit.php:867 +#, php-format +msgid "Connection: %s" +msgstr "æ¥ç¶ïŒ %s" + +#: ../../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 "%1$s圌女ã®%2$sæŽæ°ããŸãã" + +#: ../../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 "%1$s圌ã®%2$sæŽæ°ããŸãã" + +#: ../../include/items.php:4677 ../../Zotlabs/Module/Cover_photo.php:299 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "%1$sã%2$sæŽæ°ããŸãã" + +#: ../../include/items.php:4679 +msgid "profile photo" +msgstr "ãããã£ãŒã«åç" + +#: ../../include/items.php:4871 +#, php-format +msgid "[Edited %s]" +msgstr "[ %sç·šé]" + +#: ../../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 "%s å
šãŠèŠã" + +#: ../../include/js_strings.php:8 +#, php-format +msgid "%s show less" +msgstr "%s ç³ã" + +#: ../../include/js_strings.php:9 +#, php-format +msgid "%s expand" +msgstr "%s å±éãã" + +#: ../../include/js_strings.php:10 +#, php-format +msgid "%s collapse" +msgstr "%sç³ã" + +#: ../../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 "ãªã³ã¯URLãå
¥åããŠãã ãã" + +#: ../../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] "%då" +msgstr[1] "%då" + +#: ../../include/js_strings.php:42 +#, php-format +msgid "about %d hours" +msgid_plural "about %d hours" +msgstr[0] "çŽ%dæé" +msgstr[1] "çŽ%dæé" + +#: ../../include/js_strings.php:43 +#, php-format +msgid "%d days" +msgid_plural "%d days" +msgstr[0] "%dæ¥" +msgstr[1] "%dæ¥" + +#: ../../include/js_strings.php:44 +#, php-format +msgid "%d months" +msgid_plural "%d months" +msgstr[0] "%dãæ" +msgstr[1] "%dãæ" + +#: ../../include/js_strings.php:45 +#, php-format +msgid "%d years" +msgid_plural "%d years" +msgstr[0] "%d幎" +msgstr[1] "%d幎" + +#: ../../include/js_strings.php:50 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" + +#: ../../include/js_strings.php:51 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" + +#: ../../include/js_strings.php:52 +msgid "timeago.suffixAgo" +msgstr "timeago.suffixAgo" + +#: ../../include/js_strings.php:53 +msgid "timeago.suffixFromNow" +msgstr "timeago.suffixFromNow" + +#: ../../include/js_strings.php:56 +msgid "less than a minute" +msgstr "ã¡ãã£ãšå" + +#: ../../include/js_strings.php:57 +msgid "about a minute" +msgstr "1åå" + +#: ../../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 "timeago.numbers" + +#: ../../include/js_strings.php:70 ../../include/text.php:1428 +msgid "January" +msgstr "1æ" + +#: ../../include/js_strings.php:71 ../../include/text.php:1428 +msgid "February" +msgstr "2æ" + +#: ../../include/js_strings.php:72 ../../include/text.php:1428 +msgid "March" +msgstr "3æ" + +#: ../../include/js_strings.php:73 ../../include/text.php:1428 +msgid "April" +msgstr "4æ" + +#: ../../include/js_strings.php:74 +msgctxt "long" +msgid "May" +msgstr "5æ" + +#: ../../include/js_strings.php:75 ../../include/text.php:1428 +msgid "June" +msgstr "6æ" + +#: ../../include/js_strings.php:76 ../../include/text.php:1428 +msgid "July" +msgstr "7æ" + +#: ../../include/js_strings.php:77 ../../include/text.php:1428 +msgid "August" +msgstr "8æ" + +#: ../../include/js_strings.php:78 ../../include/text.php:1428 +msgid "September" +msgstr "9æ" + +#: ../../include/js_strings.php:79 ../../include/text.php:1428 +msgid "October" +msgstr "10æ" + +#: ../../include/js_strings.php:80 ../../include/text.php:1428 +msgid "November" +msgstr "11æ" + +#: ../../include/js_strings.php:81 ../../include/text.php:1428 +msgid "December" +msgstr "12æ" + +#: ../../include/js_strings.php:82 +msgid "Jan" +msgstr "1" + +#: ../../include/js_strings.php:83 +msgid "Feb" +msgstr "2" + +#: ../../include/js_strings.php:84 +msgid "Mar" +msgstr "3" + +#: ../../include/js_strings.php:85 +msgid "Apr" +msgstr "4" + +#: ../../include/js_strings.php:86 +msgctxt "short" +msgid "May" +msgstr "5" + +#: ../../include/js_strings.php:87 +msgid "Jun" +msgstr "6" + +#: ../../include/js_strings.php:88 +msgid "Jul" +msgstr "7" + +#: ../../include/js_strings.php:89 +msgid "Aug" +msgstr "8" + +#: ../../include/js_strings.php:90 +msgid "Sep" +msgstr "9" + +#: ../../include/js_strings.php:91 +msgid "Oct" +msgstr "10" + +#: ../../include/js_strings.php:92 +msgid "Nov" +msgstr "11" + +#: ../../include/js_strings.php:93 +msgid "Dec" +msgstr "12" + +#: ../../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 "@name, !forum, #tag, ?docs, content ã§ãµã€ããæ€çŽ¢" + +#: ../../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 "@nameãïŒforumãïŒtagãïŒdocãcontent" + +#: ../../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 "WebããŒãžã衚瀺" + +#: ../../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 "Wiki" + +#: ../../include/network.php:1725 ../../include/network.php:1726 +msgid "Friendica" +msgstr "ãã¬ã³ãã«" + +#: ../../include/network.php:1727 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:1728 +msgid "GNU-Social" +msgstr "GNUãœãŒã·ã£ã«" + +#: ../../include/network.php:1729 +msgid "RSS/Atom" +msgstr "RSS / Atom" + +#: ../../include/network.php:1730 ../../Zotlabs/Lib/Activity.php:1848 +#: ../../Zotlabs/Lib/Activity.php:2046 +msgid "ActivityPub" +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 "Eã¡ãŒã«" + +#: ../../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 "LinkedIn" + +#: ../../include/network.php:1736 +msgid "XMPP/IM" +msgstr "XMPP / IM" + +#: ../../include/network.php:1737 +msgid "MySpace" +msgstr "ç§ã®ã¹ããŒã¹" + +#: ../../include/oembed.php:226 +msgid "View PDF" +msgstr "PDFãèŠã" + +#: ../../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 "ç»åããŠã§ããµã€ãã®ãµã€ãºå¶é%luãã€ããè¶
ããŠããŸã" + +#: ../../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 "%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 "æè¿ã®åç" + +#: ../../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 "ãã©ãŒã ã»ãã¥ãªãã£ããŒã¯ã³ãæ£ãããããŸããã§ãããããã¯ããã©ãŒã ãéä¿¡ããåã«ãã©ãŒã ãé·æéïŒ3æé以äžïŒéãããããã«çºçããå¯èœæ§ããããŸãã" + +#: ../../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 "1æ¥2å" + +#: ../../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 "åha" + +#: ../../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 "ãã¹ãŠã®%sæ¥ç¶ã衚瀺" + +#: ../../include/text.php:1073 +#, php-format +msgid "Network: %s" +msgstr "ãããã¯ãŒã¯ïŒ %s" + +#: ../../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 "ping" + +#: ../../include/text.php:1181 +msgid "pinged" +msgstr "pingããã" + +#: ../../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 "stç¶ãã" + +#: ../../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 "5æ" + +#: ../../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 "BBcode" + +#: ../../include/text.php:1967 +msgid "HTML" +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 "ããŒã¯ããŠã³" + +#: ../../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 "PHP" + +#: ../../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 "azã0-9ã-ãããã³_ã®ã¿" + +#: ../../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 "Pages" + +#: ../../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 "zipãã©ã«ããŒããã€ã³ããŒãïŒ" + +#: ../../include/text.php:2566 +msgid "Import from cloud files:" +msgstr "ã¯ã©ãŠããã¡ã€ã«ããã€ã³ããŒãïŒ" + +#: ../../include/text.php:2567 +msgid "/cloud/channel/path/to/folder" +msgstr "/ cloud / channel / path / to / folder" + +#: ../../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 "zipãã¡ã€ã«ã«ãšã¯ã¹ããŒããã" + +#: ../../include/text.php:2572 +msgid "website.zip" +msgstr "website.zip" + +#: ../../include/text.php:2573 +msgid "Enter a name for the zip file." +msgstr "zipãã¡ã€ã«ã®ååãå
¥åããŸãã" + +#: ../../include/text.php:2574 +msgid "Export to cloud files" +msgstr "ã¯ã©ãŠããã¡ã€ã«ã«ãšã¯ã¹ããŒããã" + +#: ../../include/text.php:2575 +msgid "/path/to/export/folder" +msgstr "/ path / to / export / folder" + +#: ../../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 "OpenWebAuthïŒ %1$sã¯%2$sæè¿ããŸã" + +#: ../../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 "%sãµã€ã眲åã確èªã§ããŸãã" + +#: ../../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 "ãã©ãŒã«ã¹ïŒHubzillaã®ããã©ã«ãïŒ" + +#: ../../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 "äŸïŒ1remã100ïŒ
ã16px" + +#: ../../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 "äŸïŒ4px" + +#: ../../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 "WikiããŒãžã衚瀺ã§ããŸã" + +#: ../../Zotlabs/Access/Permissions.php:64 +msgid "Can create/edit my channel webpages" +msgstr "ãã£ã³ãã«WebããŒãžãäœæ/ç·šéã§ããŸã" + +#: ../../Zotlabs/Access/Permissions.php:65 +msgid "Can write to my wiki pages" +msgstr "wikiããŒãžã«æžã蟌ãããšãã§ããŸã" + +#: ../../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 "%1$sã®%2$s奜ãã§ã" + +#: ../../Zotlabs/Lib/Activity.php:1503 +#, php-format +msgid "Doesn't like %1$s's %2$s" +msgstr "%1$sã®%2$sæ°ã«å
¥ããªã" + +#: ../../Zotlabs/Lib/Activity.php:1506 +#, php-format +msgid "Will attend %1$s's %2$s" +msgstr "%1$sã®%2$s" + +#: ../../Zotlabs/Lib/Activity.php:1509 +#, php-format +msgid "Will not attend %1$s's %2$s" +msgstr "%1$sã®%2$såå ããŸãã" + +#: ../../Zotlabs/Lib/Activity.php:1512 +#, php-format +msgid "May attend %1$s's %2$s" +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 "ïŒïŒx1f501; %1$sã®%2$sç¹°ãè¿ããŸãã" + +#: ../../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 "CardDAV" + +#: ../../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 "OAuthã¢ããªãããŒãžã£ãŒ" + +#: ../../Zotlabs/Lib/Apps.php:372 +msgid "OAuth2 Apps Manager" +msgstr "OAuth2ã¢ããªãããŒãžã£ãŒ" + +#: ../../Zotlabs/Lib/Apps.php:373 +msgid "PDL Editor" +msgstr "PDLãšãã£ã¿ãŒ" + +#: ../../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 "navbarã«åºå®" + +#: ../../Zotlabs/Lib/Apps.php:572 +msgid "Unpin from navbar" +msgstr "navbarããåºå®è§£é€" + +#: ../../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 "%sæŽæ°ãšã©ãŒ" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:89 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "%sæŽæ°ã«å€±æããŸããããšã©ãŒãã°ãåç
§ããŠãã ããã" + +#: ../../Zotlabs/Lib/Enotify.php:60 +msgid "$Projectname Notification" +msgstr "$Projectnameéç¥" + +#: ../../Zotlabs/Lib/Enotify.php:61 +msgid "$projectname" +msgstr "$projectname" + +#: ../../Zotlabs/Lib/Enotify.php:63 +msgid "Thank You," +msgstr "ããããšãããããŸããã" + +#: ../../Zotlabs/Lib/Enotify.php:65 +#, php-format +msgid "%s Administrator" +msgstr "%s管çè
" + +#: ../../Zotlabs/Lib/Enotify.php:66 +#, php-format +msgid "This email was sent by %1$s at %2$s." +msgstr "ãã®ã¡ãŒã«ã¯%1$sã%2$sã«éä¿¡ããŸããã" + +#: ../../Zotlabs/Lib/Enotify.php:66 ../../Zotlabs/Module/Home.php:72 +#: ../../Zotlabs/Module/Home.php:80 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Lib/Enotify.php:67 +#, php-format +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" +msgstr "ãããã®ã¡ãã»ãŒãžã®åä¿¡ãåæ¢ããã«ã¯ãéç¥èšå®ã%sã§èª¿æŽããŠãã ãã" + +#: ../../Zotlabs/Lib/Enotify.php:68 +#, php-format +msgid "To stop receiving these messages, please adjust your %s." +msgstr "ãããã®ã¡ãã»ãŒãžã®åä¿¡ãåæ¢ããã«ã¯ã %sã調æŽããŠãã ããã" + +#: ../../Zotlabs/Lib/Enotify.php:68 +#: ../../Zotlabs/Module/Settings/Channel.php:545 +msgid "Notification Settings" +msgstr "éç¥èšå®" + +#: ../../Zotlabs/Lib/Enotify.php:123 +#, php-format +msgid "%s <!item_type!>" +msgstr "%s <!item_type!>" + +#: ../../Zotlabs/Lib/Enotify.php:127 +#, php-format +msgid "[$Projectname:Notify] New mail received at %s" +msgstr "[$ProjectnameïŒNotify] %såä¿¡ããæ°ããã¡ãŒã«" + +#: ../../Zotlabs/Lib/Enotify.php:129 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$sãã%2$sæ°ãããã©ã€ããŒãã¡ãã»ãŒãžãéä¿¡ãããŸããã" + +#: ../../Zotlabs/Lib/Enotify.php:130 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$sãã%2$séä¿¡ãããŸããã" + +#: ../../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 "ãã©ã€ããŒãã¡ãã»ãŒãžã衚瀺ãŸãã¯è¿ä¿¡ããã«ã¯ã %sã«ã¢ã¯ã»ã¹ããŠãã ããã" + +#: ../../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 "%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 "%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 "%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" + +#: ../../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" + +#: ../../Zotlabs/Lib/Enotify.php:233 +#, php-format +msgid "%1$s commented on an item/conversation you have been following." +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 "äŒè©±ã衚瀺ãŸãã¯è¿ä¿¡ããã«ã¯ã %sã«ã¢ã¯ã»ã¹ããŠãã ããã" + +#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 +#, php-format +msgid "Please visit %s to approve or reject this comment." +msgstr "ãã®ã³ã¡ã³ããæ¿èªãŸãã¯æåŠããã«ã¯ã %sã«ã¢ã¯ã»ã¹ããŠãã ããã" + +#: ../../Zotlabs/Lib/Enotify.php:299 +#, php-format +msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" +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 "[$ ProjectnameïŒNotify]äŒè©±ïŒ %1$dãã%2$såãåã£ãããã§ã" + +#: ../../Zotlabs/Lib/Enotify.php:314 +#, php-format +msgid "%1$s liked an item/conversation you created." +msgstr "%1$sãããªããäœæããã¢ã€ãã /äŒè©±ãæ°ã«å
¥ããŸããã" + +#: ../../Zotlabs/Lib/Enotify.php:325 +#, php-format +msgid "[$Projectname:Notify] %s posted to your profile wall" +msgstr "[$ ProjectnameïŒNotify] %sãããã£ãŒã«ãŠã©ãŒã«ã«æçš¿ãããŸãã" + +#: ../../Zotlabs/Lib/Enotify.php:327 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$sãããªãã®ãããã£ãŒã«ãŠã©ãŒã«ã«%2$sæçš¿ãããŸãã" + +#: ../../Zotlabs/Lib/Enotify.php:329 +#, php-format +msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" +msgstr "%1$sã[zrl = %2$s ]å£[/ zrl]ã«æçš¿ããŸãã" + +#: ../../Zotlabs/Lib/Enotify.php:352 +#, php-format +msgid "[$Projectname:Notify] %s tagged you" +msgstr "[$ ProjectnameïŒNotify] %sãããªãã«ã¿ã°ãä»ããŸãã" + +#: ../../Zotlabs/Lib/Enotify.php:353 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$sãããªãã%2$sã§ã¿ã°ä»ãããŸãã" + +#: ../../Zotlabs/Lib/Enotify.php:354 +#, php-format +msgid "%1$s [zrl=%2$s]tagged you[/zrl]." +msgstr "%1$s [zrl = %2$s ]ããªãã«ã¿ã°ãä»ããŸãã[/ zrl]ã" + +#: ../../Zotlabs/Lib/Enotify.php:365 +#, php-format +msgid "[$Projectname:Notify] %1$s poked you" +msgstr "[$ ProjectnameïŒNotify] %1$sããªããçªããŸãã" + +#: ../../Zotlabs/Lib/Enotify.php:366 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s %2$sã§ããªããçªããŸãã" + +#: ../../Zotlabs/Lib/Enotify.php:367 +#, php-format +msgid "%1$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s [zrl = %2$s ]ãããªããçªããŸãã[/ zrl]ã" + +#: ../../Zotlabs/Lib/Enotify.php:382 +#, php-format +msgid "[$Projectname:Notify] %s tagged your post" +msgstr "[$ ProjectnameïŒNotify] %sãããªãã®æçš¿ã«ã¿ã°ãä»ããŸãã" + +#: ../../Zotlabs/Lib/Enotify.php:383 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$sãããªãã®æçš¿ã%2$sã§ã¿ã°ä»ãããŸãã" + +#: ../../Zotlabs/Lib/Enotify.php:384 +#, php-format +msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" +msgstr "%1$sã[zrl = %2$s ]ããªãã®æçš¿ã«ã¿ã°ãä»ããŸãã[/ zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:395 +msgid "[$Projectname:Notify] Introduction received" +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 "ã %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 "[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 "%sã§åœŒãã®ãããã£ãŒã«ã«ã¢ã¯ã»ã¹ã§ããŸã" + +#: ../../Zotlabs/Lib/Enotify.php:402 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "æ¥ç¶ãªã¯ãšã¹ããæ¿èªãŸãã¯æåŠããã«ã¯ã %sã«ã¢ã¯ã»ã¹ããŠãã ããã" + +#: ../../Zotlabs/Lib/Enotify.php:409 +msgid "[$Projectname:Notify] Friend suggestion received" +msgstr "[$ ProjectnameïŒNotify]å人ã®ææ¡ãåãåããŸãã" + +#: ../../Zotlabs/Lib/Enotify.php:410 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +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 "[zrl = %1$s ] %3$sãã%3$s %2$så人ã®ææ¡[/ zrl]ãåãåããŸããã" + +#: ../../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 "ææ¡ãæ¿èªãŸãã¯æåŠããã«ã¯ã %sã«ã¢ã¯ã»ã¹ããŠãã ããã" + +#: ../../Zotlabs/Lib/Enotify.php:640 +msgid "[$Projectname:Notify]" +msgstr "[$ ProjectnameïŒNotify]" + +#: ../../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 "%sã®æçš¿ã«ã³ã¡ã³ãããŸãã" + +#: ../../Zotlabs/Lib/Enotify.php:816 +#, php-format +msgid "edited a post dated %s" +msgstr "%sæ¥ä»ã®æçš¿ãç·šéããŸãã" + +#: ../../Zotlabs/Lib/Enotify.php:820 +#, php-format +msgid "edited a comment dated %s" +msgstr "%sæ¥ä»ã®ã³ã¡ã³ããç·šéããŸãã" + +#: ../../Zotlabs/Lib/NativeWiki.php:143 +msgid "Wiki updated successfully" +msgstr "Wikiãæ£åžžã«æŽæ°ãããŸãã" + +#: ../../Zotlabs/Lib/NativeWiki.php:197 +msgid "Wiki files deleted successfully" +msgstr "Wikiãã¡ã€ã«ãæ£åžžã«åé€ãããŸãã" + +#: ../../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 "WikiããŒãžã®äœæã«å€±æããŸããã" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:122 +msgid "Wiki not found." +msgstr "WikiãèŠã€ãããŸããã" + +#: ../../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 "Wikiã®èªã¿åããšã©ãŒ" + +#: ../../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 "gitã³ãããã«ã¯Wiki resource_idãå¿
èŠã§ã" + +#: ../../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 "$ Projectnameãããã¯ãŒã¯ã®èª°ã§ã" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +#, php-format +msgid "Any account on %s" +msgstr "%sã¢ã«ãŠã³ã" + +#: ../../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 "ããã¯ãWebããŒãžã®ãªãŒãã£ãšã³ã¹ã®ããã©ã«ãèšå®ã§ã" + +#: ../../Zotlabs/Lib/Techlevels.php:10 +msgid "0. Beginner/Basic" +msgstr "0.åå¿è
/åºæ¬" + +#: ../../Zotlabs/Lib/Techlevels.php:11 +msgid "1. Novice - not skilled but willing to learn" +msgstr "1.åå¿è
-çç·ŽããŠããªãããåŠç¿ããã" + +#: ../../Zotlabs/Lib/Techlevels.php:12 +msgid "2. Intermediate - somewhat comfortable" +msgstr "2.äžçŽ-ããå¿«é©" + +#: ../../Zotlabs/Lib/Techlevels.php:13 +msgid "3. Advanced - very comfortable" +msgstr "3.é«åºŠ-éåžžã«å¿«é©" + +#: ../../Zotlabs/Lib/Techlevels.php:14 +msgid "4. Expert - I can write computer code" +msgstr "4.ãšãã¹ããŒã-ã³ã³ãã¥ãŒã¿ãŒã³ãŒããæžãããšãã§ããŸã" + +#: ../../Zotlabs/Lib/Techlevels.php:15 +msgid "5. Wizard - I probably know more than you do" +msgstr "5.ãŠã£ã¶ãŒã-ç§ã¯ããããããªããããå€ããç¥ã£ãŠããŸã" + +#: ../../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" +msgstr "%d件ã®ã³ã¡ã³ã" + +#: ../../Zotlabs/Lib/ThreadItem.php:381 ../../Zotlabs/Lib/ThreadItem.php:382 +#, php-format +msgid "View %s's profile - %s" +msgstr "%sã®ãããã¡ã€ã«ãèŠã - %s" + +#: ../../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 "Wall-to-Wallçµç±ïŒ" + +#: ../../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 "Webãµã€ãã®URLïŒãªãã·ã§ã³ïŒ" + +#: ../../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] "%sã¢ã«ãŠã³ãããããã¯/ãããã¯è§£é€ãããŸãã" +msgstr[1] "%sã¢ã«ãŠã³ãããããã¯/ãããã¯è§£é€ãããŸãã" + +#: ../../Zotlabs/Module/Admin/Accounts.php:44 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%sã¢ã«ãŠã³ããåé€ãããŸãã" +msgstr[1] "%sã¢ã«ãŠã³ããåé€ãããŸãã" + +#: ../../Zotlabs/Module/Admin/Accounts.php:80 +msgid "Account not found" +msgstr "ã¢ã«ãŠã³ããèŠã€ãããŸãã" + +#: ../../Zotlabs/Module/Admin/Accounts.php:99 +#, php-format +msgid "Account '%s' blocked" +msgstr "ã¢ã«ãŠã³ã ' %s 'ã¯ãããã¯ãããŸãã" + +#: ../../Zotlabs/Module/Admin/Accounts.php:107 +#, php-format +msgid "Account '%s' unblocked" +msgstr "ã¢ã«ãŠã³ã ' %s 'ã®ãããã¯ã解é€ããŸãã" + +#: ../../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 "ID" + +#: ../../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 "éžæããã¢ã«ãŠã³ãã¯åé€ãããŸãïŒ\\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ããããã§ããïŒ" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:29 +#, php-format +msgid "Password changed for account %d." +msgstr "ã¢ã«ãŠã³ã%dãã¹ã¯ãŒããå€æŽãããŸããã" + +#: ../../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 "ãã©ã°ã€ã³%sç¡å¹ã§ãã" + +#: ../../Zotlabs/Module/Admin/Addons.php:294 +#, php-format +msgid "Plugin %s enabled." +msgstr "ãã©ã°ã€ã³%sæå¹ã«ãªããŸããã" + +#: ../../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 "æå°PHPããŒãžã§ã³ïŒ" + +#: ../../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 "ã¢ããªã³ãªããžããªã®å
¬égitãªããžããªURLãå
¥åããŸãã" + +#: ../../Zotlabs/Module/Admin/Addons.php:415 +msgid "Addon repo git URL" +msgstr "ã¢ããªã³ãªããžããªgit URL" + +#: ../../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] "%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] "%sãã£ã³ãã«ã³ãŒãã®èš±å¯/çŠæ¢" +msgstr[1] "%sãã£ã³ãã«ã³ãŒãã®èš±å¯/çŠæ¢" + +#: ../../Zotlabs/Module/Admin/Channels.php:46 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%sãã£ã³ãã«ãåé€ãããŸãã" +msgstr[1] "%sãã£ã³ãã«ãåé€ãããŸãã" + +#: ../../Zotlabs/Module/Admin/Channels.php:65 +msgid "Channel not found" +msgstr "ãã£ã³ãã«ãèŠã€ãããŸãã" + +#: ../../Zotlabs/Module/Admin/Channels.php:75 +#, php-format +msgid "Channel '%s' deleted" +msgstr "ãã£ã³ãã«ã %s ããåé€ããŸãã" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' censored" +msgstr "ãã£ã³ãã« ' %s 'ã¯æã¡åãããŸãã" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "ãã£ã³ãã« ' %s 'ã¯ç¡ä¿®æ£" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "ãã£ã³ãã«ã %s ãã³ãŒããèš±å¯ãããŠããŸã" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "ãã£ã³ãã« ' %s 'ã³ãŒãã¯èš±å¯ãããŠããŸãã" + +#: ../../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 "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 "äœæ" + +#: ../../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 "éžæãããã£ã³ãã«ã¯åé€ãããŸãïŒ\\ 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 "ãã£ã³ãã«{0}ã¯åé€ãããŸãïŒ\\n \\nãã®ãµã€ãã§ãã®ãã£ã³ãã«ã«æçš¿ããããã¹ãŠã®ãã®ã¯å®å
šã«åé€ãããŸãïŒ\\n \\nããããã§ããïŒ" + +#: ../../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 "%så®è¡ã«å€±æããŸãããã·ã¹ãã ãã°ã確èªããŠãã ããã" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:34 +#, php-format +msgid "Update %s was successfully applied." +msgstr "æŽæ°%sãæ£åžžã«é©çšãããŸããã" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:38 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "æŽæ°%sã¯ã¹ããŒã¿ã¹ãè¿ããŸããã§ãããæåããå Žåã¯äžæã§ãã" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:41 +#, php-format +msgid "Update function %s could not be found." +msgstr "æŽæ°é¢æ°%sãèŠã€ãããŸããã§ããã" + +#: ../../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 "æ©èœ%sããã¯" + +#: ../../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 "WebãµãŒããŒããæžã蟌ã¿å¯èœã§ããå¿
èŠããããŸããæäžäœã®WebãµãŒããŒãã£ã¬ã¯ããªã«é¢é£ããŸãã" + +#: ../../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 "ãªã³ã¯å
URL" + +#: ../../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 "ããã©ã«ãã§ã¯ãåã蟌ã¿ã¡ãã£ã¢ã§ã¯ãã£ã«ã¿ãªã³ã°ãããŠããªãHTMLãèš±å¯ãããŠããŸããããã¯æ¬è³ªçã«å®å
šã§ã¯ãããŸããã" + +#: ../../Zotlabs/Module/Admin/Security.php:86 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "æšå¥šãããèšå®ã¯ã次ã®ãµã€ãããã®ãã£ã«ã¿ãªã³ã°ãããŠããªãHTMLã®ã¿ãèš±å¯ããããšã§ãã" + +#: ../../Zotlabs/Module/Admin/Security.php:87 +msgid "" +"https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/" +"<br />https://vimeo.com/<br />https://soundcloud.com/<br />" +msgstr "https://youtube.com/ <br /> https://www.youtube.com/ <br /> https://youtu.be/ <br /> https://vimeo.com/ <br /> https://soundcloud.com/ <br />" + +#: ../../Zotlabs/Module/Admin/Security.php:88 +msgid "" +"All other embedded content will be filtered, <strong>unless</strong> " +"embedded content from that site is explicitly blocked." +msgstr "ä»ã®ãã¹ãŠã®åã蟌ã¿ã³ã³ãã³ãã¯ãã£ã«ã¿ãªã³ã°ããããã®ãµã€ãããã®åã蟌ã¿ã³ã³ãã³ããæ瀺çã«ãããã¯ãããªãéã<strong> </ strong>ã" + +#: ../../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 "\"Transport Security \" HTTPããããŒãèšå®ããŸã" + +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "ãã³ã³ãã³ãã»ãã¥ãªãã£ããªã·ãŒãHTTPããããŒãèšå®ããŸã" + +#: ../../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 "1è¡ã«1ã€ã®ãµã€ãã空ã®ãŸãŸã«ããŠãããã©ã«ãã§ã©ãããã§ãéä¿¡ã§ããããã«ããŸã" + +#: ../../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 "1è¡ã«1ã€ã®ãã£ãã«ïŒããã·ã¥ïŒãããã©ã«ãã§ä»»æã®ãã£ã³ãã«ããèš±å¯ããã«ã¯ç©ºã®ãŸãŸã«ããŸã" + +#: ../../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 "å®å
šãªïŒSSLïŒWebãµã€ãããã³ãªã³ã¯ããã®åã蟌ã¿ã®ã¿ãèš±å¯ããŸãã" + +#: ../../Zotlabs/Module/Admin/Security.php:107 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "ãããã®ãã¡ã€ã³ããã®ã¿ããã£ã«ã¿ãªã³ã°ãããŠããªãåã蟌ã¿HTMLã³ã³ãã³ããèš±å¯ããŸã" + +#: ../../Zotlabs/Module/Admin/Security.php:107 +msgid "One site per line. By default embedded content is filtered." +msgstr "1è¡ã«1ã€ã®ãµã€ããããã©ã«ãã§ã¯ãåã蟌ã¿ã³ã³ãã³ãã¯ãã£ã«ã¿ãªã³ã°ãããŸãã" + +#: ../../Zotlabs/Module/Admin/Security.php:108 +msgid "Block embedded HTML from these domains" +msgstr "ãããã®ãã¡ã€ã³ããã®åã蟌ã¿HTMLããããã¯ãã" + +#: ../../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 "%s ïŒäºææ§ãªãïŒ" + +#: ../../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 "ãã£ã«ã¿ãªã³ã°ãããŠããªãHTML / CSS / JSã¯èš±å¯ãããŸã" + +#: ../../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 "ãµã€ã管çè
ã®é£çµ¡å
æ
å ±ã siteinfoããŒãžã«è¡šç€ºãããŸãã BBCodeã¯ããã§äœ¿çšã§ããŸã" + +#: ../../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 "ãã®ãµã€ãã®äžè¬å
¬éãããŠãã説æã siteinfoããŒãžã«è¡šç€ºãããŸãã BBCodeã¯ããã§äœ¿çšã§ããŸã" + +#: ../../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 - <a href='#' " +"id='cnftheme'>change theme settings</a>" +msgstr "ããã©ã«ãã®ã·ã¹ãã ããŒã-ãŠãŒã¶ãŒãããã¡ã€ã«ã«ãã£ãŠäžæžããããå ŽåããããŸã-<a href='#' id='cnftheme'>ããŒãèšå®ã®å€æŽ</a>" + +#: ../../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 "ã¢ããããŒããããç»åã®æ倧ãµã€ãºïŒãã€ãåäœïŒãããã©ã«ãã¯0ã§ãå¶éããªãããšãæå³ããŸãã" + +#: ../../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 "äŸïŒãããªãã¯ã¹ããªãŒã ã衚瀺ãããpubstreamãããhomeããŸãã¯ãincludeïŒhome.htmlããšåŒã°ããã·ã¹ãã WebããŒãžã衚瀺ãããpage / sys / homeãã¯ãã¡ã€ã«ãå«ããŸãã" + +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "Preserve site homepage URL" +msgstr "ãµã€ãã®ããŒã ããŒãžURLãä¿æ" + +#: ../../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 "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 "æŸæ£ãããã¢ã«ãŠã³ãã®å€éšãµã€ããããŒãªã³ã°ããã·ã¹ãã ãªãœãŒã¹ãç¡é§ã«ããŸãããæéå¶éãªãã®å Žåã¯0ãå
¥åããŸãã" + +#: ../../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 "1è¡ã«1èªãã€ããŸãã¯#tagsãŸãã¯/ patterns /ãŸãã¯lang = xxããã¹ãŠã®æçš¿ãã€ã³ããŒãããã«ã¯ç©ºçœã®ãŸãŸã«ããŸã" + +#: ../../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 "ãã£ã¬ã¯ããªãµãŒããŒã®URL" + +#: ../../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 "ãããã·URL" + +#: ../../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 "å€ã¯ç§åäœã§ããç¡å¶éã®å Žåã¯0ã«èšå®ããŸãïŒæšå¥šãããŸããïŒã" + +#: ../../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 "ã·ã¹ãã ã®è² è·ã軜æžããã«ã¯ãããã¯ã°ã©ãŠã³ãé
ä¿¡ããã»ã¹ããã®æ°ç§é
ãããŸããæšå¥šïŒå
±æãã¹ãã«ã¯4ã5ãä»®æ³ãã©ã€ããŒããµãŒããŒã«ã¯2ã3ã倧èŠæš¡ãªå°çšãµãŒããŒã®å Žåã¯0-1ã" + +#: ../../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 "åäžã®ãªãã¬ãŒãã£ã³ã°ã·ã¹ãã ããã»ã¹ã§è©Šè¡ããé
ä¿¡ã®æ°ãå¿
èŠã«å¿ããŠèª¿æŽããŠãã·ã¹ãã ã®ããã©ãŒãã³ã¹ã調æŽããŸããæšå¥šïŒ1-5ã" + +#: ../../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 "ããã¯ã°ã©ãŠã³ãããŒãªã³ã°ããã»ã¹ããã®æ°ç§é
ãããŠãã·ã¹ãã ã®è² è·ãæžãããŸãã 0ã®å Žåãé
ä¿¡ééã䜿çšããŸãã" + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "Path to ImageMagick convert program" +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 "èšå®ãããŠããå Žåããã®ããã°ã©ã ã䜿çšããŠå·šå€§ãªç»åïŒããããã®æ¹åã§4000ãã¯ã»ã«ä»¥äžïŒã®åçã®ãµã ãã€ã«ãçæããŸããããããªããšãã¡ã¢ãªäžè¶³ãçºçããå¯èœæ§ããããŸããäŸïŒ/usr/bin/convert" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "Allow SVG thumbnails in file browser" +msgstr "ãã¡ã€ã«ãã©ãŠã¶ã§SVGãµã ãã€ã«ãèš±å¯ãã" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "WARNING: SVG images may contain malicious code." +msgstr "èŠåïŒSVGç»åã«ã¯æªæã®ããã³ãŒããå«ãŸããŠããå ŽåããããŸãã" + +#: ../../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 "é
ä¿¡ããã³ããŒãªã³ã°ããã»ã¹ã延æãããåã®æ倧ã·ã¹ãã è² è·-ããã©ã«ãã¯50ã" + +#: ../../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 "ã€ã³ããŒããããã³ã³ãã³ãã®æå¹æéããªãå Žåã¯0" + +#: ../../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 "ãããªãã¯ãµãŒããŒïŒæ°èŠç»é²è
åãã®ãªãã·ã§ã³ã®ã©ã³ãã£ã³ã°ïŒããŒã±ãã£ã³ã°ïŒWebããŒãž" + +#: ../../Zotlabs/Module/Admin/Site.php:349 +#, php-format +msgid "Create this page first. Default is %s/register" +msgstr "æåã«ãã®ããŒãžãäœæããŸããããã©ã«ãã¯%s / registerã§ã" + +#: ../../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 "ãªããžããªããŒãžã§ã³(master)" + +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Repository version (dev)" +msgstr "ãªããžããªããŒãžã§ã³(dev)" + +#: ../../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 "0-99ããã©ã«ã99" + +#: ../../Zotlabs/Module/Affinity.php:70 +msgid "Default minimum affinity level" +msgstr "ããã©ã«ãã®æå°ã¢ãã£ããã£ã¬ãã«" + +#: ../../Zotlabs/Module/Affinity.php:70 +msgid "0-99 - default 0" +msgstr "0-99-ããã©ã«ã0" + +#: ../../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 "ã¢ããªã®å ŽæïŒURLïŒ" + +#: ../../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 "åçã¢ã€ã³ã³URL" + +#: ../../Zotlabs/Module/Appman.php:146 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80ãã¯ã»ã«-ãªãã·ã§ã³" + +#: ../../Zotlabs/Module/Appman.php:147 +msgid "Categories (optional, comma separated list)" +msgstr "ã«ããŽãªãŒïŒãªãã·ã§ã³ãã³ã³ãåºåããªã¹ãïŒ" + +#: ../../Zotlabs/Module/Appman.php:148 +msgid "Version ID" +msgstr "ããŒãžã§ã³ID" + +#: ../../Zotlabs/Module/Appman.php:149 +msgid "Price of app" +msgstr "ã¢ããªã®äŸ¡æ Œ" + +#: ../../Zotlabs/Module/Appman.php:150 +msgid "Location (URL) to purchase app" +msgstr "ã¢ããªã賌å
¥ããå ŽæïŒURLïŒ" + +#: ../../Zotlabs/Module/Apporder.php:47 +msgid "Change Order of Pinned Navbar Apps" +msgstr "åºå®ãããNavbarã¢ããªã®é åºãå€æŽãã" + +#: ../../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 "ã¢ããª%sã«ãã£ã³ãã«ããŒã¿ãžã®ã¢ã¯ã»ã¹ãèš±å¯ããŠããŸããïŒ" + +#: ../../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 "lãF j" + +#: ../../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 "CalDAVã¢ããª" + +#: ../../Zotlabs/Module/Cdav.php:855 +msgid "CalDAV capable calendar" +msgstr "CalDAV察å¿ã«ã¬ã³ããŒ" + +#: ../../Zotlabs/Module/Cdav.php:863 +msgid "CardDAV App" +msgstr "CardDAVã¢ããª" + +#: ../../Zotlabs/Module/Cdav.php:864 +msgid "CalDAV capable addressbook" +msgstr "CalDAV察å¿ã®ã¢ãã¬ã¹åž³" + +#: ../../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 "ã¢ã«ãŠã³ããã¹ã¯ãŒããå€æŽããŠãã48æé以å
ã«ãã£ã³ãã«åãå€æŽããããšã¯ã§ããŸããã" + +#: ../../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 "ãã®ã³ã³ãã³ãã衚瀺ããã«ã¯ããã©ãŠã¶ã®JavaScriptãæå¹ã«ããå¿
èŠããããŸãã" + +#: ../../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 "%1$sã®ãã£ããã«ãŒã " + +#: ../../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 "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 "ãã®ãã£ãã«ã§ã¯ãæ¥ç¶ããåã«æ¬¡ã®æ¡ä»¶ã®è¿œå æé ãŸãã¯ç¢ºèªãå¿
èŠã«ãªãå ŽåããããŸãã" + +#: ../../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 "%1$s [ %2$s ]" + +#: ../../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 "%sã®ãããã£ãŒã«ã衚瀺" + +#: ../../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 "VcardãååŸ" + +#: ../../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 "ãããã£ãŒã«ãå®å
šã«è¡šç€ºãããšãã«ã %sã«è¡šç€ºãããããã£ãŒã«ãéžæããŠãã ããã" + +#: ../../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 <a href=\"settings" +"\"><strong>privacy settings</strong></a>, which have higher priority than " +"individual settings. You can <strong>not</strong> change those settings here." +msgstr "äžéšã®æš©éã¯ããã£ã³ãã«ã®<a href=\"settings\"> <strong>ãã©ã€ãã·ãŒèšå®</ strong> </a>ããç¶æ¿ãããå Žåããããåã
ã®èšå®ãããåªå
床ãé«ããªããŸããããã§ãããã®èšå®ãå€æŽããããšã¯<strong>ã§ããŸãã</ strong>ã" + +#: ../../Zotlabs/Module/Connedit.php:912 +msgid "" +"Some permissions may be inherited from your channel's <a href=\"settings" +"\"><strong>privacy settings</strong></a>, 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 "äžéšã®æš©éã¯ããã£ã³ãã«ã®<a href=\"settings\"> <strong>ãã©ã€ãã·ãŒèšå®</ strong> </a>ããç¶æ¿ãããå Žåããããåã
ã®èšå®ãããåªå
床ãé«ããªããŸãããããã®èšå®ã¯ããã§å€æŽã§ããŸãããç¶æ¿ãããèšå®ãå€æŽãããªãéãã圱é¿ã¯ãããŸããã" + +#: ../../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] "%dè©äŸ¡" +msgstr[1] "%dè©äŸ¡" + +#: ../../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 "確èªããŒã¯ã³ãã¡ãŒã«ã¢ãã¬ã¹[ %s ]ã«éä¿¡ãããŸãããããã«ããŒã¯ã³ãå
¥åããŠãã¢ã«ãŠã³ãã®ç¢ºèªæé ãå®äºããŸããé
ä¿¡ã«æ°åããããã¡ãã»ãŒãžã衚瀺ãããªãå Žåã¯ã¹ãã ãã©ã«ããŒã確èªããŠãã ããã" + +#: ../../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 "ãã®URLãã³ããŒ/貌ãä»ãããŠãWebããŒãžãããã¡ã€ã«ããªã³ã¯ããŸã" + +#: ../../Zotlabs/Module/Filestorage.php:204 +msgid "Share this file" +msgstr "ãã®ãã¡ã€ã«ãå
±æãã" + +#: ../../Zotlabs/Module/Filestorage.php:205 +msgid "Show URL to this file" +msgstr "ãã®ãã¡ã€ã«ãžã®URLã衚瀺" + +#: ../../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 "ãã©ã€ãã·ãŒã°ã«ãŒãïŒ %s" + +#: ../../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 "$Projectnameããã¥ã¡ã³ã" + +#: ../../Zotlabs/Module/Help.php:96 +msgid "Contents" +msgstr "å
容" + +#: ../../Zotlabs/Module/Home.php:90 +#, php-format +msgid "Welcome to %s" +msgstr "%sãžãããã" + +#: ../../Zotlabs/Module/Hq.php:140 +msgid "Welcome to Hubzilla!" +msgstr "HubzillaãžããããïŒ" + +#: ../../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 "%sèŠçŽ ãã€ã³ã¹ããŒã«ãããŸãã" + +#: ../../Zotlabs/Module/Impel.php:188 +#, php-format +msgid "%s element installation failed" +msgstr "%sèŠçŽ ã®ã€ã³ã¹ããŒã«ã«å€±æããŸãã" + +#: ../../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 "ãµãŒãã¹ãã©ã³ã§ã¯%dãã£ã³ãã«ã®ã¿ãèš±å¯ãããŠããŸãã" + +#: ../../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 "ãã®ãã©ãŒã ã䜿çšããŠãå¥ã®ãµãŒããŒ/ããããæ¢åã®ãã£ã³ãã«ãã€ã³ããŒãããŸãããããã¯ãŒã¯çµç±ã§å€ããµãŒããŒ/ãããããã£ãã«IDãååŸãããããšã¯ã¹ããŒããã¡ã€ã«ãæäŸã§ããŸãã" + +#: ../../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 "å€ãIDã¢ãã¬ã¹ïŒxyz@example.comïŒ" + +#: ../../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 "ã©ã¡ãã®ãªãã·ã§ã³ã§ãããã®ãããæ°ãããã©ã€ããªã¢ãã¬ã¹ã«ããããå€ãå Žæã§ãã®åœ¹å²ãç¶ç¶ããããéžæããŠãã ãããã©ã¡ãã®å Žæããã§ãæçš¿ã§ããŸããããã¡ã€ã«ãåçãããã³ã¡ãã£ã¢ã®äž»èŠãªå ŽæãšããŠããŒã¯ã§ããã®ã¯1ã€ã ãã§ãã" + +#: ../../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 "ãã®ããã»ã¹ãå®äºãããŸã§ã«æ°åãããå ŽåããããŸãããã©ãŒã ã1åã ãéä¿¡ããå®äºãããŸã§ãã®ããŒãžãéãããŸãŸã«ããŠãã ããã" + +#: ../../Zotlabs/Module/Import_items.php:93 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "èŠåïŒããŒã¿ããŒã¹ã®ããŒãžã§ã³ã¯%1$dæŽæ°ã«ãã£ãŠç°ãªããŸãã" + +#: ../../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 "%s ïŒæå¹ãªã¡ãŒã«ã¢ãã¬ã¹ã§ã¯ãããŸããã" + +#: ../../Zotlabs/Module/Invite.php:75 +msgid "Please join us on $Projectname" +msgstr "$Projectnameã«åå ããŠãã ãã" + +#: ../../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 "%s ïŒã¡ãã»ãŒãžã®é
ä¿¡ã«å€±æããŸããã" + +#: ../../Zotlabs/Module/Invite.php:94 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d件ã®ã¡ãã»ãŒãžãéä¿¡ããŸããã" +msgstr[1] "%d件ã®ã¡ãã»ãŒãžãéä¿¡ããŸããã" + +#: ../../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 "é»åã¡ãŒã«ã¢ãã¬ã¹ã1è¡ã«1ã€ãã€å
¥åããŸãã" + +#: ../../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 "$Projectnameã§ã³ãã¥ããã£ã«åå ããŠãã ããã" + +#: ../../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 "1.ä»»æã®$Projectnameã®å Žæã«ç»é²ããŸãïŒãã¹ãŠçžäºã«æ¥ç¶ãããŠããŸãïŒ" + +#: ../../Zotlabs/Module/Invite.php:163 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. $Projectnameãããã¯ãŒã¯ã¢ãã¬ã¹ããµã€ãæ€çŽ¢ããŒã«å
¥åããŸãã" + +#: ../../Zotlabs/Module/Invite.php:164 +msgid "or visit" +msgstr "ãŸãã¯èšªå" + +#: ../../Zotlabs/Module/Invite.php:166 +msgid "3. Click [Connect]" +msgstr "3. [æ¥ç¶]ãã¯ãªãã¯ããŸã" + +#: ../../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 "ãããã¬ãã«ã®æçš¿ã®äžé%1$.0fã«éããŸããã" + +#: ../../Zotlabs/Module/Item.php:1370 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "ãŠã§ãããŒãžã®å¶é%1$.0fã«éããŸããã" + +#: ../../Zotlabs/Module/Lang.php:17 +msgid "Language App" +msgstr "èšèªã¢ããª" + +#: ../../Zotlabs/Module/Lang.php:18 +msgid "Change UI language" +msgstr "UIèšèªãå€æŽãã" + +#: ../../Zotlabs/Module/Layouts.php:186 +msgid "Comanche page description language help" +msgstr "ComancheããŒãžèšè¿°èšèªã®ãã«ã" + +#: ../../Zotlabs/Module/Layouts.php:190 +msgid "Layout Description" +msgstr "ã¬ã€ã¢ãŠãã®èª¬æ" + +#: ../../Zotlabs/Module/Layouts.php:195 +msgid "Download PDL file" +msgstr "PDLãã¡ã€ã«ãããŠã³ããŒããã" + +#: ../../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 <a href=\"rmagic\">login with your $Projectname ID</a> or <a href=" +"\"register\">register as a new $Projectname member</a> to continue." +msgstr "ç¶è¡ããã«ã¯ã<a href=\"rmagic\"> $Projectname IDã§ãã°ã€ã³</a>ãããã<a href=\"register\">æ°ãã$Projectnameã¡ã³ããŒãšããŠç»é²</a>ããŠãã ããã" + +#: ../../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 "%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 "%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 "%1$sã¯%2$sã®%3$s決å®ãæ£æš©ããŸã" + +#: ../../Zotlabs/Module/Like.php:457 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +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 "%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ã«åå ãããã" + +#: ../../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 "å¯èœã§ããã°ããã®Webãµã€ã/ããã«ãã°ã€ã³ããŠãã£ã³ãã«ãåé€ããŠãå Žæãåé€ããŠãã ããã" + +#: ../../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 "ãµã€ãã¡ã³ããŒïŒ %s ïŒ" + +#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 +#, php-format +msgid "Password reset requested at %s" +msgstr "%sèŠæ±ããããã¹ã¯ãŒãã®ãªã»ãã" + +#: ../../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 <em>Settings</em> page after " +"successful login." +msgstr "ãã°ã€ã³ã«æåãããšããã¹ã¯ãŒãã¯<em>èšå®</em>ããŒãžããå€æŽãããå ŽåããããŸãã" + +#: ../../Zotlabs/Module/Lostpass.php:117 +#, php-format +msgid "Your password has changed at %s" +msgstr "ãã¹ã¯ãŒãã¯%sã«å€æŽãããŸãã" + +#: ../../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 "æå¹æéYYYY-MM-DD HHïŒMM" + +#: ../../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 <strong>may</strong> be able to " +"respond from the sender's profile page." +msgstr "å®å
šãªéä¿¡ã¯å©çšã§ããŸãããéä¿¡è
ã®ãããã¡ã€ã«ããŒãžããè¿ä¿¡ã§ãã<strong>ãã</strong>ãããŸããã" + +#: ../../Zotlabs/Module/Mail.php:420 +msgid "Send Reply" +msgstr "è¿ä¿¡ãã" + +#: ../../Zotlabs/Module/Mail.php:425 +#, php-format +msgid "Your message for %s (%s):" +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ãèš±å¯ããããã£ã³ãã«ãäœæããŸããã" + +#: ../../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 "%dæ°ããã¡ãã»ãŒãž" + +#: ../../Zotlabs/Module/Manage.php:179 +#, php-format +msgid "%d new introductions" +msgstr "%dæ°ãã玹ä»" + +#: ../../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 "äžæã®ååïŒWebããŒãžã«ã¯è¡šç€ºãããŸããïŒ-å¿
é " + +#: ../../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 "WebããŒãžã«è¡šç€º-ã¿ã€ãã«ããªãå Žåã¯ç©ºã®ãŸãŸã«ããŸã" + +#: ../../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 "ãªã³ã¯ã®URLãå
¥åããããã¡ãã¥ãŒåãéžæããŠãµãã¡ãã¥ãŒãäœæããŸã" + +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:256 +msgid "Use magic-auth if available" +msgstr "å¯èœã§ããã°magic-authã䜿çšãã" + +#: ../../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 "äŸïŒ\"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 "ããã¯ãäžæã®ãããã¯ãŒã¯ã¢ãã¬ã¹ïŒé»åã¡ãŒã«ã¢ãã¬ã¹ãªã©ïŒãäœæããããã«äœ¿çšãããŸãã" + +#: ../../Zotlabs/Module/New_channel.php:167 +msgid "Allowed characters are a-z 0-9, - and _" +msgstr "èš±å¯ãããæåã¯az 0-9ã-ããã³_ã§ã" + +#: ../../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 "ãã£ãã«ã¯ãäžæã®ãããã¯ãŒã¯IDã§ããããã¯ã人ïŒãœãŒã·ã£ã«ãããã¯ãŒã¯ãããã¡ã€ã«ïŒããã©ãŒã©ã ïŒã°ã«ãŒãïŒãããžãã¹ãŸãã¯æå人ã®ããŒãžããã¥ãŒã¹ãã£ãŒããããã³ä»ã®å€ãã®ãã®ãè¡šãããšãã§ããŸãã" + +#: ../../Zotlabs/Module/New_channel.php:183 +msgid "" +"or <a href=\"import\">import an existing channel</a> from another location." +msgstr "ãŸãã¯<a href=\"import\">æ¢åã®ãã£ã³ãã«ãå¥ã®å Žæããã€ã³ããŒã</a>ããŸãã" + +#: ../../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 "OAuth Apps Managerã¢ããª" + +#: ../../Zotlabs/Module/Oauth.php:101 +msgid "OAuth authentication tokens for mobile and remote apps" +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 "ã¢ããªã±ãŒã·ã§ã³ãè¿œå " + +#: ../../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 "èªåçæ-å¿
èŠã«å¿ããŠå€æŽããŸããæ倧é·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 "æ¶è²»è
ã®ç§å¯" + +#: ../../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 "ãªãã€ã¬ã¯ãURI-ã¢ããªã±ãŒã·ã§ã³ã§ç¹ã«å¿
èŠãªå Žåãé€ãã空çœã®ãŸãŸã«ããŸã" + +#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Oauth.php:143 +msgid "Icon url" +msgstr "ã¢ã€ã³ã³ã®URL" + +#: ../../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 "æ¥ç¶ãããOAuthã¢ããª" + +#: ../../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 "OAuth2 Apps Managerã¢ããª" + +#: ../../Zotlabs/Module/Oauth2.php:107 +msgid "OAuth2 authenticatication tokens for mobile and remote apps" +msgstr "ã¢ãã€ã«ã¢ããªããã³ãªã¢ãŒãã¢ããªçšã®OAuth2èªèšŒããŒã¯ã³" + +#: ../../Zotlabs/Module/Oauth2.php:115 +msgid "Add OAuth2 application" +msgstr "OAuth2ã¢ããªã±ãŒã·ã§ã³ãè¿œå ãã" + +#: ../../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 "OAuth2ã¢ããªã±ãŒã·ã§ã³ãèŠã€ãããŸããã" + +#: ../../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 "æ¥ç¶ãããOAuth2ã¢ããª" + +#: ../../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 "%1$sã®é
ä¿¡ã¬ããŒã" + +#: ../../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 "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 "ãã®èšå®ã«ã¯ç¹å¥ãªåŠçãå¿
èŠã§ãããç·šéã¯ãããã¯ãããŠããŸãã" + +#: ../../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 "PDLãšãã£ã¿ãŒã¢ããª" + +#: ../../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 "%2$.2f MBäž%1$.2f MBã®åçã¹ãã¬ãŒãžã䜿çšãããŠããŸãã" + +#: ../../Zotlabs/Module/Photos.php:664 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MBã®åçã¹ãã¬ãŒãžã䜿çšãããŠããŸãã" + +#: ../../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 "CWãå転ïŒå³ïŒ" + +#: ../../Zotlabs/Module/Photos.php:1075 +msgid "Rotate CCW (left)" +msgstr "CCWãå転ïŒå·ŠïŒ" + +#: ../../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 "äŸïŒ@bobã@Barbara_Jensenã@jim@example.com" + +#: ../../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 "g A l F d" + +#: ../../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 "Pokeã¢ããª" + +#: ../../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 "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 "ãããã¡ã€ã«ãèŠã€ãããŸããã" + +#: ../../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 "äŸïŒcathy123ãCathy Williamsãcathy @ example.com" + +#: ../../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 "ããŒã ããŒãžURL" + +#: ../../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 "æ°ããåçãããã«è¡šç€ºãããªãå Žåã¯ã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 "ããã©ã«ãã®ãããã£ãŒã«åçã¯ãã€ã³ã¿ãŒãããäžã®èª°ã§ãèŠãããšãã§ããŸãã代æ¿ãããã¡ã€ã«ã®ãããã¡ã€ã«åçã¯ããããã¡ã€ã«ã®æš©éãç¶æ¿ããŸã" + +#: ../../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 <strong>may</strong> provide " +"additional details." +msgstr "ãã®ãªã¹ãåãããããã¯$Projectnameã®ãããã¯ãŒã¯ã«ç»é²ãèš±å¯ãããŠããŸããå
šãŠã®ããã¯çžäºã«ãªã³ã¯ããŠããã©ãã®ããã«ããŠãæ¥ç¶ã§ããŸããããããã®ããã«ã¯ç¬èªã®å¶çŽãããå¯èœæ§ããããŸãã" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "ããURL" + +#: ../../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 "$Projectnameãããã¯ãŒã¯ã®ã©ã³ãã ãã£ãã«ã«ã¢ã¯ã»ã¹ããŸã" + +#: ../../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 "ãªã¢ãŒããã£ãã«[ %s ]ïŒãã®ãµã€ãã§ã¯ãŸã ç¥ãããŠããªãïŒ" + +#: ../../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 "ããã¯ããŒã¯ã®URL" + +#: ../../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 "1æ¥ã®æ倧ãµã€ãç»é²æ°ãè¶
ããŸãããææ¥ããäžåºŠãè©Šããã ããã" + +#: ../../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 "<a href=\"pubsites\">Register at another affiliated hub.</a>" +msgstr "<a href=\"pubsites\">å¥ã®ææºããã«ç»é²ããŸãã</a>" + +#: ../../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 "ãã®ãµã€ãã¯ãèš±å¯ãããŠãã1æ¥ã®ã¢ã«ãŠã³ãç»é²æ°ãè¶
ããŠããŸããææ¥ããäžåºŠãè©Šããã ããã" + +#: ../../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 "ãã®ãŠã§ããµã€ãã®%sã«åæããŸã" + +#: ../../Zotlabs/Module/Register.php:249 +#, php-format +msgid "I am over %s years of age and accept the %s for this website" +msgstr "ç§ã¯%sæ³ä»¥äžã§ããã®ãŠã§ããµã€ãã®%sãåãå
¥ããŸã" + +#: ../../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 "ããã¯ããŒã ã¯èŠãããããã£ã³ãã«ã¢ãã¬ã¹ãäœæããããã«äœ¿çšãããŸããããã¯ããŒã :%s" + +#: ../../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 "ã¢ã«ãŠã³ãã®ãã¹ã¯ãŒããå€æŽããŠãã48æé以å
ã«ã¢ã«ãŠã³ããåé€ããããšã¯ã§ããŸããã" + +#: ../../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 "ã¢ã«ãŠã³ãã®ãã¹ã¯ãŒããå€æŽããŠãã48æé以å
ã«ãã£ã³ãã«ãåé€ããããšã¯ã§ããŸããã" + +#: ../../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 "ã¿ã°ä»ããããã¢ã€ãã ïŒ %s" + +#: ../../Zotlabs/Module/Search.php:232 +#, php-format +msgid "Search results for: %s" +msgstr "%sæ€çŽ¢çµæ" + +#: ../../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 "CalDAVèšå®" + +#: ../../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 "ãã¡ã€ã«/åçã«ã¯ãWebDAVããã¢ã¯ã»ã¹ã§ããŸã" + +#: ../../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 "ãã®ãã£ã³ãã«ã¯é »ç¹ãŸãã¯å®æçã«ã¢ãã«ãã³ã³ãã³ããå
¬éããŠããŸãã ïŒæ人åãã®çŽ æãããŒãã«ã¯#NSFWã®ã¿ã°ãä»ããŠãã ããïŒ" + +#: ../../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 - <em>extremely permissive (should be used with caution)</em>" +msgstr "éåžžã«ãããªãã¯-<em>éåžžã«å¯å®¹ã§ãïŒæ³šæããŠäœ¿çšããå¿
èŠããããŸãïŒ</em>" + +#: ../../Zotlabs/Module/Settings/Channel.php:515 +msgid "" +"Typical - <em>default public, privacy when desired (similar to social " +"network permissions but with improved privacy)</em>" +msgstr "æšæº-å¿
èŠã«å¿ããŠããã©ã«ãã®ãããªãã¯ããã©ã€ãã·ãŒïŒãœãŒã·ã£ã«ãããã¯ãŒã¯ã®ã¢ã¯ã»ã¹èš±å¯ã«äŒŒãŠããŸããããã©ã€ãã·ãŒãæ¹åãããŸãïŒ</em>" + +#: ../../Zotlabs/Module/Settings/Channel.php:516 +msgid "Private - <em>default private, never open or public</em>" +msgstr "éå
¬é-ããã©ã«ãã§ã¯éå
¬éãéå
¬éãŸãã¯å
¬é</ em>" + +#: ../../Zotlabs/Module/Settings/Channel.php:517 +msgid "Blocked - <em>default blocked to/from everybody</em>" +msgstr "ãããã¯æžã¿-<em>ããã©ã«ãã§ãã¹ãŠã®ãŠãŒã¶ãŒãšã®éã§ãããã¯</ em>" + +#: ../../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 "Webãµã€ãã®å¶éã䜿çšããå Žåã¯0ãŸãã¯ç©ºçœã" + +#: ../../Zotlabs/Module/Settings/Channel.php:523 +#, php-format +msgid "This website expires after %d days." +msgstr "ãã®ãŠã§ããµã€ãã¯%dæ¥åŸã«æå¹æéãåããŸãã" + +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "This website does not expire imported content." +msgstr "ãã®Webãµã€ãã¯ãã€ã³ããŒããããã³ã³ãã³ããæéåãã«ããŸããã" + +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "The website limit takes precedence if lower than your limit." +msgstr "Webãµã€ãã®å¶éã¯ãå¶éããäœãå Žåã«åªå
ãããŸãã" + +#: ../../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 "äžæãªäººããã®1æ¥ãããã®æ倧ãã©ã€ããŒãã¡ãã»ãŒãžïŒ" + +#: ../../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 <em>interesting</em> profile change" +msgstr "<em>èå³æ·±ã</em>ãããã¡ã€ã«ã®å€æŽãè¡ã£ããšã" + +#: ../../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 "ããªãã®æçš¿ã«pokeãproddedãããããšã" + +#: ../../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 "ãã£ã³ãã«ãè€æ°ã®ããã«ãã©ãŒãªã³ã°ãããŠããå Žåãããã奜ã¿ã®å Žæã«èšå®ããŸããããã«ãããé»åã¡ãŒã«éç¥ã®éè€ãé²æ¢ãããŸããäŸïŒ %s" + +#: ../../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 "0ãã倧ãããªããã°ãªããŸãã" + +#: ../../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 "%Y-çŸåšã®å¹Žã%m-çŸåšã®æ" + +#: ../../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 "%s ïŒå®éšçïŒ" + +#: ../../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 "xxç§ããšã«ç»é¢ãæŽæ°ãã" + +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Minimum of 10 seconds, no maximum" +msgstr "æå°10ç§ãæ倧ãªã" + +#: ../../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 "æ倧100ã¢ã€ãã " + +#: ../../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 "$ ProjectnameãµãŒããŒ-ã»ããã¢ãã" + +#: ../../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 "æå®ããããµã€ãURLã«æ¥ç¶ã§ããŸããã§ããã SSL蚌ææžãŸãã¯DNSã®åé¡ã®å¯èœæ§ã" + +#: ../../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 "ããŒã¿ããŒã¹ã¯ã©ã€ã¢ã³ãã䜿çšããŠãæåã§ãã¡ã€ã«\"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 "ãã¡ã€ã«ãinstall / INSTALL.txtããåç
§ããŠãã ããã" + +#: ../../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 "$Projectnameãã€ã³ã¹ããŒã«ããã«ã¯ãããŒã¿ããŒã¹ãžã®æ¥ç¶æ¹æ³ãç¥ãå¿
èŠããããŸãã" + +#: ../../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 "ããã©ã«ãã¯127.0.0.1" + +#: ../../Zotlabs/Module/Setup.php:290 +msgid "Database Port" +msgstr "ããŒã¿ããŒã¹ããŒã" + +#: ../../Zotlabs/Module/Setup.php:290 +msgid "Communication port number - use 0 for default" +msgstr "éä¿¡ããŒãçªå· - 0ã§ããã©ã«ãå€ã䜿çšããŸãã" + +#: ../../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 "ãŠã§ããµã€ãã®URL" + +#: ../../Zotlabs/Module/Setup.php:297 ../../Zotlabs/Module/Setup.php:338 +msgid "Please use SSL (https) URL if available." +msgstr "å¯èœãªå Žåã¯ãSSLïŒhttpsïŒURLã䜿çšããŠãã ããã" + +#: ../../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 "PHPããŒãžã§ã³7.1以éãå¿
èŠã§ãã" + +#: ../../Zotlabs/Module/Setup.php:380 +msgid "PHP version" +msgstr "PHPããŒãžã§ã³" + +#: ../../Zotlabs/Module/Setup.php:396 +msgid "Could not find a command line version of PHP in the web server PATH." +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 "PHPã®ã³ãã³ãã©ã€ã³ããŒãžã§ã³ããµãŒããŒã«ã€ã³ã¹ããŒã«ãããŠããªãå Žåãcronãä»ããŠããã¯ã°ã©ãŠã³ãããŒãªã³ã°ãå®è¡ããããšã¯ã§ããŸããã" + +#: ../../Zotlabs/Module/Setup.php:401 +msgid "PHP executable path" +msgstr "PHPå®è¡å¯èœãã¹" + +#: ../../Zotlabs/Module/Setup.php:401 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "phpå®è¡å¯èœãã¡ã€ã«ãžã®ãã«ãã¹ãå
¥åããŸããããã空çœã®ãŸãŸã«ããŠã€ã³ã¹ããŒã«ãç¶è¡ã§ããŸãã" + +#: ../../Zotlabs/Module/Setup.php:406 +msgid "Command line PHP" +msgstr "ã³ãã³ãã©ã€ã³PHP" + +#: ../../Zotlabs/Module/Setup.php:416 +msgid "" +"Unable to check command line PHP, as shell_exec() is disabled. This is " +"required." +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 "ã䜿çšã®ã·ã¹ãã ã®ã³ãã³ãã©ã€ã³ããŒãžã§ã³ã®PHPã§ã¯ã\"register_argc_argv \"ãæå¹ã«ãªã£ãŠããŸããã" + +#: ../../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 "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 "ããã¯ã倧ããªç»åããã¡ã€ã«ãã¢ããããŒãããã«ã¯äžååã§ããå°ãªããšã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 "ã¢ããããŒãã®æ倧蚱容åèšãµã€ãºã¯%sèšå®ãããŠããŸããã¢ããããŒããã1ã€ã®ãã¡ã€ã«ã®æ倧ãµã€ãºã¯%sèšå®ãããŠããŸããäžåºŠã«æ倧%dãã¡ã€ã«ãã¢ããããŒãã§ããŸãã" + +#: ../../Zotlabs/Module/Setup.php:452 +msgid "You can adjust these settings in the server php.ini file." +msgstr "ãµãŒããŒã®php.iniãã¡ã€ã«ã§ãããã®èšå®ã調æŽã§ããŸãã" + +#: ../../Zotlabs/Module/Setup.php:454 +msgid "PHP upload limits" +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 "ãšã©ãŒïŒãã®ã·ã¹ãã ã®\"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 "Windowsã§å®è¡ããŠããå Žåã¯ããhttpïŒ//www.php.net/manual/en/openssl.installation.php \ããåç
§ããŠãã ããã" + +#: ../../Zotlabs/Module/Setup.php:481 +msgid "Generate encryption keys" +msgstr "æå·åããŒãçæãã" + +#: ../../Zotlabs/Module/Setup.php:498 +msgid "libCurl PHP module" +msgstr "libCurl PHPã¢ãžã¥ãŒã«" + +#: ../../Zotlabs/Module/Setup.php:499 +msgid "GD graphics PHP module" +msgstr "GDã°ã©ãã£ãã¯ã¹PHPã¢ãžã¥ãŒã«" + +#: ../../Zotlabs/Module/Setup.php:500 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHPã¢ãžã¥ãŒã«" + +#: ../../Zotlabs/Module/Setup.php:501 +msgid "PDO database PHP module" +msgstr "PDOããŒã¿ããŒã¹PHPã¢ãžã¥ãŒã«" + +#: ../../Zotlabs/Module/Setup.php:502 +msgid "mb_string PHP module" +msgstr "mb_string PHPã¢ãžã¥ãŒã«" + +#: ../../Zotlabs/Module/Setup.php:503 +msgid "xml PHP module" +msgstr "XML PHPã¢ãžã¥ãŒã«" + +#: ../../Zotlabs/Module/Setup.php:504 +msgid "zip PHP module" +msgstr "zip PHPã¢ãžã¥ãŒã«" + +#: ../../Zotlabs/Module/Setup.php:508 ../../Zotlabs/Module/Setup.php:510 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewriteã¢ãžã¥ãŒã«" + +#: ../../Zotlabs/Module/Setup.php:508 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "ãšã©ãŒïŒApache webserver mod-rewriteã¢ãžã¥ãŒã«ãå¿
èŠã§ãããã€ã³ã¹ããŒã«ãããŠããŸããã" + +#: ../../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 "ãšã©ãŒïŒexecãå¿
èŠã§ãããã€ã³ã¹ããŒã«ãããŠããªãããphp.iniã§ç¡å¹ã«ãããŠããŸã" + +#: ../../Zotlabs/Module/Setup.php:520 ../../Zotlabs/Module/Setup.php:523 +msgid "shell_exec" +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 "ãšã©ãŒïŒshell_execãå¿
èŠã§ãããã€ã³ã¹ããŒã«ãããŠããªãããphp.iniã§ç¡å¹ã«ãããŠããŸã" + +#: ../../Zotlabs/Module/Setup.php:528 +msgid "Error: libCURL PHP module required but not installed." +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 "ãšã©ãŒïŒJPEGãµããŒããŸãã¯ImageMagickã°ã©ãã£ãã¯ã©ã€ãã©ãªãåããGD PHPã¢ãžã¥ãŒã«ãå¿
èŠã§ãããã€ã³ã¹ããŒã«ãããŠããŸããã" + +#: ../../Zotlabs/Module/Setup.php:536 +msgid "Error: openssl PHP module required but not installed." +msgstr "ãšã©ãŒïŒopenssl PHPã¢ãžã¥ãŒã«ãå¿
èŠã§ãããã€ã³ã¹ããŒã«ãããŠããŸããã" + +#: ../../Zotlabs/Module/Setup.php:542 +msgid "" +"Error: PDO database PHP module missing a driver for either mysql or pgsql." +msgstr "ãšã©ãŒïŒPDOããŒã¿ããŒã¹PHPã¢ãžã¥ãŒã«ã«mysqlãŸãã¯pgsqlã®ããããã®ãã©ã€ããŒããããŸããã" + +#: ../../Zotlabs/Module/Setup.php:547 +msgid "Error: PDO database PHP module required but not installed." +msgstr "ãšã©ãŒïŒPDOããŒã¿ããŒã¹PHPã¢ãžã¥ãŒã«ãå¿
èŠã§ãããã€ã³ã¹ããŒã«ãããŠããŸããã" + +#: ../../Zotlabs/Module/Setup.php:551 +msgid "Error: mb_string PHP module required but not installed." +msgstr "ãšã©ãŒïŒmb_string PHPã¢ãžã¥ãŒã«ãå¿
èŠã§ãããã€ã³ã¹ããŒã«ãããŠããŸããã" + +#: ../../Zotlabs/Module/Setup.php:555 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "ãšã©ãŒïŒDAVã«ã¯XML PHPã¢ãžã¥ãŒã«ãå¿
èŠã§ãããã€ã³ã¹ããŒã«ãããŠããŸããã" + +#: ../../Zotlabs/Module/Setup.php:559 +msgid "Error: zip PHP module required but not installed." +msgstr "ãšã©ãŒïŒzip PHPã¢ãžã¥ãŒã«ãå¿
èŠã§ãããã€ã³ã¹ããŒã«ãããŠããŸããã" + +#: ../../Zotlabs/Module/Setup.php:578 ../../Zotlabs/Module/Setup.php:587 +msgid ".htconfig.php is writable" +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 "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ãµãŒããŒããã©ã«ããŒã«ãã¡ã€ã«ãæžã蟌ãããšãã§ããªãå Žåã§ããèš±å¯ã«ã§ããèšå®ã§ãã" + +#: ../../Zotlabs/Module/Setup.php:585 +msgid "Please see install/INSTALL.txt for additional information." +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 "ãã®ãœãããŠã§ã¢ã¯ã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 "ãããã®ã³ã³ãã€ã«æžã¿ãã³ãã¬ãŒããä¿åããã«ã¯ãWebãµãŒããŒãæäžäœã®Webãã©ã«ããŒ%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 "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 "泚ïŒã»ãã¥ãªãã£å¯ŸçãšããŠãWebãµãŒããŒã«å«ãŸãããã³ãã¬ãŒããã¡ã€ã«ïŒ.tplïŒã§ã¯ãªãã %sãžã®æžã蟌ã¿ã¢ã¯ã»ã¹ãèš±å¯ããå¿
èŠããããŸãã" + +#: ../../Zotlabs/Module/Setup.php:607 +#, php-format +msgid "%s is writable" +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 "ãã®ãœãããŠã§ã¢ã¯ãã¹ãã¢ãã£ã¬ã¯ããªã䜿çšããŠãã¢ããããŒãããããã¡ã€ã«ãä¿åããŸãã WebãµãŒããŒã«ã¯ãæäžäœWebãã©ã«ããŒã®äžã®ã¹ãã¢ãã£ã¬ã¯ããªãžã®æžã蟌ã¿ã¢ã¯ã»ã¹ãå¿
èŠã§ãã" + +#: ../../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 "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 "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 "ããªãããã®äžè¬å
¬éã®æçš¿ã«ã¯ãããšãã°ããªãèªèº«ã®ããäžã®ç»åãžã®åç
§ãå«ãŸããŠããå¯èœæ§ãããããããã®å¶éãçµã¿èŸŒãŸããŠããŸãã" + +#: ../../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 "SSL蚌ææžã®æ€èšŒ" + +#: ../../Zotlabs/Module/Setup.php:673 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " +msgstr ".htaccessã®URLæžãæããæ©èœããŠããŸããããµãŒããŒã®æ§æã確èªããŸãããã¹ãïŒ" + +#: ../../Zotlabs/Module/Setup.php:676 +msgid "Url rewrite is working" +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 "ããŒã¿ããŒã¹æ§æãã¡ã€ã«\"ãhtconfig.php \"ãæžã蟌ããŸããã§ãããåå°ã®ããã¹ãã䜿çšããŠãWebãµãŒããŒã®ã«ãŒãã«æ§æãã¡ã€ã«ãäœæããŠãã ããã" + +#: ../../Zotlabs/Module/Setup.php:718 +msgid "Errors encountered creating database tables." +msgstr "ããŒã¿ããŒã¹ããŒãã«ã®äœæäžã«ãšã©ãŒãçºçããŸããã" + +#: ../../Zotlabs/Module/Setup.php:764 +msgid "<h1>What next?</h1>" +msgstr "<h1>次ã«ããããš</h1>" + +#: ../../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 "ãã®ãµã€ãã¯$ Projectnameã䜿çšããŠããŸã" + +#: ../../Zotlabs/Module/Siteinfo.php:31 +msgid "" +"Federated and decentralised networking and identity services provided by Zot" +msgstr "ZotãæäŸããçµ±åããã³åæ£åã®ãããã¯ãŒã¯ããã³IDãµãŒãã¹" + +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Additional federated transport protocols:" +msgstr "è¿œå ã®çµ±åãã©ã³ã¹ããŒããããã³ã«ïŒ" + +#: ../../Zotlabs/Module/Siteinfo.php:36 +#, php-format +msgid "Version %s" +msgstr "ããŒãžã§ã³: %s" + +#: ../../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 "ãããã®åèªãå«ãã³ã³ãã³ãã®ã¿ãã€ã³ããŒãããŸãïŒ1è¡ã«1ã€ïŒ" + +#: ../../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 "%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ã®ãã©ããŒãåæ¢ããŸãã" + +#: ../../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 "å©çšå¯èœãªææ¡ã¯ãããŸãããæ°ãããµã€ãã®å Žåã¯ã24æéåŸã«ããäžåºŠãè©Šããã ããã" + +#: ../../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 "%1$sã%2$sã®%3$sã«%4$sãšã¿ã°ãä»ããŸãã" + +#: ../../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 "OBJïŒ %1$s %2$s %3$s" + +#: ../../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 "ã¢ãã®URLïŒãªãã·ã§ã³ïŒ" + +#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:371 +msgid "URL for photo of thing (optional)" +msgstr "ã¢ãã®åçã®URLïŒãªãã·ã§ã³ïŒ" + +#: ../../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 "ãã®ãã£ã³ãã«ã¯%dããŒã¯ã³ã«å¶éãããŠããŸã" + +#: ../../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 "ãã®ãã©ãŒã ã䜿çšããŠãäžæçãªã¢ã¯ã»ã¹èå¥åãäœæããéã¡ã³ããŒãšç©äºãå
±æããŸãããããã®IDã¯ã¢ã¯ã»ã¹å¶åŸ¡ãªã¹ãã§äœ¿çšã§ãã蚪åè
ã¯ãããã®è³æ Œæ
å ±ã䜿çšããŠãã°ã€ã³ããŠãã©ã€ããŒãã³ã³ãã³ãã«ã¢ã¯ã»ã¹ã§ããŸãã" + +#: ../../Zotlabs/Module/Tokens.php:135 +msgid "" +"You may also provide <em>dropbox</em> style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "瀺ãããŠããããã«ãç¹å®ã®ãµã€ãURLã«ãã°ã€ã³ãã¹ã¯ãŒããè¿œå ããããšã«ãããå人ã仲éã«<em> dropbox </em>ã¹ã¿ã€ã«ã®ã¢ã¯ã»ã¹ãªã³ã¯ãæäŸããããšãã§ããŸããäŸïŒ" + +#: ../../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 "æå¹æéïŒyyyy-mm-ddïŒ" + +#: ../../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 "ãã£ã³ãã«æ
å ±ãšæè¿ã®ã³ã³ãã³ããJSONããã¯ã¢ããã«ãšã¯ã¹ããŒãããå¥ã®ãµãŒããŒããã«åŸ©å
ãŸãã¯ã€ã³ããŒãã§ããŸããããã«ããããã¹ãŠã®æ¥ç¶ãæš©éããããã¡ã€ã«ããŒã¿ãããã³æ°ãæåã®æçš¿ãããã¯ã¢ãããããŸãããã®ãã¡ã€ã«ã¯éåžžã«å€§ããå ŽåããããŸãããã°ãããåŸ
ã¡ãã ããããã®ããŠã³ããŒããéå§ããããŸã§æ°åãããå ŽåããããŸãã" + +#: ../../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 <a href=\"%1$s" +"\">%2$s</a>" +msgstr "ä»å¹Žãªã©ãç¹å®ã®å¹Žã®ãã¹ãŠã®æçš¿ãéžæããã«ã¯ã<a href=\" %1$s \"> %2$s </a>ã«ã¢ã¯ã»ã¹ããŠãã ãã" + +#: ../../Zotlabs/Module/Uexport.php:82 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"<a href=\"%1$s\">%2$s</a>" +msgstr "ä»å¹Žã®1æãªã©ãç¹å®ã®æã®ãã¹ãŠã®æçš¿ãéžæããã«ã¯ã<a href=\"%1$s\">%2$s</a>ã«ã¢ã¯ã»ã¹ããŠãã ãã" + +#: ../../Zotlabs/Module/Uexport.php:83 +#, php-format +msgid "" +"These content files may be imported or restored by visiting <a href=\"%1$s\">" +"%2$s</a> on any site containing your channel. For best results please import " +"or restore these in date order (oldest first)." +msgstr "ãããã®ã³ã³ãã³ããã¡ã€ã«ã¯ããã£ã³ãã«ãå«ããµã€ãã§<a href=\" %1$s \"> %2$s </a>ã«%1$sããŠã€ã³ããŒããŸãã¯åŸ©å
ã§ããŸããæè¯ã®çµæãåŸãã«ã¯ãããããæ¥ä»é ã«ïŒæãå€ããã®ããïŒã€ã³ããŒããŸãã¯åŸ©å
ããŠãã ããã" + +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "æ¥ç¶ãªãã" + +#: ../../Zotlabs/Module/Viewconnections.php:83 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "%sã®ãããã£ãŒã«[%s]ã«ã¢ã¯ã»ã¹ããŠããŸãã" + +#: ../../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 "ãã£ã³ãã«ã§ç®¡çãããWebããŒãžãæäŸãã" + +#: ../../Zotlabs/Module/Webpages.php:69 +msgid "Import Webpage Elements" +msgstr "WebããŒãžèŠçŽ ãã€ã³ããŒããã" + +#: ../../Zotlabs/Module/Webpages.php:70 +msgid "Import selected" +msgstr "éžæããã€ã³ããŒã" + +#: ../../Zotlabs/Module/Webpages.php:93 +msgid "Export Webpage Elements" +msgstr "WebããŒãžèŠçŽ ã®ãšã¯ã¹ããŒã" + +#: ../../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 "zipãã¡ã€ã«ãéãéã®ãšã©ãŒ" + +#: ../../Zotlabs/Module/Webpages.php:318 +msgid "Invalid folder path." +msgstr "ç¡å¹ãªãã©ã«ããŒãã¹ã" + +#: ../../Zotlabs/Module/Webpages.php:345 +msgid "No webpage elements detected." +msgstr "WebããŒãžèŠçŽ ã¯æ€åºãããŸããã§ããã" + +#: ../../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 "Wikiã¢ããª" + +#: ../../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 "Wikiã®ååŸãšã©ãŒ" + +#: ../../Zotlabs/Module/Wiki.php:140 +msgid "Error creating zip file export folder" +msgstr "zipãã¡ã€ã«ãšã¯ã¹ããŒããã©ã«ããŒã®äœæãšã©ãŒ" + +#: ../../Zotlabs/Module/Wiki.php:191 +msgid "Error downloading wiki: " +msgstr "Wikiã®ããŠã³ããŒããšã©ãŒïŒ" + +#: ../../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 "Wikiåãç·šé" + +#: ../../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 "Wikiã®äœæãšã©ãŒãç¡å¹ãªååã" + +#: ../../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 "Wikiã¯äœæãããŸããããããŒã ããŒãžã®äœæäžã«ãšã©ãŒãçºçããŸããã" + +#: ../../Zotlabs/Module/Wiki.php:515 +msgid "Error creating wiki" +msgstr "Wikiã®äœæãšã©ãŒ" + +#: ../../Zotlabs/Module/Wiki.php:539 +msgid "Error updating wiki. Invalid name." +msgstr "Wikiã®æŽæ°ãšã©ãŒãç¡å¹ãªååã" + +#: ../../Zotlabs/Module/Wiki.php:559 +msgid "Error updating wiki" +msgstr "Wikiã®æŽæ°ãšã©ãŒ" + +#: ../../Zotlabs/Module/Wiki.php:574 +msgid "Wiki delete permission denied." +msgstr "Wikiã®åé€èš±å¯ãæåŠãããŸããã" + +#: ../../Zotlabs/Module/Wiki.php:584 +msgid "Error deleting wiki" +msgstr "Wikiã®åé€ãšã©ãŒ" + +#: ../../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 "Xchanæ€çŽ¢" + +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "xchan(ãŸãã¯webbie)ãæ€çŽ¢:" + +#: ../../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 "䜿çšå¯èœãªãã¡ã€ã«ã¹ãã¬ãŒãž%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%)" + +#: ../../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 "%sãã©ã€ãã·ãŒã°ã«ãŒãã«é¢é£ããæçš¿ã衚瀺" + +#: ../../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 "%sæåºããæçš¿ã衚瀺" + +#: ../../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 "ters" +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 "DBã¢ããããŒã" + +#: ../../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 "%2$.0fã®%1$.0fãæ¥ç¶ãèš±å¯ãããŠããŸãã" + +#: ../../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 "äŸïŒbob @ example.comãhttpsïŒ//example.com/barbara" + +#: ../../Zotlabs/Widget/Hq_controls.php:14 +msgid "HQ Control Panel" +msgstr "HQã³ã³ãããŒã«ããã«" + +#: ../../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 "ãããã%s!!ãªã¢ãŒããã°ã€ã³ã¯æåããŸããïŒ" + diff --git a/view/ja/hstrings.php b/view/ja/hstrings.php new file mode 100644 index 000000000..49c7f2388 --- /dev/null +++ b/view/ja/hstrings.php @@ -0,0 +1,2796 @@ +<?php + +if(! function_exists("string_plural_select_ja")) { +function string_plural_select_ja($n){ + return 0;; +}} +App::$rtl = 0; +App::$strings["plural_function_code"] = "0"; +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"] = "ãã°ã€ã³/Eã¡ãŒã«"; +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"] = "[$ 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["Cron/Scheduled tasks not running."] = "Cron/ã¹ã±ãžã¥ãŒã«æžã¿ã¿ã¹ã¯ãå®è¡ãããŠããŸããã"; +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 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["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.</br />These permissions set who is allowed to view the post."] = "æçš¿ãå
±æããåŸãæçš¿æš©é%sã%sã«å€æŽããããšã¯ã§ããŸããã</ br />ãããã®æš©éã¯ãæçš¿ã®é²èŠ§ãèš±å¯ãããŠãŒã¶ãŒãèšå®ããŸãã"; +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 => "ããã", +); +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 => "%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"] = "äŸïŒ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["<span %1\$s>%2\$d people</span> like this."] = array( + 0 => "<span %1\$s > %2\$d人</ span>ãã®ããã«ã", + 1 => "<span %1\$s > %2\$d人</ span>ãã®ããã«ã", +); +App::$strings["<span %1\$s>%2\$d people</span> don't like this."] = array( + 0 => "<span %1\$s > %2\$d人</ span>ã¯ããã奜ãã§ã¯ãããŸããã", + 1 => "<span %1\$s > %2\$d人</ span>ã¯ããã奜ãã§ã¯ãããŸããã", +); +App::$strings["and"] = "ãããŠ"; +App::$strings[", and %d other people"] = array( + 0 => "ãä»%d人", + 1 => "ãä»%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"] = "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["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"] = "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["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 => "åºåžäž", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "åºåžããªã", + 1 => "åºåžããªã", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "æªå®", + 1 => "æªå®", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "åæãã", + 1 => "åæãã", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "åæããªã", + 1 => "åæããªã", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "æ£æš©", + 1 => "æ£æš©", +); +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"] = 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"] = "%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 <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "ãã®ååã®åé€ãããã°ã«ãŒãã埩掻ããŸãããæ¢åã®ã¢ã€ãã ã®æš©éã¯ããã®ã°ã«ãŒããšå°æ¥ã®ã¡ã³ããŒã«é©çšãããå¯èœæ§ããããŸã<strong> </ strong>ããããæå³ãããã®ã§ãªãå Žåã¯ãå¥ã®ååã§å¥ã®ã°ã«ãŒããäœæããŠãã ããã"; +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."] = "%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"] = "%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["Submit"] = "確å®"; +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 => "%då", + 1 => "%då", +); +App::$strings["about %d hours"] = array( + 0 => "çŽ%dæé", + 1 => "çŽ%dæé", +); +App::$strings["%d days"] = array( + 0 => "%dæ¥", + 1 => "%dæ¥", +); +App::$strings["%d months"] = array( + 0 => "%dãæ", + 1 => "%dãæ", +); +App::$strings["%d years"] = array( + 0 => "%d幎", + 1 => "%d幎", +); +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"] = "timeago.numbers"; +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"] = "é±é"; +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"] = "@name, !forum, #tag, ?docs, content ã§ãµã€ããæ€çŽ¢"; +App::$strings["Admin"] = "管çè
"; +App::$strings["Site Setup and Configuration"] = "ãµã€ãã»ããã¢ãããšèšå®"; +App::$strings["Loading"] = "èªã¿èŸŒã¿äž"; +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["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"] = "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"] = "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"] = "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"] = "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 <!item_type!>"] = "%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"] = "åå äºå®"; +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:"] = "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)"] = "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 => "%sã¢ã«ãŠã³ãããããã¯/ãããã¯è§£é€ãããŸãã", + 1 => "%sã¢ã«ãŠã³ãããããã¯/ãããã¯è§£é€ãããŸãã", +); +App::$strings["%s account deleted"] = array( + 0 => "%sã¢ã«ãŠã³ããåé€ãããŸãã", + 1 => "%sã¢ã«ãŠã³ããåé€ãããŸãã", +); +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."] = "ãã©ã°ã€ã³%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 => "%sãã£ã³ãã«ã®æ€é²/ç¡æ€é²", + 1 => "%sãã£ã³ãã«ã®æ€é²/ç¡æ€é²", +); +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "%sãã£ã³ãã«ã³ãŒãã®èš±å¯/çŠæ¢", + 1 => "%sãã£ã³ãã«ã³ãŒãã®èš±å¯/çŠæ¢", +); +App::$strings["%s channel deleted"] = array( + 0 => "%sãã£ã³ãã«ãåé€ãããŸãã", + 1 => "%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["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."] = "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/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "https://youtube.com/ <br /> https://www.youtube.com/ <br /> https://youtu.be/ <br /> https://vimeo.com/ <br /> https://soundcloud.com/ <br />"; +App::$strings["All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked."] = "ä»ã®ãã¹ãŠã®åã蟌ã¿ã³ã³ãã³ãã¯ãã£ã«ã¿ãªã³ã°ããããã®ãµã€ãããã®åã蟌ã¿ã³ã³ãã³ããæ瀺çã«ãããã¯ãããªãéã<strong> </ strong>ã"; +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)"] = "%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["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"] = "ãã£ã«ã¿ãªã³ã°ãããŠããªãHTML / CSS / JSã¯èš±å¯ãããŸã"; +App::$strings["Administrator Information"] = "管çè
æ
å ±"; +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"] = "ãã®ãµã€ãã®äžè¬å
¬éãããŠãã説æã siteinfoããŒãžã«è¡šç€ºãããŸãã BBCodeã¯ããã§äœ¿çšã§ããŸã"; +App::$strings["System language"] = "ã·ã¹ãã èšèª"; +App::$strings["System theme"] = "ã·ã¹ãã ããŒã"; +App::$strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "ããã©ã«ãã®ã·ã¹ãã ããŒã-ãŠãŒã¶ãŒãããã¡ã€ã«ã«ãã£ãŠäžæžããããå ŽåããããŸã-<a href='#' id='cnftheme'>ããŒãèšå®ã®å€æŽ</a>"; +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["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)"] = "ãªããžããªããŒãžã§ã³(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"] = "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 <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can <strong>not</strong> change those settings here."] = "äžéšã®æš©éã¯ããã£ã³ãã«ã®<a href=\"settings\"> <strong>ãã©ã€ãã·ãŒèšå®</ strong> </a>ããç¶æ¿ãããå Žåããããåã
ã®èšå®ãããåªå
床ãé«ããªããŸããããã§ãããã®èšå®ãå€æŽããããšã¯<strong>ã§ããŸãã</ strong>ã"; +App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "äžéšã®æš©éã¯ããã£ã³ãã«ã®<a href=\"settings\"> <strong>ãã©ã€ãã·ãŒèšå®</ strong> </a>ããç¶æ¿ãããå Žåããããåã
ã®èšå®ãããåªå
床ãé«ããªããŸãããããã®èšå®ã¯ããã§å€æŽã§ããŸãããç¶æ¿ãããèšå®ãå€æŽãããªãéãã圱é¿ã¯ãããŸããã"; +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 => "%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."] = "確èªããŒã¯ã³ãã¡ãŒã«ã¢ãã¬ã¹[ %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"] = "ãã©ã€ãã·ãŒã°ã«ãŒãïŒ %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 => "%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:"] = "é»åã¡ãŒã«ã¢ãã¬ã¹ã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 <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "ç¶è¡ããã«ã¯ã<a href=\"rmagic\"> \$Projectname IDã§ãã°ã€ã³</a>ãããã<a href=\"register\">æ°ãã\$Projectnameã¡ã³ããŒãšããŠç»é²</a>ããŠãã ããã"; +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 <em>Settings</em> page after successful login."] = "ãã°ã€ã³ã«æåãããšããã¹ã¯ãŒãã¯<em>èšå®</em>ããŒãžããå€æŽãããå ŽåããããŸãã"; +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 <strong>may</strong> be able to respond from the sender's profile page."] = "å®å
šãªéä¿¡ã¯å©çšã§ããŸãããéä¿¡è
ã®ãããã¡ã€ã«ããŒãžããè¿ä¿¡ã§ãã<strong>ãã</strong>ãããŸããã"; +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 <a href=\"import\">import an existing channel</a> from another location."] = "ãŸãã¯<a href=\"import\">æ¢åã®ãã£ã³ãã«ãå¥ã®å Žæããã€ã³ããŒã</a>ããŸãã"; +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"] = "Pokeã¢ããª"; +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 <strong>may</strong> 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["<a href=\"pubsites\">Register at another affiliated hub.</a>"] = "<a href=\"pubsites\">å¥ã®ææºããã«ç»é²ããŸãã</a>"; +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 - <em>extremely permissive (should be used with caution)</em>"] = "éåžžã«ãããªãã¯-<em>éåžžã«å¯å®¹ã§ãïŒæ³šæããŠäœ¿çšããå¿
èŠããããŸãïŒ</em>"; +App::$strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "æšæº-å¿
èŠã«å¿ããŠããã©ã«ãã®ãããªãã¯ããã©ã€ãã·ãŒïŒãœãŒã·ã£ã«ãããã¯ãŒã¯ã®ã¢ã¯ã»ã¹èš±å¯ã«äŒŒãŠããŸããããã©ã€ãã·ãŒãæ¹åãããŸãïŒ</em>"; +App::$strings["Private - <em>default private, never open or public</em>"] = "éå
¬é-ããã©ã«ãã§ã¯éå
¬éãéå
¬éãŸãã¯å
¬é</ em>"; +App::$strings["Blocked - <em>default blocked to/from everybody</em>"] = "ãããã¯æžã¿-<em>ããã©ã«ãã§ãã¹ãŠã®ãŠãŒã¶ãŒãšã®éã§ãããã¯</ em>"; +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 <em>interesting</em> profile change"] = "<em>èå³æ·±ã</em>ãããã¡ã€ã«ã®å€æŽãè¡ã£ããšã"; +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"] = "ããªãã®æçš¿ã«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"] = "æªèªã®ãã£ã³ãã«ã¢ã¯ãã£ããã£"; +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äžã®ãã£ã¬ã¯ããªãžã®æžã蟌ã¿ã¢ã¯ã»ã¹æš©ãæã£ãŠããå¿
èŠããããŸãã"; +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["<h1>What next?</h1>"] = "<h1>次ã«ããããš</h1>"; +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ã®ãã©ããŒãåæ¢ããŸãã"; +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."] = "å©çšå¯èœãªææ¡ã¯ãããŸãããæ°ãããµã€ãã®å Žåã¯ã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ãšã¿ã°ãä»ããŸãã"; +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 <em>dropbox</em> style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "瀺ãããŠããããã«ãç¹å®ã®ãµã€ãURLã«ãã°ã€ã³ãã¹ã¯ãŒããè¿œå ããããšã«ãããå人ã仲éã«<em> dropbox </em>ã¹ã¿ã€ã«ã®ã¢ã¯ã»ã¹ãªã³ã¯ãæäŸããããšãã§ããŸããäŸïŒ"; +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 <a href=\"%1\$s\">%2\$s</a>"] = "ä»å¹Žãªã©ãç¹å®ã®å¹Žã®ãã¹ãŠã®æçš¿ãéžæããã«ã¯ã<a href=\" %1\$s \"> %2\$s </a>ã«ã¢ã¯ã»ã¹ããŠãã ãã"; +App::$strings["To select all posts for a given month, such as January of this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "ä»å¹Žã®1æãªã©ãç¹å®ã®æã®ãã¹ãŠã®æçš¿ãéžæããã«ã¯ã<a href=\"%1\$s\">%2\$s</a>ã«ã¢ã¯ã»ã¹ããŠãã ãã"; +App::$strings["These content files may be imported or restored by visiting <a href=\"%1\$s\">%2\$s</a> on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "ãããã®ã³ã³ãã³ããã¡ã€ã«ã¯ããã£ã³ãã«ãå«ããµã€ãã§<a href=\" %1\$s \"> %2\$s </a>ã«%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): "] = "xchan(ãŸãã¯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["__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"] = "%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"] = "ã³ã¡ã³ããæ°ããæçš¿ã®é ã«äžŠã¹ãŸãã"; +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"] = "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"] = "å
±æã«ã¬ã³ããŒ"; +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"] = "ããŒã ãèŠã"; +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."] = "ãããã%s!!ãªã¢ãŒããã°ã€ã³ã¯æåããŸããïŒ"; diff --git a/view/js/main.js b/view/js/main.js index 2b4acdf61..f3b8151b0 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1058,7 +1058,7 @@ function pageUpdate() { bParam_page = 1; } - update_url = baseurl + '/' + page_query + '/?f=&aj=1&page=' + bParam_page + extra_args ; + update_url = baseurl + '/' + decodeURIComponent(page_query) + '/?f=&aj=1&page=' + bParam_page + extra_args ; $("#page-spinner").show(); update_mode = 'append'; |