17 lines
1015 B
PHP
17 lines
1015 B
PHP
<?php
|
|
$TRANSLATIONS = array(
|
|
"Email address you entered is not valid" => "您輸入的 email 地址無效",
|
|
"There is already a pending registration with this email" => "這個 email 地址已經有一個等待中的註冊",
|
|
"Verify your ownCloud registration request" => "驗證您的 ownCloud 註冊請求",
|
|
"To create a new account on ownCloud, just click the following link: {link}" => "要在 ownCloud 上建立帳號,請點以下連結:{link}",
|
|
"Username" => "使用者名稱:",
|
|
"Password" => "密碼",
|
|
"Create account" => "建立帳號",
|
|
"Thank you for registering, you should receive verification link in a few minutes." => "感謝您註冊,幾分鐘之後您應該就會收到驗證連結",
|
|
"Email" => "信箱",
|
|
"Request verification link" => "請求驗證連結",
|
|
"Please re-enter a valid email address" => "請重新輸入有效的 email 地址",
|
|
"You will receive an email with verification link" => "等一下你會收到內含驗證連結的 email"
|
|
);
|
|
$PLURAL_FORMS = "nplurals=1; plural=0;";
|