diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-07-26 00:24:27 -0400 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-07-26 00:24:27 -0400 |
commit | 8dd07c0ddd99ae626a1ec8c06f75f27fed51269f (patch) | |
tree | 261d3c9911dabc58c1ac54e4e36b3dee24d2032b /conf/locale | |
parent | 0a739cf9ac901f54484c34bba8322418dedb09b0 (diff) | |
download | gitea-8dd07c0ddd99ae626a1ec8c06f75f27fed51269f.tar.gz gitea-8dd07c0ddd99ae626a1ec8c06f75f27fed51269f.zip |
New UI merge in progress
Diffstat (limited to 'conf/locale')
-rw-r--r-- | conf/locale/locale_en-US.ini | 177 | ||||
-rw-r--r-- | conf/locale/locale_zh-CN.ini | 176 |
2 files changed, 353 insertions, 0 deletions
diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini new file mode 100644 index 0000000000..b8832167ae --- /dev/null +++ b/conf/locale/locale_en-US.ini @@ -0,0 +1,177 @@ +app_desc = A painless self-hosted Git service written in Go + +home = Home +dashboard = Dashboard +explore = Explore +help = Help +sign_in = Sign In +sign_out = Sign Out +sign_up = Sign Up +register = Register +website = Website +version = Version +page = Page +template = Template +language = Language + +username = Username +email = E-mail +password = Password +re_type = Re-Type +captcha = Captcha + +repository = Repository +organization = Organization +mirror = Mirror +new_repo = New Repository +new_migrate = New Migration +new_org = New Organization +manage_org = Manage Organizations +admin_panel = Admin Panel +account_settings = Account Settings +settings = Settings + +news_feed = News Feed +pull_requests = Pull Requests +issues = Issues + +cancel = Cancel + +[home] +uname_holder = Username or E-mail +password_holder = Password +switch_dashboard_context = Switch Dashboard Context +my_repos = My Repositories +collaborative_repos = Collaborative Repositories +my_orgs = My Organizations +my_mirrors = My Mirrors + +[auth] +create_new_account = Create New Account +register_hepler_msg = Already have an account? Sign in now! +disable_register_prompt = Sorry, registration has been disabled. Please contact the site administrator. +remember_me = Remember Me +forget_password = Fotget password? +sign_up_now = Need an account? Sign up now. + +[form] +UserName = Username +Email = E-mail address +Password = Password +Retype = Re-type password +SSHTitle = SSH key name + +require_error = ` cannot be empty.` +alpha_dash_error = ` must be valid alpha or numeric or dash(-_) characters.` +alpha_dash_dot_error = ` must be valid alpha or numeric or dash(-_) or dot characters.` +min_size_error = ` must contain at least %s characters.` +max_size_error = ` must contain at most %s characters.` +email_error = ` is not a valid e-mail address.` +url_error = ` is not a valid URL.` +unknown_error = Unknown error: +captcha_incorrect = Captcha didn't match. +password_not_match = Password and re-type password are not same. + +username_been_taken = Username has been already taken. +repo_name_been_taken = Repository name has been already taken. +email_been_used = E-mail address has been already used. +ssh_key_been_used = Public key name has been used. +illegal_username = Your username contains illegal characters. +illegal_repo_name = Repository name contains illegal characters. +username_password_incorrect = Username or password is not correct. + +invalid_ssh_key = Sorry, we're not able to verify your SSH key: %s + +still_own_repo = Your account still have ownership of repository, you have to delete or transfer them first. + +[settings] +profile = Profile +password = Password +ssh_keys = SSH Keys +social = Social Accounts +delete = Delete Accoount + +public_profile = Public Profile +profile_desc = Your Email address is public and will be used for any account related notifications, and any web based operations made via the site. +full_name = Full Name +website = Website +location = Location +update_profile = Update Profile +update_profile_success = Your profile has been successfully updated. + +change_password = Change Password +old_password = Current Password +new_password = New Password +password_incorrect = Current password is not correct. +change_password_success = Password is changed successfully. You can now sign in via new password. + +manage_ssh_keys = Manage SSH Keys +add_key = Add Key +ssh_desc = This is a list of SSH keys associated with your account. Remove any keys that you do not recognize. +ssh_helper = <strong>Need help?</strong> Check out our guide to <a href="https://help.github.com/articles/generating-ssh-keys">generating SSH keys</a> or troubleshoot <a href="https://help.github.com/ssh-issues/">common SSH Problems</a>. +add_new_key = Add SSH Key +key_name = Key Name +key_content = Content +add_key_success = New SSH Key has been added! +delete_key = Delete +add_on = Added on +last_used = Last used on +no_activity = No recent activity + +manage_social = Manage Associated Social Accounts + +delete_account = Delete Your Account +delete_prompt = The operation will delete your account permanently, and <strong>CANNOT</strong> be undo! +confirm_delete_account = Confirm Deletion + +[repo] +owner = Owner +repo_name = Repository Name +repo_name_helper = Great repository names are short, memorable and <strong>unique</strong>. +visibility = Visibility +visiblity_helper = This repository is <span class="label label-red label-radius">Private</span> +repo_desc = Description +repo_lang = Language +repo_lang_helper = Select a .gitignore file +license = License +license_helper = Select a license file +init_readme = Initialize this repository with a README.md +create_repo = Create Repository + +[action] +create_repo = created repository <a href="/%s">%s</a> +commit_repo = pushed to <a href="/%s/src/%s">%s</a> at <a href="/%s">%s</a> +create_issue = opened issue <a href="/%s/issues/%s">%s#%s</a> +comment_issue = commented on issue <a href="/%s/issues/%s">%s#%s</a> + +[tool] +ago = ago +from_now = from now +now = now +1s = 1 second %s +1m = 1 mintue %s +1h = 1 hour %s +1d = 1 day %s +1w = 1 week %s +1mon = 1 month %s +1y = 1 year %s +seconds = %d seconds %s +minutes = %d minutes %s +hours = %d hours %s +days = %d days %s +weeks = %d weeks %s +months = %d months %s +years = %d years %s + + + + + + + + + + + + + diff --git a/conf/locale/locale_zh-CN.ini b/conf/locale/locale_zh-CN.ini new file mode 100644 index 0000000000..30e683071e --- /dev/null +++ b/conf/locale/locale_zh-CN.ini @@ -0,0 +1,176 @@ +app_desc = 基于 Go 语言的自助 Git 服务 + +home = 首页 +dashboard = 控制面板 +explore = 探索 +help = 帮助 +sign_in = 登录 +sign_out = 退出 +sign_up = 注册 +register = 注册 +website = 官方网站 +version = 当前版本 +page = 页面 +template = 模板 +language = 语言选项 + +username = 用户名 +email = 邮箱 +password = 密码 +re_type = 确认密码 +captcha = 验证码 + +repository = 仓库 +organization = 组织 +mirror = 镜像 +new_repo = 创建新的仓库 +new_migrate = 迁移外部仓库 +new_org = 创建新的组织 +manage_org = 管理我的组织 +admin_panel = 管理面板 +account_settings = 帐户设置 +settings = 帐户设置 + +news_feed = 最新活动 +pull_requests = 合并请求 +issues = 工单管理 + +cancel = 取消 + +[home] +uname_holder = 用户名或邮箱 +password_holder = 密码 +switch_dashboard_context = 切换控制面板用户 +my_repos = 我的仓库 +collaborative_repos = 参与协作的仓库 +my_orgs = 我的组织 +my_mirrors = 我的镜像 + +[auth] +create_new_account = 创建帐户 +register_hepler_msg = 已经注册?立即登录! +disable_register_prompt = 对不起,注册功能已被关闭。请联系网站管理员。 +remember_me = 记住登录 +forget_password = 忘记密码? +sign_up_now = 还没帐户?马上注册。 + +[form] +UserName = 用户名 +Email = 邮箱地址 +Password = 密码 +Retype = 确认密码 +SSHTitle = SSH 密钥名称 + +require_error = 不能为空。 +alpha_dash_error = 必须为英文字母、阿拉伯数字或横线(-_)。 +alpha_dash_dot_error = 必须为英文字母、阿拉伯数字、横线(-_)或点。 +min_size_error = 长度最小为 %s 个字符。 +max_size_error = 长度最大为 %s 个字符。 +email_error = 不是一个有效的邮箱地址。 +url_error = 不是一个有效的 URL。 +unknown_error = 未知错误: +captcha_incorrect = 验证码未匹配。 +password_not_match = 密码与确认密码未匹配。 + +username_been_taken = 用户名已经被占用。 +repo_name_been_taken = 仓库名称已经被占用。 +email_been_used = 邮箱地址已经被使用。 +ssh_key_been_used = SSH 密钥已经被使用。 +illegal_username = 您的用户名包含非法字符。 +illegal_repo_name = 仓库名称包含非法字符。 +username_password_incorrect = 用户名或密码不正确。 + +invalid_ssh_key = 很抱歉,我们无法验证您输入的 SSH 密钥:%s + +still_own_repo = 您的帐户仍然是某些仓库的拥有者,您必须先转移或删除它们才能执行删除帐户操作! + +[settings] +profile = 个人信息 +password = 修改密码 +ssh_keys = 管理 SSH 密钥 +social = 社交帐号绑定 +delete = 删除帐户 + +public_profile = 公开信息 +profile_desc = 您的邮箱地址将会被公开,并被用于接收帐户的所有提醒和通知。 +full_name = 自定义名称 +website = 个人网站 +location = 所在地区 +update_profile = 更新信息 +update_profile_success = 您的个人信息已经更新成功! + +change_password = 修改密码 +old_password = 当前密码 +new_password = 新的密码 +password_incorrect = 当前密码不正确! +change_password_success = 密码修改成功!您现在可以使用新的密码登录。 + +manage_ssh_keys = 管理 SSH 密钥 +add_key = 增加密钥 +ssh_desc = 以下是与您帐户所关联的 SSH 密钥,如果您发现有陌生的密钥,请立即删除它! +ssh_helper = <strong>需要帮助?</strong> 请查看有关 <a href="https://help.github.com/articles/generating-ssh-keys">如何生成 SSH 密钥</a> 或 <a href="https://help.github.com/ssh-issues/">常见 SSH 问题</a> 寻找答案。 +add_new_key = 增加 SSH 密钥 +key_name = 密钥名称 +key_content = 密钥内容 +add_key_success = 新的 SSH 密钥添加成功! +delete_key = 删除 +add_on = 增加于 +last_used = 上次使用在 +no_activity = 没有最近活动 + +manage_social = 管理关联社交帐户 + +delete_account = 删除当前帐户 +delete_prompt = 删除操作会永久清除您的帐户信息,并且 <strong>不可恢复</strong>! +confirm_delete_account = 确认删除帐户 + +[repo] +owner = 拥有者 +repo_name = 仓库名称 +repo_name_helper = 伟大的仓库名称一般都较短、令人深刻并且 <strong>独一无二</strong> 的。 +visibility = 可见性 +visiblity_helper = 本仓库将是 <span class="label label-red label-radius">私有的</span> +repo_desc = 仓库描述 +repo_lang = 仓库语言 +repo_lang_helper = 请选择 .gitignore 文件 +license = 授权许可 +license_helper = 请选择授权许可文件 +init_readme = 使用 README.md 文件初始化仓库 +create_repo = 创建仓库 + +[action] +create_repo = 创建了仓库 <a href="/%s">%s</a> +commit_repo = 推送了 <a href="/%s/src/%s">%s</a> 分支的代码到 <a href="/%s">%s</a> +create_issue = 创建了工单 <a href="/%s/issues/%s">%s#%s</a> +comment_issue = 评论了工单 <a href="/%s/issues/%s">%s#%s</a> + +[tool] +ago = 之前 +from_now = 之后 +now = 现在 +1s = 1 秒%s +1m = 1 分钟%s +1h = 1 小时%s +1d = 1 天%s +1w = 1 周%s +1mon = 1 月%s +1y = 1 年%s +seconds = %d 秒%s +minutes = %d 分钟%s +hours = %d 小时%s +days = %d 天%s +weeks = %d 周%s +months = %d 月%s +years = %d 年%s + + + + + + + + + + + + |