mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-15 10:43:55 -04:00
https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki/Version-4.0-User-Upgrade-Guide A couple of rules have changed name. Exclusion paths have slightly changed behaviour. Main change is that it was unhappy with our i18n header comments, so minor edit there, since that rule kind of makes sense the rest of the time
55 lines
2.7 KiB
PHP
55 lines
2.7 KiB
PHP
<?php
|
|
|
|
/******************************************************************************
|
|
* Each entry of that file can be associated with a comment to indicate its *
|
|
* state. When there is no comment, it means the entry is fully translated. *
|
|
* The recognized comments are (comment matching is case-insensitive): *
|
|
* + TODO: the entry has never been translated. *
|
|
* + DIRTY: the entry has been translated but needs to be updated. *
|
|
* + IGNORE: the entry does not need to be translated. *
|
|
* When a comment is not recognized, it is discarded. *
|
|
******************************************************************************/
|
|
|
|
return array(
|
|
'email' => array(
|
|
'feedback' => array(
|
|
'invalid' => 'このEメールアドレスは無効です。',
|
|
'required' => 'Eメールアドレスは必要です。',
|
|
),
|
|
'validation' => array(
|
|
'change_email' => 'Eメールアドレスは <a href="%s">プロフィールページで変更できます</a>.',
|
|
'email_sent_to' => 'あなたのメールボックス<strong>%s</strong>にメールを送りました。有効性を確認するためにメールを確かめてください。',
|
|
'feedback' => array(
|
|
'email_failed' => 'サーバー設定にエラーがあるためEメールを送信できませんでした。',
|
|
'email_sent' => 'Eメールはあなたのメールボックスに送信されました',
|
|
'error' => 'Eメールアドレスの確認は失敗しました。',
|
|
'ok' => 'このEメールアドレスは確認されました。',
|
|
'unnecessary' => 'このEメールアドレスは既に確認済みです。',
|
|
'wrong_token' => 'このEメールアドレスのトークンは誤っています。',
|
|
),
|
|
'need_to' => '%s を使うためには、Eメールアドレスの認証が必要です。',
|
|
'resend_email' => 'Eメールの再送',
|
|
'title' => 'Eメールアドレス確認',
|
|
),
|
|
),
|
|
'mailer' => array(
|
|
'email_need_validation' => array(
|
|
'body' => 'あなたは %s で登録されましたが、Eメールアドレスを確認する必要があります。このリンクに従ってください:',
|
|
'title' => 'あなたのアカウントを確認する必要があります',
|
|
'welcome' => 'ようこそ %s さん',
|
|
),
|
|
),
|
|
'password' => array(
|
|
'invalid' => 'このパスワードは無効です',
|
|
),
|
|
'tos' => array(
|
|
'feedback' => array(
|
|
'invalid' => 'あなたが使うには利用規約に同意する必要があります。',
|
|
),
|
|
),
|
|
'username' => array(
|
|
'invalid' => 'このユーザー名は無効です。',
|
|
'taken' => '%s は既に使われているユーザー名です。',
|
|
),
|
|
);
|