12 lines
876 B
PHP
12 lines
876 B
PHP
<?php
|
||
|
||
if(! function_exists("string_plural_select_ja")) {
|
||
function string_plural_select_ja($n){
|
||
$n = intval($n);
|
||
return intval(0);
|
||
}}
|
||
$a->strings['Which nitter server shall be used for the replacements in the post bodies? Use the URL with servername and protocol. See %s for a list of available public Nitter servers.'] = '投稿本文の置換には、どのnitterサーバーを使用しますか?サーバー名とプロトコルを記載したURLを使用します。公開されているNitterサーバーの一覧は%sをご覧ください。';
|
||
$a->strings['Nitter server'] = 'Nitterサーバー';
|
||
$a->strings['Save Settings'] = '設定を保存';
|
||
$a->strings['Links to Twitter in this posting were replaced by links to the Nitter instance at %s'] = 'この投稿のTwitterへのリンクは、%sのNitterインスタンスへのリンクに置換されました';
|