mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-30 04:01:33 -04:00
Before, the ignore info were stored in a different file which was a bit cumbersome for new comers. Now, this info is stored directly in the translation file as a comment. Before, there was no way of telling translators that a previously translated string was in need of a new translation. Now, the dirty information is there to convey that info.
55 lines
2.6 KiB
PHP
55 lines
2.6 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' => '이 이메일 주소는 유효하지 않습니다.',
|
|
'required' => '이메일 주소가 필요합니다.',
|
|
),
|
|
'validation' => array(
|
|
'change_email' => '<a href="%s">프로필 페이지</a>에서 이메일 주소를 변경 할 수 있습니다.',
|
|
'email_sent_to' => '<strong>%s</strong>에 이메일을 보냈습니다. 이메일 주소를 인증하려면 전송 된 지침을 따라 주세요.',
|
|
'feedback' => array(
|
|
'email_failed' => '서버 설정 오류로 이메일을 전송하지 못했습니다.',
|
|
'email_sent' => '귀하의 메일로 이메일이 전송되었습니다.',
|
|
'error' => '이메일 주소 인증 실패.',
|
|
'ok' => '이메일 주소가 인증되었습니다.',
|
|
'unnecessary' => '이 이메일 주소는 이미 인증 되었습니다.',
|
|
'wrong_token' => '이 이메일 주소는 잘못된 토큰으로 인해 인증에 실패했습니다.',
|
|
),
|
|
'need_to' => '%s 을(를) 사용하기 위해 이메일 주소를 인증 해야합니다',
|
|
'resend_email' => '이메일 재발송',
|
|
'title' => '이메일 주소 인증',
|
|
),
|
|
),
|
|
'mailer' => array(
|
|
'email_need_validation' => array(
|
|
'body' => '%s 에 가입되었습니다, 하지만 메일 주소 확인이 필요합니다. 다음 링크를 클릭하여 가입을 완료하세요:',
|
|
'title' => '계정을 인증 해야합니다',
|
|
'welcome' => '%s 에 오신 것을 환영합니다,',
|
|
),
|
|
),
|
|
'password' => array(
|
|
'invalid' => '이 비밀번호는 유효하지 않습니다.',
|
|
),
|
|
'tos' => array(
|
|
'feedback' => array(
|
|
'invalid' => '가입하려면 서비스 약관에 동의해야합니다.',
|
|
),
|
|
),
|
|
'username' => array(
|
|
'invalid' => '이 사용자 이름은 유효하지 않습니다.',
|
|
'taken' => '%s 은(는) 이미 시용되고 있는 사용자 이름입니다',
|
|
),
|
|
);
|