diff --git a/services/web/app/src/infrastructure/Server.js b/services/web/app/src/infrastructure/Server.js index 15ddb56e08..0c8d761bb8 100644 --- a/services/web/app/src/infrastructure/Server.js +++ b/services/web/app/src/infrastructure/Server.js @@ -28,7 +28,7 @@ const oneDayInMilliseconds = 86400000 const ReferalConnect = require('../Features/Referal/ReferalConnect') const RedirectManager = require('./RedirectManager') const ProxyManager = require('./ProxyManager') -const translations = require('translations-sharelatex').setup(Settings.i18n) +const translations = require('./Translations') const Modules = require('./Modules') const Views = require('./Views') diff --git a/services/web/app/src/infrastructure/Translations.js b/services/web/app/src/infrastructure/Translations.js new file mode 100644 index 0000000000..e0c1fae469 --- /dev/null +++ b/services/web/app/src/infrastructure/Translations.js @@ -0,0 +1,110 @@ +const i18n = require('i18next') +const fsBackend = require('i18next-fs-backend') +const middleware = require('i18next-http-middleware') +const path = require('path') +const Settings = require('settings-sharelatex') + +const Translations = { + setup(options = {}) { + const subdomainLang = options.subdomainLang || {} + const availableLngs = Object.values(subdomainLang).map(c => c.lngCode) + + i18n + .use(fsBackend) + .use(middleware.LanguageDetector) + .init({ + backend: { + loadPath: path.join(__dirname, '../../../locales/__lng__.json') + }, + + // Detect language set via setLng query string + detection: { + order: ['querystring'], + lookupQuerystring: 'setLng' + }, + + // Load translation files synchronously: https://www.i18next.com/overview/configuration-options#initimmediate + initImmediate: false, + + // We use the legacy v1 JSON format, so configure interpolator to use + // underscores instead of curly braces + interpolation: { + prefix: '__', + suffix: '__', + unescapeSuffix: 'HTML', + // Disable escaping of interpolated values for backwards compatibility. + // We escape the value after it's translated in web, so there's no + // security risk + escapeValue: false, + // Disable nesting in interpolated values, preventing user input + // injection via another nested value + skipOnVariables: true + }, + + preload: availableLngs, + supportedLngs: availableLngs, + fallbackLng: options.defaultLng || 'en' + }) + + // Make custom language detector for Accept-Language header + const headerLangDetector = new middleware.LanguageDetector(i18n.services, { + order: ['header'] + }) + + function setLangBasedOnDomainMiddleware(req, res, next) { + // setLng query param takes precedence, so if set ignore the subdomain + if (req.originalUrl.includes('setLng')) { + return next() + } + + // Determine language from subdomain + const { host } = req.headers + if (host == null) { + return next() + } + const [subdomain] = host.split(/[.-]/) + const lang = subdomainLang[subdomain] + ? subdomainLang[subdomain].lngCode + : null + + if (lang != null) { + req.i18n.changeLanguage(lang) + } + + // If the set language is different from the language detection (based on + // the Accept-Language header), then set flag which will show a banner + // offering to switch to the appropriate library + const detectedLanguage = headerLangDetector.detect(req, res) + if (req.language !== detectedLanguage) { + req.showUserOtherLng = detectedLanguage + } + + next() + } + + const expressMiddleware = function(req, res, next) { + middleware.handle(i18n)(req, res, (...args) => { + // Decorate req.i18n with translate function alias for backwards + // compatibility usage in requests + req.i18n.translate = req.i18n.t + next(...args) + }) + } + + // Decorate i18n with translate function alias for backwards compatibility + // in direct usage + i18n.translate = i18n.t + + return { + expressMiddleware, + setLangBasedOnDomainMiddleware, + i18n, + + // Backwards compatibility with long-standing typo + expressMiddlewear: expressMiddleware, + setLangBasedOnDomainMiddlewear: setLangBasedOnDomainMiddleware + } + } +} + +module.exports = Translations.setup(Settings.i18n) diff --git a/services/web/bin/push-translations-changes.sh b/services/web/bin/push-translations-changes.sh new file mode 100755 index 0000000000..dbc7d9f173 --- /dev/null +++ b/services/web/bin/push-translations-changes.sh @@ -0,0 +1,10 @@ +#!/bin/bash +set -e + +if [[ `git status --porcelain=2 locales/` ]]; then + git add locales/* + git commit -m "auto update translation" + git push $UPSTREAM_REPO HEAD:master +else + echo 'No changes' +fi diff --git a/services/web/install_deps.sh b/services/web/install_deps.sh index 29653efa02..b06a3ff4e1 100755 --- a/services/web/install_deps.sh +++ b/services/web/install_deps.sh @@ -1,10 +1,5 @@ #!/bin/bash -npm install git+https://github.com/sharelatex/translations-sharelatex.git#master & TRANSLATIONS=$! - npm run webpack:production & WEBPACK=$! -echo "Waiting for translations and minify to finish" - -wait $TRANSLATIONS && echo "Translations install complete" || exit 1 wait $WEBPACK && echo "Webpack complete" || exit 1 diff --git a/services/web/locales/README.md b/services/web/locales/README.md new file mode 100644 index 0000000000..144164440e --- /dev/null +++ b/services/web/locales/README.md @@ -0,0 +1,5 @@ +Locales +======= + +These files are not to be edited by hand. +[OneSky](https://sharelatex.oneskyapp.com/) is used to manage the locales. diff --git a/services/web/locales/cn.json b/services/web/locales/cn.json new file mode 100644 index 0000000000..3792d83c53 --- /dev/null +++ b/services/web/locales/cn.json @@ -0,0 +1,905 @@ +{ + "trashed_projects": "已删除项目", + "archived_projects": "已归档项目", + "archive": "归档", + "best_value": "最佳性价比", + "faq_how_free_trial_works_question": "如何体验免费使用?", + "faq_change_plans_question": "之后可以更改付款方案吗?", + "faq_do_collab_need_premium_question": "我的合作者也需要高级账户吗?", + "faq_need_more_collab_question": "如果我需要更多合作者该怎么办?", + "faq_purchase_more_licenses_question": "可以为我的同事购买许可吗?", + "faq_monthly_or_annual_question": "应当选择月付还是年付方案?", + "faq_how_to_pay_question": "可以在线使用信用卡、储蓄卡、或者paypal支付吗?", + "faq_pay_by_invoice_question": "可以稍后支付吗", + "reference_search": "高级搜索", + "reference_search_info": "可以通过引用关键词搜索,高级搜索还可以用作者、题目、年份、期刊名称等搜索", + "reference_sync": "同步参考文献", + "instant_access": "马上使用__appName__", + "tagline_personal": "理想的个人项目实现", + "tagline_collaborator": "非常适合共同合作的项目", + "tagline_professional": "对多人合作多项目来说", + "tagline_student_annual": "节省更多", + "tagline_student_monthly": "对单次使用来说简直完美", + "all_premium_features": "所有高级付费功能", + "sync_dropbox_github": "与dropbox或Github同步", + "track_changes": "修订", + "tooltip_hide_pdf": "单击隐藏PDF", + "tooltip_show_pdf": "单击显示PDF", + "tooltip_hide_filetree": "单击隐藏文件树", + "tooltip_show_filetree": "单击显示文件树", + "cannot_verify_user_not_robot": "抱歉,您没有通过“我不是个机器人”验证,请检查您的防火墙或网页插件是否阻碍了您的验证。", + "uncompiled_changes": "未编译的改动", + "code_check_failed": "代码检查失败", + "code_check_failed_explanation": "您的代码有问题,无法自动编译", + "tags_slash_folders": "标签/文件夹", + "file_already_exists": "同名文件或文件夹已存在", + "import_project_to_v2": "打开项目到V2", + "open_in_v1": "在V1中打开", + "import_to_v2": "倒入到V2", + "never_mind_open_in_v1": "忽略,用V1打开", + "yes_im_sure": "我确定", + "drop_files_here_to_upload": "拖动文件到这里以上传", + "drag_here": "拖到这里", + "creating_project": "创立项目", + "select_a_zip_file": "选择一个.zip文件", + "drag_a_zip_file": "拖动.zip文件", + "v1_badge": "V1 徽章", + "v1_projects": "V1 项目列表", + "open_your_billing_details_page": "打开付款信息页面", + "try_out_link_sharing": "试用链接分享功能!", + "try_link_sharing": "试用链接分享", + "try_link_sharing_description": "通过分享链接进入项目", + "learn_more_about_link_sharing": "了解分享链接", + "link_sharing": "分享链接", + "tc_switch_everyone_tip": "为所有用户切换记录模式", + "tc_switch_user_tip": "为当前用户切换记录模式", + "tc_switch_guests_tip": "为所有分享链接用户切换记录模式", + "tc_guests": "受邀用户", + "select_all_projects": "全选", + "select_project": "选择", + "main_file_not_found": "未知主文件。", + "please_set_main_file": "请在项目菜单中选择此项目的主文件。", + "link_sharing_is_off": "链接分享已关闭,只有被邀请的用户才能浏览此项目。", + "turn_on_link_sharing": "开启通过链接分享功能。", + "link_sharing_is_on": "通过链接分享功能已开启。", + "turn_off_link_sharing": "关闭通过链接分享功能。", + "anyone_with_link_can_edit": "任何人可以通过此链接编辑此项目。", + "anyone_with_link_can_view": "任何人可以通过此链接浏览此项目。", + "turn_on_link_sharing_consequences": "当“通过链接分享”功能开启时,任何人都可以通过链接浏览或编辑此项目。", + "turn_off_link_sharing_consequences": "当“通过链接分享”功能关闭时,只有被邀请的用户可以通过链接浏览或编辑此项目。", + "autocompile_disabled": "自动编译已关闭", + "autocompile_disabled_reason": "由于服务器过载,暂时无法自动实时编译,请点击上方按钮进行编译", + "auto_compile_onboarding_description": "开启后将会进行实时编译", + "try_out_auto_compile_setting": "试用新的自动编译功能!", + "got_it": "了解", + "pdf_compile_in_progress_error": "已在另一窗口编译", + "pdf_compile_try_again": "请等待其他项目编译完成后再试", + "invalid_email": "有未验证的邮箱", + "auto_compile": "自动编译", + "on": "开", + "tc_everyone": "所有人", + "per_user_tc_title": "个人用户记录更改历史", + "you_can_use_per_user_tc": "现在您可以记录每个用户的更改记录", + "turn_tc_on_individuals": "为个人用户开启更改记录", + "keep_tc_on_like_before": "或者向全体保留", + "auto_close_brackets": "自动补全括号", + "auto_pair_delimiters": "自动补全分隔符", + "successfull_dropbox_link": "已成功链接 Dropbox,正在跳转到设置页", + "show_link": "显示链接", + "hide_link": "隐藏链接", + "aggregate_changed": "替换", + "aggregate_to": "为", + "confirm_password_to_continue": "确认密码以继续", + "confirm_password_footer": "短时间内我们将不会再要求输入密码", + "accept_all": "采纳全部", + "reject_all": "拒绝全部", + "bulk_accept_confirm": "您确认采纳__nChanges__ 个变动吗?", + "bulk_reject_confirm": "您确认拒绝__nChanges__ 个变动吗?", + "uncategorized": "未分类", + "pdf_compile_rate_limit_hit": "编译率达到限制", + "project_flagged_too_many_compiles": "因频繁编译,项目被标旗。编译上限会稍后解除。", + "reauthorize_github_account": "重新授权 GitHub 帐号", + "github_credentials_expired": "您的 Github 授权凭证已过期", + "hit_enter_to_reply": "点击确认键重试", + "add_your_comment_here": "在此添加评论", + "resolved_comments": "已折叠的评论", + "try_it_for_free": "免费体验", + "please_ask_the_project_owner_to_upgrade_to_track_changes": "请要求项目所有者升级以使用历史查询功能。", + "mark_as_resolved": "标记为已解决", + "reopen": "重新打开", + "add_comment": "添加评论", + "no_resolved_threads": "没有未解决线程", + "upgrade_to_track_changes": "升级以记录文档修改历史", + "see_changes_in_your_documents_live": "实时查看文档修改情况", + "track_any_change_in_real_time": "实时记录文档的任何修改情况", + "review_your_peers_work": "同行评议", + "accept_or_reject_each_changes_individually": "接受或拒绝修改意见", + "accept": "采纳", + "reject": "不要", + "no_comments": "没有评论", + "edit": "编辑", + "are_you_sure": "您确认吗?", + "resolve": "解决", + "reply": "回复", + "quoted_text_in": "引文内容", + "review": "审阅", + "track_changes_is_on": "修改追踪功能 开启", + "track_changes_is_off": "修改追踪功能 关闭", + "current_file": "当前文件", + "overview": "概览", + "tracked_change_added": "已添加", + "tracked_change_deleted": "已删除", + "show_all": "显示全部", + "show_less": "折叠", + "dropbox_sync_error": "Dropbox 同步错误", + "send": "发送", + "sending": "发送中", + "invalid_password": "密码错误", + "error": "错误", + "other_actions": "其他", + "send_test_email": "发送测试邮件", + "email_sent": "邮件已发送", + "create_first_admin_account": "创建首个管理员账户", + "ldap": "LDAP", + "ldap_create_admin_instructions": "输入邮箱,创建您的第一个__appName__管理员账户。这个账户对应您在LDAP系统中的账户,请使用此账户登陆系统。", + "saml": "SAML", + "saml_create_admin_instructions": "输入邮箱,创建您的第一个__appName__管理员账户。这个账户对应您在SAML系统中的账户,请使用此账户登陆系统。", + "admin_user_created_message": "管理员账户已创建, 登陆 以继续", + "status_checks": "状态检查", + "editor_resources": "编辑资源", + "checking": "检查中", + "cannot_invite_self": "不能向自己发送邀请", + "cannot_invite_non_user": "邀请发送失败。被邀人可能已有__appName__账户。", + "log_in_with": "用 __provider__ 账户登陆", + "return_to_login_page": "回到登录页", + "login_failed": "登陆失败", + "delete_account_warning_message_3": "您即将永久删除您的所有账户数据,包括您的项目和设置。请输入账户邮箱地址和密码以继续。", + "delete_account_warning_message_2": "您即将永久删除您的所有账户数据,包括您的项目和设置。请输入账户邮件地主以继续", + "your_sessions": "我的会话", + "clear_sessions_description": "这是您的账户中当前活跃的会话信息(不包含当前会话)。点击“清理会话”按钮可以退出这些会话。", + "no_other_sessions": "暂无其他活跃对话", + "ip_address": "IP地址", + "session_created_at": "会话创建于", + "clear_sessions": "清理会话", + "clear_sessions_success": "会话已清理", + "sessions": "会话", + "manage_sessions": "管理会话", + "syntax_validation": "代码检查", + "history": "历史记录", + "joining": "加入", + "open_project": "打开项目", + "files_cannot_include_invalid_characters": "文件中不能包含 * 或 /", + "invalid_file_name": "文件名无效", + "autocomplete_references": "参考文献自动补全(在 \\cite{} 中)", + "autocomplete": "自动补全", + "failed_compile_check": "您的项目中似乎含有关键性语法错误,请修改后重试", + "failed_compile_check_try": "强制编译", + "failed_compile_option_or": "或者", + "failed_compile_check_ignore": "关闭语法检查", + "compile_time_checks": "语法检查", + "stop_on_validation_error": "编译前检查语法", + "ignore_validation_errors": "忽略语法检查", + "run_syntax_check_now": "运行语法检查", + "your_billing_details_were_saved": "您的账单细节已保存", + "security_code": "安全码", + "paypal_upgrade": "如要升级,请点击下面链接按钮,用你的邮箱和密码登录到PayPal。", + "upgrade_cc_btn": "现在升级,7天后付款", + "upgrade_paypal_btn": "继续", + "notification_project_invite": "__userName__ 您是否愿意加入 __projectName__ 加入项目", + "file_restored": "您的文档 (__filename__) 已恢复。", + "file_restored_back_to_editor": "您可以返回进行修改并继续编辑。", + "file_restored_back_to_editor_btn": "返回编辑器", + "view_project": "查看项目", + "join_project": "加入项目", + "invite_not_accepted": "邀请尚未接受", + "resend": "重发", + "syntax_check": "语法检查", + "revoke_invite": "撤销邀请", + "pending": "待定", + "invite_not_valid": "项目邀请无效", + "invite_not_valid_description": "邀请已经过期。请联系项目所有者", + "accepting_invite_as": "接受邀请", + "accept_invite": "接受邀请", + "log_hint_ask_extra_feedback": "您能帮我们理解为什么该提示没有帮助吗?", + "log_hint_extra_feedback_didnt_understand": "我不理解该提示", + "log_hint_extra_feedback_not_applicable": "该解决办法对我的文档无效", + "log_hint_extra_feedback_incorrect": "无法纠正错误", + "log_hint_extra_feedback_other": "其它:", + "log_hint_extra_feedback_submit": "提交", + "if_you_are_registered": "您已经注册", + "stop_compile": "停止编译", + "terminated": "编译取消", + "compile_terminated_by_user": "“停止编译”按钮终止了这次编译,您可以在原始日志中查看关于编译停止的信息。", + "site_description": "一个简洁的在线 LaTeX 编辑器。无需安装,实时共享,版本控制,数百免费模板……", + "knowledge_base": "知识库", + "contact_message_label": "信息", + "kb_suggestions_enquiry": "是否已检查 __kbLink__ ?", + "answer_yes": "确认", + "answer_no": "否", + "log_hint_extra_info": "了解更多", + "log_hint_feedback_label": "该提示有帮助吗?", + "log_hint_feedback_gratitude": "感谢您的反馈!", + "recompile_pdf": "重新编译该PDF", + "about_paulo_reis": "是一个前端软件开发员和用户体验设计师,目前居住在葡萄牙阿威罗。Paulo有一个用户体验专业的博士学位,他致力于让人们在方方面面更便捷地掌握和实用技术:概念、测试、设计乃至实施。", + "login_or_password_wrong_try_again": "注册名或密码错误,请重试", + "manage_beta_program_membership": "管理 Beta 计划账户", + "beta_program_opt_out_action": "退出 Beta 计划", + "disable_beta": "禁用Beta版本", + "beta_program_badge_description": "在使用 __appName__ 过程中,测试功能会被这样标记:", + "beta_program_current_beta_features_description": "在Beta版本中,我们正在测试以下新功能:", + "enable_beta": "开启Beta版本", + "user_in_beta_program": "用户在参加Beta版测试", + "beta_program_already_participating": "您加入了Beta版测试", + "sharelatex_beta_program": "__appName__ Beta版项目", + "beta_program_benefits": "我们一直致力于改进 __appName__。通过加入 Beta 计划,您可以更早体验新功能,并帮助我们更好地满足您的需求。", + "beta_program_opt_in_action": "退出Beta版测试", + "conflicting_paths_found": "发现冲突路径", + "following_paths_conflict": "下面的文档和文件夹拥有冲突的相同路径", + "open_a_file_on_the_left": "打开左侧的一个文件", + "reference_error_relink_hint": "如果仍出现此错误,请尝试在此重新关联您的账户:", + "pdf_rendering_error": "PDF渲染错误", + "something_went_wrong_rendering_pdf": "渲染此PDF时出错了。", + "mendeley_reference_loading_error_expired": "Mendeley令牌过期,请重新关联您的账户", + "zotero_reference_loading_error_expired": "Zotero令牌过期,请重新关联您的账户", + "mendeley_reference_loading_error_forbidden": "无法加载Mendeley的参考文献,请重新关联您的账户后重试", + "zotero_reference_loading_error_forbidden": "无法加载Zotero的参考文献,请重新关联您的账户后重试", + "mendeley_integration": "Mendeley集成", + "mendeley_sync_description": "集成Mendeley后,您可以将mendeley的参考文献导入__appName__项目。", + "mendeley_is_premium": "Mendeley集成是一个高级功能", + "link_to_mendeley": "关联至Mendeley", + "unlink_to_mendeley": "取消关联Mendeley", + "mendeley_reference_loading": "加载Mendeley的参考文献", + "mendeley_reference_loading_success": "已加载Mendeley的参考文献", + "mendeley_reference_loading_error": "错误,无法加载Mendeley的参考文献", + "zotero_integration": "Zotero集成。", + "zotero_sync_description": "集成__appName__后,您可以将Zotero的参考文献导入__appName__项目。", + "zotero_is_premium": "Zotero集成是一个高级功能", + "link_to_zotero": "关联至Zotero", + "unlink_to_zotero": "取消关联Zotero", + "zotero_reference_loading": "加载Zotero的参考文献", + "zotero_reference_loading_success": "已加载Zotero的参考文献", + "zotero_reference_loading_error": "错误,无法加载Mendeley的参考文献", + "reference_import_button": "导入参考文献至", + "unlink_reference": "取消关联参考文献提供者", + "unlink_warning_reference": "警告:如果将账户与此提供者取消关联,您将无法把参考文献导入到项目中。", + "mendeley": "Mendeley", + "zotero": "Zotero", + "suggest_new_doc": "建议新文件", + "request_sent_thank_you": "请求已发送,谢谢。", + "suggestion": "建议", + "project_url": "受影响的项目URL", + "subject": "主题", + "confirm": "确认", + "cancel_personal_subscription_first": "您已有个人订阅。是否要取消此订阅,然后再加入群组许可?", + "delete_projects": "删除项目", + "leave_projects": "离开项目", + "delete_and_leave_projects": "删除并离开项目", + "too_recently_compiled": "此项目是最近编译的,所以已跳过此编译。", + "clsi_maintenance": "编译服务器停机维护,将很快恢复正常。", + "references_search_hint": "按CTRL-空格以搜索", + "ask_proj_owner_to_upgrade_for_references_search": "请要求项目所有者升级以使用参考文献搜索功能。", + "ask_proj_owner_to_upgrade_for_faster_compiles": "请要求项目所有者升级以取得更快的编译速度,并增加您的超时限制。", + "search_bib_files": "按作者、标题、年份搜索", + "leave_group": "退出群", + "leave_now": "现在退出", + "sure_you_want_to_leave_group": "您确定要退出该群吗?", + "notification_group_invite": "您被邀请加入 __groupName__, 点击加入。", + "search_references": "搜索此项目中的.bib文件", + "no_search_results": "没有搜索到结果", + "email_already_registered": "改邮箱已被注册", + "compile_mode": "编译模式", + "normal": "常规", + "fast": "快速", + "rename_folder": "重命名文件夹", + "delete_folder": "删除文件夹", + "about_to_delete_folder": "您即将删除下列文件夹 (里面的所有项目也会被删除)", + "to_modify_your_subscription_go_to": "如需修改您的订阅,请到", + "manage_subscription": "管理订购", + "activate_account": "激活账户", + "yes_please": "是", + "nearly_activated": "还有一步您的账户 your __appName__ account 就会被激活了!", + "please_set_a_password": "请设置密码", + "activation_token_expired": "您的激活码已经过期,您需要另外一个", + "activate": "激活", + "activating": "激活中", + "ill_take_it": "我要它!", + "cancel_your_subscription": "取消订购", + "no_thanks_cancel_now": "谢谢 - 我要现在取消", + "cancel_my_account": "取消我的订购", + "sure_you_want_to_cancel": "您确认要取消订购吗?", + "i_want_to_stay": "我要留下", + "have_more_days_to_try": "试用期增加__days__ days!", + "interested_in_cheaper_plan": "您是否对便宜点的__price__学生方案感兴趣?", + "session_expired_redirecting_to_login": "会话过期。将在__seconds__秒后重定向至登录页面", + "maximum_files_uploaded_together": "最多可同时上传__max__个文件", + "too_many_files_uploaded_throttled_short_period": "上传的文件太多,您的上传将暂停一会儿。", + "compile_larger_projects": "编译更大项目", + "upgrade_to_get_feature": "升级以获得__feature__,以及:", + "new_group": "新群", + "about_to_delete_groups": "您将删除下面的群:", + "removing": "删除", + "adding": "添加", + "groups": "群", + "rename_group": "重命名群", + "renaming": "重命名中", + "create_group": "建立群", + "delete_group": "删除群", + "delete_groups": "删除群", + "your_groups": "你的群", + "group_name": "群名", + "no_groups": "没有群", + "Subscription": "订购", + "Documentation": "文档", + "Universities": "大学", + "Account Settings": "账户设置", + "Projects": "项目", + "Account": "账户", + "global": "整体的", + "Terms": "条款", + "Security": "安全性", + "About": "关于", + "editor_disconected_click_to_reconnect": "编辑器与网络的连接已经断开,重新连接请点击任何位置。", + "word_count": "字数统计", + "please_compile_pdf_before_word_count": "请您在统计字数之前先编译您的的项目", + "total_words": "总字数", + "headers": "标题", + "math_inline": "行内数学符号", + "math_display": "数学表达式", + "connected_users": "已连接的用户", + "projects": "项目", + "upload_project": "上传项目", + "all_projects": "所有项目", + "your_projects": "您的项目", + "shared_with_you": "与您共享的", + "deleted_projects": "已删除的项目", + "templates": "模板", + "new_folder": "新建目录", + "create_your_first_project": "创建您的第一个项目!", + "complete": "完成", + "on_free_sl": "您正在使用的是免费版的 __appName__", + "upgrade": "升级", + "or_unlock_features_bonus": "或者通过以下方式解除对一些免费赠送额外功能的锁定", + "sharing_sl": "分享 __appName__", + "add_to_folder": "添加到目录", + "create_new_folder": "创建新目录", + "more": "更多的", + "rename": "重命名", + "make_copy": "制作一份拷贝", + "restore": "恢复", + "title": "标题", + "last_modified": "最近一次修改", + "no_projects": "没有任何项目", + "welcome_to_sl": "欢迎使用 __appName__!", + "new_to_latex_look_at": "刚刚接触LaTeX?看看我们的", + "or": "或者", + "or_create_project_left": "或者在左边创建您的第一个项目", + "thanks_settings_updated": "谢谢,您的设置已更新", + "update_account_info": "更新账户信息", + "must_be_email_address": "必须是电邮地址", + "first_name": "名", + "last_name": "姓", + "update": "更新", + "change_password": "更换密码", + "current_password": "正在使用的密码", + "new_password": "新密码", + "confirm_new_password": "确认新密码", + "required": "必填", + "doesnt_match": "不一致", + "dropbox_integration": "Dropbox整合", + "learn_more": "学习更多", + "dropbox_is_premium": "Dropbox同步是一个高级功能", + "account_is_linked": "账户已链接", + "unlink_dropbox": "解除与Dropbox的链接", + "link_to_dropbox": "链接到Dropbox", + "newsletter_info_and_unsubscribe": "我们会每隔几个月会发送有关可用的新功能的讯息,如果您不想接收邮件您可以随时取消订阅。", + "unsubscribed": "订阅被取消", + "unsubscribing": "正在取消订阅", + "unsubscribe": "取消订阅", + "need_to_leave": "确定要放弃?", + "delete_your_account": "删除您的账户", + "delete_account": "删除账户", + "delete_account_warning_message": "您即将永久删除您的所有账户数据,包括您的项目和设置。请输入账户邮箱以继续。", + "deleting": "正在删除", + "delete": "删除", + "sl_benefits_plans": "__appName__是世界上最易用的LaTeX编辑器。协同工作,版本跟踪,从世界上任何一个角落您都可以使用我们的LaTeX环境。", + "monthly": "每个月", + "personal": "个人", + "free": "免费", + "one_collaborator": "仅一个合作者", + "collaborator": "合作者", + "collabs_per_proj": "每个项目的__collabcount__ 个合作者", + "full_doc_history": "完整的文档历史", + "sync_to_dropbox": "同步到Dropbox", + "start_free_trial": "开始免费试用", + "professional": "专业", + "unlimited_collabs": "无限制的合作者数", + "name": "名字", + "student": "学生", + "university": "大学", + "position": "职位", + "choose_plan_works_for_you": "选择适合您的 __len__-天免费试用版。可以随时取消。", + "interested_in_group_licence": "对在群组、团队或部门中使用 __appName__ 感兴趣吗?", + "get_in_touch_for_details": "联系我们以获取更多资讯", + "group_plan_enquiry": "询问群组使用方案", + "enjoy_these_features": "享受以下这些美妙的付费功能吧!", + "create_unlimited_projects": "随心所欲的创建项目", + "never_loose_work": "有了您的支持,我们将做得更好!", + "access_projects_anywhere": "在任何地方访问您的项目", + "log_in": "登录", + "login": "登录", + "logging_in": "正在登录", + "forgot_your_password": "忘记密码", + "password_reset": "重置密码", + "password_reset_email_sent": "已给您发送邮件以完成密码重置", + "please_enter_email": "请输入您的电邮地址", + "request_password_reset": "请求重置密码", + "reset_your_password": "重置您的密码", + "password_has_been_reset": "您的密码已重置", + "login_here": "在此登录", + "set_new_password": "设置新密码", + "user_wants_you_to_see_project": "__username__ 邀请您查看 __projectname__", + "join_sl_to_view_project": "加入 __appName__ 来查看此项目", + "register_to_edit_template": "请注册以编辑 __templateName__ 模板", + "already_have_sl_account": "已经拥有 __appName__ 账户了吗?", + "register": "注册", + "password": "密码", + "registering": "正在注册", + "planned_maintenance": "计划中的维护", + "no_planned_maintenance": "目前没有维护计划", + "cant_find_page": "抱歉,没有找到您查找的页面", + "take_me_home": "我要返回!", + "no_preview_available": "抱歉,无法预览。", + "no_messages": "无消息", + "send_first_message": "发送您的第一个消息", + "account_not_linked_to_dropbox": "您的账户没有链接到Dropbox", + "update_dropbox_settings": "更新Dropbox设置", + "refresh_page_after_starting_free_trial": "请在您开始免费试用之后刷新此页面", + "checking_dropbox_status": "检查Dropbox状态", + "dismiss": "离开", + "new_file": "新建文件", + "upload_file": "上传文件", + "create": "创建", + "creating": "正在创建", + "upload_files": "上传文件", + "sure_you_want_to_delete": "您确定要永久删除以下文件吗?", + "common": "通用", + "navigation": "导航", + "editing": "正在编辑", + "ok": "好的", + "source": "源码", + "actions": "执行", + "copy_project": "复制项目", + "publish_as_template": "发布为模板", + "sync": "同步", + "settings": "设置", + "main_document": "主目录", + "off": "关闭", + "auto_complete": "自动补全", + "theme": "主题", + "font_size": "字号", + "pdf_viewer": "PDF阅读器", + "built_in": "内嵌", + "native": "本机", + "show_hotkeys": "显示快捷键", + "new_name": "新名字", + "copying": "正在复制", + "copy": "复制", + "compiling": "正在编译", + "click_here_to_preview_pdf": "点击预览PDF", + "server_error": "服务器错误", + "somthing_went_wrong_compiling": "抱歉,出错了,您的项目无法编译。请在几分钟后再试。", + "timedout": "超时", + "proj_timed_out_reason": "抱歉,您的编译超时。原因可能是存在大量高分辨率的图像,或者程序过于复杂。", + "no_errors_good_job": "没有错误,好样的!", + "compile_error": "编译错误", + "generic_failed_compile_message": "抱歉,由于一些原因,您的LaTeX代码无法编译。更多细节请检查下面报出的错误信息,或查看原始日志", + "other_logs_and_files": "其他日志或文件", + "view_raw_logs": "查看原始日志", + "hide_raw_logs": "隐藏原始日志", + "clear_cache": "清空缓存", + "clear_cache_explanation": "将从我们的编译服务器中清除所有隐藏的LaTeX文件(.aux .bbl等)。通常情况下您不需要这么做,除非您遇到了与其相关的麻烦。", + "clear_cache_is_safe": "您的项目文件不会被删除或修改", + "clearing": "正在清除", + "template_description": "模板描述", + "project_last_published_at": "您的项目最近一次被发布在", + "problem_talking_to_publishing_service": "我们的发布服务出现故障,请在几分钟后再试", + "unpublishing": "取消发布", + "republish": "重新发布", + "publishing": "正在发表", + "share_project": "共享该项目", + "this_project_is_private": "此项目是私有的,只能被下面的人访问", + "make_public": "允许公共访问", + "this_project_is_public": "此项目是公共的,可以被任何人通过URL编辑", + "make_private": "允许私有访问", + "can_edit": "可以编辑", + "share_with_your_collabs": "和您的合作者共享", + "share": "共享", + "need_to_upgrade_for_more_collabs": "您的账户需要升级方可添加更多的合作者", + "make_project_public": "允许公共访问该项目", + "make_project_public_consequences": "如果允许公共访问您的项目,任何人将可以通过URL访问它", + "allow_public_editing": "允许公共编辑", + "allow_public_read_only": "允许公共只读访问", + "make_project_private": "试该项目成为私有", + "make_project_private_consequences": "如果设定您的项目为私有,它只可以被您选定共享的人所访问。", + "need_to_upgrade_for_history": "需要升级您的账户方可使用历史功能", + "ask_proj_owner_to_upgrade_for_history": "请要求项目所有者升级账户以使用历史功能", + "anonymous": "匿名", + "generic_something_went_wrong": "抱歉,出错了:(", + "restoring": "正在恢复", + "restore_to_before_these_changes": "恢复到未更改时的版本", + "profile_complete_percentage": "您的资料完成了 __percentval__%", + "file_has_been_deleted": "__filename__ 已被删除", + "sure_you_want_to_restore_before": "您确定要恢复 __filename__ 到 __date__ 的版本?", + "rename_project": "重命名项目", + "about_to_delete_projects": "您将删除下面的项目:", + "about_to_leave_projects": "您将离开下面的项目", + "upload_zipped_project": "上传项目的压缩包", + "upload_a_zipped_project": "上传一个项目的压缩包", + "your_profile": "您的资料", + "institution": "机构", + "role": "角色", + "folders": "目录", + "disconnected": "连接已断开", + "please_refresh": "请刷新页面以继续", + "lost_connection": "丢失连接", + "reconnecting_in_x_secs": "__seconds__ 秒后重新连接", + "try_now": "立刻尝试", + "reconnecting": "正在重新连接", + "saving_notification_with_seconds": "保存 __docname__... (剩余 __seconds__ 秒)", + "help_us_spread_word": "帮助我们推广 __appName__", + "share_sl_to_get_rewards": "和您的朋友和同事分享 __appName__ 以解锁下面的奖励", + "post_on_facebook": "发布到Facebook", + "share_us_on_googleplus": "通过Google+分享", + "email_us_to_your_friends": "通过邮件分享给朋友", + "link_to_us": "从您的站点上链接到我们", + "direct_link": "直接的链接", + "sl_gives_you_free_stuff_see_progress_below": "当有人利用您的推荐开始使用 __appName__ 后,我们会给您一些 免费奖励 以表示感谢! 检查您的下面的进度。", + "spread_the_word_and_fill_bar": "传播并填入此栏", + "one_free_collab": "1个免费的合作者", + "three_free_collab": "3个免费的合作者", + "free_dropbox_and_history": "免费的Dropbox和历史功能", + "you_not_introed_anyone_to_sl": "您还没有把 __appName__ 介绍给其它人。开始吧!", + "you_introed_small_number": " 您已经把 __appName__ 介绍给了 __numberOfPeople__ 个人。太棒了,能介绍给更多人吗?", + "you_introed_high_number": " 您已经把 __appName__ 介绍给了 __numberOfPeople__ 个人。太棒了。", + "link_to_sl": "链接到 __appName__", + "can_link_to_sl_with_html": "您可以用下面的HTML链接到 __appName__:", + "year": "年", + "month": "月", + "subscribe_to_this_plan": "订购此项", + "your_plan": "您的订购", + "your_subscription": "您的提交", + "on_free_trial_expiring_at": "您正在使用免费试用版,将在 __expiresAt__.到期", + "choose_a_plan_below": "选择一个套餐", + "currently_subscribed_to_plan": "您正在选择订购 __planName__套餐。", + "change_plan": "改变套餐", + "next_payment_of_x_collectected_on_y": "__paymentAmmount__ 的下次支付时间为__collectionDate__", + "update_your_billing_details": "更新您的帐单细节", + "subscription_canceled_and_terminate_on_x": " 您的订购已被取消,将于__terminateDate__ 过期。不必支付其他费用。", + "your_subscription_has_expired": "您的订购已过期", + "create_new_subscription": "新建订购", + "problem_with_subscription_contact_us": "您的订购出现了问题。请联系我们以获得更多信息。", + "manage_group": "管理群组", + "loading_billing_form": "正在加载帐单细节表格", + "you_have_added_x_of_group_size_y": "您已经添加 __addedUsersSize__ / __groupSize__ 个可用成员", + "remove_from_group": "从群组中移除", + "group_account": "群组账户", + "registered": "已注册", + "no_members": "没有成员", + "add_more_members": "添加更多成员", + "add": "添加", + "thanks_for_subscribing": "感谢订购!", + "your_card_will_be_charged_soon": "您的银行卡不久将被扣款", + "if_you_dont_want_to_be_charged": "如果您不想再被扣款 ", + "add_your_first_group_member_now": "现在添加您的第一个组成员", + "thanks_for_subscribing_you_help_sl": "感谢您订购套餐 __planName__ 。正是由于您的支持使得 __appName__ 继续成长和进步。", + "back_to_your_projects": "返回您的项目", + "goes_straight_to_our_inboxes": "直接发送到我们的电邮收件箱", + "need_anything_contact_us_at": "您有任何需要,请直接联系我们", + "regards": "感谢", + "about": "关于", + "comment": "评论", + "restricted_no_permission": "受限,抱歉您没有权限访问此页面", + "online_latex_editor": "在线LaTeX编辑器", + "meet_team_behind_latex_editor": "和您最喜欢的在线LaTeX编辑器的团队接触", + "follow_me_on_twitter": "加我的Twitter", + "motivation": "动机", + "evolved": "衍生产品", + "the_easy_online_collab_latex_editor": "易用、在线、协同合作的LaTeX编辑器", + "get_started_now": "立即开始", + "sl_used_over_x_people_at": "已有来自以下学校的超过 __numberOfUsers__ 学生和学者在使用 __appName__", + "collaboration": "合作", + "work_on_single_version": "在单一版本上合作", + "view_collab_edits": "查看合作者的编辑 ", + "ease_of_use": " 易于使用", + "no_complicated_latex_install": "不需要复杂的LaTeX安装", + "all_packages_and_templates": "包含所有您所需要的包和__templatesLink__", + "document_history": "文档历史", + "see_what_has_been": "看到了什么 ", + "added": "已添加", + "and": "和", + "removed": "已被移除", + "restore_to_any_older_version": "回滚到任意历史版本", + "work_from_anywhere": "在任何地点使用", + "acces_work_from_anywhere": "从世界上任何地点使用", + "work_offline_and_sync_with_dropbox": "离线使用通过Dropbox和GitHub同步您的文件", + "over": "超过", + "view_templates": "预览模板", + "nothing_to_install_ready_to_go": "您的安装不会有任何的复杂和困难,并且您可以__start_now__,即使您从来没见过它。 __appName__ 运行在我们的服务器上,提供了一个完整的、随时可以使用的LaTeX环境。", + "start_using_latex_now": "立即使用LaTex", + "get_same_latex_setup": "您到任何地方都可以用 __appName__ 实现LaTeX的功能。由于您和您的同事和学生可以在 __appName__ 上共同工作,不会出现版本不一致和包冲突的情况。", + "support_lots_of_features": "我们支持了几乎所有的LaTeX功能,包括插入图片、参考文献、公式以及更多!在__help_guides_link__中查看所有目前所有 __appName__ 可以做的事情", + "latex_guides": "LaTex手册", + "reset_password": "重置密码", + "set_password": "设置密码", + "updating_site": "升级站点", + "bonus_please_recommend_us": "奖励 - 请推荐我们", + "admin": "管理员", + "subscribe": "提交", + "update_billing_details": "更新帐单细节", + "thank_you": "谢谢您", + "group_admin": "群组管理员", + "all_templates": "所有模板", + "your_settings": "您的设置", + "maintenance": "维护", + "to_many_login_requests_2_mins": "您的账户尝试登录次数过多。请等待2分钟后再试", + "email_or_password_wrong_try_again": "您的邮件地址或密码不正确。请重试", + "rate_limit_hit_wait": "速度限制。请等会再试", + "problem_changing_email_address": "无法更改您的email地址。请您过一会儿重试。如果问题持续,请联系我们。", + "single_version_easy_collab_blurb": "__appName__ 确保您和您的合作者是同步的,并且知道他们在做什么。每个文档只有一个单一的主版本,每个人都可以访问。因改变而出现冲突是不可能的,并且您可以继续工作而不必等待您的合作者发送的最新版本。", + "can_see_collabs_type_blurb": "如果多个人想要同时一起完成一份文档是没有问题的。您可以在编辑器中直接看到您的合作者在哪打字,并且对文档的改变会直接立即显示在您的屏幕上。", + "work_directly_with_collabs": "和您的合作者直接合作", + "work_with_word_users": "和Word使用者一起工作", + "work_with_word_users_blurb": "__appName__ 是如此易于上手以至于您可以邀请非LaTeX的合作者来直接对您的LaTeX文档做出贡献。他们一开始就可以工作,并且随着接下来的使用能够不费力地学会少量的LaTeX知识。", + "view_which_changes": "查看哪些被更改了", + "sl_included_history_of_changes_blurb": "__appName__能够保存您做过的所有更改,从而你可以看到有谁在何时做过何种修改。 这使得您可以非常容易的和您的合作者保持同一进度,并且可以允许您回顾最近的工作。", + "can_revert_back_blurb": "无论是合作项目或者个人项目,有时候出现错误是难免的。 在__appName__中恢复早期版本很简单,这样就降低了失误的风险。", + "start_using_sl_now": "立即开始使用 __appName__", + "over_x_templates_easy_getting_started": "我们有 __over__ 400 __templates__供您使用,因此无论您要写期刊论文,毕业论文,简历或者其它的,都非常容易。", + "done": "完成", + "change": "改变", + "page_not_found": "找不到页面", + "please_see_help_for_more_info": "了解更多信息请参看我们的帮助手册", + "this_project_will_appear_in_your_dropbox_folder_at": "此项目将显示在您的Dropbox的目录 ", + "member_of_group_subscription": "您是由__admin_email__管理下的团体认购中的一员。请联系他们来管理您的认购。\n", + "about_henry_oswald": "是居住在伦敦的一名软件工程师。他构建了 __appName__ 的原型,并且一直负责构建一个稳定并具有上升空间到平台。Henry是测试驱动开发的强烈拥护者,并且督促我们保持 __appName__ 代码始终整洁且易于维护。", + "about_james_allen": "拥有理论物理学博士学位并且对LaTeX充满热情。他开发了最早的在线LaTeX编辑器中的一个,ScribTeX,并且在新技术开发中起了很大作用。正是有了这些新技术, __appName__ 才得以面世。", + "two_strong_principles_behind_sl": "我们关于 __appName__ 的工作背后有两个非常强烈的推动原则:", + "want_to_improve_workflow_of_as_many_people_as_possible": "我们想要完善尽可能多的人的工作流程", + "detail_on_improve_peoples_workflow": "LaTeX一向以极其难用著称,且非常难以合作使用。 我们相信我们已经研发了一些非常有效的方案来帮助人们解决困难,并且我们保证__appName__会对尽可能多的人开放。 我们一直尝试保持公道的价格,并且公布了 __appName__ 的大部分的代码做为开源代码。", + "want_to_create_sustainable_lasting_legacy": "我们想要创造一个可持续的和持久的传统", + "details_on_legacy": "发展和维护像 __appName__ 一样的产品需要大量的时间和工作,所以我们能找到一个商业模式以得到长期的支持是十分重要的。我们不想 __appName__ 依赖于外来的基金或者由于商业模式的失败而消失。我们很高兴得告诉大家,现在 __appName__ 是可持续的、盈利的,并且预期能够长期盈利。", + "get_in_touch": "联系", + "want_to_hear_from_you_email_us_at": "我们喜欢倾听任何使用 __appName__ 以及想知道我们在做什么的人。您可以和我们联系 ", + "cant_find_email": "邮箱尚未注册,抱歉。", + "plans_amper_pricing": "套餐 & 价格", + "documentation": "文档", + "account": "账户", + "subscription": "订购", + "log_out": "退出", + "en": "英语", + "pt": "葡萄牙语", + "es": "西班牙语", + "fr": "法语", + "de": "德语", + "it": "意大利语", + "da": "丹麦语", + "sv": "瑞典语", + "no": "挪威语", + "nl": "荷兰语", + "pl": "波兰语", + "ru": "俄罗斯语", + "uk": "乌克兰语", + "ro": "罗马尼亚语", + "click_here_to_view_sl_in_lng": "点此以__lngName__ 使用 __appName__", + "language": "语言", + "upload": "上传", + "menu": "菜单", + "full_screen": "全屏", + "logs_and_output_files": "日志和生成的文件", + "download_pdf": "下载PDF", + "split_screen": "分屏", + "clear_cached_files": "清除缓存文件", + "go_to_code_location_in_pdf": "转到PDF中的位置", + "please_compile_pdf_before_download": "请在下载PDF之前编译您的项目", + "remove_collaborator": "移除合作者", + "add_to_folders": "添加到目录", + "download_zip_file": "下载ZIP格式文件", + "price": "价格", + "close": "关闭", + "keybindings": "组合键", + "restricted": "受限的", + "start_x_day_trial": "开始您的__len__天免费试用之旅", + "buy_now": "现在购买!", + "cs": "捷克语", + "view_all": "预览所有", + "terms": "条款", + "privacy": "隐私", + "contact": "联系", + "change_to_this_plan": "该为这个订购项", + "processing": "处理中", + "sure_you_want_to_change_plan": "您确定想要改变套餐为 __planName__?", + "move_to_annual_billing": "转为包年套餐", + "annual_billing_enabled": "包年套餐已启用", + "move_to_annual_billing_now": "立即转为包年套餐", + "change_to_annual_billing_and_save": "包年套餐立省 __percentage__ . 现在选择每年立省 __yearlySaving__ 。", + "missing_template_question": "模板不全?", + "tell_us_about_the_template": "如果我们模板中没有您要找的,请您发给我们您的模版,该模版的 __appName__ 网址,或者告诉我们哪里可以找到您要的模版。此外,请您简单描述一下该模版的用处。", + "email_us": "电邮我们", + "this_project_is_public_read_only": "该项目是公开的,任何人都可以通过该URL查看,但是不能编辑。", + "tr": "土耳其语", + "select_files": "选取文件", + "drag_files": "拖动文件", + "upload_failed_sorry": "抱歉,上传失败。", + "inserting_files": "正在插入文件", + "password_reset_token_expired": "您的密码重置链接已过期。请申请新的密码重置email,并按照email中的链接操作。", + "merge_project_with_github": "将项目与GitHub合并", + "pull_github_changes_into_sharelatex": "将GitHub中的更改调入 __appName__", + "push_sharelatex_changes_to_github": "将 __appName__ 中的更改推送到GitHub", + "features": "功能", + "commit": "交付", + "commiting": "交付中", + "importing_and_merging_changes_in_github": "正在导入合并GitHub中的更改", + "upgrade_for_faster_compiles": "升级以取得更快的编译速度,并增加您的超时限制。", + "free_accounts_have_timeout_upgrade_to_increase": "免费账户有一分钟的超时限制。升级以增加超时限制。", + "learn_how_to_make_documents_compile_quickly": "了解如何更快的编译您的文档", + "zh-CN": "中文", + "cn": "中文 (简体)", + "sync_to_github": "同步到 GitHub", + "sync_to_dropbox_and_github": "同步到 Dropbox 和 GitHub", + "project_too_large": "项目太大", + "project_too_large_please_reduce": "这个项目文本过多,请减少后再试。", + "please_ask_the_project_owner_to_link_to_github": "请让项目的拥有者将该项目链接到一个GitHub存储库", + "go_to_pdf_location_in_code": "转到PDF中对应的位置", + "ko": "韩语", + "ja": "日语", + "about_brian_gough": "是一名软件工程师及 Fermilab 和 Los Alamos的前任理论高能物理学家。多年来,他用TeX和LaTeX出版了很多自由软件的使用手册,并且是GNU科学图书馆的一名维护人员。", + "first_few_days_free": "前__trialLen__ 天免费", + "every": "每个", + "credit_card": "信用卡", + "credit_card_number": "信用卡号码", + "invalid": "无效的", + "expiry": "过期日期", + "january": "一月", + "february": "二月", + "march": "三月", + "april": "四月", + "may": "五月", + "june": "六月", + "july": "七月", + "august": "八月", + "september": "九月", + "october": "十月", + "november": "十一月", + "december": "十二月", + "zip_post_code": "邮编", + "city": "城市", + "address": "地址", + "coupon_code": "优惠券号码", + "country": "国家", + "billing_address": "账单地址", + "upgrade_now": "现在升级", + "state": "州", + "vat_number": "增值税号", + "you_have_joined": "你已经加入 __groupName__", + "claim_premium_account": "你已经获得由__groupName__提供的高级账户权限", + "you_are_invited_to_group": "您被邀请加入__groupName__", + "you_can_claim_premium_account": "你可以通过验证你的电子邮箱来获得由 __groupName__ 提供的高级账户权限", + "not_now": "稍后", + "verify_email_join_group": "验证电子邮箱并加入群", + "check_email_to_complete_group": "请查看您的电子邮件以便成功加入该群", + "verify_email_address": "验证电子邮箱", + "group_provides_you_with_premium_account": "__groupName__ 为你提供了一个高级账户。验证你的电子邮箱来升级你的账户。", + "check_email_to_complete_the_upgrade": "请查看您的电子邮件以完成升级", + "email_link_expired": "电子邮件链接已过期,请申请一个新的链接。", + "services": "服务", + "about_shane_kilkelly": "是居住在爱丁堡的软件开发员。 Shane 积极主张函数式编程和测试驱动开发,且以设计高质量软件而引以为豪。", + "this_is_your_template": "这是从你的项目提取的模版", + "links": "链接", + "account_settings": "账户设置", + "search_projects": "搜索项目", + "clone_project": "克隆项目", + "delete_project": "删除项目", + "download_zip": "下载Zip压缩包", + "new_project": "创建新项目", + "blank_project": "空白项目", + "example_project": "样例项目", + "from_template": "从模板导入", + "cv_or_resume": "简历", + "cover_letter": "附信", + "journal_article": "期刊文章", + "presentation": "幻灯片", + "thesis": "论文", + "bibliographies": "参考文献", + "terms_of_service": "服务条款", + "privacy_policy": "隐私政策", + "plans_and_pricing": "套餐及价格", + "university_licences": "大学许可证", + "security": "安全性", + "contact_us": "联系我们", + "thanks": "谢谢", + "blog": "博客", + "latex_editor": "LeTeX编辑器", + "get_free_stuff": "免费获取", + "chat": "聊天", + "your_message": "您的信息", + "loading": "正在加载", + "connecting": "正在连接", + "recompile": "重新编译", + "download": "下载", + "email": "电邮", + "owner": "拥有者", + "read_and_write": "读/写", + "read_only": "只读", + "publish": "发布", + "view_in_template_gallery": "在模板区预览", + "unpublish": "未出版", + "hotkeys": "快捷键", + "saving": "正在保存", + "cancel": "取消", + "project_name": "项目名称", + "root_document": "根目录", + "spell_check": "拼写检查", + "compiler": "编译器", + "private": "私有", + "public": "公共", + "delete_forever": "永远删除", + "support_and_feedback": "支持和反馈", + "help": "帮助", + "latex_templates": "LeTeX模板", + "info": "信息", + "latex_help_guide": "LeTeX帮助指南", + "choose_your_plan": "选择您的支付方案", + "indvidual_plans": "个人方案", + "free_forever": "永久免费", + "low_priority_compile": "低的编译优先级", + "unlimited_projects": "项目无限制", + "unlimited_compiles": "编译无限制", + "full_history_of_changes": "改动的所有历史记录", + "highest_priority_compiling": "最高编译优先级", + "dropbox_sync": "Dropbox同步", + "beta": "试用版", + "sign_up_now": "现在注册", + "annual": "每年", + "half_price_student": "学生半价", + "about_us": "关于我们", + "loading_recent_github_commits": "正在装载最近的提交", + "no_new_commits_in_github": "自上次合并后GitHub未收到新的提交", + "dropbox_sync_description": "保持您的 __appName__ 项目与您的Dropbox同步。SharaLaTeX中的更改将被自动发送到Dropbox,反之亦然。", + "github_sync_description": "通过与GitHub同步,你可以将您的__appName__项目关联到GitHub的存储库,从 __appName__ 创建新的提交,并与线下或者GitHub中的提交合并。", + "github_import_description": "通过与GitHub同步,你可以将GitHub的存储库导入 __appName__,从 __appName__ 创建新的提交,并与线下或者GitHub中的提交合并。", + "link_to_github_description": "您需要授权 __appName__ 访问您的GitHub账户,从而允许我们同步您的项目。", + "unlink": "取消关联", + "unlink_github_warning": "任何您已经同步到GitHub的项目将被切断联系,并且不再保持与GitHub同步。您确定要取消与您的GitHub账户的关联吗?", + "github_account_successfully_linked": "GitHub账户已经成功关联。", + "github_successfully_linked_description": "谢谢,您已成功建立了您的GitHub账户与 __appName__ 的关联。您现在可以导出您的 __appName__ 项目到GitHub,或者从您的GitHub存储困导入项目。", + "import_from_github": "从GitHub导入", + "github_sync_error": "抱歉,与我们的GitHub服务器连接出错。请稍后重试。", + "loading_github_repositories": "正在读取您的GitHub存储库", + "select_github_repository": "选取要导入 __appName__ 的GitHub存储库", + "import_to_sharelatex": "导入 __appName__", + "importing": "正在倒入", + "github_sync": "GitHub同步", + "checking_project_github_status": "正在检查GitHub中的项目状态", + "account_not_linked_to_github": "您的帐号未与GitHub关联", + "project_not_linked_to_github": "该项目未与GitHub任一存储库关联。您可以在GitHub中为该项目创建一个存储库:", + "create_project_in_github": "创建一个GitHub存储库", + "project_synced_with_git_repo_at": "该项目已与GitHub存储库同步,时间为", + "recent_commits_in_github": "GitHub中最近的提交", + "sync_project_to_github": "同步项目到GitHub", + "sync_project_to_github_explanation": "您在 __appName__ 中所做的任何更改将被交付并与GitHub中任何升级合并。", + "github_merge_failed": "您在 __appName__ 和GitHub中的更改未能自动合并。请您手动将the __sharelatex_branch__ branch合并到git中的the __master_branch__ branch。当您手动合并完成后,点击下面继续。", + "continue_github_merge": "我已经手动合并。继续", + "export_project_to_github": "将项目导出到GitHub", + "github_validation_check": "请检查存储库的名字是否已被占用,且您有权限创建存储库。", + "repository_name": "存储库名称", + "optional": "可选的", + "github_public_description": "任何人都可以看到该存储库。您可以选择谁有权提交。", + "github_commit_message_placeholder": "为 __appName__ 中的更改提交信息", + "merge": "合并", + "merging": "正在合并", + "github_account_is_linked": "您的GitHub账户已经成功关联。", + "unlink_github": "取消与您的GitHub账户的关联", + "link_to_github": "建立与您的GitHub账户的关联", + "github_integration": "GitHub 整合", + "github_is_premium": "与GitHub同步是一项付费功能" +} \ No newline at end of file diff --git a/services/web/locales/cs.json b/services/web/locales/cs.json new file mode 100644 index 0000000000..b92a03bbb0 --- /dev/null +++ b/services/web/locales/cs.json @@ -0,0 +1,535 @@ +{ + "unlink_github_repository": "Odlinkovat Github repozitář", + "unlinking": "Odlinkovávám", + "github_no_master_branch_error": "Tento repozitář nemůže být importován, protože nemá master branch. Prosím zajistěte, aby projekt měl master branch.", + "confirmation_token_invalid": "Omlováme se, ale Váš potvrzovací kód je neplatný nebo vypršel. Prosím požádejte o nový potrvzovací e-mail.", + "confirmation_link_broken": "Omlouváme se, ale něco není v pořádku s Vaším potvrzovacím kódem. Prosíme zkuste zkopírovat odkaz z konce Vašeho potvrzovacího e-mailu.", + "duplicate_file": "Zduplikovat soubor", + "file_already_exists_in_this_location": "Soubor __fileName__ již v daném umístění existuje. Pokud chcete tento soubor přesunout, nejprve přejmenujte nebo odstraňte ten existující.", + "group_full": "Tato skupina je již naplněna.", + "no_selection_select_file": "Nevybrali jste žádný soubor.", + "no_selection_create_new_file": "Ve Vašem projektu nejsou žádné soubory. Prosíme vytvořte nový soubor.", + "files_selected": "souborů označeno.", + "home": "Domů", + "this_action_cannot_be_undone": "Tuto akci nepůjde vrátit zpět!", + "link_email_to_join": "Pro přidání k __portalTitle__ na __appName__u přidejte svůj institucionální email k Vašemu účtu.", + "token_access_success": "Přístup umožněn", + "token_access_failure": "Přístup odepřen; kontaktujte prosím majitele projektu", + "trashed_projects": "Koš", + "trash": "Vyhodit do koše", + "untrash": "Obnovit", + "delete_and_leave": "Odstranit / Opustit", + "trash_projects": "Vyhodit projekty do koše", + "about_to_trash_projects": "Chystáte se vyhodit do koše následující projekty:", + "archived_projects_info_note": "Archiv projektů je teď samostatný pro každého uživatele. Pokud archivujete nějaký projekt, bude archivovaný pouze pro Vás, ale už ne pro Vaše spolupracovníky.", + "trashed_projects_info_note": "__appName__ zavedl Koš pro projekty, které chcete vyhodit. Pokud vyhodíte projekt do koše, neprojeví se to u vašich spolupracovníků.", + "project_ownership_transfer_confirmation_1": "Opravdu chcete změnit majitele projektu __project__ na uživatele __user__?", + "project_ownership_transfer_confirmation_2": "Tuto akci nebudete moci vrátit. Nový majitel bude o změně informován, a bude moci změnit přístupová práva, včetně možnosti zamezit Vám v přístupu.", + "change_owner": "Změnit majitele", + "change_project_owner": "Změnit majitele projektu", + "faq_pay_by_invoice_answer": "Pokud chcete pořídit skupinový účet nebo síťovou licenci a rádi byste platbu fakturou\nnebo potřebujete služby na základě objednávkového listi, prosíme __payByInvoiceLinkOpen__dejte nám vědět__payByInvoiceLinkClose__.\nIndividuální účty a skupiny s měsíční fakturací je možné objednat jedině online a platit pouze pomocí platební karty nebo PayPalu.", + "password_too_long_please_reset": "Překročili jste maximální délku hesla. Prosíme změňte si heslo.", + "projects": "Projekty", + "upload_project": "Nahrát projekt", + "all_projects": "Všechny projekty", + "your_projects": "Vaše projekty", + "shared_with_you": "Sdílené s Vámi", + "deleted_projects": "Smazané projekty", + "templates": "Šablony", + "new_folder": "Nová složka", + "create_your_first_project": "Vytvořte svůj první projekt!", + "complete": "Hotovo", + "on_free_sl": "Používáte bezplatnou verzi __appName__", + "upgrade": "Upgrade", + "or_unlock_features_bonus": "Odemkněte některé bonusové funkce", + "sharing_sl": "sdílením __appName__", + "add_to_folder": "Přidat do složky", + "create_new_folder": "Vytvořit novou složku", + "more": "Více", + "rename": "Přejmenovat", + "make_copy": "Zkopírovat", + "restore": "Obnovit", + "title": "Název", + "last_modified": "Naposledy změněno", + "no_projects": "Žádné projekty", + "welcome_to_sl": "Vítejte v __appName__!", + "new_to_latex_look_at": "Začínáte s LaTeXem? Podívejte se na naše", + "or": "nebo", + "or_create_project_left": "nebo nalevo vytvořit váš prví projekt.", + "thanks_settings_updated": "Děkujeme, vaše nastavení bylo aktualizováno.", + "update_account_info": "Aktualizovat informace o účtu", + "must_be_email_address": "Musíte zadat emailovou adresu", + "first_name": "Jméno", + "last_name": "Příjmení", + "update": "Aktualizovat", + "change_password": "Změnit heslo", + "current_password": "Aktuální heslo", + "new_password": "Nové heslo", + "confirm_new_password": "Potvrdit nové heslo", + "required": "Povinná položka", + "doesnt_match": "Nesouhlasí", + "dropbox_integration": "Integrace s Dropboxem", + "learn_more": "Zjistit více", + "dropbox_is_premium": "Synchronizace s Dropboxem je prémiová funkce.", + "account_is_linked": "Účet je spojen", + "unlink_dropbox": "Odpojit Dropbox", + "link_to_dropbox": "Připojit k Dropboxu", + "newsletter_info_and_unsubscribe": "Každých pár měsíců posíláme newsletter shrnující všechny nové funkce. Pokud o něj nestojíte, můžete odběr kdykoliv zrušit:", + "unsubscribed": "Odběr zrušen", + "unsubscribing": "Ruším odběr", + "unsubscribe": "Zrušit odběr", + "need_to_leave": "Potřebujete odejít?", + "delete_your_account": "Smazat váš účet", + "delete_account": "Smazat účet", + "delete_account_warning_message": "Chystáte se nenávratně vymazat všechna svá data, včetně projektů a nastaveni. Pro pokračování zadejte svou e-mailovou adresu.", + "deleting": "Smazávám", + "delete": "Smazat", + "sl_benefits_plans": "__appName__ je nejsnáze použitelný LaTeX editor na světě. Spolupracujte rychle a online, sledujte všechny změny ve vaší práci a používejte LaTeX odkudkoli ze světa.", + "monthly": "Měsíční", + "personal": "Personal", + "free": "Zdarma", + "one_collaborator": "Jen jeden spolupracovník", + "collaborator": "Collaborator", + "collabs_per_proj": "__collabcount__ spolupracovníků na projektu", + "full_doc_history": "Celá historie dokumentu", + "sync_to_dropbox": "Synchronizujte s Dropboxem", + "start_free_trial": "Začněte s trial verzí zdarma!", + "professional": "Professional", + "unlimited_collabs": "Neomezený počet spolupracovníků", + "name": "Jméno", + "student": "Student", + "university": "Univerzita", + "position": "Pozice", + "choose_plan_works_for_you": "Vyberte tarif, který vám vyhovuje s naší bezplatnou __len__denní zkušební. Můžete ho kdykoliv zrušit.", + "interested_in_group_licence": "Rádi byste využili jeden učet __appName__ pro skupiny, týmy nebo oddělení?", + "get_in_touch_for_details": "Napište nám o detaily!", + "group_plan_enquiry": "Poptávka skupinového tarifu", + "enjoy_these_features": "Užijte si všechny tyto úžasné funkce", + "create_unlimited_projects": "Vytvořte tolik projektů kolik potřebujete.", + "never_loose_work": "Nemějte obavy, kryjeme vám záda.", + "access_projects_anywhere": "Přistupujte ke svým projektům odkudkoliv.", + "log_in": "Přihlásit se", + "login": "Přihlášení", + "logging_in": "Přihlašuji", + "forgot_your_password": "Zapomenuté heslo", + "password_reset": "Resetovat heslo", + "password_reset_email_sent": "Byl vám zaslán email pro dokončení resetu vašeho hesla.", + "please_enter_email": "Zadejte prosím svou emailovou adresu", + "request_password_reset": "Požádat o resetování hesla", + "reset_your_password": "Resetovat heslo", + "password_has_been_reset": "Vaše heslo bylo resetováno", + "login_here": "Přihlašte se zde", + "set_new_password": "Nastavit nové heslo", + "user_wants_you_to_see_project": "Uživatel __username__ by se rád přidal k projektu __projectname__", + "join_sl_to_view_project": "Pro zobrazení tohoto projektu se přihlašte do __appName__.", + "register_to_edit_template": "Pro úpravu šablony __templateName__ se prosím přihlašte", + "already_have_sl_account": "Máte už účet v __appName__?", + "register": "Registrovat", + "password": "Heslo", + "registering": "Registruji", + "planned_maintenance": "Plánovaná odstávka", + "no_planned_maintenance": "V současnosti není plánovaná žádná odstávka", + "cant_find_page": "Je nám líto, ale nemůžeme najít stránku, kterou hledáte.", + "take_me_home": "Vezmi mě zpět!", + "no_preview_available": "Je nám líto, ale náhled není k dispozici.", + "no_messages": "Žádné zprávy", + "send_first_message": "Pošlete svou první zprávu spolupracovníkům", + "account_not_linked_to_dropbox": "Váš účet není spojen s Dropboxem", + "update_dropbox_settings": "Aktualizovat nastavení Dropboxu", + "refresh_page_after_starting_free_trial": "Obnovte prosím stránku poté co začnete používat svou bezplatnou trial verzi.", + "checking_dropbox_status": "kontroluji stav Dropboxu", + "dismiss": "Zamítnout", + "deleted_files": "Smazané soubory", + "new_file": "Nový soubor", + "upload_file": "Nahrát soubor", + "create": "Vytvořit", + "creating": "Vytvářím", + "upload_files": "Nahrát soubor(y)", + "sure_you_want_to_delete": "Opravdu chcete nenávratně smazat následující soubory?", + "common": "Běžné", + "navigation": "Pro navigaci", + "editing": "Pro úpravy", + "ok": "OK", + "source": "Zdroj", + "actions": "Akce", + "copy_project": "Kopírovat projekt", + "publish_as_template": "Publikovat jako šablonu", + "sync": "Synchronizace", + "settings": "Nastavení", + "main_document": "Hlavní dokument", + "off": "Vypnuto", + "auto_complete": "Automatické dokončování", + "theme": "Vzhled", + "font_size": "Velikost písma", + "pdf_viewer": "Prohlížeč PDF", + "built_in": "Vestavěný", + "native": "Výchozí", + "show_hotkeys": "Zobrazit zkratky", + "new_name": "Nové jméno", + "copying": "Kopíruji", + "copy": "Kopírovat", + "compiling": "Kompiluji", + "click_here_to_preview_pdf": "Klikněte zde pro náhled vaší práce v PDF.", + "server_error": "Chyba serveru", + "somthing_went_wrong_compiling": "Omlouváme se, ale něco se pokazilo a váš projekt nemůže být zkompilován. Zkuste to prosím znovu za pár okamžiků.", + "timedout": "Vypršel čas", + "proj_timed_out_reason": "Omlouváme se, ale kompilate trvala příliš dlouho a. Tato situace může být způsobena velkým množstvím obrázků ve vysokém rozlišení, nebo spoustou složitých diagramů.", + "no_errors_good_job": "Bez chyby, dobrá práce!", + "compile_error": "Chyba kompilace", + "generic_failed_compile_message": "Je nám líto, ale váš LaTeX kód nemůže být z nějakého důvodu zkompilován. Pro detaily zkontrolujte chybová hlášení níže, nebo zobrazte log.", + "other_logs_and_files": "Ostatní logy a soubory", + "view_raw_logs": "Zobrazit logy", + "hide_raw_logs": "Skrýt logy", + "clear_cache": "Vymazat cache", + "clear_cache_explanation": "Tímto odstraníte veškeré skryté soubory LaTeXu (.aux, .bbl, atd) z našeho serveru. Nemusíte to dělat pokud nemáte problémy s odkazy.", + "clear_cache_is_safe": "Váš projekt nebude smazán nebo změněn.", + "clearing": "Odstraňuji", + "template_description": "Popis šablony", + "project_last_published_at": "Váš projekt byl naposledy publikován", + "problem_talking_to_publishing_service": "Vyskytl se problém s naší publikační službou, zkuste to prosím znovu za pár minut", + "unpublishing": "Ruším publikování", + "republish": "Publikovat znovu", + "publishing": "Publikuji", + "share_project": "Sdílet projekt", + "this_project_is_private": "Tento projekt je soukromý a přístupný pouze lidem níže.", + "make_public": "Nastavit jako veřejný", + "this_project_is_public": "Tento projekt je veřejný a editovatelný kýmkoliv s URL.", + "make_private": "Nastavit jako soukromý", + "can_edit": "Může upravovat", + "share_with_your_collabs": "Sdílet s vašimi spolupracovníky", + "share": "Sdílet", + "need_to_upgrade_for_more_collabs": "Pro přidání více spolupracovníků musíte upgradovat svůj účet.", + "make_project_public": "Nastavit projekt jako veřejný.", + "make_project_public_consequences": "Pokud váš projekt uděláte veřejným bude k němu moct přistoupit každý s URL.", + "allow_public_editing": "Povolit veřejné editování", + "allow_public_read_only": "Povolte veřejný přístup pouze pro čtení", + "make_project_private": "Vypnout sdílení odkazem.", + "make_project_private_consequences": "Pokud svůj projekt označíte jako soukromý, budou mít k němu přístup jen lidé, které určíte.", + "need_to_upgrade_for_history": "Pro použití funkce Historie musíte upgradovat svůj účet.", + "ask_proj_owner_to_upgrade_for_history": "Požádejte prosím vlastníka projektu o upgrade ať můžete používat funkci Historie.", + "anonymous": "Anonymní", + "generic_something_went_wrong": "Omlouváme se, ale něco je špatně.", + "restoring": "Obnovuji", + "restore_to_before_these_changes": "Obnovit stav před těmito změnami", + "profile_complete_percentage": "Váš profil je hotový z __percentval__ %", + "file_has_been_deleted": "__filename__ byl vymazán", + "sure_you_want_to_restore_before": "Opravdu chcete obnovit __filename__ do stavu před změnami k __date__?", + "rename_project": "Přejmenovat projekt", + "about_to_delete_projects": "Chcete smazat následující projekty:", + "about_to_leave_projects": "Chystáte se ponechat následující projekty:", + "upload_zipped_project": "Nahrát zazipovaný projekt", + "upload_a_zipped_project": "Nahrát zazipovaný projekt", + "your_profile": "Váš profil", + "institution": "Instituce", + "role": "Úloha", + "folders": "Složky", + "disconnected": "Odpojeno", + "please_refresh": "Pro pokračování prosím obnovte stránku.", + "lost_connection": "Připojení ztraceno", + "reconnecting_in_x_secs": "Obnovuji připojení za __seconds__ sek", + "try_now": "Vyzkoušejte teď", + "reconnecting": "Obnovuji připojení", + "saving_notification_with_seconds": "Ukládám __docname__... (__seconds__ sek neuložených změn)", + "help_us_spread_word": "Pomozte nám šířit povědomí o __appName__", + "share_sl_to_get_rewards": "Sdílejte __appName__ s vašimi přáteli a kolegy a získejte odměny níže", + "post_on_facebook": "Publikovat na Facebooku", + "share_us_on_googleplus": "Sdílejte nás na Google+", + "email_us_to_your_friends": "Pošlete o nás email svým přátelům", + "link_to_us": "Odkazujte na nás ze svého webu", + "direct_link": "Přímý odkaz", + "sl_gives_you_free_stuff_see_progress_below": "Když začne někdo používat __appName__ na základě vašeho doporučení, dáme vám něco zdarma jako poděkování! Níže můžete sledovat váš postup.", + "spread_the_word_and_fill_bar": "Řekněte o nás někomu a vyplňte tento pruh", + "one_free_collab": "Jeden spolupracovník zdarma", + "three_free_collab": "Tři spolupracovníci zdarma", + "free_dropbox_and_history": "Zdarma Dropbox a Historie", + "you_not_introed_anyone_to_sl": "Zatím jste __appName__ nikomu nedoporučili. Začněte sdílet!", + "you_introed_small_number": " Představili jste __appName__ __numberOfPeople__ lidem. Dobrá práce, ale zvládnete víc?", + "you_introed_high_number": " Představili jste __appName__ __numberOfPeople__ lidem. Dobrá práce!", + "link_to_sl": "Odkaz na __appName__", + "can_link_to_sl_with_html": "Můžete odkázat na __appName__ pomocí následujícího HTML kódu:", + "year": "rok", + "month": "měsíc", + "subscribe_to_this_plan": "Předplaťte si tento tarif", + "your_plan": "Váš tarif", + "your_subscription": "Vaše předplatné", + "on_free_trial_expiring_at": "Používáte bezplatnou trial verzi, která vyprší __expiresAt__.", + "choose_a_plan_below": "Pro předplatné vyberte z tarifů níže.", + "currently_subscribed_to_plan": "Máte předplacen tarif __planName__.", + "change_plan": "Změnit tarif", + "next_payment_of_x_collectected_on_y": "Další platba __paymentAmmount__ bude stržena __collectionDate__", + "update_your_billing_details": "Aktualizujte své fakturační údaje", + "subscription_canceled_and_terminate_on_x": " Vaše předplatné bylo zrušeno a bude ukončeno k __terminateDate__. Žádná další platba nebude stržena.", + "your_subscription_has_expired": "Vaše předplatné vypršelo.", + "create_new_subscription": "Vytvořit nové předplatné.", + "problem_with_subscription_contact_us": "Vyskytly se problémy s vaším předplatným. Kontaktujte nás prosím pro více informací.", + "manage_group": "Spravovat skupinu", + "loading_billing_form": "Načítám formulář s fakturačními údaji", + "you_have_added_x_of_group_size_y": "Přidal jste __addedUsersSize__ z __groupSize__ možných členů", + "remove_from_group": "Odstranit ze skupiny", + "group_account": "Účet skupiny", + "registered": "Registrováno", + "no_members": "Žádní členové", + "add_more_members": "Přidat více členů", + "add": "Přidat", + "thanks_for_subscribing": "Děkujeme za odběr!", + "your_card_will_be_charged_soon": "Z vaší karty bude brzy stržena platba.", + "if_you_dont_want_to_be_charged": "Pokud nechcete aby vám byla stržena další platba ", + "add_your_first_group_member_now": "Přidejte do vaší skupiny prvního člena", + "thanks_for_subscribing_you_help_sl": "Děkujeme za předplacení tarifu __planName__. Podpora od lidí jako jste vy je to, co umožňuje, aby __appName__ rostl a zlepšoval se.", + "back_to_your_projects": "Zpět k vašim projektům", + "goes_straight_to_our_inboxes": "Přijde to přímo do obou našich schránek", + "need_anything_contact_us_at": "Pokud vám můžeme s čímkoliv pomoci, nebojte se na nás obrátit na", + "regards": "S pozdravem", + "about": "O nás", + "comment": "Komentář", + "restricted_no_permission": "Důvěrné; omlouváme se, ale nemáte dostatečná práva k zobrazení této stránky.", + "online_latex_editor": "Online LaTeX editor", + "meet_team_behind_latex_editor": "Poznejte tým, který stojí za vašim oblíbením online LaTeX editorem:", + "follow_me_on_twitter": "Sledujte mě na Twitteru", + "motivation": "Motivace", + "evolved": "pro budoucnost", + "the_easy_online_collab_latex_editor": "Online LaTeX editor snadný k použití s možností spolupráce více autorů", + "get_started_now": "Začněte hned", + "sl_used_over_x_people_at": "__appName__ používá více než __numberOfUsers__ studentů a akademiků z:", + "collaboration": "Spolupráce", + "work_on_single_version": "Pracujte společně na jedné verzi", + "view_collab_edits": "Sledujte úpravy spolupracovníků ", + "ease_of_use": " Snadné použití", + "no_complicated_latex_install": "Nemusíte instalovat LaTeX", + "all_packages_and_templates": "Máme všechny balíčky a __templatesLink__ které potřebujete", + "document_history": "Historie dokumentu", + "see_what_has_been": "Podívejte se, co bylo ", + "added": "přidáno", + "and": "a", + "removed": "odstraněno", + "restore_to_any_older_version": "Obnovujte ze starší verze", + "work_from_anywhere": "Pracujte odkudkoliv", + "acces_work_from_anywhere": "Mějte přístup ke své práci kdekoliv na světě", + "work_offline_and_sync_with_dropbox": "Pracujte offline a synchronizujte svá data přes Dropbox a GitHub", + "over": "více než", + "view_templates": "Zobrazit šablony", + "nothing_to_install_ready_to_go": "Není tady nic komplikovaného ani obtížného k instalaci, můžete __start_now__, i když jste ho nikdy předtím neviděli. __appName__ má zabudováno kompletní LaTeX prostředí běžící na našich serverech.", + "start_using_latex_now": "začít používat LaTeX právě teď", + "get_same_latex_setup": "S __appName__ máte stále to stejné nastavení LaTeXu, ať jste kdekoliv. Můžete se spolehnout, že při spolupráci s vašimi kolegy a studenty v __appName__ nenarazíte na problémy s různými verzemi nebo balíčky.", + "support_lots_of_features": "Podporujeme téměř všechny funkce LaTeXu, včetně vkládání obrázků, bibliografie, rovnic a mnohem více! Přečtěte si o všech těch úžasných věcech, které můžete v __appName__ dělat, v našem __help_guides_link__", + "latex_guides": "Průvodci LaTeXem", + "reset_password": "Resetovat heslo", + "set_password": "Nastavit heslo", + "updating_site": "Upravuji stránku", + "bonus_please_recommend_us": "Bonus - Doporučte nás prosím", + "admin": "administrátor", + "subscribe": "Odebírat novinky", + "update_billing_details": "Aktualizovat fakturační údaje", + "thank_you": "Děkujeme", + "group_admin": "Administrátor skupiny", + "all_templates": "Všechny šablony", + "your_settings": "Vaše nastavení", + "maintenance": "Údržba", + "to_many_login_requests_2_mins": "Tento účet má příliš mnoho žádostí o přihlášení. Počkejte prosím 2 minuty před dalším pokusem.", + "email_or_password_wrong_try_again": "Váš email, nebo heslo není správně.", + "rate_limit_hit_wait": "Byla dosažena mezní hodnota. Počkejte prosím před dalším pokusem.", + "problem_changing_email_address": "Nastal problém při změně vaší emailové adresy.Prosíme zkuste to za okamžik znovu. Pokud problémy přetrvají, kontaktujte nás.", + "single_version_easy_collab_blurb": "__appName__ garantuje, že budete vždy synchronizovaní se svými spolupracovníky a s tím, co dělají. Existuje pouze jedna hlavní verze každého dokumentu, ke které má každý přístup. Je nemožné způsobit konflikt a vy tak nemusíte čekat, až ostatní dokončí svou práci a pošlou vám poslední verzi.", + "can_see_collabs_type_blurb": "Pokud chce více lidí spolupracovat na jednom dokumentu, klidně můžou. Uvidíte, kde přesně vaši kolegové píšou, a to přímo v editoru. Jejich změny se vám ukážou okamžitě.", + "work_directly_with_collabs": "Pracujte přímo se svými spolupracovníky", + "work_with_word_users": "Pracujte s uživateli Wordu", + "work_with_word_users_blurb": "Je tak jednoduché začít v __appName__. Můžete pozvat ke spolupráci vaše kolegy, kteří LaTeX neumí použít. Budou produktivní od prvního dne a budou postupně vstřebávat LaTeX krok za krokem.", + "view_which_changes": "Zobrazit, co bylo", + "sl_included_history_of_changes_blurb": "__appName__ uchovává historii všech vašich změn, takže můžete vidět, kdo změnil co a kdy. Díky tomu můžete velmi snadno držet krok s vašimi spolupracovníky a kontrolovat průběh práce.", + "can_revert_back_blurb": "Při samostatné i skupinové práci můžou vzniknout chyby. Vrátit se k předchozí verzi je snadné a vy se tak nemusíte obávat ztráty dat nebo nechtěných změn.", + "start_using_sl_now": "Začněte v __appName__ právě teď", + "over_x_templates_easy_getting_started": "V naší galerii naleznete tísíce __templates__, takže he opravdu jednoduché začít, ať už chcete psát článek do časopisu, závěrečnou práci, CV, nebo něco jiného.", + "done": "Hotovo", + "change": "Změnit", + "page_not_found": "Stránka nenalezena", + "please_see_help_for_more_info": "Pro více informací prosím navštivte našeho průvodce nápovědou", + "this_project_will_appear_in_your_dropbox_folder_at": "Tento projekt se objeví ve vaší Dropbox složce jako ", + "member_of_group_subscription": "Jste členem skupiny předplatitelů spravované __admin_email__. Kontaktujte ho prosím pro správu svého předplatného.\n", + "about_henry_oswald": "je softwarový vývojář žijící v Londýně. Vytvořil původní prototyp __appName__ a byl zodpovědný za tvorbu stabilní, rostoucí platformy. Henry je velkým zastáncem programování řízeného testy (TDD) a pravidelně se ujišťuje, že kód ShareLaTeXu zůstává čistý a snadný na údržbu.", + "about_james_allen": "má Ph.D. v teoretické fyzice a zbožňuje LaTeX. Vytvořil jeden z prvních online LaTeX editorů, ScribTeX, a sehrál důležitou úlohu ve vývoji technologií, díky kterým __appName__ funguje.", + "two_strong_principles_behind_sl": "Za naší prací na __appName__ jsou dvě silné hnací zásady:", + "want_to_improve_workflow_of_as_many_people_as_possible": "Chceme vylepšit pracovní postup u tolika lidí, u kolika to jen bude možné.", + "detail_on_improve_peoples_workflow": "LaTeX je často velmi náročný k používání a spolupráce s více autory obtížně koordinovatelná. Věříme, že jsme vyvinuli skvělé řešení, které dokáže pomoct lidem čelícím takovým problémům, a chceme si být jisti, že je jim __appName__ co nejvíce přístupný. Snažíme se držet naše ceny férové a navíc jsme většinu kódu __appName__ uvolnili jako otevřený software, takže si může každý hostovat svůj.", + "want_to_create_sustainable_lasting_legacy": "Chceme vytvořit udržitelné a trvalé dědictví.", + "details_on_legacy": "Vývoj a údržba takového produktu, jakým je __appName__, stojí spoustu úsilí a času, takže je nutné najít takový business model, který ho bude v dané situaci schopen dlouhodobě podporovat. Nechceme, aby byl __appName__ závislý na externím financování, nebo aby skončil kvůli chybně vybranému business modelu. Jsem velmi rád, že v současnosti zvládáme provozovat__appName__ ziskově a udržitelně s vidinou do daleké budoucnosti.", + "get_in_touch": "Buďte v kontaktu", + "want_to_hear_from_you_email_us_at": "Rádi uslyšíme kohokoliv, kdo používá __appName__, nebo si chce popovídat o tom, co děláme. Můžete být s námi v kontaktu na ", + "cant_find_email": "Je nám líto, ale tato emailová adresa není registrována.", + "plans_amper_pricing": "Tarify a ceny", + "documentation": "Dokumentace", + "account": "Účet", + "subscription": "Předplatné", + "log_out": "Odhlásit se", + "en": "Angličtina", + "pt": "Portugalština", + "es": "Španělština", + "fr": "Francouzština", + "de": "Němčina", + "it": "Italština", + "da": "Dánština", + "sv": "Švédština", + "no": "Norština", + "nl": "Holandština", + "pl": "Polština", + "ru": "Ruština", + "uk": "Ukrajinština", + "ro": "Rumunština", + "click_here_to_view_sl_in_lng": "Pro použití __appName__ v __lngName__ klikněte zde", + "language": "Jazyk", + "upload": "Nahrát", + "menu": "Menu", + "full_screen": "Celá obrazovka", + "logs_and_output_files": "Logy a výstupní soubory", + "download_pdf": "Stáhnout PDF", + "split_screen": "Rozdělená obrazovka", + "clear_cached_files": "Vymazat cache", + "go_to_code_location_in_pdf": "Přejít od místa v kódu k PDF", + "please_compile_pdf_before_download": "Před stažením PDF prosím zkompilujte svůj projekt", + "remove_collaborator": "Odstranit spolupracovníka", + "add_to_folders": "Přidat do složek", + "download_zip_file": "Stáhnout soubor .zip", + "price": "Cena", + "close": "Zavřít", + "keybindings": "Klávesové zkratky", + "restricted": "Důvěrné", + "start_x_day_trial": "Spusťte vaši bezplatnou __len__-ti denní trial verzi ještě dnes!", + "buy_now": "Kupte teď!", + "cs": "Čeština", + "view_all": "Zobrazit vše", + "terms": "Podmínky", + "privacy": "Soukromí", + "contact": "Kontakt", + "change_to_this_plan": "Změnit na tento tarif", + "processing": "zpracovávám", + "sure_you_want_to_change_plan": "Opravdu chcete změnit tarif na __planName__?", + "move_to_annual_billing": "Přesun k ročnímu vyúčtování", + "annual_billing_enabled": "Roční vyúčtování povoleno", + "move_to_annual_billing_now": "Přejděte k ročnímu vyúčtování právě teď", + "change_to_annual_billing_and_save": "Získejte __percentage__ z ročního vyúčtování. Pokud provedete změnu hned, ušetříte __yearlySaving__ za rok.", + "missing_template_question": "Chybí nám šablona?", + "tell_us_about_the_template": "Pokud nám chybí nějaká šablona: pošlete nám prosím její kopii včetně url adresy v __appName__, nebo nám dejte vědět, kde ji můžeme najít. Zároveň nám též pošlete pár vět, které můžeme použít k jejímu popisu.", + "email_us": "Napište nám", + "this_project_is_public_read_only": "Tento projekt je veřejný a může být zobrazen, ale ne editován, kýmkoliv kdo má URL", + "tr": "Turečtina", + "select_files": "Vybrat soubor(y)", + "drag_files": "přesuňte soubor(y)", + "upload_failed_sorry": "Nahrání nevyšlo, je nám líto :(", + "inserting_files": "Vkládám soubor...", + "password_reset_token_expired": "Váš token pro reset hesla vypršel. Nechejte si prosím zaslat nový email a pokračujte odkazem v něm uvedeným.", + "pull_github_changes_into_sharelatex": "Vložit změny z GitHubu do __appName__u.", + "push_sharelatex_changes_to_github": "Vložit změny z __appName__u do GitHubu", + "features": "Vlastnosti", + "commit": "Commitovat", + "commiting": "Commituji", + "importing_and_merging_changes_in_github": "Importuji a merguji změny v GitHubu", + "upgrade_for_faster_compiles": "Upgradujte pro rychlejší kompilaci a zvyšení limitu pro timeout.", + "free_accounts_have_timeout_upgrade_to_increase": "Účty zdarma mají čas kompilace omezen na jednu minutu. Prémiové účty mají 4 minuty.", + "learn_how_to_make_documents_compile_quickly": "Naučte se jak vyřešit problémy s časem kompilace.", + "account_settings": "Nastavení účtu", + "search_projects": "Vyhledat projekty", + "clone_project": "Klonovat projekt", + "delete_project": "Smazat projekt", + "download_zip": "Stáhnout Zip", + "new_project": "Nový projekt", + "blank_project": "Prázdný projekt", + "example_project": "Vzorový projekt", + "from_template": "Ze šablony", + "cv_or_resume": "CV nebo stručný životopis", + "cover_letter": "Průvodní dopis", + "journal_article": "Článek v časopise", + "presentation": "Prezentace", + "thesis": "Závěrečná práce", + "bibliographies": "Bibliografie", + "terms_of_service": "Podmínky používání služby", + "privacy_policy": "Ochrana osobních údajů", + "plans_and_pricing": "Tarify a ceny", + "university_licences": "Univerzitní licence", + "security": "Zabezpečení", + "contact_us": "Kontaktujte nás", + "thanks": "Děkujeme", + "blog": "Blog", + "latex_editor": "LaTeX editor", + "get_free_stuff": "Získejte funkce zdarma", + "chat": "Chat", + "your_message": "Vaše zpráva", + "loading": "Načítám", + "connecting": "Připojuji", + "recompile": "Překompilovat", + "download": "Stáhnout", + "email": "Email", + "owner": "Vlastník", + "read_and_write": "Číst a psát", + "read_only": "Jen pro čtení", + "publish": "Publikovat", + "view_in_template_gallery": "Zobrazit v galerii šablon", + "unpublish": "Zrušit publikování", + "hotkeys": "Klávesové zkratky", + "saving": "Ukládám", + "cancel": "Zrušit", + "project_name": "Jméno projektu", + "root_document": "Hlavní dokument", + "spell_check": "Kontrola pravopisu", + "compiler": "Kompilátor", + "private": "Soukromé", + "public": "Veřejné", + "delete_forever": "Smazat navždy", + "support_and_feedback": "Podpora a zpětná vazba", + "help": "Nápověda", + "latex_templates": "Šablony pro LaTeX", + "info": "Informace", + "latex_help_guide": "Průvodce LaTeX nápovědou", + "choose_your_plan": "Zvolte si svůj tarif", + "indvidual_plans": "Individuální tarify", + "free_forever": "Navždy zdarma", + "low_priority_compile": "Kompilace s nízkou prioritou", + "unlimited_projects": "Neomezený počet projektů", + "unlimited_compiles": "Neomezený počet kompilací", + "full_history_of_changes": "Kompletní historie změn", + "highest_priority_compiling": "Kompilace s nejvyšší prioritou", + "dropbox_sync": "Synchronizace s Dropboxem", + "beta": "Beta", + "sign_up_now": "Registrujte se", + "annual": "Roční", + "half_price_student": "Studentské tarify za poloviční cenu", + "about_us": "O nás", + "loading_recent_github_commits": "Načítám poslední commity", + "no_new_commits_in_github": "Od posledního merge nejsou žádné nové commity.", + "dropbox_sync_description": "Udržujte své projekty v __appName__u synchronizované s vašim Dropboxem. Změny v __appName__u budou automaticky poslány do Dropboxu a obráceně.", + "github_sync_description": "Můžete spojit vaše projekty v __appName__u s GitHub repozitářem. Můžete vytvářet nové commity z __appName__u a mergovat s commity vytvořenými offline, nebo na GitHubu.", + "github_import_description": "S GitHub synchronizací můžete importovat vaše GitHub repozitáře do __appName__u. Můžete vytvářet nové commity z __appName__u a mergovat s commity vytvořenými offline nebo v GitHubu.", + "link_to_github_description": "Musíte autorizovat __appName__ k přístupu do vaše GitHub účtu abychom mohli synchronizovat vaše projekty.", + "unlink": "Odpojit", + "unlink_github_warning": "Všechny projekty synchronizované s GitHubem budou odpojeny a déle nesynchronizovány. Opravdu chcete váš GitHub účet odpojit?", + "github_account_successfully_linked": "GitHub účet byl úspěšně připojen!", + "github_successfully_linked_description": "Děkujeme, úspěšně jsem připojili váš GitHub účet k __appName__u. Nyní můžete exportovat své projekty v __appName__u do GitHubu, nebo importovat projekty z GitHub repozitáře.", + "import_from_github": "Importovat z GitHubu", + "github_sync_error": "Omlouváme se, ale při komunikaci s naší GitHub službou nastala chyba. Zkuste to za moment znovu.", + "loading_github_repositories": "Načítám vaše repozitáře z GitHubu", + "select_github_repository": "Vybrat GitHub repozitář k importování do __appName__u.", + "import_to_sharelatex": "Importovat do __appName__u", + "importing": "Importuji", + "github_sync": "Synchronizace s GitHubem", + "checking_project_github_status": "Kontroluji stav projektu na GitHubu", + "account_not_linked_to_github": "Váš účet není spojen s GitHubem", + "project_not_linked_to_github": "Tento projekt není spojen s GitHub repozitářem. Můžete pro něj GitHub repozitář vytvořit:", + "create_project_in_github": "Vytvořit GitHub repozitář.", + "project_synced_with_git_repo_at": "Tento projekt je synchronizován s GitHub repozitářem v", + "recent_commits_in_github": "Poslední commity do GitHubu", + "sync_project_to_github": "Synchronizovat projekt do GitHubu", + "sync_project_to_github_explanation": "Každá změna, kterou uděláte v __appName__u, bude commitována a mergována z každou změnou v GitHubu.", + "github_merge_failed": "Vaše změny v __appName__u a GitHubu nemohou být automaticky mergovány. Prosím mergujte manuálně __sharelatex_branch__ branch do __master_branch__ branche v gitu. Po dokončení manuálního merge klikněte níže pro pokračování.", + "continue_github_merge": "Provedl jsem manuální merge. Pokračovat", + "export_project_to_github": "Exportovat projekt do GitHubu", + "github_validation_check": "Zkontrolujte prosím, jestli máte správné jméno repozitáře a jestli máte práva k jeho vytvoření.", + "repository_name": "Jméno repozitáře", + "optional": "Dobrovolný", + "github_public_description": "Tento repozitář může vidět kdokoliv. Vy určíte kdo do něj může commitovat,", + "github_commit_message_placeholder": "Commit zprávy pro změny udělané v __appName__u...", + "merge": "Mergovat", + "merging": "Merguji", + "github_account_is_linked": "Váš GitHub účet byl úspěšně spojen.", + "unlink_github": "Odpojit váš GitHub účet", + "link_to_github": "Spojit s vašim GitHub účtem", + "github_integration": "Integrace s GitHubem", + "github_is_premium": "Synchronizace s GitHubem je prémiová funkce" +} \ No newline at end of file diff --git a/services/web/locales/da.json b/services/web/locales/da.json new file mode 100644 index 0000000000..5cf99296a8 --- /dev/null +++ b/services/web/locales/da.json @@ -0,0 +1,1128 @@ +{ + "last_login": "Sidste log–ind", + "thank_you_for_being_part_of_our_beta_program": "Mange tak fordi du deltager i vores Betaprogram, hvor du kan få tidlig adgang til nye funktioner, og hjælpe os med bedre at forstå dine behov", + "you_will_be_able_to_contact_us_any_time_to_share_your_feedback": "Du vil kunne kontakte os når som helst, for at give din feedback", + "we_may_also_contact_you_from_time_to_time_by_email_with_a_survey": "Vi kontakter måske også dig fra tid til anden via email med et spørgeskema, eller for at se, om du har lyst til at deltage i andre brugerundersøgelsesinitiativer", + "you_can_opt_in_and_out_of_the_program_at_any_time_on_this_page": "Du kan på denne side til enhver tid til– og framelde dig programmet", + "give_feedback": "Giv feedback", + "beta_feature_badge": "Betafunktions–skilt", + "invalid_filename": "Ugyldigt filnavn: Check for specialtegn eller ekstra mellemrum", + "clsi_unavailable": "Beklager, kompileringsserveren til dit projekt var midlertidigt utilgængelig. Prøv igen om lidt.", + "x_price_per_month": "__price__ per måned", + "x_price_per_year": "__price__ per år", + "x_price_for_first_month": "__price__ for din første måned", + "x_price_for_first_year": "__price__ for dit første år", + "normally_x_price_per_month": "Normalt __price__ per måned", + "then_x_price_per_month": "Derefter __price__ per måned", + "then_x_price_per_year": "Derefter __price__ per år", + "for_your_first": "for din/dit første", + "sso_not_linked": "Du har ikke forbundet din konto til __provider__. Du bliver nødt til først at logge ind med en anden metode, og forbinde din __provider__–konto i dine kontoindstillinger.", + "template_gallery": "Skabelonsgalleri", + "template_not_found_description": "Denne vej til at lave nye projekter ud fra skabeloner er blevet fjernet. Du kan kigge i vores skabelonsgalleri efter flere skabeloner.", + "dropbox_checking_sync_status": "Checker status for Dopboxintegration", + "dropbox_sync_in": "Opdaterer Overleaf", + "dropbox_sync_out": "Opdaterer Dropbox", + "dropbox_sync_both": "Opdaterer Overleaf og Dropbox", + "dropbox_synced": "Overleaf og Dropbox er fuldt opdaterede", + "dropbox_sync_status_error": "Der er sket en fejl i Dropboxintegrationen", + "requesting_password_reset": "Beder om nulstilling af kodeord", + "tex_live_version": "TeX Live–version", + "project_has_too_many_files": "Dette projekt har nået grænsen på 2000 filer", + "processing_your_request": "Vent venligst, mens vi behandler din forespørgsel.", + "github_repository_diverged": "Master branch i det forbundne repository er blevet force–pushet. Det kan desynkronisere Overleaf og Github at pulle ændringer efter et force push. Det vil muligvis være nødvendigt at pushe ændringer efter pullet for blive synkroniseret igen.", + "unlink_github_repository": "Afskær Github Repository", + "unlinking": "Fjerner forbindelse", + "github_no_master_branch_error": "Dette repository kan ikke forbindes, da det ikke har nogen master branch. Du må først være sikker på, at projektet har en master branch", + "confirmation_token_invalid": "Beklager, din bekræftelsespolet er ugyldig eller udløbet. Vi må bede dig bestille en ny email med et bekræftelseslink.", + "confirmation_link_broken": "Beklager, der er noget galt med dit bekræftelseslink. Du kan prøve at kopiere og indsætte linket i bunden af din bekræftelsesmail.", + "duplicate_file": "Duplikér Fil", + "file_already_exists_in_this_location": "Et emne med navnet __fileName__ findes allerede på denne placering. Hvis du vil gennemføre flytningen, skal du først omdøbe eller flytte den fil, som er i vejen, og derefter prøve igen.", + "group_full": "Denne gruppe er allerede fuld", + "no_selection_select_file": "Der er ikke valgt nogen fil. Vælg venligst en fil fra filtræet.", + "no_selection_create_new_file": "Dit projekt er tomt. Lav venligst en ny fil.", + "files_selected": "filer valgt.", + "home": "Hjem", + "this_action_cannot_be_undone": "Denne handling kan ikke fortrydes.", + "dropbox_email_not_verified": "Vi har ikke kunnet hente opdateringer fra din Dropbox–konto. Dropbox rapporterer, at din emailadresse ikke er bekræftet. For at løse dette, må du bekræfte din emailadresse overfor Dropbox.", + "link_email_to_join": "Forbind din institutionelle email for at komme med i __protalTitle__ på __appName__", + "token_access_success": "Adgang tildelt", + "token_access_failure": "Kan ikke tildele adgang; kontakt projektejeren for hjælp", + "trashed_projects": "Kassérede projekter", + "trash": "Kassér", + "untrash": "Gendan", + "delete_and_leave": "Slet / Forlad", + "trash_projects": "Kassér Projekter", + "about_to_trash_projects": "Du er ved at kassére følgende projekter:", + "archived_projects_info_note": "Arkivet fungerer nu på individuel brugerbasis. Projekter, som du bleslutter at arkivere, arkiveres kun for dig, og ikke dine samarbejdspartnere.", + "trashed_projects_info_note": "Overleaf har nu en kasse til projekter, du vil af med. Det påvirker ikke dine samarbejdspartnere, hvis du Kassérer et projekt.", + "register_intercept_sso": "Du kan forbinde din __authProviderName__–konto fra din Kontoindstillingsside, efter du har logget ind.", + "continue_to": "Fortsæt til __appName__", + "project_ownership_transfer_confirmation_1": "Er du sikker på, at du vil gøre __user__ til ejer af __project__?", + "project_ownership_transfer_confirmation_2": "Denne handling kan ikke fortrydes. Den nye ejer får besked, og vil kunne ændre projektets adgangsindstillinger (inklusive at fratage din egen adgang).", + "change_owner": "Skift ejer", + "change_project_owner": "Skift Projektejer", + "password_too_long_please_reset": "Maksimal kodeordslængde overskredet. Start venligst forfra med dit kodeord.", + "view_other_options_to_log_in": "Se andre muligheder for at logge ind", + "we_logged_you_in": "Vi har logget dig ind.", + "will_need_to_log_out_from_and_in_with": "Du bliver nødt til at logge ud fra din konto for __email1__, og derefter logge ind med __email2__.", + "resubmit_institutional_email": "Genindsend venligst din institutionelle email.", + "opted_out_linking": "Du har fravalgt at forbinde din __appName__–konto for __email__ til din institutionelle konto.", + "please_link_to_institution_account": "Forbind din __appName__–konto for __email__ med din institutionelle konto hos __institutionName__.", + "register_with_another_email": "Bliv registreret hos __appName__ med en anden emailadresse.", + "register_with_email_provided": "Bliv registreret hos __appName__ med den emailadresse og det kodeord, du har oplyst.", + "security_reasons_linked_accts": "Af sikkerhedsårsager, fordi din institutionelle email allerede er associeret med __appName__–kontoen for __email__, kan vi kun tillade en forbindelse med den specifikke konto.", + "this_grants_access_to_features": "Dette giver dig adgang til __appName__ __featureType__ funktioner.", + "to_add_email_accounts_need_to_be_linked": "For at tilføje denne email skal din __appName__– og din __institutionName__–konto først forbindes.", + "tried_to_log_in_with_email": "Du har prøvet at logge ind med __email__.", + "tried_to_register_with_email": "Du har forsøgt at blive registreret som __email__, hvilken allerede er registreret hos __appName__ som en institutionel konto.", + "log_in_with_email": "Log ind med __email__", + "log_in_with_existing_institution_email": "For at forbinde din __appName__– og din __institutionName__–konto, er du nødt til først at logge ind med din eksisterende __appName__–konto.", + "log_out_from": "Log __email__ ud", + "logged_in_with_acct_that_cannot_be_linked": "Du har logget ind med en __appName__–konto, som ikke kan forbindes med din institutionelle konto.", + "logged_in_with_email": "Du er i øjeblikket logget ind i __appName__ med emailen __email__.", + "looks_like_logged_in_with_email": "Det ser ud til, at du allerede er logget ind i __appName__ med emailen __email__.", + "make_primary_to_log_in_through_institution": "Sæt __email__ som din primære email for at kunne logge ind gemmen din institutions portal. ", + "make_primary_which_will_allow_log_in_through_institution": "Hvis du sætter den som din primære __appName__ email vil du blive i stand til at logge ind gennem din institutions portal.", + "need_to_do_this_to_access_license": "Det er nødvendigt for, at du kan drage nytte af de fordele, som følger med den site licens, som tilhører __institutionName__", + "institutional_login_not_supported": "Dit universitet understøtter ikke institutionel indlogning endnu, men du kan stadig blive registreret med en institutionel email.", + "link_account": "Forbind Konto", + "link_accounts": "Forbind Kontoer", + "link_accounts_and_add_email": "Forbind Kontoer og Tilføj Email", + "link_your_accounts": "Forbind dine kontoer", + "log_in_and_link": "Log ind og forbind", + "log_in_and_link_accounts": "Log ind og forbind kontoer", + "log_in_first_to_proceed": "Du kan først fortsætte, når du har logget ind.", + "log_in_through_institution": "Log ind via din institution", + "if_have_existing_can_link": "Hvis du har en eksisterende __appName__–konto under en anden email, kan du forbinde den til din __institutionName__–konto ved at klikke __clickText__", + "if_owner_can_link": "Hvis du ejer __appName__–kontoen under __email__, vil du få mulighed for at forbinde den til din institutionelle konto hos __institutionName__.", + "ignore_and_continue_institution_linking": "Du kan også springe det over, og fortsætte til __appName__ med kontoen for __email__.", + "get_in_touch_having_problems": "Kontakt support, hvis du oplever problemer", + "create_new_account": "Opret en ny konto", + "subscription_admins_cannot_be_deleted": "Du kan ikke slette din konto med et abonnement. Du må annullere dit abonnement, før du kan fortsætte. Hvis du bliver ved med at se denne besked, så kontakt os.", + "delete_acct_no_existing_pw": "Du bliver nødt til at bruge nulstillelsesformularen til at indstille et kodeord, før du kan slette din konto.", + "empty_zip_file": "Zip indeholder ikke nogen filer", + "you_can_now_login_through_overleaf_sl": "Du kan nu logge ind på din ShareLaTeX–konto via Overleaf.", + "find_out_more_nt": "Find ud af mere.", + "register_error": "Registreringsfejl", + "login_error": "Log–ind–fejl", + "more_info": "Mere info", + "synctex_failed": "Kunne ikke finde den tilhørende kildefil", + "linked_collabratec_description": "Brug Collabratec til at holde styr på dine __appName__–projekter.", + "reset_from_sl": "Før din ShareLaTeX–konto kan flyttes til Overleaf er du nødt til at nulstille dit kodeord i ShareLaTeX, og logge ind der", + "dropbox_already_linked_error": "Kan ikke forbinde til din Dropbox–konto, fordi den allerede er forbundet til en anden Overleaf–konto.", + "github_too_many_files_error": "Dette repository kan ikke importeres, fordi det indeholder flere end det maksimalt tilladte antal filer", + "linked_accounts": "forbundne konti", + "linked_accounts_explained": "Du kan forbinde din __appName__–konto med andre tjenester for at gøre brug af funktionerne beskrevet herunder", + "no_existing_password": "Brug formularen til at nulstille dit kodeord", + " to_reactivate_your_subscription_go_to": "Genaktivér dit abonnement ved at gå til", + "subscription_canceled": "Abonnement Annulleret", + "coupons_not_included": "Dette inkluderer ikke dine nuværende rabatter. De bliver automatisk lagt ind før din næste betaling", + "email_already_registered_secondary": "Denne email er allerede registreret som en sekundær email", + "secondary_email_password_reset": "Den email er registreret som en sekundær email. Du kan kun logges ind, hvis du skriver din kontos primære email.", + "if_registered_email_sent": "Hvis du har en konto, har vi sendt dig en email.", + "reconfirm": "genbekræft", + "request_reconfirmation_email": "bed om en genbekræftelsesmail", + "reconfirm_explained": "Vi er nødt til at genbekræfte din konto. Derfor må vi bede dig om at få tilsendt en nulstillingsmail til dit kodeord via formularen herunder. Hvis du møder problemer, er du velkommen til at kontakte os på", + "upload_failed": "Overførsel mislykkedes", + "file_too_large": "For stor fil", + "zip_contents_too_large": "For stort indhold i zip–fil", + "invalid_zip_file": "Ugyldig zip–fil", + "make_primary": "Gør Til Primær", + "make_email_primary_description": "Gør dette til den primære email, som bruges til at logge ind med", + "github_sync_repository_not_found_description": "Det forbundne repository er enten blevet fjernet, eller du har ikke længere adgang til det. Du kan forbinde til et nyt repository ved at klone projektet, og vælge punktet 'Github' i menuen. Du kan også fjerne forbindelsen mellem projektet og repository'et.", + "unarchive": "Gendan", + "cant_see_what_youre_looking_for_question": "Er der noget, der mangler?", + "something_went_wrong_canceling_your_subscription": "Der gik noget galt med annulleringen af dit abonnement. Du bliver nødt til at kontakte supporten.", + "department": "Afdeling", + "notification_features_upgraded_by_affiliation": "Godt nyt! Organisationen __institutionName__, som du tilhører, har et partnerskab med Overleaf, og du har nu adgang til alle Overleafs Professionelle funktioner.", + "github_private_description": "Du vælger hvem der kan se, og committe til, dette repository.", + "notification_project_invite_message": "__userName__ vil gerne have dig med i __projectName__", + "notification_project_invite_accepted_message": "Du er nu med i __projectName__", + "subject_to_additional_vat": "Priser kan skulle pålægges yderligere afgifter, afhængigt af hvor du er.", + "select_country_vat": "Når du har valgt dit land på betalingssiden kan vi vise den totale pris inklusive moms.", + "to_change_access_permissions": "Hvis du vil ændre adgangstilladelser må du bede ejeren af projektet om det", + "file_name_in_this_project": "Filnavn I Dette Projekt", + "new_snippet_project": "Unavngivet", + "there_was_an_error_opening_your_content": "Der var en fejl i oprettelsen af dit projekt", + "sorry_something_went_wrong_opening_the_document_please_try_again": "Beklager, der skete en uventet fejl i forsøget på at åbne dette indhold i Overleaf. Prøv venligst igen.", + "password_change_passwords_do_not_match": "Kodeord er ikke ens", + "browsing_project_latest_for_pseudo_label": "Kigger på dit projekts nuværende indhold", + "history_label_project_current_state": "Nuværende indhold", + "download_project_at_this_version": "Hent denne version af projektet", + "submit": "indsend", + "help_articles_matching": "Hjælpeartikler magen til dit emne", + "dropbox_for_link_share_projs": "Du har adgang til dette projekt via link–deling, og det kan derfor ikke synkroniseres til din Dropbox medmindre du bliver inviteret via email af projektejeren.", + "clear_search": "ryd søgning", + "access_your_projects_with_git": "Tilgå dine projekter med Git", + "ask_proj_owner_to_upgrade_for_git_bridge": "Bed projektejeren om at opgradere sin konto for at kunne bruge git", + "export_csv": "Eksportér CSV", + "add_comma_separated_emails_help": "Brug komma–tegn (,) til at adskille emailadresser.", + "members_management": "Styring af medlemmer", + "managers_management": "Styring af ledere", + "institution_account": "Institutionskonto", + "git": "Git", + "clone_with_git": "Klon med Git", + "git_bridge_modal_description": "Du kan git clone dit projekt med linket herunder.", + "managers_cannot_remove_admin": "Administratorer kan ikke fjernes", + "managers_cannot_remove_self": "Ledere kan ikke fjerne sig selv", + "user_not_found": "Bruger ikke fundet", + "user_already_added": "Bruger allerede tilføjet", + "bonus_twitter_share_text": "Jeg bruger __appName__, det gratis online kollaborative LaTeX–skriveprogram—det er fedt og nemt at bruge!", + "bonus_email_share_header": "Online LaTeX–skriveprogram, du måske synes om", + "bonus_email_share_body": "Hey, jeg har brugt online LaTeX–skriveprogrammet __appName__ på det seneste, og tænkte, at du måske også har lyst til at kigge på det.", + "bonus_share_link_text": "Online LaTeX–skriveprogram __appName__", + "bonus_facebook_name": "__appName__ – Online LaTeX–skriveprogram", + "bonus_facebook_caption": "Gratis Ubegrænsede Projekter og Kompileringer", + "bonus_facebook_description": "__appName__ er et gratis online LaTeX–skriveprogram. Live samarbejde som i Google Docs, med Dropbox, historie og autofuldførelse.", + "password_change_failed_attempt": "Kodeordsskift slog fejl", + "password_change_successful": "Kodeord udskiftet", + "not_registered": "Ikke registreret", + "try_again": "Prøv venligst igen", + "email_required": "Email påkrævet", + "registration_error": "Registreringsfejl", + "newsletter-accept": "Jeg vil gerne modtage emails om produkttilbud og virksomhedsnyheder og –begivenheder.", + "resending_confirmation_email": "Gensender bekræftelsesmail", + "register_using_service": "Registrér med __service__", + "login_to_overleaf": "Log ind i Overleaf", + "login_with_email": "Log ind med din email", + "login_with_service": "Log ind med __service__", + "first_time_sl_user": "Første gang her som ShareLaTeX–bruger", + "migrate_from_sl": "Migrer fra ShareLaTeX", + "dont_have_account": "Ingen konto?", + "register_using_email": "Registrér dig med din email", + "login_register_or": "eller", + "to_add_more_collaborators": "For at få tilføjet flere samarbejdspartnere eller aktiveret linkdeling, skal du bede projektejeren om at gøre det", + "by": "af", + "emails": "Emails", + "editor_theme": "Tema for skrivevinduet", + "thousands_templates": "Flere tusind skabeloner", + "get_instant_access_to": "Få øjeblikkelig adgang til", + "currently_seeing_only_24_hrs_history": "Du ser nu på de sidste 24 timers ændringer i dette projekt.", + "archive_projects": "Arkivér Projekter", + "archive_and_leave_projects": "Arkivér og Forlad Projekter", + "about_to_archive_projects": "Du er på vej til at arkivére følgende projekter:", + "please_confirm_your_email_before_making_it_default": "Din emailadresse skal bekræftes, før du kan gøre den til din standardadresse.", + "back_to_editor": "Tilbage til skrivevinduet", + "generic_history_error": "Noget gik galt i forsøget på at hente dit projekts historie. Hvis fejlen fortsætter, så kontakt os via:", + "unconfirmed": "Ikke bekræftet", + "please_check_your_inbox": "Kig i din indboks", + "resend_confirmation_email": "Gensend bekræftelsesmail", + "history_label_created_by": "Oprettet af", + "history_label_this_version": "Sæt mærkat på denne version", + "history_add_label": "Tilføj mærkat", + "history_adding_label": "Tilføjer mærkat", + "history_new_label_name": "Navn på ny mærkat", + "history_new_label_added_at": "En ny mærkat bliver tilføjet fra og med", + "history_delete_label": "Slet mærkat", + "history_deleting_label": "Sletter mærkat", + "history_are_you_sure_delete_label": "Er du sikker på, at du vil slette følgende mærkat", + "browsing_project_labelled": "Kigger på projektversion mærket", + "history_view_all": "Komplet historie", + "history_view_labels": "Mærkater", + "history_view_a11y_description": "Vis den komplette projekthistorie, eller kun mærkede versioner.", + "add_another_email": "Tilføj endnu en email", + "start_by_adding_your_email": "Begynd ved at tilføje din email–adresse.", + "let_us_know": "Fortæl os om det", + "add_new_email": "Tilføj ny email", + "error_performing_request": "Der skete en fejl i forsøget på at udføre din forespørgesel.", + "save_or_cancel-save": "Gem", + "save_or_cancel-or": "eller", + "save_or_cancel-cancel": "Annuller", + "remove": "fjern", + "confirm_email": "Bekræft Email", + "file_action_edited": "Ændrede i", + "file_action_renamed": "Omdøbte", + "file_action_created": "Oprettede", + "file_action_deleted": "Slettede", + "browsing_project_as_of": "Kigger i projekt, som det så ud", + "font_family": "Skrifttypefamilie", + "line_height": "Linjehøjde", + "compact": "Kompakt", + "wide": "Bred", + "default": "Standard", + "leave": "Forlad", + "archived_projects": "Arkiverede projekter", + "archive": "Arkiv", + "find_out_more": "Find ud af mere", + "in_good_company": "Du Er I Godt Selskab", + "powerful_latex_editor": "Stærkt LaTeX–skriveprogram", + "latex_editor_info": "Alt hvad du har brug for i et moderne LaTeX–skriveprogram—stavekontrol, intelligent autofuldførelse, syntaksfremhævning, mange farvetemaer, tastaturbindinger fra vim og emacs, hjælp med LaTeXs advarsler og fejlmeddelelser, og meget mere.", + "number_collab": "Antal samarbejdspartnere", + "hundreds_templates": "Flere hundrede skabeloner", + "tooltip_hide_pdf": "Tryk for at skjule PDF'en", + "tooltip_show_pdf": "Tryk for at vise PDF'en", + "tooltip_hide_filetree": "Tryk for at skjule fil-træet", + "tooltip_show_filetree": "Tryk for at vise fil-træet", + "cannot_verify_user_not_robot": "Vi har desværre ikke kunnet verificere, at du ikke er en robot. Tjek venligst at Google reCAPTCHA ikke bliver blokeret af en adblocker eller en firewall.", + "uncompiled_changes": "Ukompilerede ændringer", + "code_check_failed": "Kode tjek fejlede", + "code_check_failed_explanation": "Din kode har fejl, der skal rettes før auto-kompileren kan køre", + "tags_slash_folders": "Tags/Mapper", + "file_already_exists": "Der eksisterer allerede en fil eller mappe med dette navn", + "import_project_to_v2": "Importer projekt til V2", + "open_in_v1": "Åben i V1", + "import_to_v2": "Importer til V2", + "never_mind_open_in_v1": "Ligegyldigt, åben i V1", + "yes_im_sure": "Ja, jeg er sikker", + "drop_files_here_to_upload": "Slip filer her for at uploade", + "drag_here": "træk her", + "creating_project": "Opretter projekt", + "select_a_zip_file": "Vælg en .zip fil", + "drag_a_zip_file": "træk en .zip fil", + "v1_badge": "V1 Skilt", + "v1_projects": "V1 Projekter", + "open_your_billing_details_page": "Åben siden med dine betalingsoplysninger", + "try_out_link_sharing": "Prøv den nye link-delingsfunktion!", + "try_link_sharing": "Prøv Link Deling", + "try_link_sharing_description": "Giv adgang til dit projekt ved at dele et link.", + "learn_more_about_link_sharing": "Lær mere om Link Deling", + "link_sharing": "Link Deling", + "tc_guests": "Gæster", + "select_all_projects": "Vælg alle", + "select_project": "Vælg", + "main_file_not_found": "Ukendt hoveddokument", + "please_set_main_file": "Vælg venligst projektets primære fil i projekt menuen. ", + "link_sharing_is_off": "Link deling er slået fra; kun inviterede personer kan se dette projekt.", + "turn_on_link_sharing": "Slå link deling til", + "link_sharing_is_on": "Link deling er slået til", + "turn_off_link_sharing": "Slå link deling fra", + "anyone_with_link_can_edit": "Alle med dette link kan redigere dette projekt", + "anyone_with_link_can_view": "Alle med dette link kan se dette projekt", + "turn_on_link_sharing_consequences": "Når link deling er slået til, vil alle med det relevante link kunne tilgå eller redigere dette projekt", + "turn_off_link_sharing_consequences": "Når link deling er slået fra, er det kun inviterede personer, som har adgang til dette projekt", + "autocompile_disabled": "Automatisk kompilering slået fra", + "autocompile_disabled_reason": "Grundet høj serverbelastning er baggrunds kompilering midlertidig slået fra. Genkompiler venligst ved at klikke på ovenstående knap.", + "auto_compile_onboarding_description": "Når det er slået til, vil du projekt kompilere imens du skriver.", + "try_out_auto_compile_setting": "Prøv den nye indstilling for automatisk kompilering", + "got_it": "Forstået", + "pdf_compile_in_progress_error": "Kompilering kører allerede i et andet vindue", + "pdf_compile_try_again": "Vent venlist til din anden kompilering er færdig før en ny startes", + "invalid_email": "En email adresse er forkert", + "auto_compile": "Kompilér automatisk", + "on": "Til", + "tc_everyone": "Alle", + "per_user_tc_title": "Følg individuelle ændringer", + "you_can_use_per_user_tc": "Nu kan du følge ændringer for hver enkelt bruger", + "turn_tc_on_individuals": "Aktiver 'Følg ændringer' for individuelle brugere", + "keep_tc_on_like_before": "Eller følg alle, som før", + "auto_close_brackets": "Luk automatisk firkantede parenteser", + "auto_pair_delimiters": "Par automatisk afgrænsninger", + "successfull_dropbox_link": "Dropbox er blevet forbundet, omdirigerer til indstillinger", + "show_link": "Vis Link", + "hide_link": "Skjul Link", + "aggregate_changed": "Ændrede", + "aggregate_to": "til", + "confirm_password_to_continue": "Bekræft kodeordet for at fortsætte", + "confirm_password_footer": "Vi vil ikke bede om dit kodeord igen i et stykke tid.", + "accept_all": "Accepter alle", + "reject_all": "Afvis alle", + "bulk_accept_confirm": "Er du sikker på, at du vil acceptere de valgte __nChanges__ ændringer?", + "bulk_reject_confirm": "Er du sikker på, at du vil afvise de valgte __nChanges__ ændringer?", + "uncategorized": "Ikke kategoriseret", + "pdf_compile_rate_limit_hit": "Grænsen for kompilerings hyppigheden er nået", + "project_flagged_too_many_compiles": "Dette projekt er blevet markeret for at kompilere for ofte. Grænsen bliver snart løftet.", + "reauthorize_github_account": "Autoriser din GitHub konto igen", + "github_credentials_expired": "Dine GitHub autorisations oplysninger er udløbet", + "hit_enter_to_reply": "Tryk på Enter for at svare", + "add_your_comment_here": "Tilføj din kommentar her", + "resolved_comments": "Løste kommentarer", + "try_it_for_free": "Prøv det gratis", + "please_ask_the_project_owner_to_upgrade_to_track_changes": "Spørg projektejeren om at bruge \"Følg Ændringer\"", + "mark_as_resolved": "Markér som løst", + "reopen": "Genåben", + "add_comment": "Tilføj kommentar", + "no_resolved_threads": "Ingen løse tråde", + "upgrade_to_track_changes": "Opgrader til \"Følg Ændringer\"", + "see_changes_in_your_documents_live": "Se ændringer i dokumentet live", + "track_any_change_in_real_time": "Følg alle ændringer i realtime", + "review_your_peers_work": "Lav review af dine partneres arbejde", + "accept_or_reject_each_changes_individually": "Accepter eller afvis hver rettelse individuelt", + "accept": "Accepter", + "reject": "Afvis", + "no_comments": "Ingen kommentarer", + "edit": "Rediger", + "are_you_sure": "Er du sikker?", + "resolve": "Løs", + "reply": "Svar", + "quoted_text_in": "Tekst i gåseøjne i", + "review": "Review", + "track_changes_is_on": "Følg ændringer er slået til", + "track_changes_is_off": "Følg ændringer er slået fra", + "current_file": "Nuværende fil", + "overview": "Oversigt", + "tracked_change_added": "Tilføjet", + "tracked_change_deleted": "Slettet", + "show_all": "vis alle", + "show_less": "vis færre", + "dropbox_sync_error": "Fejl i synkronisering med Dropbox", + "send": "Send", + "sending": "Sender", + "invalid_password": "Ugyldigt password", + "error": "Fejl", + "other_actions": "Andre handlinger", + "send_test_email": "Send en test email", + "email_sent": "Email sendt", + "create_first_admin_account": "Opret den første Admin konto", + "ldap": "LDAP", + "ldap_create_admin_instructions": "Vælg en email adresse for den første __appName__ admin konto. Denne skal svare til en konto i LDAP systemet. Du vil derefter blive bedt om at logge på med denne konto.", + "saml": "SAML", + "saml_create_admin_instructions": "Vælg en email adresse for den første __appName__ admin konto. Denne skal svare til en konto i SAML systemet. Du vil derefter blive bedt om at logge på med denne konto.", + "admin_user_created_message": "Admin bruger oprettet, Log ind her for at fortsætte", + "status_checks": "Status tjek", + "editor_resources": "Editor ressourcer", + "checking": "Tjekker", + "cannot_invite_self": "Kan ikke sende invitation til dig selv", + "cannot_invite_non_user": "Invitation kan ikke sendes. Modtager må allerede have en __appName__ konto", + "log_in_with": "Log ind med __provider__", + "return_to_login_page": "Tilbage til log ind siden", + "login_failed": "Log ind fejlede", + "delete_account_warning_message_3": "Du er ved at slette alle din kontos data, herunder dine projekter og indstillinger, permanent. Skriv venligst din kontos email adresse og kodeord i nedenstående felter for at fortsætte.", + "delete_account_warning_message_2": "Du er ved at slette alle din kontos data, herunder dine projekter og indstillinger, permanent. Skriv venligst din kontos email adresse i nedenstående felt for at fortsætte.", + "your_sessions": "Dine sessioner", + "clear_sessions_description": "Dette er en liste over alle din brugers aktive sessioner (logins), undtagen din nuværende session. Klik på knappen \"Ryd sessioner\" nedenunder for at logge dem af.", + "no_other_sessions": "Ingen aktive sessioner", + "ip_address": "IP adresse", + "session_created_at": "Session oprettet på", + "clear_sessions": "Ryd sessioner", + "clear_sessions_success": "Sessioner ryddet", + "sessions": "Sessioner", + "manage_sessions": "Kontroller dine sessioner", + "syntax_validation": "Kode tjek", + "history": "Historie", + "joining": "Tilslutter", + "open_project": "Åben projekt", + "files_cannot_include_invalid_characters": "Filnavnet er tomt, eller indeholder ugyldige karakterer", + "invalid_file_name": "Ugyldigt filnavn", + "autocomplete_references": "Automatisk reference-udfyldelse (indeni en \\cite{} blok)", + "autocomplete": "Auto udfyld", + "failed_compile_check": "Det ser ud til at dit projekt har nogle fatale syntaksfejl, som skal rettes før vi kan kompilere det", + "failed_compile_check_try": "Prøv at kompilere alligevel", + "failed_compile_option_or": "eller", + "failed_compile_check_ignore": "slå syntaks tjek fra", + "compile_time_checks": "Syntaks Tjek", + "stop_on_validation_error": "Syntaks tjek før kompilering", + "ignore_validation_errors": "Undlad at tjekke syntaks", + "run_syntax_check_now": "Tjek syntaks nu", + "your_billing_details_were_saved": "Dine betalingsoplysninger blev gemt", + "security_code": "Sikkerheds kode", + "paypal_upgrade": "For at opgradere skal du klikke på nedenstående knap og logge på PayPal via din email og password", + "upgrade_cc_btn": "Opgrader nu, betal efter 7 dage", + "upgrade_paypal_btn": "Fortsæt", + "notification_project_invite": "__userName__ vil gerne have dig til at deltage i __projectName__ Deltag i Projektet", + "file_restored": "Din fil (__filename__) er blevet reddet", + "file_restored_back_to_editor": "Du kan gå tilbage til skrivevinduet og arbejde videre.", + "file_restored_back_to_editor_btn": "Tilbage til skrivevinduet", + "view_project": "Vis projekt", + "join_project": "Deltag i Projektet", + "invite_not_accepted": "Invitationen er endnu ikke accepteret", + "resend": "Gensend", + "syntax_check": "Syntaks tjek", + "revoke_invite": "Tilbagekald invitation", + "pending": "Venter", + "invite_not_valid": "Dette er ikke en gyldig projekt invitation", + "invite_not_valid_description": "Invitationen kan være udløbet. Kontakt venligst projektets ejer", + "accepting_invite_as": "Du accepterer denne invitation som", + "accept_invite": "Accepter invitation", + "log_hint_ask_extra_feedback": "Vil du hjælpe os med at forstå, hvorfor dette hint ikke var til hjælp?", + "log_hint_extra_feedback_didnt_understand": "Jeg forstod ikke hintet", + "log_hint_extra_feedback_not_applicable": "Jeg kan ikke bruge løsningen i mit dokument", + "log_hint_extra_feedback_incorrect": "Dette fjerner ikke fejlen", + "log_hint_extra_feedback_other": "Andet:", + "log_hint_extra_feedback_submit": "Indsend", + "if_you_are_registered": "Hvis du allerede er registreret", + "stop_compile": "Stop kompilering", + "terminated": "Kompilation annulleret", + "compile_terminated_by_user": "Kompileringen blev annulleret via knappen 'Stop Kompilering'. Du kan se loggen for information om hvor kompileringen stoppede.", + "site_description": "Et online LaTeX–skriveprogram, der er let at bruge. Ingen installation, live samarbejde, versionskontrol, flere hundrede LaTeX–skabeloner, og meget mere.", + "knowledge_base": "videns base", + "contact_message_label": "Besked", + "kb_suggestions_enquiry": "Har du tjekket vores __kbLink__?", + "answer_yes": "Ja", + "answer_no": "Nej", + "log_hint_extra_info": "Lær mere", + "log_hint_feedback_label": "Var dette til hjælp?", + "log_hint_feedback_gratitude": "Tak for din tilbagemelding!", + "recompile_pdf": "Omkompilér PDF'en", + "about_paulo_reis": "er en front-end software udvikler and forsker i bruger oplevelse, bosiddende i Aveiro, Portugal. Paulo har en PhD i bruger oplevelse og er passioneret i at designe teknologi til menneskers brug - enten via koncept eller testing/validering i design eller implementation.", + "login_or_password_wrong_try_again": "Dit login eller password er forkert. Prøv venligst igen", + "manage_beta_program_membership": "Administrer Beta Program medlemsskab", + "beta_program_opt_out_action": "Fravælg Beta Program", + "disable_beta": "Deaktiver Beta", + "beta_program_badge_description": "Når du bruger __appName__ vil du beta funktioner være markeret med dette mærke:", + "beta_program_current_beta_features_description": "Vi tester på nuværende tidspunkt følgende nye funktioner i beta:", + "enable_beta": "Aktiver Beta", + "user_in_beta_program": "Bruger deltager i Beta Programmet", + "beta_program_already_participating": "Du er tilmeldt Beta Programmet", + "sharelatex_beta_program": "__appName__ Beta Program", + "beta_program_benefits": "Vi forbedrer altid __appName__. Ved at tilmelde dig vores Beta program får du hurtigt adgang til nye funktioner og mulighed for at hjælpe os til at forstå dine behov bedre.", + "beta_program_opt_in_action": "Tilmeld Beta Program", + "conflicting_paths_found": "Modstridende stier blev fundet", + "following_paths_conflict": "Følgende filer og mapper kan ikke have samme stier", + "open_a_file_on_the_left": "Open en fil til venstre", + "reference_error_relink_hint": "Hvis fejlen fortsat opstår, så forsøg at genforbinde din konto her:", + "pdf_rendering_error": "PDF oversættelses fejl", + "something_went_wrong_rendering_pdf": "Noget gik galt i oversættelsen af denne PDF", + "mendeley_reference_loading_error_expired": "Mendeley polet udløbet, genforbind venligst din konto", + "zotero_reference_loading_error_expired": "Zotero polet udløbet, genforbind venligst din konto", + "mendeley_reference_loading_error_forbidden": "Kunne ikke indlæse referencer fra Mendeley, genforbind venligst din konto og prøv igen", + "zotero_reference_loading_error_forbidden": "Kunne ikke indlæse referencer fra Zotero, genforbind venligst din konto og prøv igen", + "mendeley_integration": "Mendeley integration", + "mendeley_sync_description": "Med integration af Mendeley kan du importere dine referencer fra mendeley ind i dine __appName__ projekter.", + "mendeley_is_premium": "Integration af Mendeley er en betalt funktion", + "link_to_mendeley": "Link til Mendeley", + "unlink_to_mendeley": "Fjern link til Mendeley", + "mendeley_reference_loading": "Indlæser referencer fra Mendeley", + "mendeley_reference_loading_success": "Indlæste referencer fra Mendeley", + "mendeley_reference_loading_error": "Fejl, kunne ikke indlæse referencer fra Mendeley", + "zotero_integration": "Zotero integration.", + "zotero_sync_description": "Med integration af Zotero kan du importere dine referencer fra zotero ind i dine __appName__ projekter.", + "zotero_is_premium": "Integration af Zotero er en betalt funktion", + "link_to_zotero": "Link til Zotero", + "unlink_to_zotero": "Fjern link til Zotero", + "zotero_reference_loading": "Indlæser referencer fra Zotero", + "zotero_reference_loading_success": "Indlæste referencer fra Zotero", + "zotero_reference_loading_error": "Fejl, kunne ikke indlæse referencer fra Zotero", + "reference_import_button": "Importer referencer til", + "unlink_reference": "Fjern link til reference udbyder", + "unlink_warning_reference": "Advarsel: Når du fjerner linket til denne udbyder fra din konto, vil du ikke længere have mulighed for at importere referencer ind i dine projekter.", + "mendeley": "Mendeley", + "zotero": "Zotero", + "suggest_new_doc": "Foreslå nyt dokument", + "request_sent_thank_you": "Din kontaktanmodning er blevet indsendt. Den vil blive gennemset af vores supportpersonale, og du vil få svar via email.", + "suggestion": "Foreslag", + "project_url": "Påvirket projekts URL", + "subject": "Emne", + "confirm": "Bekræft", + "cancel_personal_subscription_first": "Du har allerede et personligt abonnement. Ønsker du, at dette abonnement annulleres inden du tilslutter dig gruppe licensen?", + "delete_projects": "Slet projekter", + "leave_projects": "Forlad projecter", + "delete_and_leave_projects": "Slet og forlad projekter", + "too_recently_compiled": "Dette projekt er lige blevet kompileret, hvorfor denne kompilering er blevet udsat.", + "clsi_maintenance": "Kompilerings serverne er lukkede grundet vedligeholdelse, men vil være klar om et øjeblik.", + "references_search_hint": "Hold Ctrl-Mellemrum nede for at søge", + "ask_proj_owner_to_upgrade_for_references_search": "Spørg venligst projektets ejer om at opgradere for at bruge søgning i referencerne.", + "ask_proj_owner_to_upgrade_for_faster_compiles": "Spørg venligst projektets ejer om at opgradere for at bruge hurtigere kompileringer og forøge tidsbegrænsningen.", + "search_bib_files": "Søg efter forfatter, titel, år", + "leave_group": "Forlad gruppe", + "leave_now": "Forlad nu", + "sure_you_want_to_leave_group": "Er du sikker på, at du ønsker, at forlade denne gruppe?", + "notification_group_invite": "Du er blevet inviteret til at deltage i __groupName__, Deltag her.", + "search_references": "Søg i .bib filerne fra dette projekt", + "no_search_results": "Ingen Søge Resultater", + "email_already_registered": "Denne mail er allerede registreret", + "compile_mode": "Kompilering metode", + "normal": "Normal", + "fast": "Hurtig", + "rename_folder": "Omdøb mappe", + "delete_folder": "Slet mappe", + "about_to_delete_folder": "Du er ved at slette følgende mapper (ingen af mappernes projekter vil blive slettet):", + "to_modify_your_subscription_go_to": "For at administrere dit abonnement, gå til", + "manage_subscription": "Administrer Abonnement", + "activate_account": "Aktiver din konto", + "yes_please": "Ja tak!", + "nearly_activated": "Du er ét skridt fra at aktivere din __appName__ konto!", + "please_set_a_password": "Vælg venligst et kodeord", + "activation_token_expired": "Din aktiverings-polet er udløbet og du er nød til at få en anden tilsendt.", + "activate": "Aktiver", + "activating": "Aktiverer", + "ill_take_it": "Jeg tager det!", + "cancel_your_subscription": "Stop dit abonnoment", + "no_thanks_cancel_now": "Nej tak - jeg ønsker fortsat at Ophæve Nu", + "cancel_my_account": "Ophæv dit abonnoment", + "sure_you_want_to_cancel": "Er du sikker på, at du ønsker at ophæve?", + "i_want_to_stay": "Jeg ønsker at blive", + "have_more_days_to_try": "Få ydereligere __days__ dage på din prøveperiode!", + "interested_in_cheaper_plan": "Ville du være interesseret i en billigere __price__ løsning for studerende?", + "session_expired_redirecting_to_login": "Session udløbet. Du omdirigeres til login siden om __seconds__ sekunder", + "maximum_files_uploaded_together": "Maksimalt __max__ filer uploaded sammen", + "too_many_files_uploaded_throttled_short_period": "For mange filer uploaded, dine uploads er blevet begrænset i en kort periode.", + "compile_larger_projects": "Kompilér større projekter", + "upgrade_to_get_feature": "Opgrader for at få __feature__, plus:", + "new_group": "Ny gruppe", + "about_to_delete_groups": "Du er på vej til at slette følgende grupper:", + "removing": "Sletter", + "adding": "Tilføjer", + "groups": "Grupper", + "rename_group": "Omdøb Gruppe", + "renaming": "Omdøber", + "create_group": "Opret Gruppe", + "delete_group": "Slet gruppe", + "delete_groups": "Slet Grupper", + "your_groups": "Dine Grupper", + "group_name": "Gruppenavn", + "no_groups": "Ingen Grupper", + "Subscription": "Abonnoment", + "Documentation": "Dokumentation", + "Universities": "Universiteter", + "Account Settings": "Kontoindstillinger", + "Projects": "Projekter", + "Account": "Konto", + "global": "globale", + "Terms": "Vilkår", + "Security": "Sikkerhed", + "About": "Om", + "editor_disconected_click_to_reconnect": "Skriveprogrammets forbindelse afbrudt, klik hvor som helst for at forbinde igen.", + "word_count": "Ordoptælling", + "please_compile_pdf_before_word_count": "Kompilér venligst dit projekt før du udfører en ordoptælling", + "total_words": "Totale Antal Ord", + "headers": "Overskrifter", + "math_inline": "Inkluderet matematik", + "math_display": "Vist Matematik", + "connected_users": "Forbundne Brugere", + "projects": "Projekter", + "upload_project": "Overfør projekt", + "all_projects": "Alle Projekter", + "your_projects": "Dine projekter", + "shared_with_you": "Delt med dig", + "deleted_projects": "Slettede projekter", + "templates": "Skabeloner", + "new_folder": "Ny mappe", + "create_your_first_project": "Lav dit første projekt!", + "complete": "Færdig", + "on_free_sl": "Du bruger den gratis version af __appName__", + "upgrade": "Opgrader", + "or_unlock_features_bonus": "eller låse op for nogle gratis bonus funktioner ved at", + "sharing_sl": "del __appName__", + "add_to_folder": "Tilføj til mappe", + "create_new_folder": "Opret ny mappe", + "more": "Mere", + "rename": "Omdøb", + "make_copy": "Lav en kopi", + "restore": "Gendan", + "title": "Titel", + "last_modified": "Sidst ændret", + "no_projects": "Ingen projekter", + "welcome_to_sl": "Velkommen til __appName__!", + "new_to_latex_look_at": "Ny til LaTeX? Start med at se på vores", + "or": "eller", + "or_create_project_left": "eller opret dit første projekt til venstre.", + "thanks_settings_updated": "Tak, dine indstillinger er blevet opdateret.", + "update_account_info": "Opdater Konto Info", + "must_be_email_address": "Skal være en email adresse", + "first_name": "Fornavn", + "last_name": "Efternavn", + "update": "Opdater", + "change_password": "Skift Kodeord", + "current_password": "Nuværende Kodeord", + "new_password": "Nyt Kodeord", + "confirm_new_password": "Bekræft Nyt Kodeord", + "required": "Nødvendig", + "doesnt_match": "Matcher ikke", + "dropbox_integration": "Dropbox Integration", + "learn_more": "Lær mere", + "dropbox_is_premium": "Dropbox synkronisering er en betalt funktion", + "account_is_linked": "Konto er forbundet", + "unlink_dropbox": "Fjern Dropbox forbindelse", + "link_to_dropbox": "Forbind til Dropbox", + "newsletter_info_and_unsubscribe": "Vi sender et nyhedsbrev en gang i mellem, der opsummere de nye funktioner der er tilgængelige. Hvis du fortækker ikke at modtage dette brev kan du afmelde dig når som helst.", + "unsubscribed": "Afmeldt", + "unsubscribing": "Afmelder", + "unsubscribe": "Afmeld", + "need_to_leave": "Nød til at gå?", + "delete_your_account": "Slet din konto", + "delete_account": "Slet Konto", + "delete_account_warning_message": "Du er ved at slette al din data permanent, inklusive dine projekter og indstillinger. Skriv din kontos email adresse i feltet herunder for at fortsætte.", + "deleting": "Sletter", + "delete": "Slet", + "sl_benefits_plans": "__appName__er verdens nemmeste LaTeX–program at bruge. Hold dig opdateret med dine samarbejdspartnere, hold styr på alle ændringer i dit arbejde og brug vores LaTeX–miljø fra hvor som helst på jorden.", + "monthly": "Månedtlig", + "personal": "Personlig", + "free": "Gratis", + "one_collaborator": "Kun en samarbejdspartner", + "collaborator": "Samarbejdspartner", + "collabs_per_proj": "__collabcount__ samarbejdspartnere per projekt", + "full_doc_history": "Fuld ændrings historik", + "sync_to_dropbox": "Synkroniser til Dropbox", + "start_free_trial": "Start gratis prøve!", + "professional": "Professionel", + "unlimited_collabs": "Ubegrænset antal samarbejdspartnere", + "name": "Navn", + "student": "Studerende", + "university": "Universitet", + "position": "Stilling", + "choose_plan_works_for_you": "Vælg den plan der fungere for dig med vores __len__-dags gratis prøveperiode. Afbryd når som helst.", + "interested_in_group_licence": "Intresseret i at bruge __appName__ med en gruppe-, hold- eller afdelingskonto?", + "get_in_touch_for_details": "Kontakt os for detaljer!", + "group_plan_enquiry": "Gruppe Plans Forespørgelse", + "enjoy_these_features": "Nyd alle disse fantastiske funktioner", + "create_unlimited_projects": "Opret så mange projekter som du har brug for.", + "never_loose_work": "Aldrig kløjes i det, vi har dig dækket ind.", + "access_projects_anywhere": "Få adgang til dine projekter hvor som helst.", + "log_in": "Log Ind", + "login": "Log Ind", + "logging_in": "Logger ind", + "forgot_your_password": "Glemt dit kodeord", + "password_reset": "Nulstil Kodeord", + "password_reset_email_sent": "Vi har sent dig en email for at fuldføre nulstillingen af dit kodeord.", + "please_enter_email": "Skriv din email adresse", + "request_password_reset": "Anmod om nulstilling af kodeord", + "reset_your_password": "Nulstil dit kodeord", + "password_has_been_reset": "Dit kodeord er blevet nulstillet", + "login_here": "Log ind her", + "set_new_password": "Sæt nyt kodeord", + "user_wants_you_to_see_project": "__username__ ønsker at du deltager i __projectname__", + "join_sl_to_view_project": "Tilmeld dig til __appName__ for at se dette projekt", + "register_to_edit_template": "Register for at redigere i __templateName__ skabelonen", + "already_have_sl_account": "Har du allerede en __appName__ bruger?", + "register": "Registrer", + "password": "Kodeord", + "registering": "Registrerer", + "planned_maintenance": "Planlagt Vedligeholdelse", + "no_planned_maintenance": "Der er lige nu ingen planlagt vedligeholdelse", + "cant_find_page": "Beklager, vi kan ikke finde siden du leder efter.", + "take_me_home": "Tag mig hjem!", + "no_preview_available": "Der er intet smugkig til rådighed.", + "no_messages": "Ingen beskeder", + "send_first_message": "Send din første besked til dine samarbejdspartnere", + "account_not_linked_to_dropbox": "Din konto er ikke forbundet til Dropbox", + "update_dropbox_settings": "Opdater Dropbox Indstillinger", + "refresh_page_after_starting_free_trial": "Opdater denne side efter du har startet din gratis prøve.", + "checking_dropbox_status": "kontrollere Dropbox status", + "dismiss": "Afvis", + "new_file": "Ny Fil", + "upload_file": "Overfør Fil", + "create": "Opret", + "creating": "Opretter", + "upload_files": "Overfør Fil(er)", + "sure_you_want_to_delete": "Er du sikker på, at du ønsker at slette følgende filer permanent?", + "common": "Almindelig", + "navigation": "Navigation", + "editing": "Redigering", + "ok": "OK", + "source": "Kilde", + "actions": "Handliger", + "copy_project": "Kopier Projekt", + "publish_as_template": "Offentliggør som Skabelon", + "sync": "Synkroniser", + "settings": "Indstillinger", + "main_document": "Hoveddokument", + "off": "Fra", + "auto_complete": "Udfyld automatisk", + "theme": "Tema", + "font_size": "Skriftsstørrelse", + "pdf_viewer": "PDF viser", + "built_in": "Indbygget", + "native": "Indbygget", + "show_hotkeys": "Vis Genveje", + "new_name": "Nyt Navn", + "copying": "Kopierer", + "copy": "Kopier", + "compiling": "Kompilerer", + "click_here_to_preview_pdf": "Klik her for at se dit arbejde som en PDF.", + "server_error": "Server Fejl", + "somthing_went_wrong_compiling": "Beklager, noget gik galt og dit projekt kunne ikke kompiléres. Vent lidt og prøv igen.", + "timedout": "Timed out", + "proj_timed_out_reason": "Din kompiléring overskred tidsgrænsen og blev standset. Dette kan skyldes en LaTeX–fejl, eller for mange komplicerede diagrammer eller billeder i høj opløsning.", + "no_errors_good_job": "Ingen fejl, godt arbejde!", + "compile_error": "Kompilérings Fejl", + "generic_failed_compile_message": "Beklager, din LaTeX kode kunne ikke kompilére. Du kan gennemgå fejlmeddelelserne herunder for detaljer, eller se den rå logfil", + "other_logs_and_files": "Andre logs & filer", + "view_raw_logs": "Vis rå logs", + "hide_raw_logs": "Skjul rå logs", + "clear_cache": "Ryd cache", + "clear_cache_explanation": "Dette vil fjerne alle gemte LaTeX filer (.aux, .bbl, etc) fra vores kompiléringsserver. Du behøver generelt ikke at gøre dette, med mindre du har problemer med referencer.", + "clear_cache_is_safe": "Det projekt vil ikke blive slettet eller ændret.", + "clearing": "Rydder", + "template_description": "Skabelons Beskrivelse", + "project_last_published_at": "Dit projekt var sidst blevet offentliggjort den", + "problem_talking_to_publishing_service": "Der er et problem med vores udgivelses tjeneste, prøv igen om nogle få minutter", + "unpublishing": "Annullerer udgivelsen", + "republish": "Genudgiv", + "publishing": "Publicering", + "share_project": "Del Projek", + "this_project_is_private": "Dette projekt er privat og er kun tilgængelig for nedenstående folk.", + "make_public": "Gør Offentlig", + "this_project_is_public": "Dette projekt er offentligt og kan redigeres af enhver med URL'en.", + "make_private": "Gør Privat", + "can_edit": "Kan Redigere", + "share_with_your_collabs": "Del med dine samarbejdspartnere", + "share": "Del", + "need_to_upgrade_for_more_collabs": "Du bliver nød til at opgradere din konto for at tilføje flere samarbejdspartnere", + "make_project_public": "Gør projekt offentligt", + "make_project_public_consequences": "Hvis du gør dit projekt offentligt så kan alle med URL'en tilgå det.", + "allow_public_editing": "Tillad offentlig redigering", + "allow_public_read_only": "Tillad offentlig skrivebeskyttet adgang", + "make_project_private": "Deaktiver link deling", + "make_project_private_consequences": "Hvis du gør dit projekt privat vil kun de personer du selv vælger få adgang til det.", + "need_to_upgrade_for_history": "Du skal opgradere din konto for at forbinde til Dropbox.", + "ask_proj_owner_to_upgrade_for_history": "Venligst foreslå projektets ejer at opgradere projektet til at bruge versions historik funktionen", + "anonymous": "Anonym", + "generic_something_went_wrong": "Beklager, noget gik galt", + "restoring": "Gendanner", + "restore_to_before_these_changes": "Gendanner til før disse ændringer", + "profile_complete_percentage": "Din profil er __percentval__% færdig", + "file_has_been_deleted": "__filename__ blev slettet", + "sure_you_want_to_restore_before": "Er du sikker på du vil gendanne __filename__ til før ændringerne den __date__?", + "rename_project": "Omdøb projekt", + "about_to_delete_projects": "Du er på vej til at slette følgende projekter:", + "about_to_leave_projects": "Du er på vej til at forlade følgende projekter:", + "upload_zipped_project": "Upload komprimeret projekt", + "upload_a_zipped_project": "Upload et komprimeret projekt", + "your_profile": "Din profil", + "institution": "Institution", + "role": "Rolle", + "folders": "Mapper", + "disconnected": "Forbindelsen blev afbrudt", + "please_refresh": "Venligst opdater siden for at fortsætte", + "lost_connection": "Forbindelsen blev afbrudt", + "reconnecting_in_x_secs": "Genopretter om __seconds__ sekunder", + "try_now": "Prøv nu", + "reconnecting": "Genopretter", + "saving_notification_with_seconds": "Gemmer __docname__... (Ændringerne har ikke været gemt i __seconds__ sekunder)", + "help_us_spread_word": "Hjælp os med at udbrede __appName__", + "share_sl_to_get_rewards": "Del __appName__ med dine venner og kollegaer og vi belønner dig med nedenstående", + "post_on_facebook": "Del på Facebook", + "share_us_on_googleplus": "Del os på Google+", + "email_us_to_your_friends": "Send en email til dine venner omkring os", + "link_to_us": "Link til __appName__ fra din hjemmeside", + "direct_link": "Direkte link", + "sl_gives_you_free_stuff_see_progress_below": "Når nogen begynder at bruge __appName__ på grund af din anbefaling vil vi give dig nogle gratis ting som tak! Se dit fremskridt nedenunder.", + "spread_the_word_and_fill_bar": "Spred budskabet og fyld baren", + "one_free_collab": "Kun en fri samarbejdspartner", + "three_free_collab": "Tre gratis samarbejdspartnere", + "free_dropbox_and_history": "Gratis Dropbox og Historie", + "you_not_introed_anyone_to_sl": "Du har ikke introduceret nogen til __appName__. Kom igang!", + "you_introed_small_number": " Du har introduceret __numberOfPeople__ person til __appName__. Godt arbejde, men kan du få flere?", + "you_introed_high_number": " Du har introduceret __numberOfPeople__ personer til __appName__. Godt arbejde!", + "link_to_sl": "Link til __appName__", + "can_link_to_sl_with_html": "Du kan linke til __appName__ med følgende HTML:", + "year": "år", + "month": "måned", + "subscribe_to_this_plan": "Abonner på dette abonnement", + "your_plan": "Dit abonnement", + "your_subscription": "Dit abonnement", + "on_free_trial_expiring_at": "Du benytter pt en gratis prøve version som udløber på __expiresAt__.", + "choose_a_plan_below": "Vælg et af følgende abonnementer at abonnere på.", + "currently_subscribed_to_plan": "Du abonnerer pt på __planName__ abonnementet.", + "change_plan": "Ændre abonnement", + "next_payment_of_x_collectected_on_y": "Den næste betaling på __paymentAmmount__ vil blive opkrævet __collectionDate__.", + "update_your_billing_details": "Opdater dine betalingsoplysninger", + "subscription_canceled_and_terminate_on_x": " Dit abonnement er blevet annulleret og vil blive opsagt på __opsigelsesDato__. Ingen yderligere betalinger vil blive opkrævet.", + "your_subscription_has_expired": "Dit abonnement er udløbet.", + "create_new_subscription": "Lav nyt abonnement", + "problem_with_subscription_contact_us": "Der er et problem med dit abonnement. Kontakt os venligst for mere information.", + "manage_group": "Administrer gruppe", + "loading_billing_form": "Henter betalingsoplysning fra", + "you_have_added_x_of_group_size_y": "Du har tilføjet __addedUsersSize__ of __groupSize__ tilgængelige medlemmer", + "remove_from_group": "Fjern fra gruppe", + "group_account": "Gruppekonto", + "registered": "Registreret", + "no_members": "Ingen medlemmer", + "add_more_members": "Tilføj flere medlemmer", + "add": "Tilføj", + "thanks_for_subscribing": "Tak fordi du abonnerer!", + "your_card_will_be_charged_soon": "Pengene vil blive hævet snart", + "if_you_dont_want_to_be_charged": "Hvis du ikke ønsker at betale mere ", + "add_your_first_group_member_now": "Tilføj de første medlemmer til din gruppe nu", + "thanks_for_subscribing_you_help_sl": "Tak fordi du abonnerer på __planName__ plan. Det er supporten fra folk som dig, der giver __appName__ mulighed for at vokse og blive bedre.", + "back_to_your_projects": "Tilbage til dine projekter", + "goes_straight_to_our_inboxes": "Det går direkte til begge vores indbakker", + "need_anything_contact_us_at": "Hvis der skulle være noget du har brug for, så kontakt os endeligt direkte på", + "regards": "Venligst", + "about": "Om", + "comment": "Kommentar", + "restricted_no_permission": "Beskyttet side. Beklager, men du har ikke rettigheder til at se denne side.", + "online_latex_editor": "Online LaTeX–skriveprogram", + "meet_team_behind_latex_editor": "Mød holdet bag dit ynglings online LaTeX–skriveprogram.", + "follow_me_on_twitter": "Følg mig på Twitter", + "motivation": "Motivation", + "evolved": "er vokset", + "the_easy_online_collab_latex_editor": "Den nemme, online, samarbejdende LaTeX editor", + "get_started_now": "Kom igang med det samme", + "sl_used_over_x_people_at": "__appName__ bliver brugt af mere end __numberOfUsers__ studerende og akademikere på:", + "collaboration": "Samarbejde", + "work_on_single_version": "Arbejd sammen på en enkelt version", + "view_collab_edits": "Vis samarbejdspartners ændringer ", + "ease_of_use": "Nem af bruge", + "no_complicated_latex_install": "Ingen kompliceret LaTeX installation", + "all_packages_and_templates": "Alle de pakker og __templatesLink__ du har brug for", + "document_history": "Dokument historik", + "see_what_has_been": "Se hvad der har ", + "added": "tilføjet", + "and": "og", + "removed": "fjernet", + "restore_to_any_older_version": "Gendan en ældre version", + "work_from_anywhere": "Arbejd alle steder fra", + "acces_work_from_anywhere": "Få adgang til dine dokumenter fra hele verden", + "work_offline_and_sync_with_dropbox": "Arbejd offline og sync dine filer via Dropbox og GitHub", + "over": "over", + "view_templates": "Se skabeloner", + "nothing_to_install_ready_to_go": "Der er ingen komplicerede eller svære ting at installere, og du kan __start_now__ selvom du aldrig har set det før. __appName__ indeholder et komplet LaTeX miljø, der kører på vores servere.", + "start_using_latex_now": "start med at bruge LaTeX med det samme", + "get_same_latex_setup": "Med __appName__ får du de samme LaTeX indstillinger, hvor end du er. Ved at arbejde med dine kollegaer eller studerende på __appName__, er du sikker på, at I ikke får problemer med version inkonsistens eller pakke konflikter.", + "support_lots_of_features": "Vi understøtter næsten alle LaTeX funktioner, inklusiv billeder, litteraturlister, ligninger, og meget mere! Læs mere om alle de eksisterende ting du kan gøre med __appName__ i vores __help_guides_link__", + "latex_guides": "LaTeX guider", + "reset_password": "Nulstil dit kodeord", + "set_password": "Kodeord", + "updating_site": "Opdater side", + "bonus_please_recommend_us": "Bonus - Anbefal os", + "admin": "admin", + "subscribe": "Tilmeld", + "update_billing_details": "Opdatere betalingsdetaljer", + "thank_you": "Tak", + "group_admin": "Gruppe admin", + "all_templates": "Alle skabeloner", + "your_settings": "Dine indstillinger", + "maintenance": "Vedligeholdelse", + "to_many_login_requests_2_mins": "Der er forsøgt at logge ind på denne konto for mange gange. Vent venligst 2 minutter før du prøver at logge ind igen", + "email_or_password_wrong_try_again": "Din email eller kodeord er ikke korrekt. Venligst prøv igen", + "rate_limit_hit_wait": "Bedøm limit hit. Vent venligst før du prøver ugen", + "problem_changing_email_address": "Der var et problem med at ændre din email adresse. Prøv venligst igen om lidt. Fortsætter problemet, så kontakt os venligst", + "single_version_easy_collab_blurb": "__appName__ sørger for at du altid er opdateret med dine samarbejdspartnere og hvad de laver. Der er kun én hovedversion af hvert dokument som alle har adgang til. Det er umuligt at lave ændringer i konflikt med hovedversionen, og du behøver ikke vente på at dine kollegaer sender dig det seneste udkast for at arbejde videre.", + "can_see_collabs_type_blurb": "Hvis flere personer ønsker at arbejde på et dokument samtidig, så er det intet problem. Du kan se hvor dine kollegaer skriver direkte i skrivevinduet, og deres ændringer viser sig på din skærm med det samme.", + "work_directly_with_collabs": "Arbejd direkte med dine samarbejdspartnere", + "work_with_word_users": "Arbejd sammen med Word brugere", + "work_with_word_users_blurb": "__appName__ er så let at komme i gang med, at du vil kunne invitere dine ikke-LaTeX kollegaer til at bidrage direkte til dine LaTeX dokumenter. De vil være produktive fra dag et og lære små dele af LaTeX imens.", + "view_which_changes": "Se hvilke ændringer der har", + "sl_included_history_of_changes_blurb": "__appName__ indeholder en historik af alle dine/jeres ændringer, så du kan se præcis hvem har ændret hvad og hvornår. Dette gør det ekstremt let at holde sig ajour med eventuelle fremskridt dine samarbejdspartnere har lavet, og giver dig mulighed for at gennemgå deres seneste arbejde.", + "can_revert_back_blurb": "I et samarbejde eller alene, sker der nogle gang fejl. At vende tilbage til tidligere versioner er simpelt, hvilket fjerner risiko for at miste arbejde eller fortryde en ændring.", + "start_using_sl_now": "Begynd at bruge __appName__ nu", + "over_x_templates_easy_getting_started": "Der er flere tusind __templates__ i vores skabelongalleri, så det er rigtig let at komme igang, uanset om du skriver en artikel til et tidsskrift, en afhandling, et CV eller noget andet.", + "done": "Færdig", + "change": "Ændre", + "page_not_found": "Side ikke fundet", + "please_see_help_for_more_info": "Se vores guide for mere information", + "this_project_will_appear_in_your_dropbox_folder_at": "Projektet kan findes i din Dropbox i ", + "member_of_group_subscription": "Du er medlem af et gruppe abonnement, der er styret af __admin_email__. Kontakt venligst dem for at ændre dit abonnement.\n", + "about_henry_oswald": "er en software ingeniør, der bor i London. Han byggede den originale prototype af __appName__ og har været ansvarlig for at opbygge en stabil og skalerbar platform. Henry er en stærk fortale for Test Driven Development og sørger for, at vi holder __appName__ koden ren og let at vedligeholde.", + "about_james_allen": "har en PhD i teoretisk fysik og er passioneret omkring LaTeX. Han skabte en af de første online LaTeX–programmer, ScribTeX, og har spillet en stor rolle i udviklingen af teknologien, der gør __appName__ mulig.", + "two_strong_principles_behind_sl": "Der er to stærke ledende principper bag vores arbejde hos __appName__:", + "want_to_improve_workflow_of_as_many_people_as_possible": "Vi ønsker at forbedre så mange folks workflow som muligt", + "detail_on_improve_peoples_workflow": "LaTeX er meget svært at bruge, og samarbejdet er altid svært at koordinere. Vi mener, at vi har udviklet nogle gode løsninger til at hjælpe folk, som står over for disse problemer, og vi ønsker at være sikker på, at __appName__ er tilgængelig til så mange mennesker som muligt. Vi har prøvet at bevare et fair prisniveau, og vi har udgivet meget af __appName__ som open source, så alle kan hoste deres egen.", + "want_to_create_sustainable_lasting_legacy": "Vi ønsker at skabe et bæredygtigt og varigt resultat.", + "details_on_legacy": "Udvikling og vedligeholdelse af et produkt som __appName__ tager meget tid og arbejde, så det er vigtigt, at vi kan finde en forretningsmodel, som kan understøtte det både nu og i fremtiden. Vi ønsker ikke, at __appName__ er afhængig af ekstern funding og blive nedlagt på grund af en mislykket forretningsmodel. Jeg er glad for at kunne sige, at vi på nuværende tidspunkt kan drive en profitabel virksomhed med __appName__, og vi forventer også at kunne gøre dette i fremtiden.", + "get_in_touch": "Kom i kontakt med os", + "want_to_hear_from_you_email_us_at": "Vi vil gerne høre fra alle, som bruger __appName__, eller som ønsker at høre hvad vi laver. Du kan komme i kontakt med os på ", + "cant_find_email": "Denne email adresse er desværre ikke registreret.", + "plans_amper_pricing": "Abonnomenter og priser", + "documentation": "Dokumentation", + "account": "Konto", + "subscription": "Abonnoment", + "log_out": "Log ud", + "en": "Engelsk", + "pt": "Portugisisk", + "es": "Spansk", + "fr": "Fransk", + "de": "Tysk", + "it": "Italiensk", + "da": "Dansk", + "sv": "Svensk", + "no": "Norsk", + "nl": "Hollandsk", + "pl": "Polsk", + "ru": "Russisk", + "uk": "Ukrainsk", + "ro": "Romænsk", + "click_here_to_view_sl_in_lng": "Klik her for at bruge __appName__ på __lngName__", + "language": "Sprog", + "upload": "Upload", + "menu": "Menu", + "full_screen": "Fuld skærm", + "logs_and_output_files": "Log og output filer", + "download_pdf": "Hent PDF", + "split_screen": "Skærmopdeling", + "clear_cached_files": "Ryd cachede filer", + "go_to_code_location_in_pdf": "Gå til kodes placering i PDF", + "please_compile_pdf_before_download": "Kompilér venligst dit projekt før du downloader PDF'en", + "remove_collaborator": "Fjern kollaborator", + "add_to_folders": "Tilføj til mapper", + "download_zip_file": "Hent -zip fil", + "price": "Pris", + "close": "Luk", + "keybindings": "Genvejstaster", + "restricted": "Begrænset", + "start_x_day_trial": "Start din __len__-dages prøvetid i dag!", + "buy_now": "Køb nu!", + "cs": "Tjekkisk", + "view_all": "Se alt", + "terms": "Vilkår", + "privacy": "Privathed", + "contact": "Kontakt", + "change_to_this_plan": "Ændring til dette abonnoment", + "processing": "processere", + "sure_you_want_to_change_plan": "Er du sikker på du vil skifte abonnoment til __planName__?", + "move_to_annual_billing": "Skift til årlig betaling", + "annual_billing_enabled": "Årlig betaling aktiveret", + "move_to_annual_billing_now": "Skift til årlig betaling nu", + "change_to_annual_billing_and_save": "Spar __percentage__ ved årlig betaling. Hvis du skifter nu spare du __yearlySaving__ pr. år.", + "missing_template_question": "Manglende skabelon?", + "tell_us_about_the_template": "Hvis vi mangler en skabelon kan du enten: Sende os en kopi af skabelonen, en __appName__ url til skabelonen, eller fortælle os hvor vi kan finde den. Husk også at tilføje en lille beskrivelse af skabelonen.", + "email_us": "Email os", + "this_project_is_public_read_only": "Dette projekt er offentligt og kan ses, men ikke redigeres, af alle med linket", + "tr": "Tyrkis", + "select_files": "Vælg fil(er)", + "drag_files": "Træk fil(er)", + "upload_failed_sorry": "Upload mislykkes. Undskyld :(", + "inserting_files": "Indsætter fil...", + "password_reset_token_expired": "Din mulighed for nulstilling af din adgangskode er udløbet. Anmod om en ny nulstilling af adgangskode og følg linket i din mail.", + "merge_project_with_github": "Flet projekt sammen med GitHub", + "pull_github_changes_into_sharelatex": "Pull GitHub ændringer ind i __appName__", + "push_sharelatex_changes_to_github": "Push __appName__ ændringer til GitHub", + "features": "Funktioner", + "commit": "Commit", + "commiting": "Committer", + "importing_and_merging_changes_in_github": "Importerer og sammenfletter ændringer i GitHub", + "upgrade_for_faster_compiles": "Opgrader for hurtigere kompiléring og for at øge din timeout grænse", + "free_accounts_have_timeout_upgrade_to_increase": "Gratis konti har en tidsgrænse på ét minut, hvorimod opgraderede konti har en tidsgrænse på fire minutter.", + "learn_how_to_make_documents_compile_quickly": "Lær hvordan du undgår at overskride tidsgrænsen på kompiléring", + "zh-CN": "Kinesisk", + "cn": "Kinesisk (forenklet)", + "sync_to_github": "Synkroniser til GitHub", + "sync_to_dropbox_and_github": "Synkroniser til Dropbox og GitHub", + "project_too_large": "Projekt er for stort", + "project_too_large_please_reduce": "Dette projekt har for meget redigérbar tekst, prøv venligst at reducere det. De største filer er:", + "please_ask_the_project_owner_to_link_to_github": "Vær venlig at og spørg projekt ejeren om at linke dette projekt til en GitHub arkiv", + "go_to_pdf_location_in_code": "Gå til PDF placering i kode", + "ko": "Koreansk", + "ja": "Japansk", + "about_brian_gough": "er en software udvikler og tidligere høj energis fysiker ved Fermilab og Los Alamos. I mange år udgav han gratise software manualer kommercielt ved brug af TeX og LaTeX, og var også vedligeholderen af GNU Videnskabelige Bibliotek", + "first_few_days_free": "Første __ trailLen__ dage gratis", + "every": "per", + "credit_card": "Kredit kort", + "credit_card_number": "Kort nummer", + "invalid": "Ugyldigt", + "expiry": "Udløbsdato", + "january": "Januar", + "february": "Februar", + "march": "Marts", + "april": "April", + "may": "Maj", + "june": "Juni", + "july": "Juli", + "august": "August", + "september": "September", + "october": "Oktober", + "november": "November", + "december": "December", + "zip_post_code": "Postnummer", + "city": "By", + "address": "Adresse", + "coupon_code": "Rabatkode", + "country": "Land", + "billing_address": "Faktureringsadresse", + "upgrade_now": "Opgrader nu", + "state": "Stat", + "vat_number": "CVR nummer", + "you_have_joined": "Du har forbundet dig __groupName__", + "claim_premium_account": "Du har indløst din Premium kontro fra __groupName__.", + "you_are_invited_to_group": "Du er inviteret til at forbinde til __groupName__", + "you_can_claim_premium_account": "Du kan indløse din Premium kontro fra __groupName__ ved at verificere din email", + "not_now": "Ikke nu", + "verify_email_join_group": "Verificer din email og forbind gruppen", + "check_email_to_complete_group": "Tjek venligst din email for endeligt at forbinde dig til gruppen", + "verify_email_address": "verificer email adresse", + "group_provides_you_with_premium_account": "__groupName__ giver dig en Premium konto. Verificer din email adresse for at opgradere din konto.", + "check_email_to_complete_the_upgrade": "Tjek venligst din email for at færdiggøre opgraderingen", + "email_link_expired": "Linket tilsendt din email er udløbet. Du bedes anmode om et nyt.", + "services": "Tjenester", + "about_shane_kilkelly": "er en software udvikler, bosat i Edinburgh. Shane er en stærk fortaler for funktionel programmering, test drevet udvikling og sætter en ære i at bygge kvalitets software.", + "this_is_your_template": "Dette er din skabelon fra dit projekt", + "links": "Links", + "account_settings": "Konto-indstillinger", + "search_projects": "Søg efter projekter", + "clone_project": "Dupliker Projekt", + "delete_project": "Slet Projekt", + "download_zip": "Hent Zip", + "new_project": "Nyt Projekt", + "blank_project": "Tomt Projekt", + "example_project": "Eksempel Projekt", + "from_template": "Fra Skabelon", + "cv_or_resume": "CV", + "cover_letter": "Følge Brev", + "journal_article": "Avisartikel", + "presentation": "Præsentation", + "thesis": "Speciale", + "bibliographies": "Bibliografier", + "terms_of_service": "Servicevilkår", + "privacy_policy": "Fortrolighedspolitik", + "plans_and_pricing": "Abonnementer og priser", + "university_licences": "Universitets licenser", + "security": "Sikkerhed", + "contact_us": "Kontakt Os", + "thanks": "Tak", + "blog": "Blog", + "latex_editor": "LaTeX–skriveprogram", + "get_free_stuff": "Få gratis ting", + "chat": "Chat", + "your_message": "Din besked", + "loading": "Indlæser", + "connecting": "Forbinder", + "recompile": "Genkompilér", + "download": "Hent", + "email": "Email", + "owner": "Ejer", + "read_and_write": "Læs og Skriv", + "read_only": "Skrivebeskyttet", + "publish": "Publicer", + "view_in_template_gallery": "Se den i skabelon galleriet.", + "unpublish": "Træk tilbage", + "hotkeys": "Genveje", + "saving": "Gemmer", + "cancel": "Annuller", + "project_name": "Projektnavn", + "root_document": "Hoveddokument", + "spell_check": "Stavekontrol", + "compiler": "Kompilér", + "private": "Privat", + "public": "Offentlig", + "delete_forever": "Slet for evigt", + "support_and_feedback": "Hjælp og tilbagemeldinger", + "help": "Hjælp", + "latex_templates": "LaTeX Skabeloner", + "info": "Info", + "latex_help_guide": "LaTeX hjælpeguide", + "choose_your_plan": "Vælg dit abonnoment", + "indvidual_plans": "Individuelle abonnomenter", + "free_forever": "Gratis for evigt", + "low_priority_compile": "Lav prioritets kompiléring", + "unlimited_projects": "Ubegrænset antal projekter", + "unlimited_compiles": "Ubegrænset antal kompileringer", + "full_history_of_changes": "Fuld ændringshistorik", + "highest_priority_compiling": "Højeste prioritets kompiléring", + "dropbox_sync": "Dropbox synkronisering", + "beta": "Beta", + "sign_up_now": "Tilmeld nu", + "annual": "Årlig", + "half_price_student": "Studenterabonnomenter til halv pris", + "about_us": "Om os", + "loading_recent_github_commits": "Indlæs nylige commits", + "no_new_commits_in_github": "Ingen nye commits i GitHib siden sidste sammenfletning", + "dropbox_sync_description": "Hold dine __appName__ projekter synkroniseret med din Dropbox. Ændringer i __appName__ sendes automatisk til din Dropbox, og omvendt.", + "github_sync_description": "Med GitHub synkronisering kan du linke dine __appName__ projekter til et GitHub lager. Opret nye commits fra __appName__, og flet sammen med commits, som er lavet offline eller i GitHub.", + "github_import_description": "Med GitHub synkronisering kan du importere dine __appName__ projekter til et GitHub lager. Opret nye commits fra __appName__, og flet sammen med commits, som er lavet offline eller i GitHub.", + "link_to_github_description": "Du skal godkende __appName__ for at få adgang til din GitHub konto for at give os mulighed for at synkronisere dine projekter.", + "unlink": "Fjern link", + "unlink_github_warning": "Eventuelle projekter, som du har synkroniseret med GitHub, afbrydes og synkroniseres ikke længere med GitHub. Er du sikker på du vil fjerne linket til din GitHub konto?", + "github_account_successfully_linked": "GitHub konto er nu linket!", + "github_successfully_linked_description": "Vi har linket din GitHub konto til __appName__. Du kan nu eksportere dine __appName__ projekter til GitHub, eller importere projekter fra et GitHub lager.", + "import_from_github": "Importer fra GitHub", + "github_sync_error": "Der var desværre en fejl i kommunikationen til vores GitHub server. Prøv igen om et øjeblik.", + "loading_github_repositories": "Indlæser dit GitHub lager", + "select_github_repository": "Vælg et GitHub lager som skal importeres til __appName__.", + "import_to_sharelatex": "Importer til __appName__", + "importing": "Importerer", + "github_sync": "GitHub synkronisering", + "checking_project_github_status": "Tjekker projektstatus i GitHub", + "account_not_linked_to_github": "Din konto er ikke linket til GitHub", + "project_not_linked_to_github": "Dette projekt er ikke linket til et GitHub lager. Du kan skabe et lager for det på GitHub:", + "create_project_in_github": "Skab et GitHub lager", + "project_synced_with_git_repo_at": "Dette projekt er synkroniseret med GitHub lageret på", + "recent_commits_in_github": "Seneste commits i GitHub", + "sync_project_to_github": "Synkroniser projekt til GitHub", + "sync_project_to_github_explanation": "Ændringer som du har lavet i __appName__ vil blive committed og flettet sammen med opdateringer i GitHub", + "github_merge_failed": "Dine ændringer i __appName__ og GitHub kunne ikke automatisk flettes sammen. Flet manuelt __sharelatex_branch__ grenen til __master_branch__ grenen i git. Tryk nedenfor for at forsætte, efter at du manuelt har flettet dem sammen.", + "continue_github_merge": "I have flettet manuelt. Fortsæt", + "export_project_to_github": "Eksporter projekt til GitHub", + "github_validation_check": "Kontroller venligst at lagernavnet er valid, og at du har tilladelse til at lave et lager.", + "repository_name": "Lagernavn", + "optional": "Valgfrit", + "github_public_description": "Alle kan se dette lager. Du kan vælge hvem der kan comitte.", + "github_commit_message_placeholder": "Commit besked for ændringer i __appName__...", + "merge": "Flet", + "merging": "Fletter", + "github_account_is_linked": "Din GitHub konto er nu linket.", + "unlink_github": "Fjern link til din GitHub konto", + "link_to_github": "Link til din GitHub konto", + "github_integration": "Github integration", + "github_is_premium": "GitHub synkronisering er en betalt funktion" +} \ No newline at end of file diff --git a/services/web/locales/de.json b/services/web/locales/de.json new file mode 100644 index 0000000000..39c0aee16c --- /dev/null +++ b/services/web/locales/de.json @@ -0,0 +1,824 @@ +{ + "pdf_compile_in_progress_error": "Kompiliervorgang läuft bereits in einem anderen Fenster", + "pdf_compile_try_again": "Bitte warte auf deinen anderen Kompiliervorgang, bevor du es erneut versuchst.", + "invalid_email": "Eine E-Mail-Adresse ist ungültig", + "auto_compile": "Automatisch kompilieren", + "on": "An", + "tc_everyone": "Jeder", + "per_user_tc_title": "Änderungsverfolgung pro Nutzer", + "you_can_use_per_user_tc": "Nun kannst du Änderungen pro Nutzer verfolgen", + "turn_tc_on_individuals": "Schalte die Änderungsverfolgung für individuelle Nutzer an", + "keep_tc_on_like_before": "Oder lass es für alle aktiviert, wie vorher", + "auto_close_brackets": "Klammern automatisch schließen", + "accept_all": "Alle akzeptieren", + "reject_all": "Alle verwerfen", + "uncategorized": "Nicht kategorisiert", + "pdf_compile_rate_limit_hit": "Limit der Kompiliervorgänge überschritten", + "project_flagged_too_many_compiles": "Dieses Projekt wurde zu häufig zum Kompilieren vermerkt. Das Limit wird in Kürze aufgehoben.", + "reauthorize_github_account": "Authorisiere deinen GitHub-Account erneut", + "github_credentials_expired": "Deine GitHub-Authorisierungsschlüssel sind abgelaufen", + "hit_enter_to_reply": "Enter drücken, um zu antworten", + "add_your_comment_here": "Füge hier einen Kommentar hinzu", + "resolved_comments": "Gelöste Kommentare", + "try_it_for_free": "Probiere es kostenlos aus", + "please_ask_the_project_owner_to_upgrade_to_track_changes": "Bitte den Projekteigentümer um ein Upgrade, um Änderungen verfolgen zu können", + "mark_as_resolved": "Als gelöst markieren", + "reopen": "Erneut öffnen", + "add_comment": "Füge Kommentar hinzu", + "no_resolved_threads": "Keine gelösten Threads", + "upgrade_to_track_changes": "Upgrade, um Änderungen verfolgen zu können", + "see_changes_in_your_documents_live": "Verfolge Änderungen in deinen Dokumenten, live", + "track_any_change_in_real_time": "Verfolge jegliche Änderung, in Echtzeit", + "review_your_peers_work": "Überprüfe die Arbeit deiner Kollegen", + "accept_or_reject_each_changes_individually": "Akzeptiere oder Verwerfe jede Änderung individuell", + "accept": "Akzeptieren", + "reject": "Verwerfen", + "no_comments": "Keine Kommentare", + "edit": "Bearbeiten", + "are_you_sure": "Bist du sicher?", + "resolve": "Lösen", + "reply": "Antworten", + "quoted_text_in": "Zitierter Text in", + "review": "Überprüfen", + "track_changes_is_on": "Änderungen verfolgen ist an", + "track_changes_is_off": "Änderungen verfolgen ist aus", + "current_file": "Aktuelle Datei", + "overview": "Überblick", + "tracked_change_added": "Hinzugefügt", + "tracked_change_deleted": "Gelöscht", + "show_all": "Alles anzeigen", + "show_less": "Weniger anzeigen", + "dropbox_sync_error": "Dropbox-Synchronisierungsfehler", + "send": "Absenden", + "sending": "Wird gesendet", + "invalid_password": "Falsches Passwort", + "error": "Fehler", + "other_actions": "Weitere Aktionen", + "send_test_email": "Test-Mail senden", + "email_sent": "E-Mail versendet", + "create_first_admin_account": "Erstelle den ersten Admin-Account", + "ldap": "LDAP", + "ldap_create_admin_instructions": "Wähle eine E-Mail-Adresse für den ersten __appName__-Admin-Account. Dieser sollte bereits im SAML-System vorhanden sein. Du wirst dann aufgefordert, dich mit diesem Account einzuloggen.", + "saml": "SAML", + "saml_create_admin_instructions": "Wähle eine E-Mail-Adresse für den ersten __appName__-Admin-Account. Dieser sollte bereits im SAML-System vorhanden sein. Du wirst dann aufgefordert, dich mit diesem Account einzuloggen.", + "admin_user_created_message": "Admin-Nutzer erstellt, einloggen um fortzufahren", + "status_checks": "Statusüberprüfungen", + "editor_resources": "Editor-Literatur", + "checking": "Überprüfe", + "cannot_invite_self": "Du kannst dich nicht selbst einladen", + "cannot_invite_non_user": "Einladung konnte nicht gesendet werden. Empfänger muss bereits einen __appName__-Account besitzen.", + "log_in_with": "Einloggen mit __provider__", + "return_to_login_page": "Zurück zur Login-Seite", + "login_failed": "Login fehlgeschlagen", + "delete_account_warning_message_3": "Du bist dabei, alle Account-Daten permanent zu löschen, inklusive Projekte und Einstellungen. Bitte gib die E-Mail-Adresse und das Passwort deines Accounts in die Felder ein um fortzufahren.", + "delete_account_warning_message_2": "Du bist dabei alle Account-Daten permanent zu löschen, inklusive Projekte und Einstellungen. Bitte gib die E-Mail-Adresse deines Accounts in das Feld ein um fortzufahren.", + "your_sessions": "Deine Sessions", + "clear_sessions_description": "Dies ist eine Liste anderer Sessions (Logins), die auf deinem Account aktiv sind, exklusive deiner aktuellen Session. Klicke auf \"Sessions löschen\", um sie auszuloggen.", + "no_other_sessions": "Keine andere Session aktiv", + "ip_address": "IP-Adresse", + "session_created_at": "Session erzeugt um", + "clear_sessions": "Sessions löschen", + "clear_sessions_success": "Sessions gelöscht", + "sessions": "Sessions", + "manage_sessions": "Sessions verwalten", + "syntax_validation": "Syntaxüberprüfung", + "history": "Verlauf", + "joining": "Trete bei", + "open_project": "Öffne Projekt", + "files_cannot_include_invalid_characters": "Dateien dürfen die Zeichen '*' oder '/' nicht enthalten.", + "invalid_file_name": "Ungültiger Dateiname", + "autocomplete_references": "Referenzautovervollständigung (in einem \\cite{}-Block)", + "autocomplete": "Autovervollständigung", + "failed_compile_check": "In deinem Projekt scheinen fatale Syntaxfehler vorzuliegen, die du beheben solltest, bevor wir es kompilieren", + "failed_compile_check_try": "Versuche es trotzdem zu kompilieren", + "failed_compile_option_or": "oder", + "failed_compile_check_ignore": "schalte die Syntaxüberprüfung aus", + "compile_time_checks": "Syntaxüberprüfungen", + "stop_on_validation_error": "Überprüfe die Syntax vor dem Kompilieren", + "ignore_validation_errors": "Syntaxüberprüfung deaktivieren", + "run_syntax_check_now": "Syntax jetzt überprüfen", + "your_billing_details_were_saved": "Deine Rechnungsdaten wurden gespeichert", + "security_code": "Kartenprüfnummer", + "paypal_upgrade": "Bitte klicke für das Upgrade auf den Button und logge dich bei PayPal mit deiner E-Mail-Adresse und deinem Passwort ein.", + "upgrade_cc_btn": "Upgrade jetzt, zahle nach sieben Tagen", + "upgrade_paypal_btn": "Fortfahren", + "notification_project_invite": "__userName__ möchte, dass du __projectName__ beitrittst. Trete Projekt bei", + "file_restored": "Deine Datei (__filename__) wurde wiederhergestellt.", + "file_restored_back_to_editor": "Du kannst zum Editor zurückkehren und es erneut bearbeiten", + "file_restored_back_to_editor_btn": "Zurück zum Editor", + "view_project": "Projekt ansehen", + "join_project": "Projekt beitreten", + "invite_not_accepted": "Einladung noch nicht angenommen", + "resend": "Sende erneut", + "syntax_check": "Syntaxüberprüfung", + "revoke_invite": "Einladung zurückziehen", + "pending": "Ausstehend", + "invite_not_valid": "Dies ist keine gültige Projekteinladung", + "invite_not_valid_description": "Die Einladung ist wahrscheinlich abgelaufen. Bitte kontaktiere den Projektbesitzer", + "accepting_invite_as": "Du akzeptierst die Einladung als", + "accept_invite": "Einladung akzeptieren", + "log_hint_ask_extra_feedback": "Warum war dieser Hinweis nicht hilfreich?", + "log_hint_extra_feedback_didnt_understand": "Ich habe den Hinweis nicht verstanden", + "log_hint_extra_feedback_not_applicable": "Ich kann diese Lösung nicht auf mein Dokument anwenden", + "log_hint_extra_feedback_incorrect": "Der Fehler wird dadurch nicht behoben", + "log_hint_extra_feedback_other": "Anderes:", + "log_hint_extra_feedback_submit": "Abschicken", + "if_you_are_registered": "Falls du bereits registriert bist", + "stop_compile": "Kompiliervorgang stoppen", + "terminated": "Kompiliervorgang abgebrochen", + "compile_terminated_by_user": "Der Kompiliervorgang wurde durch Klick auf den Button 'Kompiliervorgang stoppen' abgebrochen. Du kannst dir die Logs anschauen, um zu sehen, wo der Kompiliervorgang gestoppt hat.", + "site_description": "Ein einfach bedienbarer Online-LaTeX-Editor. Keine Installation notwendig, Zusammenarbeit in Echtzeit, Versionskontrolle, Hunderte von LaTeX-Vorlagen und mehr", + "knowledge_base": "Wissensdatenbank", + "contact_message_label": "Nachricht", + "kb_suggestions_enquiry": "Hast du dir schon __kbLink__ angeschaut?", + "answer_yes": "Ja", + "answer_no": "Nein", + "log_hint_extra_info": "Erfahre mehr", + "log_hint_feedback_label": "War dieser Hinweis hilfreich?", + "log_hint_feedback_gratitude": "Vielen Dank für dein Feedback!", + "recompile_pdf": "PDF erneut kompilieren", + "about_paulo_reis": "ist ein Frontend-Softwareentwickler and User Experience Researcher aus Aveiro, Portugal. Paulo hat einen PhD in User Experience und arbeitet leidenschaftlich an der Verbesserung menschlicher Nutzung der Technik – sowohl konzeptionell und in der Validierung, als auch im Design und der Implementierung.", + "login_or_password_wrong_try_again": "Dein Benutzername oder Passwort ist nicht korrekt. Bitte versuche es erneut", + "manage_beta_program_membership": "Beta-Programm-Mitgliedschaft verwalten", + "beta_program_opt_out_action": "Beta-Programm verlassen", + "disable_beta": "Beta deaktivieren", + "beta_program_badge_description": "Während der Nutzung von __appName__ werden Beta-Funktionen durch diesen Badge markiert:", + "beta_program_current_beta_features_description": "Wir testen momentan die folgenden neuen Funktionen in der Beta:", + "enable_beta": "Beta aktivieren", + "user_in_beta_program": "Benutzer nimmt an Beta-Programm teil", + "beta_program_already_participating": "Du bist dem Beta-Programm beigetreten", + "sharelatex_beta_program": "__appName__ Beta-Programm", + "beta_program_benefits": "Wir verbessern __appName__ stetig. Indem du dem Beta-Programm beitrittst, hast du früheren Zugriff auf neue Funktionen und hilfst uns, deine Bedürfnisse besser zu verstehen.", + "beta_program_opt_in_action": "Beta-Programm beitreten", + "conflicting_paths_found": "Dateipfadkonflikte gefunden", + "following_paths_conflict": "Die folgenden Dateien und Ordner weisen Konflikte mit dem gleichen Pfad auf", + "open_a_file_on_the_left": "Öffne eine Datei auf der linken Seite", + "reference_error_relink_hint": "Wenn dieser Fehler weiterhin auftritt, versuche dein Konto hier neu zu verlinken:", + "pdf_rendering_error": "PDF-Wiedergabe-Fehler", + "something_went_wrong_rendering_pdf": "Etwas ist bei der Wiedergabe dieses PDFs schiefgelaufen.", + "mendeley_reference_loading_error_expired": "Mendeley-Token abgelaufen, bitte verknüpfe dein Konto neu", + "zotero_reference_loading_error_expired": "Zotero-Token abgelaufen, bitte verknüpfe dein Konto neu", + "mendeley_reference_loading_error_forbidden": "Referenzen konnten nicht von Mendeley geladen werden; verlinke dein Konto bitte erneut und versuche es nochmal", + "zotero_reference_loading_error_forbidden": "Referenzen konnten nicht von Zotero geladen werden; verlinke dein Konto bitte erneut und versuche es nochmal", + "mendeley_integration": "Mendeley-Integration", + "mendeley_sync_description": "Mit Mendeley-Integration kannst du deine Referenzen von Mendeley in deine __appName__-Projekte importieren.", + "mendeley_is_premium": "Mendeley-Integration ist eine Premium-Funktion", + "link_to_mendeley": "Link zu Mendeley", + "unlink_to_mendeley": "Link zu Mendeley entfernen", + "mendeley_reference_loading": "Referenzen von Mendeley werden geladen", + "mendeley_reference_loading_success": "Von Mendeley geladene Referenzen", + "mendeley_reference_loading_error": "Fehler, Referenzen konnten nicht von Mendeley geladen werden", + "zotero_integration": "Zotero-Integration.", + "zotero_sync_description": "Mit Zotero-Integration kannst du deine Referenzen von Zotero in deine __appName__ Projekte importieren.", + "zotero_is_premium": "Zotero-Integration ist eine Premium-Funktion", + "link_to_zotero": "Link zu Zotero", + "unlink_to_zotero": "Link zu Zotero entfernen", + "zotero_reference_loading": "Referenzen von Zotero werden geladen", + "zotero_reference_loading_success": "Von Zotero geladene Referenzen", + "zotero_reference_loading_error": "Fehler, Referenzen konnten nicht von Mendeley geladen werden", + "reference_import_button": "Referenzen importieren in", + "unlink_reference": "Link zum Referenzengeber entfernen", + "unlink_warning_reference": "Achtung: Wenn du dein Konto von diesem Anbieter entkoppelst, wirst du nicht in der Lage sein, Referenzen in deine Projekte zu importieren.", + "mendeley": "Mendeley", + "zotero": "Zotero", + "suggest_new_doc": "Neues Dokument vorschlagen", + "request_sent_thank_you": "Anforderung gesendet, danke.", + "suggestion": "Vorschlag", + "project_url": "Betroffene Projekt-URL", + "subject": "Betreff", + "confirm": "Bestätigen", + "cancel_personal_subscription_first": "Du hast bereits ein persönliches Abonnement. Möchtest du dieses zuerst zu beenden, bevor du der Gruppenlizenz beitrittst?", + "delete_projects": "Projekte löschen", + "leave_projects": "Projekte verlassen", + "delete_and_leave_projects": "Projekte löschen und verlassen", + "too_recently_compiled": "Der Kompiliervorgang wurde übersprungen, da dieses Projekt gerade erst kompiliert wurde.", + "clsi_maintenance": "Die Kompilierungsserver wurden für Wartungsarbeiten heruntergefahren und werden in Kürze zurück sein.", + "references_search_hint": "Zum Suchen Strg-Space drücken", + "ask_proj_owner_to_upgrade_for_references_search": "Bitte den Projekteigentümer zu aktualisieren, damit du die Referenz-Suchfunktion verwenden kannst.", + "ask_proj_owner_to_upgrade_for_faster_compiles": "Bitte den Projekteigentümer zu aktualisieren, damit du schneller kompilieren und das Zeitlimit erweitern kannst.", + "search_bib_files": "Nach Autor, Titel, Jahr suchen", + "leave_group": "Gruppe verlassen", + "leave_now": "Jetzt verlassen", + "sure_you_want_to_leave_group": "Bist du sicher, dass du diese Gruppe verlassen möchtest?", + "notification_group_invite": "Du wurdest zu __groupName__ eingeladen, hier beitreten.", + "search_references": "Suche die .bib-Dateien in diesem Projekt", + "no_search_results": "Keine Suchergebnisse", + "email_already_registered": "Diese E-Mail-Adresse ist bereits registriert.", + "compile_mode": "Kompilier-Modus", + "normal": "Normal", + "fast": "Schnell", + "rename_folder": "Ordner umbennenen", + "delete_folder": "Ordner löschen", + "about_to_delete_folder": "Du bist dabei, die folgenden Ordner zu löschen (alle darin enthaltenen Projekte werden nicht gelöscht werden):", + "to_modify_your_subscription_go_to": "Um dein Abo zu ändern, gehe zu", + "manage_subscription": "Abo verwalten", + "activate_account": "Deaktiviere dein Konto", + "yes_please": "Ja, bitte.", + "nearly_activated": "Du bist einen Schritt davon entfernt, dein __appName__-Konto zu aktivieren!", + "please_set_a_password": "Bitte ein Passwort einrichten", + "activation_token_expired": "Dein Aktivierungs-Token ist abgelaufen; du musst einen neuen anfordern.", + "activate": "Aktivieren", + "activating": "Aktivierung", + "ill_take_it": "Ich nehme es!", + "cancel_your_subscription": "Beende dein Abo", + "no_thanks_cancel_now": "Nein, danke - Ich möchte nach wie vor jetzt stornieren", + "cancel_my_account": "Mein Abo stornieren", + "sure_you_want_to_cancel": "Willst du wirklich abbrechen?", + "i_want_to_stay": "Ich möchte bleiben", + "have_more_days_to_try": "Hol dir weitere __days__ Tage auf deiner Testversion!", + "interested_in_cheaper_plan": "Hättest du Interesse an einem billigeren __price__ Studentenplan?", + "session_expired_redirecting_to_login": "Sitzung abgelaufen. Du wirst in __seconds__ Sekunden auf die Anmeldungsseite umgeleitet", + "maximum_files_uploaded_together": "Maximal __max__ Dateien zusammen hochgeladen", + "too_many_files_uploaded_throttled_short_period": "Zu viele Dateien hochgeladen, deine Uploads wurden für kurze Zeit gedrosselt.", + "compile_larger_projects": "Größere Projekte kompilieren", + "upgrade_to_get_feature": "Upgrade nötig, um __feature__ zu bekommen, sowie zusätzlich:", + "new_group": "Neue Gruppe", + "about_to_delete_groups": "Du bist dabei, die folgenden Gruppen zu löschen:", + "removing": "Entfernen", + "adding": "Hinzufügen", + "groups": "Gruppen", + "rename_group": "Gruppe umbennenen", + "renaming": "Umbenennung", + "create_group": "Gruppe erstellen", + "delete_group": "Gruppe löschen", + "delete_groups": "Gruppen löschen", + "your_groups": "Deine Gruppen", + "group_name": "Gruppenname", + "no_groups": "Keine Gruppen", + "Subscription": "Abonnement", + "Documentation": "Dokumentation", + "Universities": "Universitäten", + "Account Settings": "Kontoeinstellungen", + "Projects": "Projekte", + "Account": "Konto", + "global": "global", + "Terms": "Nutzungsbedingungen", + "Security": "Sicherheit", + "About": "Über uns", + "editor_disconected_click_to_reconnect": "Editor wurde getrennt; auf eine beliebige Stelle klicken, um die Verbindung wierderherzustellen.", + "word_count": "Wortzahl", + "please_compile_pdf_before_word_count": "Bitte kompiliere dein Projekt, bevor du eine Wortzählung durchführst.", + "total_words": "Gesamtwortzahl", + "headers": "Header", + "math_inline": "Mathe-Inline", + "math_display": "Mathe-Anzeige", + "connected_users": "Verbundene Benutzer", + "projects": "Projekte", + "upload_project": "Projekt hochladen", + "all_projects": "Alle Projekte", + "your_projects": "Deine Projekte", + "shared_with_you": "Mit dir geteilt", + "deleted_projects": "Gelöschte Projekte", + "templates": "Vorlagen", + "new_folder": "Neuer Ordner", + "create_your_first_project": "Erstelle dein erstes Projekt!", + "complete": "Fertig", + "on_free_sl": "Du benutzt die kostenlose Version von __appName__", + "upgrade": "Upgrade", + "or_unlock_features_bonus": "oder schalte kostenlose Bonus Features frei indem du", + "sharing_sl": "__appName__ teilst", + "add_to_folder": "Zu Ordner hinzufügen", + "create_new_folder": "Neuen Ordner erstellen", + "more": "Mehr", + "rename": "Umbenennen", + "make_copy": "Kopie erstellen", + "restore": "Wiederherstellen", + "title": "Titel", + "last_modified": "Zuletzt bearbeitet", + "no_projects": "Keine Projekte", + "welcome_to_sl": "Willkommen bei __appName__!", + "new_to_latex_look_at": "Neu bei LaTeX? Starte indem du einen Blick wirfst auf unser", + "or": "oder", + "or_create_project_left": "oder erstelle dein erstes Projekt auf der linken Seite.", + "thanks_settings_updated": "Danke, deine Einstellungen wurden aktualisiert.", + "update_account_info": "Kontoinformationen aktualisieren", + "must_be_email_address": "Es muss eine E-Mail-Adresse sein!", + "first_name": "Vorname", + "last_name": "Nachname", + "update": "Aktualisieren", + "change_password": "Passwort ändern", + "current_password": "Aktuelles Passwort", + "new_password": "Neues Passwort", + "confirm_new_password": "Bestätige das neue Passwort", + "required": "Erforderlich", + "doesnt_match": "Stimmt nicht überein", + "dropbox_integration": "Dropbox-Integration", + "learn_more": "Erfahre mehr", + "dropbox_is_premium": "Dropbox-Synchronisation ist eine Premium-Funktion", + "account_is_linked": "Account ist verknüpft", + "unlink_dropbox": "Dropbox-Account trennen", + "link_to_dropbox": "Dropbox-Account verknüpfen", + "newsletter_info_and_unsubscribe": "Alle paar Monate verschicken wir einen Newsletter, der die neuen verfügbaren Features zusammenfasst. Wenn du diese E-Mail lieber nicht erhalten möchtest, kannst du sie jederzeit abbestellen:", + "unsubscribed": "Abbestellt", + "unsubscribing": "Abbestellen läuft", + "unsubscribe": "Abbestellen", + "need_to_leave": "Du musst gehen?", + "delete_your_account": "Lösche deinen Account", + "delete_account": "Account löschen", + "delete_account_warning_message": "Sie sind dabei alle Account-Daten permanent zu löschen, inklusive Projekte und Einstellungen. Bitte geben Sie die E-Mail-Adresse Ihres Accounts in das Feld ein um fortzufahren.", + "deleting": "Löschen", + "delete": "Löschen", + "sl_benefits_plans": "__appName__ ist der am einfachsten zu benutzende LaTeX-Editor der Welt. Bleibe auf dem neuesten Stand aller Änderungen deiner Projekte, und nutze unsere LaTeX-Umgebung von überall auf der Welt.", + "monthly": "Monatlich", + "personal": "Persönlich", + "free": "Kostenlos", + "one_collaborator": "Nur ein Mitarbeiter", + "collaborator": "Mitarbeiter", + "collabs_per_proj": "__collabcount__ Mitarbeiter pro Projekt", + "full_doc_history": "Vollständiger Versionsverlauf", + "sync_to_dropbox": "Synchronisierung mit Dropbox", + "start_free_trial": "Starte einen kostenlosen Test!", + "professional": "Professionell", + "unlimited_collabs": "Unbeschränkt viele Mitarbeiter", + "name": "Name", + "student": "Student", + "university": "Universität", + "position": "Beruf", + "choose_plan_works_for_you": "Wähle das Produkt, das zu dir passt, für deinen __len__-Tage-Testzeitraum. Kündigung ist jederzeit möglich.", + "interested_in_group_licence": "Möchtest du __appName__ mit einem Gruppen-, einem Team- oder einem Konto für eine ganze Abteilung benutzen?", + "get_in_touch_for_details": "Kontaktiere uns für Details!", + "group_plan_enquiry": "Gruppen-Abo Anfrage", + "enjoy_these_features": "Genieße all diese tollen Features", + "create_unlimited_projects": "Erstelle so viele Projekte wie du willst.", + "never_loose_work": "Verliere keine Änderung, wir speichern alles.", + "access_projects_anywhere": "Greife von überall auf deine Projekte zu.", + "log_in": "Anmelden", + "login": "Anmelden", + "logging_in": "Anmeldung", + "forgot_your_password": "Passwort vergessen", + "password_reset": "Passwort zurücksetzen", + "password_reset_email_sent": "Dir wurde eine eMail gesendet, um dein Passwort zurückzusetzen.", + "please_enter_email": "Bitte gib deine eMail-Adresse ein", + "request_password_reset": "Forder die Zurücksetzung deines Passworts an", + "reset_your_password": "Dein Passwort zurücksetzen", + "password_has_been_reset": "Dein Passwort wurde zurückgesetzt", + "login_here": "Hier anmelden", + "set_new_password": "Neues Passwort eingeben", + "user_wants_you_to_see_project": "__username__ möchte, dass Sie __projectname__ beitreten", + "join_sl_to_view_project": "Registriere dich für __appName__, um dieses Projekt zu sehen", + "register_to_edit_template": "Bitte registriere dich um die __templateName__ Vorlage zu bearbeiten", + "already_have_sl_account": "Hast du bereits ein __appName__-Konto?", + "register": "Registrieren", + "password": "Passwort", + "registering": "Registrieren", + "planned_maintenance": "Geplante Wartungsarbeiten", + "no_planned_maintenance": "Aktuell sind keine Wartungsarbeiten geplant", + "cant_find_page": "Entschuldigung, wir können die Seite, die du suchst, nicht finden.", + "take_me_home": "Bring mich nach Hause!", + "no_preview_available": "Entschuldigung, es ist keine Vorschau verfügbar.", + "no_messages": "Keine Nachrichten", + "send_first_message": "Sende deine erste Nachricht", + "account_not_linked_to_dropbox": "Dein Account ist nicht mit Dropbox verknüpft", + "update_dropbox_settings": "Dropbox-Einstellungen aktualisieren", + "refresh_page_after_starting_free_trial": "Bitte aktualisiere diese Seite, nachdem du deinen kostenlosen Test gestartet hast.", + "checking_dropbox_status": "Dropbox-Status prüfen", + "dismiss": "Ausblenden", + "deleted_files": "Gelöschte Dateien", + "new_file": "Neue Datei", + "upload_file": "Datei hochladen", + "create": "Erstellen", + "creating": "Erstellung läuft", + "upload_files": "Datei(en) hochladen", + "sure_you_want_to_delete": "Möchtest du die folgenden Dateien wirklich löschen?", + "common": "Häufige", + "navigation": "Navigation", + "editing": "Bearbeitung", + "ok": "OK", + "source": "Quelldateien", + "actions": "Aktionen", + "copy_project": "Projekt kopieren", + "publish_as_template": "Als Vorlage veröffentlichen", + "sync": "Sync", + "settings": "Einstellungen", + "main_document": "Hauptdokument", + "off": "Aus", + "auto_complete": "Auto-Vervollständigung", + "theme": "Design", + "font_size": "Schriftgröße", + "pdf_viewer": "PDF-Betrachter", + "built_in": "Eigener", + "native": "nativ", + "show_hotkeys": "Zeige Hotkeys", + "new_name": "Neuer Name", + "copying": "kopieren", + "copy": "Kopieren", + "compiling": "Kompilieren", + "click_here_to_preview_pdf": "Hier klicken, um deine Arbeit als PDF anzuzeigen.", + "server_error": "Serverfehler", + "somthing_went_wrong_compiling": "Entschuldigung, es ist etwas schief gegangen und dein Projekt konnte nicht kompiliert werden. Versuche es in ein paar Minuten erneut.", + "timedout": "Zeit abgelaufen", + "proj_timed_out_reason": "Entschuldigung, deine Kompilation hat zu lange gedauert und das Zeitlimit wurde überschritten. Das könnte an einer großen Anzahl von hochauflösenden Bildern oder vielen komplizierten Diagrammen liegen.", + "no_errors_good_job": "Keine Fehler, gute Arbeit!", + "compile_error": "Fehler beim Kompilieren", + "generic_failed_compile_message": "Sorry, dein LaTeX Code konnte aus irgendeinem Grund nicht kompiliert werden. Bitte überprüfe die unten genannten Fehler für Details oder schau dir die Konsolenausgabe an", + "other_logs_and_files": "Andere Protokolle und Dateien", + "view_raw_logs": "Zeige die Konsolenausgabe", + "hide_raw_logs": "Logs ausblenden", + "clear_cache": "Cache leeren", + "clear_cache_explanation": "Hiermit werden alle versteckten LaTeX-Dateien (.aux, .bbl, usw.) von unserem Server gelöscht. Das musst du normalerweise nicht tun, außer, wenn es Probleme mit Referenzen gibt.", + "clear_cache_is_safe": "Deine Projektdateien werden nicht gelöscht oder verändert.", + "clearing": "Aufräumen", + "template_description": "Vorlagenbeschreibung", + "project_last_published_at": "Dein Projekt wurde zuletzt veröffentlicht am", + "problem_talking_to_publishing_service": "Es gibt ein Problem mit unserem Veröffentlichungsservice. Bitte versuche es in einigen Minuten noch einmal", + "unpublishing": "Veröffentlichung aufheben", + "republish": "Erneut veröffentlichen", + "publishing": "Veröffentlichen", + "share_project": "Projekt teilen", + "this_project_is_private": "Dieses Projekt ist privat und nur die unten genannten Personen können darauf zugreifen.", + "make_public": "Öffentlich machen", + "this_project_is_public": "Dieses Projekt ist öffentlich und kann von jedem bearbeitet werden, der die URL dazu hat.", + "make_private": "Privat machen", + "can_edit": "Kann bearbeiten", + "share_with_your_collabs": "Mit deinen Mitarbeitern teilen", + "share": "Teilen", + "need_to_upgrade_for_more_collabs": "Du musst dein Konto upgraden um mehr Mitarbeiter hinzuzufügen", + "make_project_public": "Projekt öffentlich machen", + "make_project_public_consequences": "Wenn du dein Projekt öffentlich machst kann jeder mit der URL darauf zugreifen.", + "allow_public_editing": "Erlaube öffentliches Bearbeiten", + "allow_public_read_only": "Erlaube nur den öffentlichen Lesezugriff", + "make_project_private": "Projekt privat machen", + "make_project_private_consequences": "Wenn du das Projekt privat machst können nur die Personen, mit denen du es teilen möchtest, darauf zugreifen.", + "need_to_upgrade_for_history": "Du musst dein Konto upgraden, um den Dateiversionsverlauf zu verwenden.", + "ask_proj_owner_to_upgrade_for_history": "Bitte den Projekt-Besitzer upzugraden, um den Dateiversionsverlauf zu verwenden.", + "anonymous": "Anonym", + "generic_something_went_wrong": "Sorry, irgendetwas ist schief gelaufen", + "restoring": "Wiederherstellen", + "restore_to_before_these_changes": "Auf den Stand vor diesen Veränderungen wiederherstellen", + "profile_complete_percentage": "Dein Profil ist zu __percentval__% vollständig.", + "file_has_been_deleted": "__filename__ wurde gelöscht.", + "sure_you_want_to_restore_before": "Bist du sicher, dass du __filename__ auf den Stand vor den Veränderungen am __date__ wiederherstellen möchtest?", + "rename_project": "Projekt umbenennen", + "about_to_delete_projects": "Du bist kurz davor folgende Projekte zu löschen:", + "about_to_leave_projects": "Du bist kurz davor folgende Projekte zu verlassen:", + "upload_zipped_project": "Projekt als ZIP hochladen", + "upload_a_zipped_project": "Projekt als ZIP hochladen", + "your_profile": "Dein Profil", + "institution": "Institution", + "role": "Funktion", + "folders": "Ordner", + "disconnected": "Nicht verbunden", + "please_refresh": "Bitte aktualisiere die Seite, um fortzufahren", + "lost_connection": "Verbindung verloren", + "reconnecting_in_x_secs": "Erneut verbinden in __seconds__ Sekunden", + "try_now": "Jetzt versuchen", + "reconnecting": "Neu verbinden", + "saving_notification_with_seconds": "__docname__ speichern... (__seconds__ Sekunden ungespeicherter Änderungen)", + "help_us_spread_word": "Hilf uns, __appName__ zu verbreiten", + "share_sl_to_get_rewards": "Teile __appName__ mit deinen Freunden und Kollegen, um die Belohnungen unten freizuschalten.", + "post_on_facebook": "Auf Facebook posten", + "share_us_on_googleplus": "Auf Google+ teilen", + "email_us_to_your_friends": "Per E-Mail an deine Freunde schicken", + "link_to_us": "Von deiner Website verlinken", + "direct_link": "Direkter Link", + "sl_gives_you_free_stuff_see_progress_below": "Wenn jemand nach deiner Empfehlung beginnt, __appName__ zu nutzen, geben wir dir kostenlose Funktionen, um Danke zu sagen! Überprüfe deinen Fortschritt unten.", + "spread_the_word_and_fill_bar": "Sag es weiter und fülle diesen Balken", + "one_free_collab": "Ein kostenloser Mitarbeiter", + "three_free_collab": "Drei kostenlose Mitarbeiter", + "free_dropbox_and_history": "Kostenloser Dropbox und Dateiversionsverlauf", + "you_not_introed_anyone_to_sl": "Du hast noch niemanden zu __appName__ eingeladen. Beginne zu teilen!", + "you_introed_small_number": "Du hast bereits __numberOfPeople__ Person zu __appName__ eingeladen. Gut gemacht!, aber schaffst du noch mehr?", + "you_introed_high_number": "Du hast bereits __numberOfPeople__ Personen zu __appName__ eingeladen. Super!", + "link_to_sl": "Link zu __appName__", + "can_link_to_sl_with_html": "Du kannst mit dem folgenden HTML-Code zu __appName__ verlinken:", + "year": "Jahr", + "month": "Monat", + "subscribe_to_this_plan": "Dieses Produkt abonnieren.", + "your_plan": "Dein Abo", + "your_subscription": "Dein Abonnement", + "on_free_trial_expiring_at": "Du verwendest im Moment eine kostenlose Testversion, die am __expiresAt__ ausläuft.", + "choose_a_plan_below": "Wähle unten ein Produkt das du abonnieren möchtest.", + "currently_subscribed_to_plan": "Du hast im Moment das __planName__ Produkt abonniert.", + "change_plan": "Abonnement ändern", + "next_payment_of_x_collectected_on_y": "Die nächste Zahlung von __paymentAmmount__ wird am __collectionDate__ abgebucht.", + "update_your_billing_details": "Deine Zahlungsinformationen aktualisieren", + "subscription_canceled_and_terminate_on_x": " Dein Abonnement wurde gekündigt und wird am __terminateDate__ enden. Keine weiteren Zahlungen werden angenommen.", + "your_subscription_has_expired": "Dein Abonnement ist abgelaufen.", + "create_new_subscription": "Neues Abonnement erstellen", + "problem_with_subscription_contact_us": "Es gibt ein Problem mit deinem Abonnement. Bitte kontaktiere uns für mehr Informationen.", + "manage_group": "Gruppe verwalten", + "loading_billing_form": "Lade Zahlungsdetails von", + "you_have_added_x_of_group_size_y": "Du hast __addedUsersSize__ von __groupSize__ verfügbaren Mitgliedern hinzugefügt", + "remove_from_group": "Aus der Gruppe entfernen", + "group_account": "Gruppenaccount", + "registered": "Registriert", + "no_members": "Keine Mitglieder", + "add_more_members": "Mehr Mitglieder hinzufügen", + "add": "Hinzufügen", + "thanks_for_subscribing": "Danke fürs Abbonieren!", + "your_card_will_be_charged_soon": "Deine Karte wird bald belastet.", + "if_you_dont_want_to_be_charged": "Wenn du nicht mehr bezahlen möchtest ", + "add_your_first_group_member_now": "Füge jetzt dein erstes Gruppenmitglied hinzu", + "thanks_for_subscribing_you_help_sl": "Danke, dass du den __planName__-Plant abboniert hast. Die Unterstützung von Menschen wie dir macht es __appName__ möglich, zu wachsen und besser zu werden.", + "back_to_your_projects": "Zurück zu deinen Projekten", + "goes_straight_to_our_inboxes": "Es landet direkt in unserem Posteingang.", + "need_anything_contact_us_at": "Wenn du irgendetwas benötigst, kannst du uns gern direkt kontaktieren über", + "regards": "Viele Grüße", + "about": "Über uns", + "comment": "Kommentar", + "restricted_no_permission": "Entschuldigung, du hast nicht die Berechtigung, diese Seite anzuzeigen.", + "online_latex_editor": "Online-LaTeX-Editor", + "meet_team_behind_latex_editor": "Lerne das Team hinter deinem Lieblings-LaTeX-Editor kennen.", + "follow_me_on_twitter": "Folge mir auf Twitter", + "motivation": "Motivation", + "evolved": "Revolutioniert", + "the_easy_online_collab_latex_editor": "Der einfach zu nutzende, kollaborative, Online-LaTeX-Editor", + "get_started_now": "Fange jetzt an", + "sl_used_over_x_people_at": "__appName__ wird von über __numberOfUsers__ Studenten und Professoren genutzt in:", + "collaboration": "Zusammenarbeit", + "work_on_single_version": "Arbeitet zusammen an einer einzigen Version", + "view_collab_edits": "Zeige Änderungen aller Mitarbeiter an ", + "ease_of_use": " Einfacher Gebrauch", + "no_complicated_latex_install": "Keine komplizierte LaTeX-Installation", + "all_packages_and_templates": "Alle Pakete und __templatesLink__, die du brauchst", + "document_history": "Änderungsverlauf", + "see_what_has_been": "Schau nach, was ", + "added": "hinzugefügt", + "and": "und", + "removed": "gelöscht", + "restore_to_any_older_version": "Stelle beliebige ältere Versionen wieder her", + "work_from_anywhere": "Arbeite von überall", + "acces_work_from_anywhere": "Greife auf deine Arbeit von überall auf der Welt zu", + "work_offline_and_sync_with_dropbox": "Arbeite offline und synchronisiere deine Dateien über Dropbox oder GitHub", + "over": "über", + "view_templates": "Vorlagen anzeigen", + "nothing_to_install_ready_to_go": "Du musst keine komplizierte Software installieren und du kannst __start_now__, auch wenn du es noch nie zuvor gesehen hast. __appName__ verfügt über eine komplette, vorbereitete LaTeX-Umgebung, die auf unseren Servern läuft.", + "start_using_latex_now": "jetzt anfangen, LaTeX zu benutzen", + "get_same_latex_setup": "Mit __appName__ bekommst du die gleiche LaTeX-Umgebung, wo auch immer du bist. Wenn du mit deinen Kollegen und Schülern auf __appName__ arbeitest, kannst du davon ausgehen, dass es keine Versionsinkonsistenzen oder Paketkonflikte gibt.", + "support_lots_of_features": "Wir unterstützen fast alle Funktionen von LaTeX, zum Beispiel das Einfügen von Bildern, Literaturverzeichnissen, Gleichungen und vielem mehr! In unseren __help_guides_link__ kannst du nachlesen, was du alles aufregendes in __appName__ machen kannst.", + "latex_guides": "LaTeX-Anleitungen", + "reset_password": "Passwort zurücksetzen", + "set_password": "Passwort setzen", + "updating_site": "Aktualisiere die Seite", + "bonus_please_recommend_us": "Bonus - Bitte empfehle uns weiter", + "admin": "Admin", + "subscribe": "Abonnieren", + "update_billing_details": "Zahlungsinformationen aktualisieren", + "thank_you": "Vielen Dank", + "group_admin": "Gruppenadministrator", + "all_templates": "Alle Vorlagen", + "your_settings": "Deine Einstellungen", + "maintenance": "Wartungsarbeiten", + "to_many_login_requests_2_mins": "In dieses Konto wurde sich zu häufig eingeloggt. Bitte warte 2 Minuten, bevor du es noch einmal versuchst.", + "email_or_password_wrong_try_again": "Deine E-Mail-Adresse oder Passwort waren falsch. Bitte versuche es erneut.", + "rate_limit_hit_wait": "Beschränkung erreicht. Bitte warte ein bisschen, bevor du es noch einmal versuchst.", + "problem_changing_email_address": "Es gab ein Problem beim Ändern deiner E-Mail-Adresse. Bitte versuche es in ein paar Minuten erneut. Wenn das Problem bestehen bleibt, kontaktiere uns bitte.", + "single_version_easy_collab_blurb": "__appName__ sorgt dafür, dass du immer weißt, was deine Mitarbeiter tun. Es gibt nur eine einzige Version jedes Dokumentes, zu der alle Zugriff haben. Es ist unmöglich, mit einer Änderung einen Konflikt hervorzurufen, und du musst nicht auf deine Kollegen warten, dass sie dir den neuesten Entwurf schicken, bevor du weiterarbeiten kannst.", + "can_see_collabs_type_blurb": "Wenn mehrere Menschen am gleichen Dokument gleichzeitig arbeiten möchten, ist das kein Problem. Du kannst direkt im Editor sehen, wo deine Kollegen schreiben und ihre Änderungen werden sofort angezeigt.", + "work_directly_with_collabs": "Arbeite direkt mit deinen Mitarbeitern.", + "work_with_word_users": "Arbeite mit Word-Benutzern", + "work_with_word_users_blurb": "__appName__ ist so einfach zu lernen, dass du auch Kollegen, die sich mit LaTeX nicht auskennen, einladen kannst, um direkt zu deinen LaTeX-Dokumenten beizutragen. Sie werden vom ersten Tag an produktiv sein und können schnell etwas LaTeX aufschnappen, während sie arbeiten.", + "view_which_changes": "Schau, was", + "sl_included_history_of_changes_blurb": "__appName__ zeigt einen Verlauf all deiner Änderungen an, sodass du direkt sehen kannst, wer was wann geändert hat. Das macht es sehr leicht, auf dem neuesten Stand mit dem Fortschritt deiner Mitarbeiter zu bleiben und erlaubt es dir, die neuesten Änderungen zu überprüfen.", + "can_revert_back_blurb": "Egal ob gemeinschaftlich oder allein, manchmal macht man Fehler. Es ist aber einfach, zu vorherigen Versionen zurück zu gehen und es gibt kein Risiko, Arbeit zu verlieren oder eine Änderung später zu bereuen.", + "start_using_sl_now": "Fange jetzt an, __appName__ zu benutzen.", + "over_x_templates_easy_getting_started": "Es gibt __over__ 400 __templates__ in unserer Vorlagengalerie, also ist es sehr leicht, loszulegen. Egal, ob du einen Zeitschriftenartikel, eine Doktorarbeit, einen Lebenslauf oder etwas anderes schreibst.", + "done": "Fertig", + "change": "Änderung", + "page_not_found": "Seite nicht gefunden", + "please_see_help_for_more_info": "Bitte schau in unserer Hilfe für mehr Informationen nach", + "this_project_will_appear_in_your_dropbox_folder_at": "Diese Projekt wird in deiner Dropbox in folgendem Ordner erscheinen: ", + "member_of_group_subscription": "Du bist Mitglied eines Gruppenabonnements, das von __admin_email__ verwaltet wird. Bitte kontaktiere diese Person, um dein Abonnement zu verwalten.\n", + "about_henry_oswald": "ist ein Softwareentwickler, der in London lebt. Er hat den ersten Prototyp von __appName__ gebaut und war dafür verantwortlich, eine stabile und skalierbare Plattform zu erstellen. Henry ist ein Verfechter von testgetriebenem Programmieren und achtet darauf, dass wir den __appName__-Code sauber und wartbar halten.", + "about_james_allen": "hat einen PhD in theoretischer Physik und eine Leidenschaft für LaTeX. Er erstellte einen der ersten Online-LaTeX-Editoren, ScribTeX, und hat eine große Rolle bei der Entwicklung der Technologien gespielt, die __appName__ möglich macht.", + "two_strong_principles_behind_sl": "Es gibt zwei wichtige Prinzipien hinter unserer Arbeit an __appName__:", + "want_to_improve_workflow_of_as_many_people_as_possible": "Wir wollen die Arbeit von möglichst vielen Menschen erleichtern.", + "detail_on_improve_peoples_workflow": "LaTeX ist bekannt dafür, kompliziert zu sein, und Zusammenarbeit ist immer schwierig zu koordinieren. Wir denken, dass wir ein paar großartige Lösungen für Menschen, denen diese Probleme begegnen, entwickelt haben und möchten sichergehen, dass __appName__ für so viele Menschen wie möglich zugänglich ist. Wir haben versucht, unsere Preise fair zu machen und haben einen Großteil von __appName__ Open Source gemacht, sodass jeder seine eigene Version hosten kann.", + "want_to_create_sustainable_lasting_legacy": "Wir möchten ein nachhaltiges und dauerhaftes Erbe schaffen.", + "details_on_legacy": "Entwicklung und Pflege eines Produkts wie __appName__ braucht viel Zeit und Arbeit, also ist es wichtig, dass wir ein Geschäftsmodell können, die dies jetzt beide unterstützen wird, und auf lange Sicht. Wir möchten nicht, dass __appName__ abhängig von einer externen Finanzierung ist oder wegen eines gescheiterten Geschäftsmodells verschwindet. Ich freue mich mitzuteilen, dass wir __appName__ aktuell profitabel und nachhaltig betreiben und dass wir planen dies auch in der Zukunft zu schaffen.", + "get_in_touch": "Kontaktiere uns", + "want_to_hear_from_you_email_us_at": "Wir freuen uns immer, wenn uns Leute schreiben, die __appName__ nutzen oder sich über das, was wir tun, mit uns unterhalten möchten. Du kannst uns kontaktieren unter", + "cant_find_email": "Diese E-Mail-Adresse ist leider nicht registriert.", + "plans_amper_pricing": "Produkte und Preise", + "documentation": "Dokumentation", + "account": "Account", + "subscription": "Abonnement", + "log_out": "Abmelden", + "en": "Englisch", + "pt": "Portugiesisch", + "es": "Spanisch", + "fr": "Französisch", + "de": "Deutsch", + "it": "Italienisch", + "da": "Dänisch", + "sv": "Schwedisch", + "no": "Norwegisch", + "nl": "Niederländisch", + "pl": "Polnisch", + "ru": "Russisch", + "uk": "Ukrainisch", + "ro": "Rumänisch", + "click_here_to_view_sl_in_lng": "Klicke hier, um __appName__ in __lngName__ zu nutzen", + "language": "Sprache", + "upload": "Upload", + "menu": "Menü", + "full_screen": "Vollbild", + "logs_and_output_files": "Logs und Ausgabedateien", + "download_pdf": "PDF herunterladen", + "split_screen": "Splitscreen", + "clear_cached_files": "Zwischengespeicherte Dateien löschen", + "go_to_code_location_in_pdf": "Gehe zur Position im PDF", + "please_compile_pdf_before_download": "Bitte kompiliere dein Projekt, bevor du das PDF herunterlädst", + "remove_collaborator": "Mitarbeiter entfernen", + "add_to_folders": "Zu Ordnern hinzufügen", + "download_zip_file": ".zip-Datei herunterladen", + "price": "Preis", + "close": "Schließen", + "keybindings": "Tastenkombinationen", + "restricted": "Geschützt", + "start_x_day_trial": "Beginne heute mit der kostenlosen Testversion für __len__ Tage!", + "buy_now": "Jetzt kaufen!", + "cs": "Tschechisch", + "view_all": "Alle anzeigen", + "terms": "AGB", + "privacy": "Datenschutz", + "contact": "Kontakt", + "change_to_this_plan": "Auf dieses Abonnement wechseln", + "processing": "in Bearbeitung", + "sure_you_want_to_change_plan": "Bist du sicher, dass du zum Abonnement __planName__ wechseln möchtest?", + "move_to_annual_billing": "Zur jährlichen Abrechnung wechseln", + "annual_billing_enabled": "Jährliche Abrechnung aktiviert", + "move_to_annual_billing_now": "Jetzt zu jährlicher Abrechnung wechseln", + "change_to_annual_billing_and_save": "Spare __percentage__ durch jährliche Abrechnung. Wenn du jetzt wechselst, sparst du __yearlySaving__ pro Jahr.", + "missing_template_question": "Fehlende Vorlage?", + "tell_us_about_the_template": "Wenn eine Vorlage fehlt, schicke uns entweder eine Kopie der Vorlage, eine __appName__-URL zur Vorlage oder sag uns, wo wir die Vorlage finden können. Gib uns auch ein paar Informationen für die Beschreibung der Vorlage.", + "email_us": "Schreibe uns eine E-Mail", + "this_project_is_public_read_only": "Dieses Projekt ist öffentlich und kann von jedem, der die URL kennt, angesehen, aber nicht bearbeitet werden.", + "tr": "Türkisch", + "select_files": "Datei(en) auswählen", + "drag_files": "datei(en) ziehen", + "upload_failed_sorry": "Hochladen fehlgeschlagen, sorry :(", + "inserting_files": "Datei wird eingefügt...", + "password_reset_token_expired": "Dein Passwortzurücksetztoken ist nicht mehr gültig. Bitte fordere ein neues Passwortresetmail an und folge dem Link im Mail.", + "merge_project_with_github": "Projekt mit GitHub mergen", + "pull_github_changes_into_sharelatex": "GitHub-Änderungen nach __appName__ ziehen", + "push_sharelatex_changes_to_github": "__appName__-Änderungen in GitHub drücken", + "features": "Features", + "commit": "Commit", + "commiting": "am Commiten", + "importing_and_merging_changes_in_github": "Änderungen werden in GitHub importiert und gemerged.", + "upgrade_for_faster_compiles": "Upgrade für schnelleres Kompilieren und eine längere Timeoutlimite.", + "free_accounts_have_timeout_upgrade_to_increase": "Kostenlose Benutzerkontos haben einen Timeout von einer Minute. Upgrade um deine Timeoutlimite zu erhöhen", + "learn_how_to_make_documents_compile_quickly": "Erfahre wie du dein Dokument schneller kompilieren lassen kannst.", + "zh-CN": "Chinesisch", + "cn": "Chinesisch (vereinfacht)", + "sync_to_github": "Mit GitHub synchronisieren", + "sync_to_dropbox_and_github": "Mit Dropbox und Github synchronisieren", + "project_too_large": "Projekt ist zu gross", + "project_too_large_please_reduce": "Dieses Projekt hat zu viel editierbaren Text, bitte versuchen Sie ihn zu reduzieren. Die größten Dateien sind:", + "please_ask_the_project_owner_to_link_to_github": "Bitte den Projektinhaber dieses Projekt mit GitHub zu verlinken", + "go_to_pdf_location_in_code": "Gehe an den Ort des PDF im Code", + "ko": "Koreanisch", + "ja": "Japanisch", + "about_brian_gough": "ist ein Softwareentwickler und früher ein theoritscher Starkstromphysiker in den Fermilab in Los Alamos. Über viele Jahre hinweg hat er Anleitungen für freie Software für deren Erstellung er TeX und LaTeX kommerziell einsetze. Er war auch ein Maintainer der GNU Scientific Library.", + "first_few_days_free": "Erste __trialLen__ Tage sind gratis", + "every": "pro", + "credit_card": "Kreditkarte", + "credit_card_number": "Kreditkartennummer", + "invalid": "Ungültig", + "expiry": "Ablaufdatum", + "january": "Januar", + "february": "Februar", + "march": "März", + "april": "April", + "may": "Mai", + "june": "Juni", + "july": "Juli", + "august": "August", + "september": "September", + "october": "Oktober", + "november": "November", + "december": "Dezember", + "zip_post_code": "PLZ / Postleitzahl", + "city": "Stadt", + "address": "Adresse", + "coupon_code": "Gutscheincode", + "country": "Land", + "billing_address": "Rechnungsadresse ", + "upgrade_now": "Jetzt aktualisieren", + "state": "Status", + "vat_number": "Umsatzsteuernummer", + "you_have_joined": "Du bist __groupName__ beigetreten", + "claim_premium_account": "Du hast das von __groupName__ zur Verfügung gestellte Premium-Konto in anspruch genommen.", + "you_are_invited_to_group": "Du wurdest eingeladen, __groupName__ beizutreten", + "you_can_claim_premium_account": "Du kannst ein von __groupName__ zur Verfügung gestelltes Premium-Konto in Anspruch nehmen, indem du deine E-Mail-Adresse verifizierst.", + "not_now": "Nicht jetzt", + "verify_email_join_group": "E-Mail-Adresse verifizieren und Gruppe beitreten", + "check_email_to_complete_group": "Bitte überprüfe deine E-Mails und vervollständige deinen Gruppeneintritt.", + "verify_email_address": "E-Mail-Adresse verifizieren", + "group_provides_you_with_premium_account": "__groupName__ bietet dir ein Premium-Konto. Verifiziere deine E-Mail-Adresse, um dein Konto-Upgrade durchführen zu können.", + "check_email_to_complete_the_upgrade": "Bitte überprüfe deine E-Mails, um das Upgrade zu vervollständigen.", + "email_link_expired": "E-Mail-Link ist abgelaufen, bitte fordere einen neuen an.", + "services": "Services", + "about_shane_kilkelly": "ist ein Softwareentwickler, der in Edinburgh lebt. Shane ist ein starker Befürworter funktionaler Programmierung und testbasierender Entwicklung und ist stolz auf die qualitativ hochwertige Software, die er baut.", + "this_is_your_template": "Dies ist eine Vorlage aus deinem Projekt.", + "links": "Links", + "account_settings": "Kontoeinstellungen", + "search_projects": "Projekte suchen", + "clone_project": "Projekt duplizieren", + "delete_project": "Projekt löschen", + "download_zip": "ZIP herunterladen", + "new_project": "Neues Projekt", + "blank_project": "Leeres Projekt", + "example_project": "Beispielprojekt", + "from_template": "Aus Vorlage", + "cv_or_resume": "Lebenslauf", + "cover_letter": "Bewerbungsschreiben", + "journal_article": "Zeitschriftenartikel", + "presentation": "Präsentation", + "thesis": "Doktorarbeit", + "bibliographies": "Literaturverzeichnisse", + "terms_of_service": "Allgemeine Geschäftsbedingungen", + "privacy_policy": "Datenschutz", + "plans_and_pricing": "Produkte und Preise", + "university_licences": "Universitätslizenzen", + "security": "Sicherheit", + "contact_us": "Kontaktiere uns", + "thanks": "Danke", + "blog": "Blog", + "latex_editor": "LaTeX-Editor", + "get_free_stuff": "Verdiene dir Premiumfunktionen", + "chat": "Chat", + "your_message": "Deine Nachricht", + "loading": "Laden", + "connecting": "Verbinden", + "recompile": "Aktualisieren", + "download": "Herunterladen", + "email": "E-Mail", + "owner": "Besitzer", + "read_and_write": "Lesen und Schreiben", + "read_only": "nur Lesen", + "publish": "Veröffentlichen", + "view_in_template_gallery": "In der Vorlagengalerie anzeigen", + "description": "Beschreibung", + "unpublish": "Veröffentlichung aufheben", + "hotkeys": "Hotkeys", + "saving": "Speichern", + "cancel": "Abbrechen", + "project_name": "Projektname", + "root_document": "Hauptdokument", + "spell_check": "Rechtschreibprüfung", + "compiler": "Compiler", + "private": "Privat", + "public": "Öffentlich", + "delete_forever": "unwiderruflich löschen", + "support_and_feedback": "Support und Feedback", + "help": "Hilfe", + "latex_templates": "LaTeX Vorlagen", + "info": "Info", + "latex_help_guide": "LaTeX-Anleitung", + "choose_your_plan": "Wähle deinen Account-Typ", + "indvidual_plans": "Einzelbenutzerabos", + "free_forever": "Für immer kostenlos", + "low_priority_compile": "Kompilierung mit niedriger Priorität", + "unlimited_projects": "Unbegrenzte Projekte", + "unlimited_compiles": "Unbegrenzte Compiles", + "full_history_of_changes": "Gesamter Änderungsverlauf", + "highest_priority_compiling": "Kompilierung mit höchster Priorität", + "dropbox_sync": "Dropbox-Synchronisation", + "beta": "Beta", + "sign_up_now": "Jetzt registrieren", + "annual": "Jährlich", + "half_price_student": "Studenten-Tarif zum halben Preis", + "about_us": "Über uns", + "loading_recent_github_commits": "Neueste Commits weren geladen", + "no_new_commits_in_github": "Es gibt bei GitHub keine neuen Commits seit dem letzten Merge", + "dropbox_sync_description": "Behalte deine __appName__-Projekte synchron mit deiner Dropbox. Änderungen in __appName__ werden automatisch an deine Dropbox gesendet und umgekehrt.", + "github_sync_description": "Mit GitHub Synchronisierung kannst du deine __appName__-Projekte mit GitHub-Repositories verlinken. Erstelle neue Commits aus __appName__ und führe sie mit offline oder in GitHub gemachten Commits zusammen.", + "github_import_description": "Mit GitHub-Synchronisierung kannst du deine GitHub-Repositories in __appName__ importieren. Erstelle neue Commits aus __appName__ und führe sie mit offline oder in GitHub gemachten Commits zusammen.", + "link_to_github_description": "Du musst __appName__ erlauben, auf dein GitHub-Benutzerkonto zuzugreifen und deine Projekte zu synchronisieren.", + "unlink": "Link löschen", + "unlink_github_warning": "Bei allen Projekten, die mit GitHub synchronisiert sind, wird die Verlinkung entfernt und nicht länger mit GitHub synchronisiert. Bist du sicher, dass du die Verbindung zu deinem GitHub-Benutzerkonto lösen möchtest?", + "github_account_successfully_linked": "Das GitHub-Benutzerkonto wurde erfolgreich verbunden!", + "github_successfully_linked_description": "Danke, wir haben dein GitHub-Benutzerkonto erfolgreich mit __appName__ verknüpft. Du kannst die __appName__-Projekte jetzt in GitHub exportieren oder Projekte aus deinen GitHub-Repositories importieren.", + "import_from_github": "Von GitHub importieren", + "github_sync_error": "Entschuldigung, es gab ein Problem bei der Kommunikation mit unserem GitHub-Dienst. Bitte versuche es später erneut.", + "loading_github_repositories": "Deine GitHub-Repositories werden geladen", + "select_github_repository": "Wähle ein GitHub-Repository, das du in __appName__ importieren möchtest.", + "import_to_sharelatex": "In __appName__ importieren", + "importing": "Importieren", + "github_sync": "GitHuB Synchronisierung", + "checking_project_github_status": "Status auf GitHub abfragen", + "account_not_linked_to_github": "Dein Account ist nicht mit GitHub verlinkt", + "project_not_linked_to_github": "Dieses Projekt ist nicht mit einem GitHub Repository verlinkt. Sie können ein neues Repository in GitHub erstellen:", + "create_project_in_github": "Ein GitHub Repository erstellen", + "project_synced_with_git_repo_at": "Das Projekt ist mit dem GitHub Repository verlinkt", + "recent_commits_in_github": "Neueste Commits auf GitHub", + "sync_project_to_github": "Projekt mit GitHub synchronisieren", + "sync_project_to_github_explanation": "Alle Änderungen die du in __appName__ vornimmst werden in GitHub festgelegt und mit allen Updates in GitHub zusammengeführt.", + "github_merge_failed": "Deine Änderungen in __appName__ und GitHub konnten nicht automatisch zusammengeführt werden. Bitte führe den __sharelatex_branch__ mit dem __master_branch__ Branch in Git zusammen. Klicke unten um fortzufahren, nachdem du manuell zusammengeführt hast.", + "continue_github_merge": "Ich habe es von Hand gemerded, fortsetzen", + "export_project_to_github": "Projekt nach GitHub exportieren", + "github_validation_check": "Bitte prüfe ob der Repositorynome gültig ist und ob du die Rechte hast ein Gitrepository zu erstellen. ", + "repository_name": "Repository Name", + "optional": "Freiwillig", + "github_public_description": "Jeder kann dieses Repository sehen. Du entscheidest wer commiten darf.", + "github_commit_message_placeholder": "Commit-Meldung für Änderungen die in __appName__ gemacht wurden", + "merge": "Mergen", + "merging": "Mergen", + "github_account_is_linked": "Dein GitHub-Benutzerkonto wurde erfolgreich verbunden", + "unlink_github": "Löse die Verbindung deines GitHub-Benutzerkontos", + "link_to_github": "Verbinde mit deinem GitHub-Benutzerkonto", + "github_integration": "GitHub Einbindung", + "github_is_premium": "GitHub syns ist eine Premiumfunktion" +} \ No newline at end of file diff --git a/services/web/locales/en-GB.json b/services/web/locales/en-GB.json new file mode 100644 index 0000000000..63d77e3900 --- /dev/null +++ b/services/web/locales/en-GB.json @@ -0,0 +1,1282 @@ +{ + "last_login": "Last Login", + "invalid_insitituional_email": "Your institution's SSO service returned your email address as __email__, which is at an unexpected domain that we do not recognise as belonging to it. You may be able to change your primary email address via your user profile at your institution to one at your institution's domain. Please contact your IT department if you have any questions.", + "thank_you_for_being_part_of_our_beta_program": "Thank you for being part of our Beta Program, where you can have early access to new features and help us understand your needs better", + "you_will_be_able_to_contact_us_any_time_to_share_your_feedback": "You will be able to contact us any time to share your feedback", + "we_may_also_contact_you_from_time_to_time_by_email_with_a_survey": "We may also contact you from time to time by email with a survey, or to see if you would like to participate in other user research initiatives", + "you_can_opt_in_and_out_of_the_program_at_any_time_on_this_page": "You can opt in and out of the program at any time on this page", + "give_feedback": "Give feedback", + "beta_feature_badge": "Beta feature badge", + "invalid_filename": "Upload failed: check that the file name doesn't contain special characters or trailing/leading whitespace", + "clsi_unavailable": "Sorry, the compile server for your project was temporarily unavailable. Please try again in a few moments.", + "x_price_per_month": "__price__ per month", + "x_price_per_year": "__price__ per year", + "x_price_for_first_month": "__price__ for your first month", + "x_price_for_first_year": "__price__ for your first year", + "normally_x_price_per_month": "Normally __price__ per month", + "normally_x_price_per_year": "Normally __price__ per year", + "then_x_price_per_month": "Then __price__ per month", + "then_x_price_per_year": "Then __price__ per year", + "for_your_first": "for your first", + "sso_not_linked": "You have not linked your account to __provider__. Please log in to your account another way and link your __provider__ account via your account settings.", + "template_gallery": "Template Gallery", + "template_not_found_description": "This way of creating projects from templates has been removed. Please visit our template gallery to find more templates.", + "dropbox_checking_sync_status": "Checking Dropbox Integration status", + "dropbox_sync_in": "Updating Overleaf", + "dropbox_sync_out": "Updating Dropbox", + "dropbox_sync_both": "Updating Overleaf and Dropbox", + "dropbox_synced": "Overleaf and Dropbox are up-to-date", + "dropbox_sync_status_error": "An error has occurred with the Dropbox Integration", + "requesting_password_reset": "Requesting password reset", + "tex_live_version": "TeX Live version", + "email_does_not_belong_to_university": "We don't recognize that domain as being affiliated with your university. Please contact us to add the affiliation.", + "company_name": "Company Name", + "add_company_details": "Add Company Details", + "github_timeout_error": "Syncing your Overleaf project with Github has timed out. This may be due to the overall size of your project, or the number of files/changes to sync, being too large.", + "github_large_files_error": "Merge failed: your Github repository contains files over the 50mb file size limit ", + "no_history_available": "This project doesn't have any history yet. Please make some changes to the project and try again.", + "project_approaching_file_limit": "This project is approaching the file limit", + "recurly_email_updated": "Your billing email address was successfully updated", + "recurly_email_update_needed": "Your billing email address is currently __recurlyEmail__. If needed you can update your billing address to __userEmail__.", + "project_has_too_many_files": "This project has reached the 2000 file limit", + "processing_your_request": "Please wait while we process your request.", + "github_repository_diverged": "The master branch of the linked repository has been force-pushed. Pulling GitHub changes after a force push can cause Overleaf and GitHub to get out of sync. You might need to push changes after pulling to get back in sync.", + "unlink_github_repository": "Unlink Github Repository", + "unlinking": "Unlinking", + "github_no_master_branch_error": "This repository cannot be imported as it is missing the master branch. Please make sure the project has a master branch", + "confirmation_token_invalid": "Sorry, your confirmation token is invalid or has expired. Please request a new email confirmation link.", + "confirmation_link_broken": "Sorry, something is wrong with your confirmation link. Please try copy and pasting the link from the bottom of your confirmation email.", + "duplicate_file": "Duplicate File", + "file_already_exists_in_this_location": "An item named __fileName__ already exists in this location. If you wish to move this file, rename or remove the conflicting file and try again.", + "group_full": "This group is already full", + "no_selection_select_file": "Currently, no file is selected. Please select a file from the file tree.", + "no_selection_create_new_file": "Your project is currently empty. Please create a new file.", + "files_selected": "files selected.", + "home": "Home", + "this_action_cannot_be_undone": "This action cannot be undone.", + "dropbox_email_not_verified": "We have been unable to retrieve updates from your Dropbox account. Dropbox reported that your email address is unverified. Please verify your email address in your Dropbox account to resolve this.", + "link_email_to_join": "Link your institutional email to join __portalTitle__ on __appName__", + "token_access_success": "Access granted", + "token_access_failure": "Cannot grant access; contact the project owner for help", + "trashed_projects": "Trashed Projects", + "trash": "Trash", + "untrash": "Restore", + "delete_and_leave": "Delete / Leave", + "trash_projects": "Trash Projects", + "about_to_trash_projects": "You are about to trash the following projects:", + "archived_projects_info_note": "The Archive now works on a per-user basis. Projects that you decide to archive will only be archived for you, not your collaborators.", + "trashed_projects_info_note": "Overleaf now has a Trash for projects you want to get rid of. Trashing a project won't affect your collaborators.", + "register_intercept_sso": "You can link your __authProviderName__ account from the Account Settings page after logging in.", + "continue_to": "Continue to __appName__", + "project_ownership_transfer_confirmation_1": "Are you sure you want to make __user__ the owner of __project__?", + "project_ownership_transfer_confirmation_2": "This action cannot be undone. The new owner will be notified and will be able to change project access settings (including removing your own access).", + "change_owner": "Change owner", + "change_project_owner": "Change Project Owner", + "faq_pay_by_invoice_answer": "Yes, if you'd like to purchase a group account or site license and would prefer to pay by invoice,\r\nor need to raise a purchase order, please __payByInvoiceLinkOpen__let us know__payByInvoiceLinkClose__.\r\nFor individual accounts or accounts with monthly billing, we can only accept payment online\r\nvia credit or debit card, or PayPal.", + "password_too_long_please_reset": "Maximum password length exceeded. Please reset your password.", + "view_other_options_to_log_in": "View other options to log in", + "we_logged_you_in": "We have logged you in.", + "will_need_to_log_out_from_and_in_with": "You will need to log out from your __email1__ account and then log in with __email2__.", + "resubmit_institutional_email": "Please resubmit your institutional email.", + "opted_out_linking": "You've opted out from linking your __email__ __appName__ account to your institutional account.", + "please_link_to_institution_account": "Please link your __email__ __appName__ account to your __institutionName__ institutional account.", + "register_with_another_email": "Register with __appName__ using another email.", + "register_with_email_provided": "Register with __appName__ using the email and password you provided.", + "security_reasons_linked_accts": "For security reasons, as your institutional email is already associated with the __email__ __appName__ account, we can only allow account linking with that specific account.", + "this_grants_access_to_features": "This grants you access to __appName__ __featureType__ features.", + "to_add_email_accounts_need_to_be_linked": "To add this email, your __appName__ and __institutionName__ accounts will need to be linked.", + "tried_to_log_in_with_email": "You've tried to login with __email__.", + "tried_to_register_with_email": "You've tried to register with __email__, which is already registered with __appName__ as an institutional account.", + "log_in_with_email": "Log in with __email__", + "log_in_with_existing_institution_email": "Please log in with your existing __appName__ account in order to get your __appName__ and __institutionName__ institutional accounts linked.", + "log_out_from": "Log out from __email__", + "logged_in_with_acct_that_cannot_be_linked": "You've logged in with an __appName__ account that cannot be linked to your institution account.", + "logged_in_with_email": "You are currently logged in to __appName__ with the email __email__.", + "looks_like_logged_in_with_email": "It looks like you're already logged in to __appName__ with the email __email__.", + "make_primary_to_log_in_through_institution": "Make your __email__ email primary to log in through your institution portal. ", + "make_primary_which_will_allow_log_in_through_institution": "Making it your primary __appName__ email will allow you to log in through your institution portal.", + "need_to_do_this_to_access_license": "You'll need to do this in order to have access to the benefits from the __institutionName__ site license.", + "institutional_login_not_supported": "Your university doesn't support institutional login yet, but you can still register with your institutional email.", + "link_account": "Link Account", + "link_accounts": "Link Accounts", + "link_accounts_and_add_email": "Link Accounts and Add Email", + "link_your_accounts": "Link your accounts", + "log_in_and_link": "Log in and link", + "log_in_and_link_accounts": "Log in and link accounts", + "log_in_first_to_proceed": "You will need to log in first to proceed.", + "log_in_through_institution": "Log in through your institution", + "if_have_existing_can_link": "If you have an existing __appName__ account on another email, you can link it to your __institutionName__ account by clicking __clickText__.", + "if_owner_can_link": "If you own the __appName__ account with __email__, you will be allowed to link it to your __institutionName__ institutional account.", + "ignore_and_continue_institution_linking": "You can also ignore this and continue to __appName__ with your __email__ account.", + "in_order_to_match_institutional_metadata": "In order to match your institutional metadata, we've linked your account using __email__.", + "in_order_to_match_institutional_metadata_associated": "In order to match your institutional metadata, your account is associated with the email __email__.", + "institution_account_tried_to_add_already_registered": "The email/institution account you tried to add is already registered with __appName__.", + "institution_acct_successfully_linked": "Your __appName__ account was successfully linked to your __institutionName__ institutional account.", + "institution_email_new_to_app": "Your __institutionName__ email (__email__) is new to __appName__.", + "institutional": "Institutional", + "doing_this_allow_log_in_through_institution": "Doing this will allow you to log in to __appName__ through your institution portal.", + "doing_this_will_verify_affiliation_and_allow_log_in": "Doing this will verify your affiliation with __institutionName__ and will allow you to log in to __appName__ through your institution.", + "email_already_associated_with": "The __email1__ email is already associated with the __email2__ __appName__ account.", + "enter_institution_email_to_log_in": "Enter your institutional email to log in through your institution.", + "find_out_more_about_institution_login": "Find out more about institutional login", + "get_in_touch_having_problems": "Get in touch with support if you're having problems", + "go_back_and_link_accts": "Go back and link your accounts", + "go_back_and_log_in": "Go back and log in again", + "go_back_to_institution": "Go back to your institution", + "can_link_institution_email_by_clicking": "You can link your __email__ __appName__ account to your __institutionName__ account by clicking __clickText__.", + "can_link_institution_email_to_login": "You can link your __email__ __appName__ account to your __institutionName__ account, which will allow you to log in to __appName__ through your institution portal.", + "can_link_your_institution_acct": "You can now link your __appName__ account to your __institutionName__ institutional account.", + "can_now_link_to_institution_acct": "You can link your __email__ __appName__ account to your __institutionName__ institutional account.", + "click_link_to_proceed": "Click __clickText__ below to proceed.", + "continue_with_email": "Continue to __appName__ with your __email__ account", + "create_new_account": "Create new account", + "do_not_have_acct_or_do_not_want_to_link": "If you don't have an __appName__ account, or if you don't want to link to your __institutionName__ account, please click __clickText__.", + "do_not_link_accounts": "Don't link accounts", + "account_has_been_link_to_institution_account": "Your __appName__ account on __email__ has been linked to your __institutionName__ institutional account.", + "account_linking": "Account Linking", + "account_with_email_exists": "It looks like an __appName__ account with the email __email__ already exists.", + "acct_linked_to_institution_acct": "This account is linked to your __institutionName__ institution account.", + "alternatively_create_new_institution_account": "Alternatively, you can create a new account with your institution email (__email__) by clicking __clickText__.", + "as_a_member_of_sso": "As a member of __institutionName__, you can log in to __appName__ through your institution portal.", + "as_a_member_of_sso_required": "As a member of __institutionName__, you must log in to __appName__ through your institution portal.", + "can_link_institution_email_acct_to_institution_acct": "You can now link your __email__ __appName__ account to your __institutionName__ institutional account.", + "can_link_institution_email_acct_to_institution_acct_alt": "You can link your __email__ __appName__ account to your __institutionName__ institutional account.", + "user_deletion_error": "Sorry, something went wrong deleting your account. Please try again in a minute.", + "card_must_be_authenticated_by_3dsecure": "Your card must be authenticated with 3D Secure before continuing", + "view_your_invoices": "View Your Invoices", + "payment_provider_unreachable_error": "Sorry, there was an error talking to our payment provider. Please try again in a few moments.\nIf you are using any ad or script blocking extensions in your browser, you may need to temporarily disable them.", + "dropbox_unlinked_because_access_denied": "Your Dropbox account has been unlinked because the Dropbox service rejected your stored credentials. Please relink your Dropbox account to continue using it with Overleaf.", + "dropbox_unlinked_because_full": "Your Dropbox account has been unlinked because it is full, and we can no longer send updates to it. Please free up some space and relink your Dropbox account to continue using it with Overleaf.", + "upgrade_for_longer_compiles": "Upgrade to increase your timeout limit.", + "ask_proj_owner_to_upgrade_for_longer_compiles": "Please ask the project owner to upgrade to increase the timeout limit.", + "plus_upgraded_accounts_receive": "Plus with an upgraded account you get", + "sso_account_already_linked": "Account already linked to another __appName__ user", + "subscription_admins_cannot_be_deleted": "You cannot delete your account while on a subscription. Please cancel your subscription and try again. If you keep seeing this message please contact us.", + "delete_acct_no_existing_pw": "Please use the password reset form to set a password before deleting your account", + "empty_zip_file": "Zip doesn't contain any file", + "you_can_now_login_through_overleaf_sl": "You can now log in to your ShareLaTeX account through Overleaf.", + "find_out_more_nt": "Find out more.", + "register_error": "Registration error", + "login_error": "Login error", + "sso_link_error": "Error linking SSO account", + "more_info": "More Info", + "synctex_failed": "Couldn't find the corresponding source file", + "linked_collabratec_description": "Use Collabratec to manage your __appName__ projects.", + "reset_from_sl": "Please reset your password from ShareLaTeX and login there to move your account to Overleaf", + "dropbox_already_linked_error": "Your Dropbox account cannot be linked as it is already linked with another Overleaf account.", + "github_too_many_files_error": "This repository cannot be imported as it exceeds the maximum number of files allowed", + "linked_accounts": "linked accounts", + "linked_accounts_explained": "You can link your __appName__ account with other services to enable the features described below", + "oauth_orcid_description": " Securely establish your identity by linking your ORCID iD to your __appName__ account. Submissions to participating publishers will automatically include your ORCID iD for improved workflow and visibility. ", + "no_existing_password": "Please use the password reset form to set your password", + " to_reactivate_your_subscription_go_to": "To reactivate your subscription go to", + "subscription_canceled": "Subscription Canceled", + "coupons_not_included": "This does not include your current discounts, which will be applied automatically before your next payment", + "email_already_registered_secondary": "This email is already registered as a secondary email", + "secondary_email_password_reset": "That email is registered as a secondary email. Please enter the primary email for your account.", + "if_registered_email_sent": "If you have an account, we have sent you an email.", + "reconfirm": "reconfirm", + "request_reconfirmation_email": "Request reconfirmation email", + "reconfirm_explained": "We need to reconfirm your account. Please request a password reset link via the form below to reconfirm your account. If you have any problems reconfirming your account, please contact us at", + "upload_failed": "Upload failed", + "file_too_large": "File too large", + "zip_contents_too_large": "Zip contents too large", + "invalid_zip_file": "Invalid zip file", + "make_primary": "Make Primary", + "make_email_primary_description": "Make this the primary email, used to log in", + "github_sync_repository_not_found_description": "The linked repository has either been removed, or you no longer have access to it. You can set up sync with a new repository by cloning the project and using the 'Github' menu item. You can also unlink the repository from this project.", + "unarchive": "Restore", + "cant_see_what_youre_looking_for_question": "Can't see what you're looking for?", + "something_went_wrong_canceling_your_subscription": "Something went wrong canceling your subscription. Please contact support.", + "department": "Department", + "notification_features_upgraded_by_affiliation": "Good news! Your affiliated organization __institutionName__ has a partnership with Overleaf, and you now have access to all of Overleaf's Professional features.", + "notification_personal_subscription_not_required_due_to_affiliation": " Good news! Your affiliated organization __institutionName__ has a partnership with Overleaf, and you now have access to Overleaf's Professional features through your affiliation. You can cancel your personal subscription without losing access to any of your benefits.", + "github_private_description": "You choose who can see and commit to this repository.", + "notification_project_invite_message": "__userName__ would like you to join __projectName__", + "notification_project_invite_accepted_message": "You've joined __projectName__", + "subject_to_additional_vat": "Prices may be subject to additional VAT, depending on your country.", + "select_country_vat": "Please select your country on the payment page to view the total price including any VAT.", + "to_change_access_permissions": "To change access permissions, please ask the project owner", + "file_name_in_this_project": "File Name In This Project", + "new_snippet_project": "Untitled", + "loading_content": "Creating Project", + "there_was_an_error_opening_your_content": "There was an error creating your project", + "sorry_something_went_wrong_opening_the_document_please_try_again": "Sorry, an unexpected error occurred when trying to open this content on Overleaf. Please try again.", + "the_required_parameters_were_not_supplied": "The link to open this content on Overleaf was missing some required parameters. If this keeps happening for links on a particular site, please report this to them.", + "more_than_one_kind_of_snippet_was_requested": "The link to open this content on Overleaf included some invalid parameters. If this keeps happening for links on a particular site, please report this to them.", + "the_supplied_parameters_were_invalid": "The link to open this content on Overleaf included some invalid parameters. If this keeps happening for links on a particular site, please report this to them.", + "unable_to_extract_the_supplied_zip_file": "Opening this content on Overleaf failed because the zip file could not be extracted. Please ensure that it is a valid zip file. If this keeps happening for links on a particular site, please report this to them.", + "the_file_supplied_is_of_an_unsupported_type ": "The link to open this content on Overleaf pointed to the wrong kind of file. Valid file types are .tex documents and .zip files. If this keeps happening for links on a particular site, please report this to them.", + "the_requested_publisher_was_not_found": "The link to open this content on Overleaf specified a publisher that could not be found. If this keeps happening for links on a particular site, please report this to them.", + "the_supplied_uri_is_invalid": "The link to open this content on Overleaf included an invalid URI. If this keeps happening for links on a particular site, please report this to them.", + "the_requested_conversion_job_was_not_found": "The link to open this content on Overleaf specified a conversion job that could not be found. It's possible that the job has expired and needs to be run again. If this keeps happening for links on a particular site, please report this to them.", + "not_found_error_from_the_supplied_url": "The link to open this content on Overleaf pointed to a file that could not be found. If this keeps happening for links on a particular site, please report this to them.", + "too_many_requests": "Too many requests were received in a short space of time. Please wait for a few moments and try again.", + "password_change_passwords_do_not_match": "Passwords do not match", + "github_for_link_shared_projects": "This project was accessed via link-sharing and won't be synchronised with your Github unless you are invited via e-mail by the project owner.", + "browsing_project_latest_for_pseudo_label": "Browsing your project's current state", + "history_label_project_current_state": "Current state", + "download_project_at_this_version": "Download project at this version", + "submit": "submit", + "help_articles_matching": "Help articles matching your subject", + "dropbox_for_link_share_projs": "This project was accessed via link-sharing and won't be synchronised to your Dropbox unless you are invited via e-mail by the project owner.", + "clear_search": "clear search", + "email_registered_try_alternative": "Sorry, we do not have an account matching those credentials. Perhaps you signed up using a different provider?", + "access_your_projects_with_git": "Access your projects with Git", + "ask_proj_owner_to_upgrade_for_git_bridge": "Ask the project owner to upgrade their account to use git", + "export_csv": "Export CSV", + "add_comma_separated_emails_help": "Separate multiple email addresses using the comma (,) character.", + "members_management": "Members management", + "managers_management": "Managers management", + "institution_account": "Institution Account", + "git": "Git", + "clone_with_git": "Clone with Git", + "git_bridge_modal_description": "You can git clone your project using the link displayed below.", + "managers_cannot_remove_admin": "Admins cannot be removed", + "managers_cannot_remove_self": "Managers cannot remove themselves", + "user_not_found": "User not found", + "user_already_added": "User already added", + "bonus_twitter_share_text": "I'm using __appName__, the free online collaborative LaTeX editor - it's awesome and easy to use!", + "bonus_email_share_header": "Online LaTeX editor you may like", + "bonus_email_share_body": "Hey, I have been using the online LaTeX editor __appName__ recently and thought you might like to check it out.", + "bonus_share_link_text": "Online LaTeX Editor __appName__", + "bonus_facebook_name": "__appName__ - Online LaTeX Editor", + "bonus_facebook_caption": "Free Unlimited Projects and Compiles", + "bonus_facebook_description": "__appName__ is a free online LaTeX Editor. Real time collaboration like Google Docs, with Dropbox, history and auto-complete.", + "remove_manager": "Remove manager", + "invalid_element_name": "Could not copy your project because of filenames containing invalid characters\r\n(such as asterisks, slashes or control characters). Please rename the files and\r\ntry again.", + "collabratec_account_not_registered": "IEEE Collabratec™ account not registered. Please connect to Overleaf from IEEE Collabratec™ or login with a different account.", + "password_change_failed_attempt": "Password change failed", + "password_change_successful": "Password changed", + "not_registered": "Not registered", + "featured_latex_templates": "Featured LaTeX Templates", + "no_featured_templates": "No featured templates", + "try_again": "Please try again", + "email_required": "Email required", + "registration_error": "Registration error", + "newsletter-accept": "I’d like emails about product offers and company news and events.", + "resending_confirmation_email": "Resending confirmation email", + "please_confirm_email": "Please confirm your email __emailAddress__ by clicking on the link in the confirmation email ", + "register_using_service": "Register using __service__", + "login_to_overleaf": "Log in to Overleaf", + "login_with_email": "Log in with your email", + "login_with_service": "Log in with __service__", + "first_time_sl_user": "First time here as a ShareLaTeX user", + "migrate_from_sl": "Migrate from ShareLaTeX", + "dont_have_account": "Don't have an account?", + "sl_extra_info_tooltip": "Please log in to ShareLaTeX to move your account to Overleaf. It will only take a few seconds. If you have a ShareLaTeX subscription, it will automatically be transferred to Overleaf.", + "register_using_email": "Register using your email", + "login_register_or": "or", + "to_add_more_collaborators": "To add more collaborators or turn on link sharing, please ask the project owner", + "by": "by", + "emails": "Emails", + "editor_theme": "Editor theme", + "overall_theme": "Overall theme", + "faq_how_does_free_trial_works_answer": "You get full access to your chosen __appName__ plan during your __len__-day free trial. There is no obligation to continue beyond the trial. Your card will be charged at the end of your __len__ day trial unless you cancel before then. You can cancel via your subscription settings.", + "thousands_templates": "Thousands of templates", + "get_instant_access_to": "Get instant access to", + "ask_proj_owner_to_upgrade_for_full_history": "Please ask the project owner to upgrade to access this project's full history.", + "currently_seeing_only_24_hrs_history": "You're currently seeing the last 24 hours of changes in this project.", + "archive_projects": "Archive Projects", + "archive_and_leave_projects": "Archive and Leave Projects", + "about_to_archive_projects": "You are about to archive the following projects:", + "please_confirm_your_email_before_making_it_default": "Please confirm your email before making it the default.", + "back_to_editor": "Back to the editor", + "generic_history_error": "Something went wrong trying to fetch your project's history. If the error persists, please contact us via:", + "unconfirmed": "Unconfirmed", + "please_check_your_inbox": "Please check your inbox", + "resend_confirmation_email": "Resend confirmation email", + "history_label_created_by": "Created by", + "history_label_this_version": "Label this version", + "history_add_label": "Add label", + "history_adding_label": "Adding label", + "history_new_label_name": "New label name", + "history_new_label_added_at": "A new label will be added as of", + "history_delete_label": "Delete label", + "history_deleting_label": "Deleting label", + "history_are_you_sure_delete_label": "Are you sure you want to delete the following label", + "browsing_project_labelled": "Browsing project version labelled", + "history_view_all": "All history", + "history_view_labels": "Labels", + "history_view_a11y_description": "Show all of the project history or only labelled versions.", + "add_another_email": "Add another email", + "start_by_adding_your_email": "Start by adding your email address.", + "is_email_affiliated": "Is your email affiliated with an institution? ", + "let_us_know": "Let us know", + "add_new_email": "Add new email", + "error_performing_request": "An error has occurred while performing your request.", + "reload_emails_and_affiliations": "Reload emails and affiliations", + "emails_and_affiliations_title": "Emails and Affiliations", + "emails_and_affiliations_explanation": "Add additional email addresses to your account to access any upgrades your university or institution has, to make it easier for collaborators to find you, and to make sure you can recover your account.", + "institution_and_role": "Institution and role", + "add_role_and_department": "Add role and department", + "save_or_cancel-save": "Save", + "save_or_cancel-or": "or", + "save_or_cancel-cancel": "Cancel", + "make_default": "Make default", + "remove": "remove", + "confirm_email": "Confirm Email", + "invited_to_join_team": "You have been invited to join a team", + "join_team": "Join Team", + "accepted_invite": "Accepted invite", + "invited_to_group": "__inviterName__ has invited you to join a team on __appName__", + "join_team_explanation": "Please click the button below to join the team and enjoy the benefits of an upgraded __appName__ account", + "accept_invitation": "Accept invitation", + "joined_team": "You have joined the team managed by __inviterName__", + "compare_to_another_version": "Compare to another version", + "file_action_edited": "Edited", + "file_action_renamed": "Renamed", + "file_action_created": "Created", + "file_action_deleted": "Deleted", + "browsing_project_as_of": "Browsing project as of", + "view_single_version": "View single version", + "font_family": "Font Family", + "line_height": "Line Height", + "compact": "Compact", + "wide": "Wide", + "default": "Default", + "leave": "Leave", + "archived_projects": "Archived Projects", + "archive": "Archive", + "student_disclaimer": "The educational discount applies to all students at secondary and postsecondary institutions (schools and universities). We may contact you to confirm that you're eligible for the discount.", + "billed_after_x_days": "You won’t be billed until after your __len__ day trial expires.", + "looking_multiple_licenses": "Looking for multiple licenses?", + "reduce_costs_group_licenses": "You can cut down on paperwork and reduce costs with our discounted group licenses.", + "find_out_more": "Find out More", + "compare_plan_features": "Compare Plan Features", + "in_good_company": "You're In Good Company", + "unlimited": "Unlimited", + "priority_support": "Priority support", + "dropbox_integration_lowercase": "Dropbox integration", + "github_integration_lowercase": "GitHub integration", + "discounted_group_accounts": "discounted group accounts", + "referring_your_friends": "referring your friends", + "still_have_questions": "Still have questions?", + "quote_erdogmus": "The ability to track changes and the real-time collaborative nature is what sets ShareLaTeX apart.", + "quote_henderson": "ShareLaTeX has proven to be a powerful and robust collaboration tool that is widely used in our School.", + "best_value": "Best value", + "faq_how_free_trial_works_question": "How does the free trial work?", + "faq_change_plans_question": "Can I change plans later?", + "faq_do_collab_need_premium_question": "Do my collaborators also need premium accounts?", + "faq_need_more_collab_question": "What if I need more collaborators?", + "faq_purchase_more_licenses_question": "Can I purchase additional licenses for my colleagues?", + "faq_monthly_or_annual_question": "Should I choose monthly or annual billing?", + "faq_how_to_pay_question": "Can I pay online with a credit or debit card, or PayPal?", + "faq_pay_by_invoice_question": "Can I pay by invoice / purchase order?", + "reference_search": "Advanced reference search", + "reference_search_info": "You can always search by citation key, and advanced reference search lets you also search by author, title, year or journal.", + "reference_sync": "Reference manager sync", + "reference_sync_info": "Manage your reference library in Mendeley and link it directly to a .bib file in Overleaf, so you can easily cite anything in your Mendeley library.", + "faq_how_free_trial_works_answer": "You get full access to your chosen __appName__ plan during your __len__-day free trial. There is no obligation to continue beyond the trial. Your card will be charged at the end of your __len__ day trial unless you cancel before then. You can cancel via your subscription settings.", + "faq_change_plans_answer": "Yes, you can change your plan at any time via your subscription settings. This includes options to switch to a different plan, or to switch between monthly and annual billing options, or to cancel to downgrade to the free plan.", + "faq_do_collab_need_premium_answer": "Premium features, such as tracked changes, will be available to your collaborators on projects that you have created, even if those collaborators have free accounts.", + "faq_need_more_collab_answer": "You can upgrade to one of our paid accounts, which support more collaborators. You can also earn additional collaborators on our free accounts by __referFriendsLink__.", + "faq_purchase_more_licenses_answer": "Yes, we provide __groupLink__, which are easy to manage, help to save on paperwork, and reduce the cost of purchasing multiple licenses.", + "faq_monthly_or_annual_answer": "Annual billing offers a way to cut down on your admin and paperwork. If you’d prefer to manage a single payment every year, instead of twelve, annual billing is for you.", + "faq_how_to_pay_answer": "Yes, you can. All major credit and debit cards and Paypal are supported. Select the plan you’d like above, and you’ll have the option to pay by card or to go through to PayPal when it’s time to set up payment.", + "powerful_latex_editor": "Powerful LaTeX editor", + "realtime_track_changes": "Real-time track changes", + "realtime_track_changes_info": "Now you don’t have to choose between tracked changes and typesetting in LaTeX. Leave comments, keep track of TODOs, and accept or reject others’ changes.", + "full_doc_history_info": "Travel back in time to see any version and who made changes. No matter what happens, we've got your back.", + "dropbox_integration_info": "Work online and offline seamlessly with two-way Dropbox sync. Changes you make locally will be sent automatically to the version on Overleaf and vice versa.", + "github_integration_info": "Push and pull commits to and from GitHub, so you or your collaborators can work offline with git and online with Overleaf.", + "latex_editor_info": "Everything you need in a modern LaTeX editor --- spell check, intelligent autocomplete, syntax highlighting, dozens of color themes, vim and emacs bindings, help with LaTeX warnings and error messages, and much more.", + "change_plans_any_time": "You can change plans or change your account at any time. ", + "number_collab": "Number of collaborators", + "unlimited_private_info": "All your projects are private by default. Invite collaborators to read or edit by email address or by sending them a secret link.", + "unlimited_private": "Unlimited private projects", + "realtime_collab": "Real-time collaboration", + "realtime_collab_info": "When you’re working together, you can see your collaborators’ cursors and their changes in real time, so everyone always has the latest version.", + "hundreds_templates": "Hundreds of templates", + "hundreds_templates_info": "Produce beautiful documents starting from our gallery of LaTeX templates for journals, conferences, theses, reports, CVs and much more.", + "instant_access": "Get instant access to __appName__", + "tagline_personal": "Ideal when working solo", + "tagline_collaborator": "Great for shared projects", + "tagline_professional": "For those working with many", + "tagline_student_annual": "Save even more", + "tagline_student_monthly": "Great for a single term", + "all_premium_features": "All premium features", + "sync_dropbox_github": "Sync with Dropbox and GitHub", + "track_changes": "Track changes", + "tooltip_hide_pdf": "Click to hide the PDF", + "tooltip_show_pdf": "Click to show the PDF", + "tooltip_hide_filetree": "Click to hide the file-tree", + "tooltip_show_filetree": "Click to show the file-tree", + "cannot_verify_user_not_robot": "Sorry, we could not verify that you are not a robot. Please check that Google reCAPTCHA is not being blocked by an ad blocker or firewall.", + "uncompiled_changes": "Uncompiled Changes", + "code_check_failed": "Code check failed", + "code_check_failed_explanation": "Your code has errors that need to be fixed before the auto-compile can run", + "tags_slash_folders": "Tags/Folders", + "file_already_exists": "A file or folder with this name already exists", + "import_project_to_v2": "Import Project to V2", + "open_in_v1": "Open in V1", + "import_to_v2": "Import to V2", + "never_mind_open_in_v1": "Never mind, open in V1", + "yes_im_sure": "Yes, I'm sure", + "drop_files_here_to_upload": "Drop files here to upload", + "drag_here": "drag here", + "creating_project": "Creating project", + "select_a_zip_file": "Select a .zip file", + "drag_a_zip_file": "drag a .zip file", + "v1_badge": "V1 Badge", + "v1_projects": "V1 Projects", + "open_your_billing_details_page": "Open Your Billing Details Page", + "try_out_link_sharing": "Try the new link sharing feature!", + "try_link_sharing": "Try Link Sharing", + "try_link_sharing_description": "Give access to your project by simply sharing a link.", + "learn_more_about_link_sharing": "Learn more about Link Sharing", + "link_sharing": "Link sharing", + "tc_switch_everyone_tip": "Toggle track-changes for everyone", + "tc_switch_user_tip": "Toggle track-changes for this user", + "tc_switch_guests_tip": "Toggle track-changes for all link-sharing guests", + "tc_guests": "Guests", + "select_all_projects": "Select all", + "select_project": "Select", + "main_file_not_found": "Unknown main document.", + "please_set_main_file": "Please choose the main file for this project in the project menu. ", + "link_sharing_is_off": "Link sharing is off, only invited users can view this project.", + "turn_on_link_sharing": "Turn on link sharing", + "link_sharing_is_on": "Link sharing is on", + "turn_off_link_sharing": "Turn off link sharing", + "anyone_with_link_can_edit": "Anyone with this link can edit this project", + "anyone_with_link_can_view": "Anyone with this link can view this project", + "turn_on_link_sharing_consequences": "When link sharing is enabled, anyone with the relevant link will be able to access or edit this project", + "turn_off_link_sharing_consequences": "When link sharing is disabled, only people who are invited to this project will be have access", + "autocompile_disabled": "Autocompile disabled", + "autocompile_disabled_reason": "Due to high server load, background recompilation has been temporarily disabled. Please recompile by clicking the button above.", + "auto_compile_onboarding_description": "When enabled, your project will compile as you type.", + "try_out_auto_compile_setting": "Try out the new auto compile setting!", + "got_it": "Got it", + "pdf_compile_in_progress_error": "Compile already running in another window", + "pdf_compile_try_again": "Please wait for your other compile to finish before trying again.", + "invalid_email": "An email address is invalid", + "auto_compile": "Auto Compile", + "on": "On", + "tc_everyone": "Everyone", + "per_user_tc_title": "Per-user Track Changes", + "you_can_use_per_user_tc": "Now you can use Track Changes on a per-user basis", + "turn_tc_on_individuals": "Turn Track Changes on for individuals users", + "keep_tc_on_like_before": "Or keep it on for everyone, like before", + "auto_close_brackets": "Auto-close Brackets", + "auto_pair_delimiters": "Auto-Pair Delimiters", + "successfull_dropbox_link": "Dropbox successfully linked, Redirecting to settings page.", + "show_link": "Show Link", + "hide_link": "Hide Link", + "aggregate_changed": "Changed", + "aggregate_to": "to", + "confirm_password_to_continue": "Confirm password to continue", + "confirm_password_footer": "We won't ask for your password again for a while.", + "accept_all": "Accept all", + "reject_all": "Reject all", + "bulk_accept_confirm": "Are you sure you want to accept the selected __nChanges__ changes?", + "bulk_reject_confirm": "Are you sure you want to reject the selected __nChanges__ changes?", + "uncategorized": "Uncategorized", + "pdf_compile_rate_limit_hit": "Compile rate limit hit", + "project_flagged_too_many_compiles": "This project has been flagged for compiling too often. The limit will be lifted shortly.", + "reauthorize_github_account": "Reauthorize your GitHub Account", + "github_credentials_expired": "Your GitHub authorization credentials have expired", + "hit_enter_to_reply": "Hit Enter to reply", + "add_your_comment_here": "Add your comment here", + "resolved_comments": "Resolved comments", + "try_it_for_free": "Try it for free", + "please_ask_the_project_owner_to_upgrade_to_track_changes": "Please ask the project owner to upgrade to use track changes", + "mark_as_resolved": "Mark as resolved", + "reopen": "Re-open", + "add_comment": "Add comment", + "no_resolved_threads": "No resolved threads", + "upgrade_to_track_changes": "Upgrade to Track Changes", + "see_changes_in_your_documents_live": "See changes in your documents, live", + "track_any_change_in_real_time": "Track any change, in real-time", + "review_your_peers_work": "Review your peers' work", + "accept_or_reject_each_changes_individually": "Accept or reject each change individually", + "accept": "Accept", + "reject": "Reject", + "no_comments": "No comments", + "edit": "Edit", + "are_you_sure": "Are you sure?", + "resolve": "Resolve", + "reply": "Reply", + "quoted_text_in": "Quoted text in", + "review": "Review", + "track_changes_is_on": "Track changes is on", + "track_changes_is_off": "Track changes is off", + "current_file": "Current file", + "overview": "Overview", + "tracked_change_added": "Added", + "tracked_change_deleted": "Deleted", + "show_all": "show all", + "show_less": "show less", + "dropbox_sync_error": "Dropbox Sync Error", + "send": "Send", + "sending": "Sending", + "invalid_password": "Invalid Password", + "error": "Error", + "other_actions": "Other Actions", + "send_test_email": "Send a test email", + "email_sent": "Email Sent", + "create_first_admin_account": "Create the first Admin account", + "ldap": "LDAP", + "ldap_create_admin_instructions": "Choose an email address for the first __appName__ admin account. This should correspond to an account in the LDAP system. You will then be asked to log in with this account.", + "saml": "SAML", + "saml_create_admin_instructions": "Choose an email address for the first __appName__ admin account. This should correspond to an account in the SAML system. You will then be asked to log in with this account.", + "admin_user_created_message": "Created admin user, Log in here to continue", + "status_checks": "Status Checks", + "editor_resources": "Editor Resources", + "checking": "Checking", + "cannot_invite_self": "Can't send invite to yourself", + "cannot_invite_non_user": "Can't send invite. Recipient must already have a __appName__ account", + "log_in_with": "Log in with __provider__", + "return_to_login_page": "Return to Login page", + "login_failed": "Login failed", + "delete_account_warning_message_3": "You are about to permanently delete all of your account data, including your projects and settings. Please type your account email address and password in the boxes below to proceed.", + "delete_account_warning_message_2": "You are about to permanently delete all of your account data, including your projects and settings. Please type your account email address into the box below to proceed.", + "your_sessions": "Your Sessions", + "clear_sessions_description": "This is a list of other sessions (logins) which are active on your account, not including your current session. Click the \"Clear Sessions\" button below to log them out.", + "no_other_sessions": "No other sessions active", + "ip_address": "IP Address", + "session_created_at": "Session Created At", + "clear_sessions": "Clear Sessions", + "clear_sessions_success": "Sessions Cleared", + "sessions": "Sessions", + "manage_sessions": "Manage Your Sessions", + "syntax_validation": "Code check", + "history": "History", + "joining": "Joining", + "open_project": "Open Project", + "files_cannot_include_invalid_characters": "File name is empty or contains invalid characters", + "invalid_file_name": "Invalid File Name", + "autocomplete_references": "Reference Autocomplete (inside a \\cite{} block)", + "autocomplete": "Autocomplete", + "failed_compile_check": "It looks like your project has some fatal syntax errors that you should fix before we compile it", + "failed_compile_check_try": "Try compiling anyway", + "failed_compile_option_or": "or", + "failed_compile_check_ignore": "turn off syntax checking", + "compile_time_checks": "Syntax Checks", + "stop_on_validation_error": "Check syntax before compile", + "ignore_validation_errors": "Don't check syntax", + "run_syntax_check_now": "Run syntax check now", + "your_billing_details_were_saved": "Your billing details were saved", + "security_code": "Security code", + "paypal_upgrade": "To upgrade, click on the button below and log on to PayPal using your email and password.", + "upgrade_cc_btn": "Upgrade now, pay after 7 days", + "upgrade_paypal_btn": "Continue", + "notification_project_invite": "__userName__ would like you to join __projectName__ Join Project", + "file_restored": "Your file (__filename__) has been recovered.", + "file_restored_back_to_editor": "You can go back to the editor and work on it again.", + "file_restored_back_to_editor_btn": "Back to editor", + "view_project": "View Project", + "join_project": "Join Project", + "invite_not_accepted": "Invite not yet accepted", + "resend": "Resend", + "syntax_check": "Syntax check", + "revoke_invite": "Revoke Invite", + "pending": "Pending", + "invite_not_valid": "This is not a valid project invite", + "invite_not_valid_description": "The invite may have expired. Please contact the project owner", + "accepting_invite_as": "You are accepting this invite as", + "accept_invite": "Accept invite", + "log_hint_ask_extra_feedback": "Can you help us understand why this hint wasn't helpful?", + "log_hint_extra_feedback_didnt_understand": "I didn’t understand the hint", + "log_hint_extra_feedback_not_applicable": "I can’t apply this solution to my document", + "log_hint_extra_feedback_incorrect": "This doesn’t fix the error", + "log_hint_extra_feedback_other": "Other:", + "log_hint_extra_feedback_submit": "Submit", + "if_you_are_registered": "If you are already registered", + "stop_compile": "Stop compilation", + "terminated": "Compilation cancelled", + "compile_terminated_by_user": "The compile was cancelled using the 'Stop Compilation' button. You can view the raw logs to see where the compile stopped.", + "site_description": "An online LaTeX editor that's easy to use. No installation, real-time collaboration, version control, hundreds of LaTeX templates, and more.", + "knowledge_base": "knowledge base", + "contact_message_label": "Message", + "kb_suggestions_enquiry": "Have you checked our __kbLink__?", + "answer_yes": "Yes", + "answer_no": "No", + "log_hint_extra_info": "Learn more", + "log_hint_feedback_label": "Was this hint helpful?", + "log_hint_feedback_gratitude": "Thank you for your feedback!", + "recompile_pdf": "Recompile the PDF", + "about_paulo_reis": "is a front-end software developer and user experience researcher living in Aveiro, Portugal. Paulo has a PhD in user experience and is passionate about shaping technology towards human usage — either in concept or testing/validation, in design or implementation.", + "login_or_password_wrong_try_again": "Your login or password is incorrect. Please try again", + "manage_beta_program_membership": "Manage Beta Program Membership", + "beta_program_opt_out_action": "Opt-Out of Beta Program", + "disable_beta": "Disable Beta", + "beta_program_badge_description": "While using __appName__, you will see beta features marked with this badge:", + "beta_program_current_beta_features_description": "We are currently testing the following new features in beta:", + "enable_beta": "Enable Beta", + "user_in_beta_program": "User is participating in Beta Program", + "beta_program_already_participating": "You are enrolled in the Beta Program", + "sharelatex_beta_program": "__appName__ Beta Program", + "beta_program_benefits": "We're always improving __appName__. By joining our Beta program you can have early access to new features and help us understand your needs better.", + "beta_program_opt_in_action": "Opt-In to Beta Program", + "conflicting_paths_found": "Conflicting Paths Found", + "following_paths_conflict": "The following files & folders conflict with the same path", + "open_a_file_on_the_left": "Open a file on the left", + "reference_error_relink_hint": "If this error persists, try re-linking your account here:", + "pdf_rendering_error": "PDF Rendering Error", + "something_went_wrong_rendering_pdf": "Something went wrong while rendering this PDF.", + "mendeley_reference_loading_error_expired": "Mendeley token expired, please re-link your account", + "zotero_reference_loading_error_expired": "Zotero token expired, please re-link your account", + "mendeley_reference_loading_error_forbidden": "Could not load references from Mendeley, please re-link your account and try again", + "zotero_reference_loading_error_forbidden": "Could not load references from Zotero, please re-link your account and try again", + "mendeley_integration": "Mendeley Integration", + "mendeley_sync_description": "With Mendeley integration you can import your references from Mendeley into your __appName__ projects.", + "mendeley_is_premium": "Mendeley Integration is a premium feature", + "link_to_mendeley": "Link to Mendeley", + "unlink_to_mendeley": "Unlink Mendeley", + "mendeley_reference_loading": "Loading references from Mendeley", + "mendeley_reference_loading_success": "Loaded references from Mendeley", + "mendeley_reference_loading_error": "Error, could not load references from Mendeley", + "zotero_integration": "Zotero Integration.", + "zotero_sync_description": "With Zotero integration you can import your references from Zotero into your __appName__ projects.", + "zotero_is_premium": "Zotero Integration is a premium feature", + "link_to_zotero": "Link to Zotero", + "unlink_to_zotero": "Unlink Zotero", + "zotero_reference_loading": "Loading references from Zotero", + "zotero_reference_loading_success": "Loaded references from Zotero", + "zotero_reference_loading_error": "Error, could not load references from Zotero", + "reference_import_button": "Import References to", + "unlink_reference": "Unlink References Provider", + "unlink_warning_reference": "Warning: When you unlink your account from this provider you will not be able to import references into your projects.", + "mendeley": "Mendeley", + "zotero": "Zotero", + "suggest_new_doc": "Suggest new doc", + "request_sent_thank_you": "Your contact request has been sent. It will be reviewed by our support staff and you will receive a reply via email.", + "suggestion": "Suggestion", + "project_url": "Affected project URL", + "subject": "Subject", + "confirm": "Confirm", + "cancel_personal_subscription_first": "You already have a personal subscription, would you like us to cancel this first before joining the group licence?", + "delete_projects": "Delete Projects", + "leave_projects": "Leave Projects", + "delete_and_leave_projects": "Delete and Leave Projects", + "too_recently_compiled": "This project was compiled very recently, so this compile has been skipped.", + "clsi_maintenance": "The compile servers are down for maintenance, and will be back shortly.", + "references_search_hint": "Press CTRL-Space to Search", + "ask_proj_owner_to_upgrade_for_references_search": "Please ask the project owner to upgrade to use the References Search feature.", + "ask_proj_owner_to_upgrade_for_faster_compiles": "Please ask the project owner to upgrade for faster compiles and to increase the timeout limit.", + "search_bib_files": "Search by author, title, year", + "leave_group": "Leave group", + "leave_now": "Leave now", + "sure_you_want_to_leave_group": "Are you sure you want to leave this group?", + "notification_group_invite": "You have been invited to join the __groupName__, Join Here.", + "search_references": "Search the .bib files in this project", + "no_search_results": "No Search Results", + "email_already_registered": "This email is already registered", + "compile_mode": "Compile Mode", + "normal": "Normal", + "fast": "Fast", + "rename_folder": "Rename Folder", + "delete_folder": "Delete Folder", + "about_to_delete_folder": "You are about to delete the following folders (any projects in them will not be deleted):", + "to_modify_your_subscription_go_to": "To modify your subscription go to", + "manage_subscription": "Manage Subscription", + "activate_account": "Activate your account", + "yes_please": "Yes Please!", + "nearly_activated": "You're one step away from activating your __appName__ account!", + "please_set_a_password": "Please set a password", + "activation_token_expired": "Your activation token has expired, you will need to get another one sent to you.", + "activate": "Activate", + "activating": "Activating", + "ill_take_it": "I'll take it!", + "cancel_your_subscription": "Stop Your Subscription", + "no_thanks_cancel_now": "No thanks - I still want to Cancel Now", + "cancel_my_account": "Cancel my subscription", + "sure_you_want_to_cancel": "Are you sure you want to cancel?", + "i_want_to_stay": "I want to stay", + "have_more_days_to_try": "Have another __days__ days on your Trial!", + "interested_in_cheaper_plan": "Would you be interested in the cheaper __price__ student plan?", + "session_expired_redirecting_to_login": "Session Expired. Redirecting to login page in __seconds__ seconds", + "maximum_files_uploaded_together": "Maximum __max__ files uploaded together", + "too_many_files_uploaded_throttled_short_period": "Too many files uploaded, your uploads have been throttled for short period.", + "compile_larger_projects": "Compile larger projects", + "upgrade_to_get_feature": "Upgrade to get __feature__, plus:", + "new_group": "New Group", + "about_to_delete_groups": "You are about to delete the following groups:", + "removing": "Removing", + "adding": "Adding", + "groups": "Groups", + "rename_group": "Rename Group", + "renaming": "Renaming", + "create_group": "Create Group", + "delete_group": "Delete Group", + "delete_groups": "Delete Groups", + "your_groups": "Your Groups", + "group_name": "Group Name", + "no_groups": "No Groups", + "Subscription": "Subscription", + "Documentation": "Documentation", + "Universities": "Universities", + "Account Settings": "Account Settings", + "Projects": "Projects", + "Account": "Account", + "global": "global", + "Terms": "Terms", + "Security": "Security", + "About": "About", + "editor_disconected_click_to_reconnect": "Editor disconnected, click anywhere to reconnect.", + "word_count": "Word Count", + "please_compile_pdf_before_word_count": "Please compile your project before performing a word count", + "total_words": "Total Words", + "headers": "Headers", + "math_inline": "Math Inline", + "math_display": "Math Display", + "connected_users": "Connected Users", + "projects": "Projects", + "upload_project": "Upload Project", + "all_projects": "All Projects", + "your_projects": "Your Projects", + "shared_with_you": "Shared with you", + "deleted_projects": "Deleted Projects", + "templates": "Templates", + "new_folder": "New Folder", + "create_your_first_project": "Create your first project!", + "complete": "Complete", + "on_free_sl": "You are using the free version of __appName__", + "upgrade": "Upgrade", + "or_unlock_features_bonus": "or unlock some free bonus features by", + "sharing_sl": "sharing __appName__", + "add_to_folder": "Add to folder", + "create_new_folder": "Create New Folder", + "more": "More", + "rename": "Rename", + "make_copy": "Make a copy", + "restore": "Restore", + "title": "Title", + "last_modified": "Last Modified", + "no_projects": "No projects", + "welcome_to_sl": "Welcome to __appName__!", + "new_to_latex_look_at": "New to LaTeX? Start by having a look at our", + "or": "or", + "or_create_project_left": "or create your first project on the left.", + "thanks_settings_updated": "Thanks, your settings have been updated.", + "update_account_info": "Update Account Info", + "must_be_email_address": "Must be an email address", + "first_name": "First Name", + "last_name": "Last Name", + "update": "Update", + "change_password": "Change Password", + "current_password": "Current Password", + "new_password": "New Password", + "confirm_new_password": "Confirm New Password", + "required": "Required", + "doesnt_match": "Doesn't match", + "dropbox_integration": "Dropbox Integration", + "learn_more": "Learn more", + "dropbox_is_premium": "Dropbox sync is a premium feature", + "account_is_linked": "Account is linked", + "unlink_dropbox": "Unlink Dropbox", + "link_to_dropbox": "Link to Dropbox", + "newsletter_info_and_unsubscribe": "Every few months we send a newsletter out summarizing the new features available. If you would prefer not to receive this email then you can unsubscribe at any time:", + "unsubscribed": "Unsubscribed", + "unsubscribing": "Unsubscribing", + "unsubscribe": "Unsubscribe", + "need_to_leave": "Need to leave?", + "delete_your_account": "Delete your account", + "delete_account": "Delete Account", + "delete_account_warning_message": "You are about to permanently delete all of your account data, including your projects and settings. Please type your account email address into the box below to proceed.", + "deleting": "Deleting", + "delete": "Delete", + "sl_benefits_plans": "__appName__ is the world's easiest to use LaTeX editor. Stay up to date with your collaborators, keep track of all changes to your work, and use our LaTeX environment from anywhere in the world.", + "monthly": "Monthly", + "personal": "Personal", + "free": "Free", + "one_collaborator": "Only one collaborator", + "collaborator": "Collaborator", + "collabs_per_proj": "__collabcount__ collaborators per project", + "full_doc_history": "Full document history", + "sync_to_dropbox": "Sync to Dropbox", + "start_free_trial": "Start Free Trial!", + "professional": "Professional", + "unlimited_collabs": "Unlimited collaborators", + "name": "Name", + "student": "Student", + "university": "University", + "position": "Position", + "choose_plan_works_for_you": "Choose the plan that works for you with our __len__-day free trial. Cancel at any time.", + "interested_in_group_licence": "Interested in using __appName__ with a group, team or department wide account?", + "get_in_touch_for_details": "Get in touch for details!", + "group_plan_enquiry": "Group Plan Enquiry", + "enjoy_these_features": "Enjoy all of these great features", + "create_unlimited_projects": "Create as many projects as you need.", + "never_loose_work": "Never lose a step, we've got your back.", + "access_projects_anywhere": "Access your projects everywhere.", + "log_in": "Log In", + "login": "Login", + "logging_in": "Logging in", + "forgot_your_password": "Forgot your password", + "password_reset": "Password Reset", + "password_reset_email_sent": "You have been sent an email to complete your password reset.", + "please_enter_email": "Please enter your email address", + "request_password_reset": "Request password reset", + "reset_your_password": "Reset your password", + "password_has_been_reset": "Your password has been reset", + "login_here": "Login here", + "set_new_password": "Set new password", + "user_wants_you_to_see_project": "__username__ would like you to join __projectname__", + "join_sl_to_view_project": "Join __appName__ to view this project", + "register_to_edit_template": "Please register to edit the __templateName__ template", + "already_have_sl_account": "Already have a __appName__ account?", + "register": "Register", + "password": "Password", + "registering": "Registering", + "planned_maintenance": "Planned Maintenance", + "no_planned_maintenance": "There is currently no planned maintenance", + "cant_find_page": "Sorry, we can't find the page you are looking for.", + "take_me_home": "Take me home!", + "no_preview_available": "Sorry, no preview is available.", + "no_messages": "No messages", + "send_first_message": "Send your first message to your collaborators", + "account_not_linked_to_dropbox": "Your account is not linked to Dropbox", + "update_dropbox_settings": "Update Dropbox Settings", + "refresh_page_after_starting_free_trial": "Please refresh this page after starting your free trial.", + "checking_dropbox_status": "checking Dropbox status", + "dismiss": "Dismiss", + "deleted_files": "Deleted Files", + "new_file": "New File", + "upload_file": "Upload File", + "create": "Create", + "creating": "Creating", + "upload_files": "Upload File(s)", + "sure_you_want_to_delete": "Are you sure you want to permanently delete the following files?", + "common": "Common", + "navigation": "Navigation", + "editing": "Editing", + "ok": "OK", + "source": "Source", + "actions": "Actions", + "copy_project": "Copy Project", + "publish_as_template": "Publish as Template", + "sync": "Sync", + "settings": "Settings", + "main_document": "Main document", + "off": "Off", + "auto_complete": "Auto-complete", + "theme": "Theme", + "font_size": "Font Size", + "pdf_viewer": "PDF Viewer", + "built_in": "Built-In", + "native": "Native", + "show_hotkeys": "Show Hotkeys", + "new_name": "New Name", + "copying": "Copying", + "copy": "Copy", + "compiling": "Compiling", + "click_here_to_preview_pdf": "Click here to preview your work as a PDF.", + "server_error": "Server Error", + "somthing_went_wrong_compiling": "Sorry, something went wrong and your project could not be compiled. Please try again in a few moments.", + "timedout": "Timed out", + "proj_timed_out_reason": "Sorry, your compile took too long to run and timed out. This may be due to a LaTeX error, or a large number of high-res images or complicated diagrams.", + "no_errors_good_job": "No errors, good job!", + "compile_error": "Compile Error", + "generic_failed_compile_message": "Sorry, your LaTeX code couldn't compile for some reason. Please check the errors below for details, or view the raw log", + "other_logs_and_files": "Other logs & files", + "view_raw_logs": "View Raw Logs", + "hide_raw_logs": "Hide Raw Logs", + "clear_cache": "Clear cache", + "clear_cache_explanation": "This will clear all hidden LaTeX files (.aux, .bbl, etc) from our compile server. You generally don't need to do this unless you're having trouble with references.", + "clear_cache_is_safe": "Your project files will not be deleted or changed.", + "clearing": "Clearing", + "template_description": "Template Description", + "project_last_published_at": "Your project was last published at", + "problem_talking_to_publishing_service": "There is a problem with our publishing service, please try again in a few minutes", + "unpublishing": "Unpublishing", + "republish": "Republish", + "publishing": "Publishing", + "share_project": "Share Project", + "this_project_is_private": "This project is private and can only be accessed by the people below.", + "make_public": "Make Public", + "this_project_is_public": "This project is public and can be edited by anyone with the URL.", + "make_private": "Make Private", + "can_edit": "Can Edit", + "share_with_your_collabs": "Share with your collaborators", + "share": "Share", + "need_to_upgrade_for_more_collabs": "You need to upgrade your account to add more collaborators", + "make_project_public": "Make project public", + "make_project_public_consequences": "If you make your project public then anyone with the URL will be able to access it.", + "allow_public_editing": "Allow public editing", + "allow_public_read_only": "Allow public read only access", + "make_project_private": "Disable link-sharing", + "make_project_private_consequences": "If you make your project private then only the people you choose to share it with will have access.", + "need_to_upgrade_for_history": "You need to upgrade your account to use the History feature.", + "ask_proj_owner_to_upgrade_for_history": "Please ask the project owner to upgrade to use the History feature.", + "anonymous": "Anonymous", + "generic_something_went_wrong": "Sorry, something went wrong", + "restoring": "Restoring", + "restore_to_before_these_changes": "Restore to before these changes", + "profile_complete_percentage": "Your profile is __percentval__% complete", + "file_has_been_deleted": "__filename__ has been deleted", + "sure_you_want_to_restore_before": "Are you sure you want to restore __filename__ to before the changes on __date__?", + "rename_project": "Rename Project", + "about_to_delete_projects": "You are about to delete the following projects:", + "about_to_leave_projects": "You are about to leave the following projects:", + "upload_zipped_project": "Upload Zipped Project", + "upload_a_zipped_project": "Upload a zipped project", + "your_profile": "Your Profile", + "institution": "Institution", + "role": "Role", + "folders": "Folders", + "disconnected": "Disconnected", + "please_refresh": "Please refresh the page to continue.", + "lost_connection": "Lost Connection", + "reconnecting_in_x_secs": "Reconnecting in __seconds__ secs", + "try_now": "Try Now", + "reconnecting": "Reconnecting", + "saving_notification_with_seconds": "Saving __docname__... (__seconds__ seconds of unsaved changes)", + "help_us_spread_word": "Help us spread the word about __appName__", + "share_sl_to_get_rewards": "Share __appName__ with your friends and colleagues and unlock the rewards below", + "post_on_facebook": "Post on Facebook", + "share_us_on_googleplus": "Share us on Google+", + "email_us_to_your_friends": "Email us to your friends", + "link_to_us": "Link to us from your website", + "direct_link": "Direct Link", + "sl_gives_you_free_stuff_see_progress_below": "When someone starts using __appName__ after your recommendation we'll give you some free stuff to say thanks! Check your progress below.", + "spread_the_word_and_fill_bar": "Spread the word and fill this bar up", + "one_free_collab": "One free collaborator", + "three_free_collab": "Three free collaborators", + "free_dropbox_and_history": "Free Dropbox and History", + "you_not_introed_anyone_to_sl": "You've not introduced anyone to __appName__ yet. Get sharing!", + "you_introed_small_number": " You've introduced __numberOfPeople__ person to __appName__. Good job, but can you get some more?", + "you_introed_high_number": " You've introduced __numberOfPeople__ people to __appName__. Good job!", + "link_to_sl": "Link to __appName__", + "can_link_to_sl_with_html": "You can link to __appName__ with the following HTML:", + "year": "year", + "month": "month", + "subscribe_to_this_plan": "Subscribe to this plan", + "your_plan": "Your plan", + "your_subscription": "Your Subscription", + "on_free_trial_expiring_at": "You are currently using a free trial which expires on __expiresAt__.", + "choose_a_plan_below": "Choose a plan below to subscribe to.", + "currently_subscribed_to_plan": "You are currently subscribed to the __planName__ plan.", + "change_plan": "Change plan", + "next_payment_of_x_collectected_on_y": "The next payment of __paymentAmmount__ will be collected on __collectionDate__.", + "update_your_billing_details": "Update Your Billing Details", + "subscription_canceled_and_terminate_on_x": " Your subscription has been canceled and will terminate on __terminateDate__. No further payments will be taken.", + "your_subscription_has_expired": "Your subscription has expired.", + "create_new_subscription": "Create New Subscription", + "problem_with_subscription_contact_us": "There is a problem with your subscription. Please contact us for more information.", + "manage_group": "Manage Group", + "loading_billing_form": "Loading billing details form", + "you_have_added_x_of_group_size_y": "You have added __addedUsersSize__ of __groupSize__ available members", + "remove_from_group": "Remove from group", + "group_account": "Group Account", + "registered": "Registered", + "no_members": "No members", + "add_more_members": "Add more members", + "add": "Add", + "thanks_for_subscribing": "Thanks for subscribing!", + "your_card_will_be_charged_soon": "Your card will be charged soon.", + "if_you_dont_want_to_be_charged": "If you do not want to be charged again ", + "add_your_first_group_member_now": "Add your first group members now", + "thanks_for_subscribing_you_help_sl": "Thank you for subscribing to the __planName__ plan. It's support from people like yourself that allows __appName__ to continue to grow and improve.", + "back_to_your_projects": "Back to your projects", + "goes_straight_to_our_inboxes": "It goes straight to both our inboxes", + "need_anything_contact_us_at": "If there is anything you ever need please feel free to contact us directly at", + "regards": "Regards", + "about": "About", + "comment": "Comment", + "restricted_no_permission": "Restricted, sorry you don't have permission to load this page.", + "online_latex_editor": "Online LaTeX Editor", + "meet_team_behind_latex_editor": "Meet the team behind your favourite online LaTeX editor.", + "follow_me_on_twitter": "Follow me on Twitter", + "motivation": "Motivation", + "evolved": "Evolved", + "the_easy_online_collab_latex_editor": "The easy to use, online, collaborative LaTeX editor", + "get_started_now": "Get started now", + "sl_used_over_x_people_at": "__appName__ is used by over __numberOfUsers__ students and academics at:", + "collaboration": "Collaboration", + "work_on_single_version": "Work together on a single version", + "view_collab_edits": "View collaborator edits ", + "ease_of_use": " Ease of Use", + "no_complicated_latex_install": "No complicated LaTeX installation", + "all_packages_and_templates": "All the packages and __templatesLink__ you need", + "document_history": "Document history", + "see_what_has_been": "See what has been ", + "added": "added", + "and": "and", + "removed": "removed", + "restore_to_any_older_version": "Restore to any older version", + "work_from_anywhere": "Work from anywhere", + "acces_work_from_anywhere": "Access your work from anywhere in the world", + "work_offline_and_sync_with_dropbox": "Work offline and sync your files via Dropbox and GitHub", + "over": "over", + "view_templates": "View templates", + "nothing_to_install_ready_to_go": "There's nothing complicated or difficult for you to install, and you can __start_now__, even if you've never seen it before. __appName__ comes with a complete, ready to go LaTeX environment which runs on our servers.", + "start_using_latex_now": "start using LaTeX right now", + "get_same_latex_setup": "With __appName__ you get the same LaTeX set-up wherever you go. By working with your colleagues and students on __appName__, you know that you're not going to hit any version inconsistencies or package conflicts.", + "support_lots_of_features": "We support almost all LaTeX features, including inserting images, bibliographies, equations, and much more! Read about all the exciting things you can do with __appName__ in our __help_guides_link__", + "latex_guides": "LaTeX guides", + "reset_password": "Reset Password", + "set_password": "Set Password", + "updating_site": "Updating Site", + "bonus_please_recommend_us": "Bonus - Please recommend us", + "admin": "admin", + "subscribe": "Subscribe", + "update_billing_details": "Update Billing Details", + "thank_you": "Thank You", + "group_admin": "Group Admin", + "all_templates": "All Templates", + "your_settings": "Your settings", + "maintenance": "Maintenance", + "to_many_login_requests_2_mins": "This account has had too many login requests. Please wait 2 minutes before trying to log in again", + "email_or_password_wrong_try_again": "Your email or password is incorrect. Please try again", + "rate_limit_hit_wait": "Rate limit hit. Please wait a while before retrying", + "problem_changing_email_address": "There was a problem changing your email address. Please try again in a few moments. If the problem continues please contact us.", + "single_version_easy_collab_blurb": "__appName__ makes sure that you're always up to date with your collaborators and what they are doing. There is only a single master version of each document which everyone has access to. It's impossible to make conflicting changes, and you don't have to wait for your colleagues to send you the latest draft before you can keep working.", + "can_see_collabs_type_blurb": "If multiple people want to work on a document at the same time then that's no problem. You can see where your colleagues are typing directly in the editor and their changes show up on your screen immediately.", + "work_directly_with_collabs": "Work directly with your collaborators", + "work_with_word_users": "Work with Word users", + "work_with_word_users_blurb": "__appName__ is so easy to get started with that you'll be able to invite your non-LaTeX colleagues to contribute directly to your LaTeX documents. They'll be productive from day one and be able to pick up small amounts of LaTeX as they go.", + "view_which_changes": "View which changes have been", + "sl_included_history_of_changes_blurb": "__appName__ includes a history of all of your changes so you can see exactly who changed what, and when. This makes it extremely easy to keep up to date with any progress made by your collaborators and allows you to review recent work.", + "can_revert_back_blurb": "In a collaboration or on your own, sometimes mistakes are made. Reverting back to previous versions is simple and removes the risk of losing work or regretting a change.", + "start_using_sl_now": "Start using __appName__ now", + "over_x_templates_easy_getting_started": "There are thousands of __templates__ in our template gallery, so it's really easy to get started, whether you're writing a journal article, thesis, CV or something else.", + "done": "Done", + "change": "Change", + "page_not_found": "Page Not Found", + "please_see_help_for_more_info": "Please see our help guide for more information", + "this_project_will_appear_in_your_dropbox_folder_at": "This project will appear in your Dropbox folder at ", + "member_of_group_subscription": "You are a member of a group subscription managed by __admin_email__. Please contact them to manage your subscription.\n", + "about_henry_oswald": "is a software engineer living in London. He built the original prototype of __appName__ and has been responsible for building a stable and scalable platform. Henry is a strong advocate of Test Driven Development and makes sure we keep the __appName__ code clean and easy to maintain.", + "about_james_allen": "has a PhD in theoretical physics and is passionate about LaTeX. He created one of the first online LaTeX editors, ScribTeX, and has played a large role in developing the technologies that make __appName__ possible.", + "two_strong_principles_behind_sl": "There are two strong driving principles behind our work on __appName__:", + "want_to_improve_workflow_of_as_many_people_as_possible": "We want to improve the workflow of as many people as possible.", + "detail_on_improve_peoples_workflow": "LaTeX is notoriously hard to use, and collaboration is always difficult to coordinate. We believe that we've developed some great solutions to help people who face these problems, and we want to make sure that __appName__ is accessible to as many people as possible. We've tried to keep our pricing fair, and have released much of __appName__ as open source so that anyone can host their own.", + "want_to_create_sustainable_lasting_legacy": "We want to create a sustainable and lasting legacy.", + "details_on_legacy": "Development and maintenance of a product like __appName__ takes a lot of time and work, so it's important that we can find a business model that will support this both now, and in the long term. We don't want __appName__ to be dependent on external funding or disappear due to a failed business model. I'm pleased to say that we're currently able to run __appName__ profitably and sustainably, and expect to be able to do so in the long term.", + "get_in_touch": "Get in touch", + "want_to_hear_from_you_email_us_at": "We'd love to hear from anyone who is using __appName__, or wants to have a chat about what we're doing. You can get in touch with us at ", + "cant_find_email": "That email address is not registered, sorry.", + "plans_amper_pricing": "Plans & Pricing", + "documentation": "Documentation", + "account": "Account", + "subscription": "Subscription", + "log_out": "Log Out", + "en": "English", + "pt": "Portuguese", + "es": "Spanish", + "fr": "French", + "de": "German", + "it": "Italian", + "da": "Danish", + "sv": "Swedish", + "no": "Norwegian", + "nl": "Dutch", + "pl": "Polish", + "ru": "Russian", + "uk": "Ukrainian", + "ro": "Romanian", + "click_here_to_view_sl_in_lng": "Click here to use __appName__ in __lngName__", + "language": "Language", + "upload": "Upload", + "menu": "Menu", + "full_screen": "Full screen", + "logs_and_output_files": "Logs and output files", + "download_pdf": "Download PDF", + "split_screen": "Split screen", + "clear_cached_files": "Clear cached files", + "go_to_code_location_in_pdf": "Go to code location in PDF", + "please_compile_pdf_before_download": "Please compile your project before downloading the PDF", + "remove_collaborator": "Remove collaborator", + "add_to_folders": "Add to folders", + "download_zip_file": "Download .zip File", + "price": "Price", + "close": "Close", + "keybindings": "Keybindings", + "restricted": "Restricted", + "start_x_day_trial": "Start Your __len__-Day Free Trial Today!", + "buy_now": "Buy Now!", + "cs": "Czech", + "view_all": "View All", + "terms": "Terms", + "privacy": "Privacy", + "contact": "Contact", + "change_to_this_plan": "Change to this plan", + "processing": "processing", + "sure_you_want_to_change_plan": "Are you sure you want to change plan to __planName__?", + "move_to_annual_billing": "Move to Annual Billing", + "annual_billing_enabled": "Annual billing enabled", + "move_to_annual_billing_now": "Move to annual billing now", + "change_to_annual_billing_and_save": "Get __percentage__ off with annual billing. If you switch now you'll save __yearlySaving__ per year.", + "missing_template_question": "Missing Template?", + "tell_us_about_the_template": "If we are missing a template please either: Send us a copy of the template, a __appName__ url to the template or let us know where we can find the template. Also please let us know a little about the template for the description.", + "email_us": "Email us", + "this_project_is_public_read_only": "This project is public and can be viewed but not edited by anyone with the URL", + "tr": "Turkish", + "select_files": "Select file(s)", + "drag_files": "drag file(s)", + "upload_failed_sorry": "Upload failed, sorry :(", + "inserting_files": "Inserting file...", + "password_reset_token_expired": "Your password reset token has expired. Please request a new password reset email and follow the link there.", + "merge_project_with_github": "Merge Project with GitHub", + "pull_github_changes_into_sharelatex": "Pull GitHub changes into __appName__", + "push_sharelatex_changes_to_github": "Push __appName__ changes to GitHub", + "features": "Features", + "commit": "Commit", + "commiting": "Committing", + "importing_and_merging_changes_in_github": "Importing and merging changes in GitHub", + "upgrade_for_faster_compiles": "Upgrade for faster compiles and to increase your timeout limit", + "free_accounts_have_timeout_upgrade_to_increase": "Free accounts have a one minute timeout, whereas upgraded accounts have a timeout of four minutes.", + "learn_how_to_make_documents_compile_quickly": "Learn how to fix compile timeouts", + "zh-CN": "Chinese", + "cn": "Chinese (Simplified)", + "sync_to_github": "Sync to GitHub", + "sync_to_dropbox_and_github": "Sync to Dropbox and GitHub", + "project_too_large": "Project too large", + "project_too_large_please_reduce": "This project has too much editable text, please try and reduce it. The largest files are:", + "please_ask_the_project_owner_to_link_to_github": "Please ask the project owner to link this project to a GitHub repository", + "go_to_pdf_location_in_code": "Go to PDF location in code", + "ko": "Korean", + "ja": "Japanese", + "about_brian_gough": "is a software developer and former theoretical high energy physicist at Fermilab and Los Alamos. For many years he published free software manuals commercially using TeX and LaTeX and was also the maintainer of the GNU Scientific Library.", + "first_few_days_free": "First __trialLen__ days free", + "every": "per", + "credit_card": "Credit Card", + "credit_card_number": "Credit Card Number", + "invalid": "Invalid", + "expiry": "Expiry Date", + "january": "January", + "february": "February", + "march": "March", + "april": "April", + "may": "May", + "june": "June", + "july": "July", + "august": "August", + "september": "September", + "october": "October", + "november": "November", + "december": "December", + "zip_post_code": "Zip / Post Code", + "city": "City", + "address": "Address", + "coupon_code": "Coupon code", + "country": "Country", + "billing_address": "Billing Address", + "upgrade_now": "Upgrade Now", + "state": "State", + "vat_number": "VAT Number", + "you_have_joined": "You have joined __groupName__", + "claim_premium_account": "You have claimed your premium account provided by __groupName__.", + "you_are_invited_to_group": "You are invited to join __groupName__", + "you_can_claim_premium_account": "You can claim a premium account provided by __groupName__ by verifying your email", + "not_now": "Not now", + "verify_email_join_group": "Verify email and join Group", + "check_email_to_complete_group": "Please check your email to complete joining the group", + "verify_email_address": "Verify Email Address", + "group_provides_you_with_premium_account": "__groupName__ provides you with a premium account. Verifiy your email address to upgrade your account.", + "check_email_to_complete_the_upgrade": "Please check your email to complete the upgrade", + "email_link_expired": "Email link expired, please request a new one.", + "services": "Services", + "about_shane_kilkelly": "is a software developer living in Edinburgh. Shane is a strong advocate for Functional Programming, Test Driven Development and takes pride in building quality software.", + "this_is_your_template": "This is your template from your project", + "links": "Links", + "account_settings": "Account Settings", + "search_projects": "Search projects", + "clone_project": "Clone Project", + "delete_project": "Delete Project", + "download_zip": "Download Zip", + "new_project": "New Project", + "blank_project": "Blank Project", + "example_project": "Example Project", + "from_template": "From Template", + "cv_or_resume": "CV or Resume", + "cover_letter": "Cover Letter", + "journal_article": "Journal Article", + "presentation": "Presentation", + "thesis": "Thesis", + "bibliographies": "Bibliographies", + "terms_of_service": "Terms of Service", + "privacy_policy": "Privacy Policy", + "plans_and_pricing": "Plans and Pricing", + "university_licences": "University Licenses", + "security": "Security", + "contact_us": "Contact Us", + "thanks": "Thanks", + "blog": "Blog", + "latex_editor": "LaTeX Editor", + "get_free_stuff": "Get free stuff", + "chat": "Chat", + "your_message": "Your Message", + "loading": "Loading", + "connecting": "Connecting", + "recompile": "Recompile", + "download": "Download", + "email": "Email", + "owner": "Owner", + "read_and_write": "Read and Write", + "read_only": "Read Only", + "publish": "Publish", + "view_in_template_gallery": "View it in template gallery", + "description": "Description", + "unpublish": "Unpublish", + "hotkeys": "Hotkeys", + "saving": "Saving", + "cancel": "Cancel", + "project_name": "Project Name", + "root_document": "Root Document", + "spell_check": "Spell check", + "compiler": "Compiler", + "private": "Private", + "public": "Public", + "delete_forever": "Delete Forever", + "support_and_feedback": "Support and feedback", + "help": "Help", + "latex_templates": "LaTeX Templates", + "info": "Info", + "latex_help_guide": "LaTeX help guide", + "choose_your_plan": "Choose your plan", + "indvidual_plans": "Individual Plans", + "free_forever": "Free forever", + "low_priority_compile": "Low priority compiling", + "unlimited_projects": "Unlimited projects", + "unlimited_compiles": "Unlimited compiles", + "full_history_of_changes": "Full history of changes", + "highest_priority_compiling": "Highest priority compiling", + "dropbox_sync": "Dropbox Sync", + "beta": "Beta", + "sign_up_now": "Sign Up Now", + "annual": "Annual", + "half_price_student": "Half Price Student Plans", + "about_us": "About Us", + "loading_recent_github_commits": "Loading recent commits", + "no_new_commits_in_github": "No new commits in GitHub since last merge.", + "dropbox_sync_description": "Keep your __appName__ projects in sync with your Dropbox. Changes in __appName__ are automatically sent to your Dropbox, and the other way around.", + "github_sync_description": "With GitHub Sync you can link your __appName__ projects to GitHub repositories. Create new commits from __appName__, and merge with commits made offline or in GitHub.", + "github_import_description": "With GitHub Sync you can import your GitHub Repositories into __appName__. Create new commits from __appName__, and merge with commits made offline or in GitHub.", + "link_to_github_description": "You need to authorise __appName__ to access your GitHub account to allow us to sync your projects.", + "unlink": "Unlink", + "unlink_github_warning": "Any projects that you have synced with GitHub will be disconnected and no longer kept in sync with GitHub. Are you sure you want to unlink your GitHub account?", + "github_account_successfully_linked": "GitHub Account Successfully Linked!", + "github_successfully_linked_description": "Thanks, we've successfully linked your GitHub account to __appName__. You can now export your __appName__ projects to GitHub, or import projects from your GitHub repositories.", + "import_from_github": "Import from GitHub", + "github_sync_error": "Sorry, there was an error talking to our GitHub service. Please try again in a few moments.", + "loading_github_repositories": "Loading your GitHub repositories", + "select_github_repository": "Select a GitHub repository to import into __appName__.", + "import_to_sharelatex": "Import to __appName__", + "importing": "Importing", + "github_sync": "GitHub Sync", + "checking_project_github_status": "Checking project status in GitHub", + "account_not_linked_to_github": "Your account is not linked to GitHub", + "project_not_linked_to_github": "This project is not linked to a GitHub repository. You can create a repository for it in GitHub:", + "create_project_in_github": "Create a GitHub repository", + "project_synced_with_git_repo_at": "This project is synced with the GitHub repository at", + "recent_commits_in_github": "Recent commits in GitHub", + "sync_project_to_github": "Sync project to GitHub", + "sync_project_to_github_explanation": "Any changes you have made in __appName__ will be committed and merged with any updates in GitHub.", + "github_merge_failed": "Your changes in __appName__ and GitHub could not be automatically merged. Please manually merge the __sharelatex_branch__ branch into the __master_branch__ branch in git. Click below to continue, after you have manually merged.", + "continue_github_merge": "I have manually merged. Continue", + "export_project_to_github": "Export Project to GitHub", + "github_validation_check": "Please check that the repository name is valid, and that you have permission to create the repository.", + "repository_name": "Repository Name", + "optional": "Optional", + "github_public_description": "Anyone can see this repository. You choose who can commit.", + "github_commit_message_placeholder": "Commit message for changes made in __appName__...", + "merge": "Merge", + "merging": "Merging", + "github_account_is_linked": "Your GitHub account is successfully linked.", + "unlink_github": "Unlink your GitHub account", + "link_to_github": "Link to your GitHub account", + "github_integration": "GitHub Integration", + "github_is_premium": "GitHub sync is a premium feature" +} \ No newline at end of file diff --git a/services/web/locales/en-US.json b/services/web/locales/en-US.json new file mode 100644 index 0000000000..63d77e3900 --- /dev/null +++ b/services/web/locales/en-US.json @@ -0,0 +1,1282 @@ +{ + "last_login": "Last Login", + "invalid_insitituional_email": "Your institution's SSO service returned your email address as __email__, which is at an unexpected domain that we do not recognise as belonging to it. You may be able to change your primary email address via your user profile at your institution to one at your institution's domain. Please contact your IT department if you have any questions.", + "thank_you_for_being_part_of_our_beta_program": "Thank you for being part of our Beta Program, where you can have early access to new features and help us understand your needs better", + "you_will_be_able_to_contact_us_any_time_to_share_your_feedback": "You will be able to contact us any time to share your feedback", + "we_may_also_contact_you_from_time_to_time_by_email_with_a_survey": "We may also contact you from time to time by email with a survey, or to see if you would like to participate in other user research initiatives", + "you_can_opt_in_and_out_of_the_program_at_any_time_on_this_page": "You can opt in and out of the program at any time on this page", + "give_feedback": "Give feedback", + "beta_feature_badge": "Beta feature badge", + "invalid_filename": "Upload failed: check that the file name doesn't contain special characters or trailing/leading whitespace", + "clsi_unavailable": "Sorry, the compile server for your project was temporarily unavailable. Please try again in a few moments.", + "x_price_per_month": "__price__ per month", + "x_price_per_year": "__price__ per year", + "x_price_for_first_month": "__price__ for your first month", + "x_price_for_first_year": "__price__ for your first year", + "normally_x_price_per_month": "Normally __price__ per month", + "normally_x_price_per_year": "Normally __price__ per year", + "then_x_price_per_month": "Then __price__ per month", + "then_x_price_per_year": "Then __price__ per year", + "for_your_first": "for your first", + "sso_not_linked": "You have not linked your account to __provider__. Please log in to your account another way and link your __provider__ account via your account settings.", + "template_gallery": "Template Gallery", + "template_not_found_description": "This way of creating projects from templates has been removed. Please visit our template gallery to find more templates.", + "dropbox_checking_sync_status": "Checking Dropbox Integration status", + "dropbox_sync_in": "Updating Overleaf", + "dropbox_sync_out": "Updating Dropbox", + "dropbox_sync_both": "Updating Overleaf and Dropbox", + "dropbox_synced": "Overleaf and Dropbox are up-to-date", + "dropbox_sync_status_error": "An error has occurred with the Dropbox Integration", + "requesting_password_reset": "Requesting password reset", + "tex_live_version": "TeX Live version", + "email_does_not_belong_to_university": "We don't recognize that domain as being affiliated with your university. Please contact us to add the affiliation.", + "company_name": "Company Name", + "add_company_details": "Add Company Details", + "github_timeout_error": "Syncing your Overleaf project with Github has timed out. This may be due to the overall size of your project, or the number of files/changes to sync, being too large.", + "github_large_files_error": "Merge failed: your Github repository contains files over the 50mb file size limit ", + "no_history_available": "This project doesn't have any history yet. Please make some changes to the project and try again.", + "project_approaching_file_limit": "This project is approaching the file limit", + "recurly_email_updated": "Your billing email address was successfully updated", + "recurly_email_update_needed": "Your billing email address is currently __recurlyEmail__. If needed you can update your billing address to __userEmail__.", + "project_has_too_many_files": "This project has reached the 2000 file limit", + "processing_your_request": "Please wait while we process your request.", + "github_repository_diverged": "The master branch of the linked repository has been force-pushed. Pulling GitHub changes after a force push can cause Overleaf and GitHub to get out of sync. You might need to push changes after pulling to get back in sync.", + "unlink_github_repository": "Unlink Github Repository", + "unlinking": "Unlinking", + "github_no_master_branch_error": "This repository cannot be imported as it is missing the master branch. Please make sure the project has a master branch", + "confirmation_token_invalid": "Sorry, your confirmation token is invalid or has expired. Please request a new email confirmation link.", + "confirmation_link_broken": "Sorry, something is wrong with your confirmation link. Please try copy and pasting the link from the bottom of your confirmation email.", + "duplicate_file": "Duplicate File", + "file_already_exists_in_this_location": "An item named __fileName__ already exists in this location. If you wish to move this file, rename or remove the conflicting file and try again.", + "group_full": "This group is already full", + "no_selection_select_file": "Currently, no file is selected. Please select a file from the file tree.", + "no_selection_create_new_file": "Your project is currently empty. Please create a new file.", + "files_selected": "files selected.", + "home": "Home", + "this_action_cannot_be_undone": "This action cannot be undone.", + "dropbox_email_not_verified": "We have been unable to retrieve updates from your Dropbox account. Dropbox reported that your email address is unverified. Please verify your email address in your Dropbox account to resolve this.", + "link_email_to_join": "Link your institutional email to join __portalTitle__ on __appName__", + "token_access_success": "Access granted", + "token_access_failure": "Cannot grant access; contact the project owner for help", + "trashed_projects": "Trashed Projects", + "trash": "Trash", + "untrash": "Restore", + "delete_and_leave": "Delete / Leave", + "trash_projects": "Trash Projects", + "about_to_trash_projects": "You are about to trash the following projects:", + "archived_projects_info_note": "The Archive now works on a per-user basis. Projects that you decide to archive will only be archived for you, not your collaborators.", + "trashed_projects_info_note": "Overleaf now has a Trash for projects you want to get rid of. Trashing a project won't affect your collaborators.", + "register_intercept_sso": "You can link your __authProviderName__ account from the Account Settings page after logging in.", + "continue_to": "Continue to __appName__", + "project_ownership_transfer_confirmation_1": "Are you sure you want to make __user__ the owner of __project__?", + "project_ownership_transfer_confirmation_2": "This action cannot be undone. The new owner will be notified and will be able to change project access settings (including removing your own access).", + "change_owner": "Change owner", + "change_project_owner": "Change Project Owner", + "faq_pay_by_invoice_answer": "Yes, if you'd like to purchase a group account or site license and would prefer to pay by invoice,\r\nor need to raise a purchase order, please __payByInvoiceLinkOpen__let us know__payByInvoiceLinkClose__.\r\nFor individual accounts or accounts with monthly billing, we can only accept payment online\r\nvia credit or debit card, or PayPal.", + "password_too_long_please_reset": "Maximum password length exceeded. Please reset your password.", + "view_other_options_to_log_in": "View other options to log in", + "we_logged_you_in": "We have logged you in.", + "will_need_to_log_out_from_and_in_with": "You will need to log out from your __email1__ account and then log in with __email2__.", + "resubmit_institutional_email": "Please resubmit your institutional email.", + "opted_out_linking": "You've opted out from linking your __email__ __appName__ account to your institutional account.", + "please_link_to_institution_account": "Please link your __email__ __appName__ account to your __institutionName__ institutional account.", + "register_with_another_email": "Register with __appName__ using another email.", + "register_with_email_provided": "Register with __appName__ using the email and password you provided.", + "security_reasons_linked_accts": "For security reasons, as your institutional email is already associated with the __email__ __appName__ account, we can only allow account linking with that specific account.", + "this_grants_access_to_features": "This grants you access to __appName__ __featureType__ features.", + "to_add_email_accounts_need_to_be_linked": "To add this email, your __appName__ and __institutionName__ accounts will need to be linked.", + "tried_to_log_in_with_email": "You've tried to login with __email__.", + "tried_to_register_with_email": "You've tried to register with __email__, which is already registered with __appName__ as an institutional account.", + "log_in_with_email": "Log in with __email__", + "log_in_with_existing_institution_email": "Please log in with your existing __appName__ account in order to get your __appName__ and __institutionName__ institutional accounts linked.", + "log_out_from": "Log out from __email__", + "logged_in_with_acct_that_cannot_be_linked": "You've logged in with an __appName__ account that cannot be linked to your institution account.", + "logged_in_with_email": "You are currently logged in to __appName__ with the email __email__.", + "looks_like_logged_in_with_email": "It looks like you're already logged in to __appName__ with the email __email__.", + "make_primary_to_log_in_through_institution": "Make your __email__ email primary to log in through your institution portal. ", + "make_primary_which_will_allow_log_in_through_institution": "Making it your primary __appName__ email will allow you to log in through your institution portal.", + "need_to_do_this_to_access_license": "You'll need to do this in order to have access to the benefits from the __institutionName__ site license.", + "institutional_login_not_supported": "Your university doesn't support institutional login yet, but you can still register with your institutional email.", + "link_account": "Link Account", + "link_accounts": "Link Accounts", + "link_accounts_and_add_email": "Link Accounts and Add Email", + "link_your_accounts": "Link your accounts", + "log_in_and_link": "Log in and link", + "log_in_and_link_accounts": "Log in and link accounts", + "log_in_first_to_proceed": "You will need to log in first to proceed.", + "log_in_through_institution": "Log in through your institution", + "if_have_existing_can_link": "If you have an existing __appName__ account on another email, you can link it to your __institutionName__ account by clicking __clickText__.", + "if_owner_can_link": "If you own the __appName__ account with __email__, you will be allowed to link it to your __institutionName__ institutional account.", + "ignore_and_continue_institution_linking": "You can also ignore this and continue to __appName__ with your __email__ account.", + "in_order_to_match_institutional_metadata": "In order to match your institutional metadata, we've linked your account using __email__.", + "in_order_to_match_institutional_metadata_associated": "In order to match your institutional metadata, your account is associated with the email __email__.", + "institution_account_tried_to_add_already_registered": "The email/institution account you tried to add is already registered with __appName__.", + "institution_acct_successfully_linked": "Your __appName__ account was successfully linked to your __institutionName__ institutional account.", + "institution_email_new_to_app": "Your __institutionName__ email (__email__) is new to __appName__.", + "institutional": "Institutional", + "doing_this_allow_log_in_through_institution": "Doing this will allow you to log in to __appName__ through your institution portal.", + "doing_this_will_verify_affiliation_and_allow_log_in": "Doing this will verify your affiliation with __institutionName__ and will allow you to log in to __appName__ through your institution.", + "email_already_associated_with": "The __email1__ email is already associated with the __email2__ __appName__ account.", + "enter_institution_email_to_log_in": "Enter your institutional email to log in through your institution.", + "find_out_more_about_institution_login": "Find out more about institutional login", + "get_in_touch_having_problems": "Get in touch with support if you're having problems", + "go_back_and_link_accts": "Go back and link your accounts", + "go_back_and_log_in": "Go back and log in again", + "go_back_to_institution": "Go back to your institution", + "can_link_institution_email_by_clicking": "You can link your __email__ __appName__ account to your __institutionName__ account by clicking __clickText__.", + "can_link_institution_email_to_login": "You can link your __email__ __appName__ account to your __institutionName__ account, which will allow you to log in to __appName__ through your institution portal.", + "can_link_your_institution_acct": "You can now link your __appName__ account to your __institutionName__ institutional account.", + "can_now_link_to_institution_acct": "You can link your __email__ __appName__ account to your __institutionName__ institutional account.", + "click_link_to_proceed": "Click __clickText__ below to proceed.", + "continue_with_email": "Continue to __appName__ with your __email__ account", + "create_new_account": "Create new account", + "do_not_have_acct_or_do_not_want_to_link": "If you don't have an __appName__ account, or if you don't want to link to your __institutionName__ account, please click __clickText__.", + "do_not_link_accounts": "Don't link accounts", + "account_has_been_link_to_institution_account": "Your __appName__ account on __email__ has been linked to your __institutionName__ institutional account.", + "account_linking": "Account Linking", + "account_with_email_exists": "It looks like an __appName__ account with the email __email__ already exists.", + "acct_linked_to_institution_acct": "This account is linked to your __institutionName__ institution account.", + "alternatively_create_new_institution_account": "Alternatively, you can create a new account with your institution email (__email__) by clicking __clickText__.", + "as_a_member_of_sso": "As a member of __institutionName__, you can log in to __appName__ through your institution portal.", + "as_a_member_of_sso_required": "As a member of __institutionName__, you must log in to __appName__ through your institution portal.", + "can_link_institution_email_acct_to_institution_acct": "You can now link your __email__ __appName__ account to your __institutionName__ institutional account.", + "can_link_institution_email_acct_to_institution_acct_alt": "You can link your __email__ __appName__ account to your __institutionName__ institutional account.", + "user_deletion_error": "Sorry, something went wrong deleting your account. Please try again in a minute.", + "card_must_be_authenticated_by_3dsecure": "Your card must be authenticated with 3D Secure before continuing", + "view_your_invoices": "View Your Invoices", + "payment_provider_unreachable_error": "Sorry, there was an error talking to our payment provider. Please try again in a few moments.\nIf you are using any ad or script blocking extensions in your browser, you may need to temporarily disable them.", + "dropbox_unlinked_because_access_denied": "Your Dropbox account has been unlinked because the Dropbox service rejected your stored credentials. Please relink your Dropbox account to continue using it with Overleaf.", + "dropbox_unlinked_because_full": "Your Dropbox account has been unlinked because it is full, and we can no longer send updates to it. Please free up some space and relink your Dropbox account to continue using it with Overleaf.", + "upgrade_for_longer_compiles": "Upgrade to increase your timeout limit.", + "ask_proj_owner_to_upgrade_for_longer_compiles": "Please ask the project owner to upgrade to increase the timeout limit.", + "plus_upgraded_accounts_receive": "Plus with an upgraded account you get", + "sso_account_already_linked": "Account already linked to another __appName__ user", + "subscription_admins_cannot_be_deleted": "You cannot delete your account while on a subscription. Please cancel your subscription and try again. If you keep seeing this message please contact us.", + "delete_acct_no_existing_pw": "Please use the password reset form to set a password before deleting your account", + "empty_zip_file": "Zip doesn't contain any file", + "you_can_now_login_through_overleaf_sl": "You can now log in to your ShareLaTeX account through Overleaf.", + "find_out_more_nt": "Find out more.", + "register_error": "Registration error", + "login_error": "Login error", + "sso_link_error": "Error linking SSO account", + "more_info": "More Info", + "synctex_failed": "Couldn't find the corresponding source file", + "linked_collabratec_description": "Use Collabratec to manage your __appName__ projects.", + "reset_from_sl": "Please reset your password from ShareLaTeX and login there to move your account to Overleaf", + "dropbox_already_linked_error": "Your Dropbox account cannot be linked as it is already linked with another Overleaf account.", + "github_too_many_files_error": "This repository cannot be imported as it exceeds the maximum number of files allowed", + "linked_accounts": "linked accounts", + "linked_accounts_explained": "You can link your __appName__ account with other services to enable the features described below", + "oauth_orcid_description": " Securely establish your identity by linking your ORCID iD to your __appName__ account. Submissions to participating publishers will automatically include your ORCID iD for improved workflow and visibility. ", + "no_existing_password": "Please use the password reset form to set your password", + " to_reactivate_your_subscription_go_to": "To reactivate your subscription go to", + "subscription_canceled": "Subscription Canceled", + "coupons_not_included": "This does not include your current discounts, which will be applied automatically before your next payment", + "email_already_registered_secondary": "This email is already registered as a secondary email", + "secondary_email_password_reset": "That email is registered as a secondary email. Please enter the primary email for your account.", + "if_registered_email_sent": "If you have an account, we have sent you an email.", + "reconfirm": "reconfirm", + "request_reconfirmation_email": "Request reconfirmation email", + "reconfirm_explained": "We need to reconfirm your account. Please request a password reset link via the form below to reconfirm your account. If you have any problems reconfirming your account, please contact us at", + "upload_failed": "Upload failed", + "file_too_large": "File too large", + "zip_contents_too_large": "Zip contents too large", + "invalid_zip_file": "Invalid zip file", + "make_primary": "Make Primary", + "make_email_primary_description": "Make this the primary email, used to log in", + "github_sync_repository_not_found_description": "The linked repository has either been removed, or you no longer have access to it. You can set up sync with a new repository by cloning the project and using the 'Github' menu item. You can also unlink the repository from this project.", + "unarchive": "Restore", + "cant_see_what_youre_looking_for_question": "Can't see what you're looking for?", + "something_went_wrong_canceling_your_subscription": "Something went wrong canceling your subscription. Please contact support.", + "department": "Department", + "notification_features_upgraded_by_affiliation": "Good news! Your affiliated organization __institutionName__ has a partnership with Overleaf, and you now have access to all of Overleaf's Professional features.", + "notification_personal_subscription_not_required_due_to_affiliation": " Good news! Your affiliated organization __institutionName__ has a partnership with Overleaf, and you now have access to Overleaf's Professional features through your affiliation. You can cancel your personal subscription without losing access to any of your benefits.", + "github_private_description": "You choose who can see and commit to this repository.", + "notification_project_invite_message": "__userName__ would like you to join __projectName__", + "notification_project_invite_accepted_message": "You've joined __projectName__", + "subject_to_additional_vat": "Prices may be subject to additional VAT, depending on your country.", + "select_country_vat": "Please select your country on the payment page to view the total price including any VAT.", + "to_change_access_permissions": "To change access permissions, please ask the project owner", + "file_name_in_this_project": "File Name In This Project", + "new_snippet_project": "Untitled", + "loading_content": "Creating Project", + "there_was_an_error_opening_your_content": "There was an error creating your project", + "sorry_something_went_wrong_opening_the_document_please_try_again": "Sorry, an unexpected error occurred when trying to open this content on Overleaf. Please try again.", + "the_required_parameters_were_not_supplied": "The link to open this content on Overleaf was missing some required parameters. If this keeps happening for links on a particular site, please report this to them.", + "more_than_one_kind_of_snippet_was_requested": "The link to open this content on Overleaf included some invalid parameters. If this keeps happening for links on a particular site, please report this to them.", + "the_supplied_parameters_were_invalid": "The link to open this content on Overleaf included some invalid parameters. If this keeps happening for links on a particular site, please report this to them.", + "unable_to_extract_the_supplied_zip_file": "Opening this content on Overleaf failed because the zip file could not be extracted. Please ensure that it is a valid zip file. If this keeps happening for links on a particular site, please report this to them.", + "the_file_supplied_is_of_an_unsupported_type ": "The link to open this content on Overleaf pointed to the wrong kind of file. Valid file types are .tex documents and .zip files. If this keeps happening for links on a particular site, please report this to them.", + "the_requested_publisher_was_not_found": "The link to open this content on Overleaf specified a publisher that could not be found. If this keeps happening for links on a particular site, please report this to them.", + "the_supplied_uri_is_invalid": "The link to open this content on Overleaf included an invalid URI. If this keeps happening for links on a particular site, please report this to them.", + "the_requested_conversion_job_was_not_found": "The link to open this content on Overleaf specified a conversion job that could not be found. It's possible that the job has expired and needs to be run again. If this keeps happening for links on a particular site, please report this to them.", + "not_found_error_from_the_supplied_url": "The link to open this content on Overleaf pointed to a file that could not be found. If this keeps happening for links on a particular site, please report this to them.", + "too_many_requests": "Too many requests were received in a short space of time. Please wait for a few moments and try again.", + "password_change_passwords_do_not_match": "Passwords do not match", + "github_for_link_shared_projects": "This project was accessed via link-sharing and won't be synchronised with your Github unless you are invited via e-mail by the project owner.", + "browsing_project_latest_for_pseudo_label": "Browsing your project's current state", + "history_label_project_current_state": "Current state", + "download_project_at_this_version": "Download project at this version", + "submit": "submit", + "help_articles_matching": "Help articles matching your subject", + "dropbox_for_link_share_projs": "This project was accessed via link-sharing and won't be synchronised to your Dropbox unless you are invited via e-mail by the project owner.", + "clear_search": "clear search", + "email_registered_try_alternative": "Sorry, we do not have an account matching those credentials. Perhaps you signed up using a different provider?", + "access_your_projects_with_git": "Access your projects with Git", + "ask_proj_owner_to_upgrade_for_git_bridge": "Ask the project owner to upgrade their account to use git", + "export_csv": "Export CSV", + "add_comma_separated_emails_help": "Separate multiple email addresses using the comma (,) character.", + "members_management": "Members management", + "managers_management": "Managers management", + "institution_account": "Institution Account", + "git": "Git", + "clone_with_git": "Clone with Git", + "git_bridge_modal_description": "You can git clone your project using the link displayed below.", + "managers_cannot_remove_admin": "Admins cannot be removed", + "managers_cannot_remove_self": "Managers cannot remove themselves", + "user_not_found": "User not found", + "user_already_added": "User already added", + "bonus_twitter_share_text": "I'm using __appName__, the free online collaborative LaTeX editor - it's awesome and easy to use!", + "bonus_email_share_header": "Online LaTeX editor you may like", + "bonus_email_share_body": "Hey, I have been using the online LaTeX editor __appName__ recently and thought you might like to check it out.", + "bonus_share_link_text": "Online LaTeX Editor __appName__", + "bonus_facebook_name": "__appName__ - Online LaTeX Editor", + "bonus_facebook_caption": "Free Unlimited Projects and Compiles", + "bonus_facebook_description": "__appName__ is a free online LaTeX Editor. Real time collaboration like Google Docs, with Dropbox, history and auto-complete.", + "remove_manager": "Remove manager", + "invalid_element_name": "Could not copy your project because of filenames containing invalid characters\r\n(such as asterisks, slashes or control characters). Please rename the files and\r\ntry again.", + "collabratec_account_not_registered": "IEEE Collabratec™ account not registered. Please connect to Overleaf from IEEE Collabratec™ or login with a different account.", + "password_change_failed_attempt": "Password change failed", + "password_change_successful": "Password changed", + "not_registered": "Not registered", + "featured_latex_templates": "Featured LaTeX Templates", + "no_featured_templates": "No featured templates", + "try_again": "Please try again", + "email_required": "Email required", + "registration_error": "Registration error", + "newsletter-accept": "I’d like emails about product offers and company news and events.", + "resending_confirmation_email": "Resending confirmation email", + "please_confirm_email": "Please confirm your email __emailAddress__ by clicking on the link in the confirmation email ", + "register_using_service": "Register using __service__", + "login_to_overleaf": "Log in to Overleaf", + "login_with_email": "Log in with your email", + "login_with_service": "Log in with __service__", + "first_time_sl_user": "First time here as a ShareLaTeX user", + "migrate_from_sl": "Migrate from ShareLaTeX", + "dont_have_account": "Don't have an account?", + "sl_extra_info_tooltip": "Please log in to ShareLaTeX to move your account to Overleaf. It will only take a few seconds. If you have a ShareLaTeX subscription, it will automatically be transferred to Overleaf.", + "register_using_email": "Register using your email", + "login_register_or": "or", + "to_add_more_collaborators": "To add more collaborators or turn on link sharing, please ask the project owner", + "by": "by", + "emails": "Emails", + "editor_theme": "Editor theme", + "overall_theme": "Overall theme", + "faq_how_does_free_trial_works_answer": "You get full access to your chosen __appName__ plan during your __len__-day free trial. There is no obligation to continue beyond the trial. Your card will be charged at the end of your __len__ day trial unless you cancel before then. You can cancel via your subscription settings.", + "thousands_templates": "Thousands of templates", + "get_instant_access_to": "Get instant access to", + "ask_proj_owner_to_upgrade_for_full_history": "Please ask the project owner to upgrade to access this project's full history.", + "currently_seeing_only_24_hrs_history": "You're currently seeing the last 24 hours of changes in this project.", + "archive_projects": "Archive Projects", + "archive_and_leave_projects": "Archive and Leave Projects", + "about_to_archive_projects": "You are about to archive the following projects:", + "please_confirm_your_email_before_making_it_default": "Please confirm your email before making it the default.", + "back_to_editor": "Back to the editor", + "generic_history_error": "Something went wrong trying to fetch your project's history. If the error persists, please contact us via:", + "unconfirmed": "Unconfirmed", + "please_check_your_inbox": "Please check your inbox", + "resend_confirmation_email": "Resend confirmation email", + "history_label_created_by": "Created by", + "history_label_this_version": "Label this version", + "history_add_label": "Add label", + "history_adding_label": "Adding label", + "history_new_label_name": "New label name", + "history_new_label_added_at": "A new label will be added as of", + "history_delete_label": "Delete label", + "history_deleting_label": "Deleting label", + "history_are_you_sure_delete_label": "Are you sure you want to delete the following label", + "browsing_project_labelled": "Browsing project version labelled", + "history_view_all": "All history", + "history_view_labels": "Labels", + "history_view_a11y_description": "Show all of the project history or only labelled versions.", + "add_another_email": "Add another email", + "start_by_adding_your_email": "Start by adding your email address.", + "is_email_affiliated": "Is your email affiliated with an institution? ", + "let_us_know": "Let us know", + "add_new_email": "Add new email", + "error_performing_request": "An error has occurred while performing your request.", + "reload_emails_and_affiliations": "Reload emails and affiliations", + "emails_and_affiliations_title": "Emails and Affiliations", + "emails_and_affiliations_explanation": "Add additional email addresses to your account to access any upgrades your university or institution has, to make it easier for collaborators to find you, and to make sure you can recover your account.", + "institution_and_role": "Institution and role", + "add_role_and_department": "Add role and department", + "save_or_cancel-save": "Save", + "save_or_cancel-or": "or", + "save_or_cancel-cancel": "Cancel", + "make_default": "Make default", + "remove": "remove", + "confirm_email": "Confirm Email", + "invited_to_join_team": "You have been invited to join a team", + "join_team": "Join Team", + "accepted_invite": "Accepted invite", + "invited_to_group": "__inviterName__ has invited you to join a team on __appName__", + "join_team_explanation": "Please click the button below to join the team and enjoy the benefits of an upgraded __appName__ account", + "accept_invitation": "Accept invitation", + "joined_team": "You have joined the team managed by __inviterName__", + "compare_to_another_version": "Compare to another version", + "file_action_edited": "Edited", + "file_action_renamed": "Renamed", + "file_action_created": "Created", + "file_action_deleted": "Deleted", + "browsing_project_as_of": "Browsing project as of", + "view_single_version": "View single version", + "font_family": "Font Family", + "line_height": "Line Height", + "compact": "Compact", + "wide": "Wide", + "default": "Default", + "leave": "Leave", + "archived_projects": "Archived Projects", + "archive": "Archive", + "student_disclaimer": "The educational discount applies to all students at secondary and postsecondary institutions (schools and universities). We may contact you to confirm that you're eligible for the discount.", + "billed_after_x_days": "You won’t be billed until after your __len__ day trial expires.", + "looking_multiple_licenses": "Looking for multiple licenses?", + "reduce_costs_group_licenses": "You can cut down on paperwork and reduce costs with our discounted group licenses.", + "find_out_more": "Find out More", + "compare_plan_features": "Compare Plan Features", + "in_good_company": "You're In Good Company", + "unlimited": "Unlimited", + "priority_support": "Priority support", + "dropbox_integration_lowercase": "Dropbox integration", + "github_integration_lowercase": "GitHub integration", + "discounted_group_accounts": "discounted group accounts", + "referring_your_friends": "referring your friends", + "still_have_questions": "Still have questions?", + "quote_erdogmus": "The ability to track changes and the real-time collaborative nature is what sets ShareLaTeX apart.", + "quote_henderson": "ShareLaTeX has proven to be a powerful and robust collaboration tool that is widely used in our School.", + "best_value": "Best value", + "faq_how_free_trial_works_question": "How does the free trial work?", + "faq_change_plans_question": "Can I change plans later?", + "faq_do_collab_need_premium_question": "Do my collaborators also need premium accounts?", + "faq_need_more_collab_question": "What if I need more collaborators?", + "faq_purchase_more_licenses_question": "Can I purchase additional licenses for my colleagues?", + "faq_monthly_or_annual_question": "Should I choose monthly or annual billing?", + "faq_how_to_pay_question": "Can I pay online with a credit or debit card, or PayPal?", + "faq_pay_by_invoice_question": "Can I pay by invoice / purchase order?", + "reference_search": "Advanced reference search", + "reference_search_info": "You can always search by citation key, and advanced reference search lets you also search by author, title, year or journal.", + "reference_sync": "Reference manager sync", + "reference_sync_info": "Manage your reference library in Mendeley and link it directly to a .bib file in Overleaf, so you can easily cite anything in your Mendeley library.", + "faq_how_free_trial_works_answer": "You get full access to your chosen __appName__ plan during your __len__-day free trial. There is no obligation to continue beyond the trial. Your card will be charged at the end of your __len__ day trial unless you cancel before then. You can cancel via your subscription settings.", + "faq_change_plans_answer": "Yes, you can change your plan at any time via your subscription settings. This includes options to switch to a different plan, or to switch between monthly and annual billing options, or to cancel to downgrade to the free plan.", + "faq_do_collab_need_premium_answer": "Premium features, such as tracked changes, will be available to your collaborators on projects that you have created, even if those collaborators have free accounts.", + "faq_need_more_collab_answer": "You can upgrade to one of our paid accounts, which support more collaborators. You can also earn additional collaborators on our free accounts by __referFriendsLink__.", + "faq_purchase_more_licenses_answer": "Yes, we provide __groupLink__, which are easy to manage, help to save on paperwork, and reduce the cost of purchasing multiple licenses.", + "faq_monthly_or_annual_answer": "Annual billing offers a way to cut down on your admin and paperwork. If you’d prefer to manage a single payment every year, instead of twelve, annual billing is for you.", + "faq_how_to_pay_answer": "Yes, you can. All major credit and debit cards and Paypal are supported. Select the plan you’d like above, and you’ll have the option to pay by card or to go through to PayPal when it’s time to set up payment.", + "powerful_latex_editor": "Powerful LaTeX editor", + "realtime_track_changes": "Real-time track changes", + "realtime_track_changes_info": "Now you don’t have to choose between tracked changes and typesetting in LaTeX. Leave comments, keep track of TODOs, and accept or reject others’ changes.", + "full_doc_history_info": "Travel back in time to see any version and who made changes. No matter what happens, we've got your back.", + "dropbox_integration_info": "Work online and offline seamlessly with two-way Dropbox sync. Changes you make locally will be sent automatically to the version on Overleaf and vice versa.", + "github_integration_info": "Push and pull commits to and from GitHub, so you or your collaborators can work offline with git and online with Overleaf.", + "latex_editor_info": "Everything you need in a modern LaTeX editor --- spell check, intelligent autocomplete, syntax highlighting, dozens of color themes, vim and emacs bindings, help with LaTeX warnings and error messages, and much more.", + "change_plans_any_time": "You can change plans or change your account at any time. ", + "number_collab": "Number of collaborators", + "unlimited_private_info": "All your projects are private by default. Invite collaborators to read or edit by email address or by sending them a secret link.", + "unlimited_private": "Unlimited private projects", + "realtime_collab": "Real-time collaboration", + "realtime_collab_info": "When you’re working together, you can see your collaborators’ cursors and their changes in real time, so everyone always has the latest version.", + "hundreds_templates": "Hundreds of templates", + "hundreds_templates_info": "Produce beautiful documents starting from our gallery of LaTeX templates for journals, conferences, theses, reports, CVs and much more.", + "instant_access": "Get instant access to __appName__", + "tagline_personal": "Ideal when working solo", + "tagline_collaborator": "Great for shared projects", + "tagline_professional": "For those working with many", + "tagline_student_annual": "Save even more", + "tagline_student_monthly": "Great for a single term", + "all_premium_features": "All premium features", + "sync_dropbox_github": "Sync with Dropbox and GitHub", + "track_changes": "Track changes", + "tooltip_hide_pdf": "Click to hide the PDF", + "tooltip_show_pdf": "Click to show the PDF", + "tooltip_hide_filetree": "Click to hide the file-tree", + "tooltip_show_filetree": "Click to show the file-tree", + "cannot_verify_user_not_robot": "Sorry, we could not verify that you are not a robot. Please check that Google reCAPTCHA is not being blocked by an ad blocker or firewall.", + "uncompiled_changes": "Uncompiled Changes", + "code_check_failed": "Code check failed", + "code_check_failed_explanation": "Your code has errors that need to be fixed before the auto-compile can run", + "tags_slash_folders": "Tags/Folders", + "file_already_exists": "A file or folder with this name already exists", + "import_project_to_v2": "Import Project to V2", + "open_in_v1": "Open in V1", + "import_to_v2": "Import to V2", + "never_mind_open_in_v1": "Never mind, open in V1", + "yes_im_sure": "Yes, I'm sure", + "drop_files_here_to_upload": "Drop files here to upload", + "drag_here": "drag here", + "creating_project": "Creating project", + "select_a_zip_file": "Select a .zip file", + "drag_a_zip_file": "drag a .zip file", + "v1_badge": "V1 Badge", + "v1_projects": "V1 Projects", + "open_your_billing_details_page": "Open Your Billing Details Page", + "try_out_link_sharing": "Try the new link sharing feature!", + "try_link_sharing": "Try Link Sharing", + "try_link_sharing_description": "Give access to your project by simply sharing a link.", + "learn_more_about_link_sharing": "Learn more about Link Sharing", + "link_sharing": "Link sharing", + "tc_switch_everyone_tip": "Toggle track-changes for everyone", + "tc_switch_user_tip": "Toggle track-changes for this user", + "tc_switch_guests_tip": "Toggle track-changes for all link-sharing guests", + "tc_guests": "Guests", + "select_all_projects": "Select all", + "select_project": "Select", + "main_file_not_found": "Unknown main document.", + "please_set_main_file": "Please choose the main file for this project in the project menu. ", + "link_sharing_is_off": "Link sharing is off, only invited users can view this project.", + "turn_on_link_sharing": "Turn on link sharing", + "link_sharing_is_on": "Link sharing is on", + "turn_off_link_sharing": "Turn off link sharing", + "anyone_with_link_can_edit": "Anyone with this link can edit this project", + "anyone_with_link_can_view": "Anyone with this link can view this project", + "turn_on_link_sharing_consequences": "When link sharing is enabled, anyone with the relevant link will be able to access or edit this project", + "turn_off_link_sharing_consequences": "When link sharing is disabled, only people who are invited to this project will be have access", + "autocompile_disabled": "Autocompile disabled", + "autocompile_disabled_reason": "Due to high server load, background recompilation has been temporarily disabled. Please recompile by clicking the button above.", + "auto_compile_onboarding_description": "When enabled, your project will compile as you type.", + "try_out_auto_compile_setting": "Try out the new auto compile setting!", + "got_it": "Got it", + "pdf_compile_in_progress_error": "Compile already running in another window", + "pdf_compile_try_again": "Please wait for your other compile to finish before trying again.", + "invalid_email": "An email address is invalid", + "auto_compile": "Auto Compile", + "on": "On", + "tc_everyone": "Everyone", + "per_user_tc_title": "Per-user Track Changes", + "you_can_use_per_user_tc": "Now you can use Track Changes on a per-user basis", + "turn_tc_on_individuals": "Turn Track Changes on for individuals users", + "keep_tc_on_like_before": "Or keep it on for everyone, like before", + "auto_close_brackets": "Auto-close Brackets", + "auto_pair_delimiters": "Auto-Pair Delimiters", + "successfull_dropbox_link": "Dropbox successfully linked, Redirecting to settings page.", + "show_link": "Show Link", + "hide_link": "Hide Link", + "aggregate_changed": "Changed", + "aggregate_to": "to", + "confirm_password_to_continue": "Confirm password to continue", + "confirm_password_footer": "We won't ask for your password again for a while.", + "accept_all": "Accept all", + "reject_all": "Reject all", + "bulk_accept_confirm": "Are you sure you want to accept the selected __nChanges__ changes?", + "bulk_reject_confirm": "Are you sure you want to reject the selected __nChanges__ changes?", + "uncategorized": "Uncategorized", + "pdf_compile_rate_limit_hit": "Compile rate limit hit", + "project_flagged_too_many_compiles": "This project has been flagged for compiling too often. The limit will be lifted shortly.", + "reauthorize_github_account": "Reauthorize your GitHub Account", + "github_credentials_expired": "Your GitHub authorization credentials have expired", + "hit_enter_to_reply": "Hit Enter to reply", + "add_your_comment_here": "Add your comment here", + "resolved_comments": "Resolved comments", + "try_it_for_free": "Try it for free", + "please_ask_the_project_owner_to_upgrade_to_track_changes": "Please ask the project owner to upgrade to use track changes", + "mark_as_resolved": "Mark as resolved", + "reopen": "Re-open", + "add_comment": "Add comment", + "no_resolved_threads": "No resolved threads", + "upgrade_to_track_changes": "Upgrade to Track Changes", + "see_changes_in_your_documents_live": "See changes in your documents, live", + "track_any_change_in_real_time": "Track any change, in real-time", + "review_your_peers_work": "Review your peers' work", + "accept_or_reject_each_changes_individually": "Accept or reject each change individually", + "accept": "Accept", + "reject": "Reject", + "no_comments": "No comments", + "edit": "Edit", + "are_you_sure": "Are you sure?", + "resolve": "Resolve", + "reply": "Reply", + "quoted_text_in": "Quoted text in", + "review": "Review", + "track_changes_is_on": "Track changes is on", + "track_changes_is_off": "Track changes is off", + "current_file": "Current file", + "overview": "Overview", + "tracked_change_added": "Added", + "tracked_change_deleted": "Deleted", + "show_all": "show all", + "show_less": "show less", + "dropbox_sync_error": "Dropbox Sync Error", + "send": "Send", + "sending": "Sending", + "invalid_password": "Invalid Password", + "error": "Error", + "other_actions": "Other Actions", + "send_test_email": "Send a test email", + "email_sent": "Email Sent", + "create_first_admin_account": "Create the first Admin account", + "ldap": "LDAP", + "ldap_create_admin_instructions": "Choose an email address for the first __appName__ admin account. This should correspond to an account in the LDAP system. You will then be asked to log in with this account.", + "saml": "SAML", + "saml_create_admin_instructions": "Choose an email address for the first __appName__ admin account. This should correspond to an account in the SAML system. You will then be asked to log in with this account.", + "admin_user_created_message": "Created admin user, Log in here to continue", + "status_checks": "Status Checks", + "editor_resources": "Editor Resources", + "checking": "Checking", + "cannot_invite_self": "Can't send invite to yourself", + "cannot_invite_non_user": "Can't send invite. Recipient must already have a __appName__ account", + "log_in_with": "Log in with __provider__", + "return_to_login_page": "Return to Login page", + "login_failed": "Login failed", + "delete_account_warning_message_3": "You are about to permanently delete all of your account data, including your projects and settings. Please type your account email address and password in the boxes below to proceed.", + "delete_account_warning_message_2": "You are about to permanently delete all of your account data, including your projects and settings. Please type your account email address into the box below to proceed.", + "your_sessions": "Your Sessions", + "clear_sessions_description": "This is a list of other sessions (logins) which are active on your account, not including your current session. Click the \"Clear Sessions\" button below to log them out.", + "no_other_sessions": "No other sessions active", + "ip_address": "IP Address", + "session_created_at": "Session Created At", + "clear_sessions": "Clear Sessions", + "clear_sessions_success": "Sessions Cleared", + "sessions": "Sessions", + "manage_sessions": "Manage Your Sessions", + "syntax_validation": "Code check", + "history": "History", + "joining": "Joining", + "open_project": "Open Project", + "files_cannot_include_invalid_characters": "File name is empty or contains invalid characters", + "invalid_file_name": "Invalid File Name", + "autocomplete_references": "Reference Autocomplete (inside a \\cite{} block)", + "autocomplete": "Autocomplete", + "failed_compile_check": "It looks like your project has some fatal syntax errors that you should fix before we compile it", + "failed_compile_check_try": "Try compiling anyway", + "failed_compile_option_or": "or", + "failed_compile_check_ignore": "turn off syntax checking", + "compile_time_checks": "Syntax Checks", + "stop_on_validation_error": "Check syntax before compile", + "ignore_validation_errors": "Don't check syntax", + "run_syntax_check_now": "Run syntax check now", + "your_billing_details_were_saved": "Your billing details were saved", + "security_code": "Security code", + "paypal_upgrade": "To upgrade, click on the button below and log on to PayPal using your email and password.", + "upgrade_cc_btn": "Upgrade now, pay after 7 days", + "upgrade_paypal_btn": "Continue", + "notification_project_invite": "__userName__ would like you to join __projectName__ Join Project", + "file_restored": "Your file (__filename__) has been recovered.", + "file_restored_back_to_editor": "You can go back to the editor and work on it again.", + "file_restored_back_to_editor_btn": "Back to editor", + "view_project": "View Project", + "join_project": "Join Project", + "invite_not_accepted": "Invite not yet accepted", + "resend": "Resend", + "syntax_check": "Syntax check", + "revoke_invite": "Revoke Invite", + "pending": "Pending", + "invite_not_valid": "This is not a valid project invite", + "invite_not_valid_description": "The invite may have expired. Please contact the project owner", + "accepting_invite_as": "You are accepting this invite as", + "accept_invite": "Accept invite", + "log_hint_ask_extra_feedback": "Can you help us understand why this hint wasn't helpful?", + "log_hint_extra_feedback_didnt_understand": "I didn’t understand the hint", + "log_hint_extra_feedback_not_applicable": "I can’t apply this solution to my document", + "log_hint_extra_feedback_incorrect": "This doesn’t fix the error", + "log_hint_extra_feedback_other": "Other:", + "log_hint_extra_feedback_submit": "Submit", + "if_you_are_registered": "If you are already registered", + "stop_compile": "Stop compilation", + "terminated": "Compilation cancelled", + "compile_terminated_by_user": "The compile was cancelled using the 'Stop Compilation' button. You can view the raw logs to see where the compile stopped.", + "site_description": "An online LaTeX editor that's easy to use. No installation, real-time collaboration, version control, hundreds of LaTeX templates, and more.", + "knowledge_base": "knowledge base", + "contact_message_label": "Message", + "kb_suggestions_enquiry": "Have you checked our __kbLink__?", + "answer_yes": "Yes", + "answer_no": "No", + "log_hint_extra_info": "Learn more", + "log_hint_feedback_label": "Was this hint helpful?", + "log_hint_feedback_gratitude": "Thank you for your feedback!", + "recompile_pdf": "Recompile the PDF", + "about_paulo_reis": "is a front-end software developer and user experience researcher living in Aveiro, Portugal. Paulo has a PhD in user experience and is passionate about shaping technology towards human usage — either in concept or testing/validation, in design or implementation.", + "login_or_password_wrong_try_again": "Your login or password is incorrect. Please try again", + "manage_beta_program_membership": "Manage Beta Program Membership", + "beta_program_opt_out_action": "Opt-Out of Beta Program", + "disable_beta": "Disable Beta", + "beta_program_badge_description": "While using __appName__, you will see beta features marked with this badge:", + "beta_program_current_beta_features_description": "We are currently testing the following new features in beta:", + "enable_beta": "Enable Beta", + "user_in_beta_program": "User is participating in Beta Program", + "beta_program_already_participating": "You are enrolled in the Beta Program", + "sharelatex_beta_program": "__appName__ Beta Program", + "beta_program_benefits": "We're always improving __appName__. By joining our Beta program you can have early access to new features and help us understand your needs better.", + "beta_program_opt_in_action": "Opt-In to Beta Program", + "conflicting_paths_found": "Conflicting Paths Found", + "following_paths_conflict": "The following files & folders conflict with the same path", + "open_a_file_on_the_left": "Open a file on the left", + "reference_error_relink_hint": "If this error persists, try re-linking your account here:", + "pdf_rendering_error": "PDF Rendering Error", + "something_went_wrong_rendering_pdf": "Something went wrong while rendering this PDF.", + "mendeley_reference_loading_error_expired": "Mendeley token expired, please re-link your account", + "zotero_reference_loading_error_expired": "Zotero token expired, please re-link your account", + "mendeley_reference_loading_error_forbidden": "Could not load references from Mendeley, please re-link your account and try again", + "zotero_reference_loading_error_forbidden": "Could not load references from Zotero, please re-link your account and try again", + "mendeley_integration": "Mendeley Integration", + "mendeley_sync_description": "With Mendeley integration you can import your references from Mendeley into your __appName__ projects.", + "mendeley_is_premium": "Mendeley Integration is a premium feature", + "link_to_mendeley": "Link to Mendeley", + "unlink_to_mendeley": "Unlink Mendeley", + "mendeley_reference_loading": "Loading references from Mendeley", + "mendeley_reference_loading_success": "Loaded references from Mendeley", + "mendeley_reference_loading_error": "Error, could not load references from Mendeley", + "zotero_integration": "Zotero Integration.", + "zotero_sync_description": "With Zotero integration you can import your references from Zotero into your __appName__ projects.", + "zotero_is_premium": "Zotero Integration is a premium feature", + "link_to_zotero": "Link to Zotero", + "unlink_to_zotero": "Unlink Zotero", + "zotero_reference_loading": "Loading references from Zotero", + "zotero_reference_loading_success": "Loaded references from Zotero", + "zotero_reference_loading_error": "Error, could not load references from Zotero", + "reference_import_button": "Import References to", + "unlink_reference": "Unlink References Provider", + "unlink_warning_reference": "Warning: When you unlink your account from this provider you will not be able to import references into your projects.", + "mendeley": "Mendeley", + "zotero": "Zotero", + "suggest_new_doc": "Suggest new doc", + "request_sent_thank_you": "Your contact request has been sent. It will be reviewed by our support staff and you will receive a reply via email.", + "suggestion": "Suggestion", + "project_url": "Affected project URL", + "subject": "Subject", + "confirm": "Confirm", + "cancel_personal_subscription_first": "You already have a personal subscription, would you like us to cancel this first before joining the group licence?", + "delete_projects": "Delete Projects", + "leave_projects": "Leave Projects", + "delete_and_leave_projects": "Delete and Leave Projects", + "too_recently_compiled": "This project was compiled very recently, so this compile has been skipped.", + "clsi_maintenance": "The compile servers are down for maintenance, and will be back shortly.", + "references_search_hint": "Press CTRL-Space to Search", + "ask_proj_owner_to_upgrade_for_references_search": "Please ask the project owner to upgrade to use the References Search feature.", + "ask_proj_owner_to_upgrade_for_faster_compiles": "Please ask the project owner to upgrade for faster compiles and to increase the timeout limit.", + "search_bib_files": "Search by author, title, year", + "leave_group": "Leave group", + "leave_now": "Leave now", + "sure_you_want_to_leave_group": "Are you sure you want to leave this group?", + "notification_group_invite": "You have been invited to join the __groupName__, Join Here.", + "search_references": "Search the .bib files in this project", + "no_search_results": "No Search Results", + "email_already_registered": "This email is already registered", + "compile_mode": "Compile Mode", + "normal": "Normal", + "fast": "Fast", + "rename_folder": "Rename Folder", + "delete_folder": "Delete Folder", + "about_to_delete_folder": "You are about to delete the following folders (any projects in them will not be deleted):", + "to_modify_your_subscription_go_to": "To modify your subscription go to", + "manage_subscription": "Manage Subscription", + "activate_account": "Activate your account", + "yes_please": "Yes Please!", + "nearly_activated": "You're one step away from activating your __appName__ account!", + "please_set_a_password": "Please set a password", + "activation_token_expired": "Your activation token has expired, you will need to get another one sent to you.", + "activate": "Activate", + "activating": "Activating", + "ill_take_it": "I'll take it!", + "cancel_your_subscription": "Stop Your Subscription", + "no_thanks_cancel_now": "No thanks - I still want to Cancel Now", + "cancel_my_account": "Cancel my subscription", + "sure_you_want_to_cancel": "Are you sure you want to cancel?", + "i_want_to_stay": "I want to stay", + "have_more_days_to_try": "Have another __days__ days on your Trial!", + "interested_in_cheaper_plan": "Would you be interested in the cheaper __price__ student plan?", + "session_expired_redirecting_to_login": "Session Expired. Redirecting to login page in __seconds__ seconds", + "maximum_files_uploaded_together": "Maximum __max__ files uploaded together", + "too_many_files_uploaded_throttled_short_period": "Too many files uploaded, your uploads have been throttled for short period.", + "compile_larger_projects": "Compile larger projects", + "upgrade_to_get_feature": "Upgrade to get __feature__, plus:", + "new_group": "New Group", + "about_to_delete_groups": "You are about to delete the following groups:", + "removing": "Removing", + "adding": "Adding", + "groups": "Groups", + "rename_group": "Rename Group", + "renaming": "Renaming", + "create_group": "Create Group", + "delete_group": "Delete Group", + "delete_groups": "Delete Groups", + "your_groups": "Your Groups", + "group_name": "Group Name", + "no_groups": "No Groups", + "Subscription": "Subscription", + "Documentation": "Documentation", + "Universities": "Universities", + "Account Settings": "Account Settings", + "Projects": "Projects", + "Account": "Account", + "global": "global", + "Terms": "Terms", + "Security": "Security", + "About": "About", + "editor_disconected_click_to_reconnect": "Editor disconnected, click anywhere to reconnect.", + "word_count": "Word Count", + "please_compile_pdf_before_word_count": "Please compile your project before performing a word count", + "total_words": "Total Words", + "headers": "Headers", + "math_inline": "Math Inline", + "math_display": "Math Display", + "connected_users": "Connected Users", + "projects": "Projects", + "upload_project": "Upload Project", + "all_projects": "All Projects", + "your_projects": "Your Projects", + "shared_with_you": "Shared with you", + "deleted_projects": "Deleted Projects", + "templates": "Templates", + "new_folder": "New Folder", + "create_your_first_project": "Create your first project!", + "complete": "Complete", + "on_free_sl": "You are using the free version of __appName__", + "upgrade": "Upgrade", + "or_unlock_features_bonus": "or unlock some free bonus features by", + "sharing_sl": "sharing __appName__", + "add_to_folder": "Add to folder", + "create_new_folder": "Create New Folder", + "more": "More", + "rename": "Rename", + "make_copy": "Make a copy", + "restore": "Restore", + "title": "Title", + "last_modified": "Last Modified", + "no_projects": "No projects", + "welcome_to_sl": "Welcome to __appName__!", + "new_to_latex_look_at": "New to LaTeX? Start by having a look at our", + "or": "or", + "or_create_project_left": "or create your first project on the left.", + "thanks_settings_updated": "Thanks, your settings have been updated.", + "update_account_info": "Update Account Info", + "must_be_email_address": "Must be an email address", + "first_name": "First Name", + "last_name": "Last Name", + "update": "Update", + "change_password": "Change Password", + "current_password": "Current Password", + "new_password": "New Password", + "confirm_new_password": "Confirm New Password", + "required": "Required", + "doesnt_match": "Doesn't match", + "dropbox_integration": "Dropbox Integration", + "learn_more": "Learn more", + "dropbox_is_premium": "Dropbox sync is a premium feature", + "account_is_linked": "Account is linked", + "unlink_dropbox": "Unlink Dropbox", + "link_to_dropbox": "Link to Dropbox", + "newsletter_info_and_unsubscribe": "Every few months we send a newsletter out summarizing the new features available. If you would prefer not to receive this email then you can unsubscribe at any time:", + "unsubscribed": "Unsubscribed", + "unsubscribing": "Unsubscribing", + "unsubscribe": "Unsubscribe", + "need_to_leave": "Need to leave?", + "delete_your_account": "Delete your account", + "delete_account": "Delete Account", + "delete_account_warning_message": "You are about to permanently delete all of your account data, including your projects and settings. Please type your account email address into the box below to proceed.", + "deleting": "Deleting", + "delete": "Delete", + "sl_benefits_plans": "__appName__ is the world's easiest to use LaTeX editor. Stay up to date with your collaborators, keep track of all changes to your work, and use our LaTeX environment from anywhere in the world.", + "monthly": "Monthly", + "personal": "Personal", + "free": "Free", + "one_collaborator": "Only one collaborator", + "collaborator": "Collaborator", + "collabs_per_proj": "__collabcount__ collaborators per project", + "full_doc_history": "Full document history", + "sync_to_dropbox": "Sync to Dropbox", + "start_free_trial": "Start Free Trial!", + "professional": "Professional", + "unlimited_collabs": "Unlimited collaborators", + "name": "Name", + "student": "Student", + "university": "University", + "position": "Position", + "choose_plan_works_for_you": "Choose the plan that works for you with our __len__-day free trial. Cancel at any time.", + "interested_in_group_licence": "Interested in using __appName__ with a group, team or department wide account?", + "get_in_touch_for_details": "Get in touch for details!", + "group_plan_enquiry": "Group Plan Enquiry", + "enjoy_these_features": "Enjoy all of these great features", + "create_unlimited_projects": "Create as many projects as you need.", + "never_loose_work": "Never lose a step, we've got your back.", + "access_projects_anywhere": "Access your projects everywhere.", + "log_in": "Log In", + "login": "Login", + "logging_in": "Logging in", + "forgot_your_password": "Forgot your password", + "password_reset": "Password Reset", + "password_reset_email_sent": "You have been sent an email to complete your password reset.", + "please_enter_email": "Please enter your email address", + "request_password_reset": "Request password reset", + "reset_your_password": "Reset your password", + "password_has_been_reset": "Your password has been reset", + "login_here": "Login here", + "set_new_password": "Set new password", + "user_wants_you_to_see_project": "__username__ would like you to join __projectname__", + "join_sl_to_view_project": "Join __appName__ to view this project", + "register_to_edit_template": "Please register to edit the __templateName__ template", + "already_have_sl_account": "Already have a __appName__ account?", + "register": "Register", + "password": "Password", + "registering": "Registering", + "planned_maintenance": "Planned Maintenance", + "no_planned_maintenance": "There is currently no planned maintenance", + "cant_find_page": "Sorry, we can't find the page you are looking for.", + "take_me_home": "Take me home!", + "no_preview_available": "Sorry, no preview is available.", + "no_messages": "No messages", + "send_first_message": "Send your first message to your collaborators", + "account_not_linked_to_dropbox": "Your account is not linked to Dropbox", + "update_dropbox_settings": "Update Dropbox Settings", + "refresh_page_after_starting_free_trial": "Please refresh this page after starting your free trial.", + "checking_dropbox_status": "checking Dropbox status", + "dismiss": "Dismiss", + "deleted_files": "Deleted Files", + "new_file": "New File", + "upload_file": "Upload File", + "create": "Create", + "creating": "Creating", + "upload_files": "Upload File(s)", + "sure_you_want_to_delete": "Are you sure you want to permanently delete the following files?", + "common": "Common", + "navigation": "Navigation", + "editing": "Editing", + "ok": "OK", + "source": "Source", + "actions": "Actions", + "copy_project": "Copy Project", + "publish_as_template": "Publish as Template", + "sync": "Sync", + "settings": "Settings", + "main_document": "Main document", + "off": "Off", + "auto_complete": "Auto-complete", + "theme": "Theme", + "font_size": "Font Size", + "pdf_viewer": "PDF Viewer", + "built_in": "Built-In", + "native": "Native", + "show_hotkeys": "Show Hotkeys", + "new_name": "New Name", + "copying": "Copying", + "copy": "Copy", + "compiling": "Compiling", + "click_here_to_preview_pdf": "Click here to preview your work as a PDF.", + "server_error": "Server Error", + "somthing_went_wrong_compiling": "Sorry, something went wrong and your project could not be compiled. Please try again in a few moments.", + "timedout": "Timed out", + "proj_timed_out_reason": "Sorry, your compile took too long to run and timed out. This may be due to a LaTeX error, or a large number of high-res images or complicated diagrams.", + "no_errors_good_job": "No errors, good job!", + "compile_error": "Compile Error", + "generic_failed_compile_message": "Sorry, your LaTeX code couldn't compile for some reason. Please check the errors below for details, or view the raw log", + "other_logs_and_files": "Other logs & files", + "view_raw_logs": "View Raw Logs", + "hide_raw_logs": "Hide Raw Logs", + "clear_cache": "Clear cache", + "clear_cache_explanation": "This will clear all hidden LaTeX files (.aux, .bbl, etc) from our compile server. You generally don't need to do this unless you're having trouble with references.", + "clear_cache_is_safe": "Your project files will not be deleted or changed.", + "clearing": "Clearing", + "template_description": "Template Description", + "project_last_published_at": "Your project was last published at", + "problem_talking_to_publishing_service": "There is a problem with our publishing service, please try again in a few minutes", + "unpublishing": "Unpublishing", + "republish": "Republish", + "publishing": "Publishing", + "share_project": "Share Project", + "this_project_is_private": "This project is private and can only be accessed by the people below.", + "make_public": "Make Public", + "this_project_is_public": "This project is public and can be edited by anyone with the URL.", + "make_private": "Make Private", + "can_edit": "Can Edit", + "share_with_your_collabs": "Share with your collaborators", + "share": "Share", + "need_to_upgrade_for_more_collabs": "You need to upgrade your account to add more collaborators", + "make_project_public": "Make project public", + "make_project_public_consequences": "If you make your project public then anyone with the URL will be able to access it.", + "allow_public_editing": "Allow public editing", + "allow_public_read_only": "Allow public read only access", + "make_project_private": "Disable link-sharing", + "make_project_private_consequences": "If you make your project private then only the people you choose to share it with will have access.", + "need_to_upgrade_for_history": "You need to upgrade your account to use the History feature.", + "ask_proj_owner_to_upgrade_for_history": "Please ask the project owner to upgrade to use the History feature.", + "anonymous": "Anonymous", + "generic_something_went_wrong": "Sorry, something went wrong", + "restoring": "Restoring", + "restore_to_before_these_changes": "Restore to before these changes", + "profile_complete_percentage": "Your profile is __percentval__% complete", + "file_has_been_deleted": "__filename__ has been deleted", + "sure_you_want_to_restore_before": "Are you sure you want to restore __filename__ to before the changes on __date__?", + "rename_project": "Rename Project", + "about_to_delete_projects": "You are about to delete the following projects:", + "about_to_leave_projects": "You are about to leave the following projects:", + "upload_zipped_project": "Upload Zipped Project", + "upload_a_zipped_project": "Upload a zipped project", + "your_profile": "Your Profile", + "institution": "Institution", + "role": "Role", + "folders": "Folders", + "disconnected": "Disconnected", + "please_refresh": "Please refresh the page to continue.", + "lost_connection": "Lost Connection", + "reconnecting_in_x_secs": "Reconnecting in __seconds__ secs", + "try_now": "Try Now", + "reconnecting": "Reconnecting", + "saving_notification_with_seconds": "Saving __docname__... (__seconds__ seconds of unsaved changes)", + "help_us_spread_word": "Help us spread the word about __appName__", + "share_sl_to_get_rewards": "Share __appName__ with your friends and colleagues and unlock the rewards below", + "post_on_facebook": "Post on Facebook", + "share_us_on_googleplus": "Share us on Google+", + "email_us_to_your_friends": "Email us to your friends", + "link_to_us": "Link to us from your website", + "direct_link": "Direct Link", + "sl_gives_you_free_stuff_see_progress_below": "When someone starts using __appName__ after your recommendation we'll give you some free stuff to say thanks! Check your progress below.", + "spread_the_word_and_fill_bar": "Spread the word and fill this bar up", + "one_free_collab": "One free collaborator", + "three_free_collab": "Three free collaborators", + "free_dropbox_and_history": "Free Dropbox and History", + "you_not_introed_anyone_to_sl": "You've not introduced anyone to __appName__ yet. Get sharing!", + "you_introed_small_number": " You've introduced __numberOfPeople__ person to __appName__. Good job, but can you get some more?", + "you_introed_high_number": " You've introduced __numberOfPeople__ people to __appName__. Good job!", + "link_to_sl": "Link to __appName__", + "can_link_to_sl_with_html": "You can link to __appName__ with the following HTML:", + "year": "year", + "month": "month", + "subscribe_to_this_plan": "Subscribe to this plan", + "your_plan": "Your plan", + "your_subscription": "Your Subscription", + "on_free_trial_expiring_at": "You are currently using a free trial which expires on __expiresAt__.", + "choose_a_plan_below": "Choose a plan below to subscribe to.", + "currently_subscribed_to_plan": "You are currently subscribed to the __planName__ plan.", + "change_plan": "Change plan", + "next_payment_of_x_collectected_on_y": "The next payment of __paymentAmmount__ will be collected on __collectionDate__.", + "update_your_billing_details": "Update Your Billing Details", + "subscription_canceled_and_terminate_on_x": " Your subscription has been canceled and will terminate on __terminateDate__. No further payments will be taken.", + "your_subscription_has_expired": "Your subscription has expired.", + "create_new_subscription": "Create New Subscription", + "problem_with_subscription_contact_us": "There is a problem with your subscription. Please contact us for more information.", + "manage_group": "Manage Group", + "loading_billing_form": "Loading billing details form", + "you_have_added_x_of_group_size_y": "You have added __addedUsersSize__ of __groupSize__ available members", + "remove_from_group": "Remove from group", + "group_account": "Group Account", + "registered": "Registered", + "no_members": "No members", + "add_more_members": "Add more members", + "add": "Add", + "thanks_for_subscribing": "Thanks for subscribing!", + "your_card_will_be_charged_soon": "Your card will be charged soon.", + "if_you_dont_want_to_be_charged": "If you do not want to be charged again ", + "add_your_first_group_member_now": "Add your first group members now", + "thanks_for_subscribing_you_help_sl": "Thank you for subscribing to the __planName__ plan. It's support from people like yourself that allows __appName__ to continue to grow and improve.", + "back_to_your_projects": "Back to your projects", + "goes_straight_to_our_inboxes": "It goes straight to both our inboxes", + "need_anything_contact_us_at": "If there is anything you ever need please feel free to contact us directly at", + "regards": "Regards", + "about": "About", + "comment": "Comment", + "restricted_no_permission": "Restricted, sorry you don't have permission to load this page.", + "online_latex_editor": "Online LaTeX Editor", + "meet_team_behind_latex_editor": "Meet the team behind your favourite online LaTeX editor.", + "follow_me_on_twitter": "Follow me on Twitter", + "motivation": "Motivation", + "evolved": "Evolved", + "the_easy_online_collab_latex_editor": "The easy to use, online, collaborative LaTeX editor", + "get_started_now": "Get started now", + "sl_used_over_x_people_at": "__appName__ is used by over __numberOfUsers__ students and academics at:", + "collaboration": "Collaboration", + "work_on_single_version": "Work together on a single version", + "view_collab_edits": "View collaborator edits ", + "ease_of_use": " Ease of Use", + "no_complicated_latex_install": "No complicated LaTeX installation", + "all_packages_and_templates": "All the packages and __templatesLink__ you need", + "document_history": "Document history", + "see_what_has_been": "See what has been ", + "added": "added", + "and": "and", + "removed": "removed", + "restore_to_any_older_version": "Restore to any older version", + "work_from_anywhere": "Work from anywhere", + "acces_work_from_anywhere": "Access your work from anywhere in the world", + "work_offline_and_sync_with_dropbox": "Work offline and sync your files via Dropbox and GitHub", + "over": "over", + "view_templates": "View templates", + "nothing_to_install_ready_to_go": "There's nothing complicated or difficult for you to install, and you can __start_now__, even if you've never seen it before. __appName__ comes with a complete, ready to go LaTeX environment which runs on our servers.", + "start_using_latex_now": "start using LaTeX right now", + "get_same_latex_setup": "With __appName__ you get the same LaTeX set-up wherever you go. By working with your colleagues and students on __appName__, you know that you're not going to hit any version inconsistencies or package conflicts.", + "support_lots_of_features": "We support almost all LaTeX features, including inserting images, bibliographies, equations, and much more! Read about all the exciting things you can do with __appName__ in our __help_guides_link__", + "latex_guides": "LaTeX guides", + "reset_password": "Reset Password", + "set_password": "Set Password", + "updating_site": "Updating Site", + "bonus_please_recommend_us": "Bonus - Please recommend us", + "admin": "admin", + "subscribe": "Subscribe", + "update_billing_details": "Update Billing Details", + "thank_you": "Thank You", + "group_admin": "Group Admin", + "all_templates": "All Templates", + "your_settings": "Your settings", + "maintenance": "Maintenance", + "to_many_login_requests_2_mins": "This account has had too many login requests. Please wait 2 minutes before trying to log in again", + "email_or_password_wrong_try_again": "Your email or password is incorrect. Please try again", + "rate_limit_hit_wait": "Rate limit hit. Please wait a while before retrying", + "problem_changing_email_address": "There was a problem changing your email address. Please try again in a few moments. If the problem continues please contact us.", + "single_version_easy_collab_blurb": "__appName__ makes sure that you're always up to date with your collaborators and what they are doing. There is only a single master version of each document which everyone has access to. It's impossible to make conflicting changes, and you don't have to wait for your colleagues to send you the latest draft before you can keep working.", + "can_see_collabs_type_blurb": "If multiple people want to work on a document at the same time then that's no problem. You can see where your colleagues are typing directly in the editor and their changes show up on your screen immediately.", + "work_directly_with_collabs": "Work directly with your collaborators", + "work_with_word_users": "Work with Word users", + "work_with_word_users_blurb": "__appName__ is so easy to get started with that you'll be able to invite your non-LaTeX colleagues to contribute directly to your LaTeX documents. They'll be productive from day one and be able to pick up small amounts of LaTeX as they go.", + "view_which_changes": "View which changes have been", + "sl_included_history_of_changes_blurb": "__appName__ includes a history of all of your changes so you can see exactly who changed what, and when. This makes it extremely easy to keep up to date with any progress made by your collaborators and allows you to review recent work.", + "can_revert_back_blurb": "In a collaboration or on your own, sometimes mistakes are made. Reverting back to previous versions is simple and removes the risk of losing work or regretting a change.", + "start_using_sl_now": "Start using __appName__ now", + "over_x_templates_easy_getting_started": "There are thousands of __templates__ in our template gallery, so it's really easy to get started, whether you're writing a journal article, thesis, CV or something else.", + "done": "Done", + "change": "Change", + "page_not_found": "Page Not Found", + "please_see_help_for_more_info": "Please see our help guide for more information", + "this_project_will_appear_in_your_dropbox_folder_at": "This project will appear in your Dropbox folder at ", + "member_of_group_subscription": "You are a member of a group subscription managed by __admin_email__. Please contact them to manage your subscription.\n", + "about_henry_oswald": "is a software engineer living in London. He built the original prototype of __appName__ and has been responsible for building a stable and scalable platform. Henry is a strong advocate of Test Driven Development and makes sure we keep the __appName__ code clean and easy to maintain.", + "about_james_allen": "has a PhD in theoretical physics and is passionate about LaTeX. He created one of the first online LaTeX editors, ScribTeX, and has played a large role in developing the technologies that make __appName__ possible.", + "two_strong_principles_behind_sl": "There are two strong driving principles behind our work on __appName__:", + "want_to_improve_workflow_of_as_many_people_as_possible": "We want to improve the workflow of as many people as possible.", + "detail_on_improve_peoples_workflow": "LaTeX is notoriously hard to use, and collaboration is always difficult to coordinate. We believe that we've developed some great solutions to help people who face these problems, and we want to make sure that __appName__ is accessible to as many people as possible. We've tried to keep our pricing fair, and have released much of __appName__ as open source so that anyone can host their own.", + "want_to_create_sustainable_lasting_legacy": "We want to create a sustainable and lasting legacy.", + "details_on_legacy": "Development and maintenance of a product like __appName__ takes a lot of time and work, so it's important that we can find a business model that will support this both now, and in the long term. We don't want __appName__ to be dependent on external funding or disappear due to a failed business model. I'm pleased to say that we're currently able to run __appName__ profitably and sustainably, and expect to be able to do so in the long term.", + "get_in_touch": "Get in touch", + "want_to_hear_from_you_email_us_at": "We'd love to hear from anyone who is using __appName__, or wants to have a chat about what we're doing. You can get in touch with us at ", + "cant_find_email": "That email address is not registered, sorry.", + "plans_amper_pricing": "Plans & Pricing", + "documentation": "Documentation", + "account": "Account", + "subscription": "Subscription", + "log_out": "Log Out", + "en": "English", + "pt": "Portuguese", + "es": "Spanish", + "fr": "French", + "de": "German", + "it": "Italian", + "da": "Danish", + "sv": "Swedish", + "no": "Norwegian", + "nl": "Dutch", + "pl": "Polish", + "ru": "Russian", + "uk": "Ukrainian", + "ro": "Romanian", + "click_here_to_view_sl_in_lng": "Click here to use __appName__ in __lngName__", + "language": "Language", + "upload": "Upload", + "menu": "Menu", + "full_screen": "Full screen", + "logs_and_output_files": "Logs and output files", + "download_pdf": "Download PDF", + "split_screen": "Split screen", + "clear_cached_files": "Clear cached files", + "go_to_code_location_in_pdf": "Go to code location in PDF", + "please_compile_pdf_before_download": "Please compile your project before downloading the PDF", + "remove_collaborator": "Remove collaborator", + "add_to_folders": "Add to folders", + "download_zip_file": "Download .zip File", + "price": "Price", + "close": "Close", + "keybindings": "Keybindings", + "restricted": "Restricted", + "start_x_day_trial": "Start Your __len__-Day Free Trial Today!", + "buy_now": "Buy Now!", + "cs": "Czech", + "view_all": "View All", + "terms": "Terms", + "privacy": "Privacy", + "contact": "Contact", + "change_to_this_plan": "Change to this plan", + "processing": "processing", + "sure_you_want_to_change_plan": "Are you sure you want to change plan to __planName__?", + "move_to_annual_billing": "Move to Annual Billing", + "annual_billing_enabled": "Annual billing enabled", + "move_to_annual_billing_now": "Move to annual billing now", + "change_to_annual_billing_and_save": "Get __percentage__ off with annual billing. If you switch now you'll save __yearlySaving__ per year.", + "missing_template_question": "Missing Template?", + "tell_us_about_the_template": "If we are missing a template please either: Send us a copy of the template, a __appName__ url to the template or let us know where we can find the template. Also please let us know a little about the template for the description.", + "email_us": "Email us", + "this_project_is_public_read_only": "This project is public and can be viewed but not edited by anyone with the URL", + "tr": "Turkish", + "select_files": "Select file(s)", + "drag_files": "drag file(s)", + "upload_failed_sorry": "Upload failed, sorry :(", + "inserting_files": "Inserting file...", + "password_reset_token_expired": "Your password reset token has expired. Please request a new password reset email and follow the link there.", + "merge_project_with_github": "Merge Project with GitHub", + "pull_github_changes_into_sharelatex": "Pull GitHub changes into __appName__", + "push_sharelatex_changes_to_github": "Push __appName__ changes to GitHub", + "features": "Features", + "commit": "Commit", + "commiting": "Committing", + "importing_and_merging_changes_in_github": "Importing and merging changes in GitHub", + "upgrade_for_faster_compiles": "Upgrade for faster compiles and to increase your timeout limit", + "free_accounts_have_timeout_upgrade_to_increase": "Free accounts have a one minute timeout, whereas upgraded accounts have a timeout of four minutes.", + "learn_how_to_make_documents_compile_quickly": "Learn how to fix compile timeouts", + "zh-CN": "Chinese", + "cn": "Chinese (Simplified)", + "sync_to_github": "Sync to GitHub", + "sync_to_dropbox_and_github": "Sync to Dropbox and GitHub", + "project_too_large": "Project too large", + "project_too_large_please_reduce": "This project has too much editable text, please try and reduce it. The largest files are:", + "please_ask_the_project_owner_to_link_to_github": "Please ask the project owner to link this project to a GitHub repository", + "go_to_pdf_location_in_code": "Go to PDF location in code", + "ko": "Korean", + "ja": "Japanese", + "about_brian_gough": "is a software developer and former theoretical high energy physicist at Fermilab and Los Alamos. For many years he published free software manuals commercially using TeX and LaTeX and was also the maintainer of the GNU Scientific Library.", + "first_few_days_free": "First __trialLen__ days free", + "every": "per", + "credit_card": "Credit Card", + "credit_card_number": "Credit Card Number", + "invalid": "Invalid", + "expiry": "Expiry Date", + "january": "January", + "february": "February", + "march": "March", + "april": "April", + "may": "May", + "june": "June", + "july": "July", + "august": "August", + "september": "September", + "october": "October", + "november": "November", + "december": "December", + "zip_post_code": "Zip / Post Code", + "city": "City", + "address": "Address", + "coupon_code": "Coupon code", + "country": "Country", + "billing_address": "Billing Address", + "upgrade_now": "Upgrade Now", + "state": "State", + "vat_number": "VAT Number", + "you_have_joined": "You have joined __groupName__", + "claim_premium_account": "You have claimed your premium account provided by __groupName__.", + "you_are_invited_to_group": "You are invited to join __groupName__", + "you_can_claim_premium_account": "You can claim a premium account provided by __groupName__ by verifying your email", + "not_now": "Not now", + "verify_email_join_group": "Verify email and join Group", + "check_email_to_complete_group": "Please check your email to complete joining the group", + "verify_email_address": "Verify Email Address", + "group_provides_you_with_premium_account": "__groupName__ provides you with a premium account. Verifiy your email address to upgrade your account.", + "check_email_to_complete_the_upgrade": "Please check your email to complete the upgrade", + "email_link_expired": "Email link expired, please request a new one.", + "services": "Services", + "about_shane_kilkelly": "is a software developer living in Edinburgh. Shane is a strong advocate for Functional Programming, Test Driven Development and takes pride in building quality software.", + "this_is_your_template": "This is your template from your project", + "links": "Links", + "account_settings": "Account Settings", + "search_projects": "Search projects", + "clone_project": "Clone Project", + "delete_project": "Delete Project", + "download_zip": "Download Zip", + "new_project": "New Project", + "blank_project": "Blank Project", + "example_project": "Example Project", + "from_template": "From Template", + "cv_or_resume": "CV or Resume", + "cover_letter": "Cover Letter", + "journal_article": "Journal Article", + "presentation": "Presentation", + "thesis": "Thesis", + "bibliographies": "Bibliographies", + "terms_of_service": "Terms of Service", + "privacy_policy": "Privacy Policy", + "plans_and_pricing": "Plans and Pricing", + "university_licences": "University Licenses", + "security": "Security", + "contact_us": "Contact Us", + "thanks": "Thanks", + "blog": "Blog", + "latex_editor": "LaTeX Editor", + "get_free_stuff": "Get free stuff", + "chat": "Chat", + "your_message": "Your Message", + "loading": "Loading", + "connecting": "Connecting", + "recompile": "Recompile", + "download": "Download", + "email": "Email", + "owner": "Owner", + "read_and_write": "Read and Write", + "read_only": "Read Only", + "publish": "Publish", + "view_in_template_gallery": "View it in template gallery", + "description": "Description", + "unpublish": "Unpublish", + "hotkeys": "Hotkeys", + "saving": "Saving", + "cancel": "Cancel", + "project_name": "Project Name", + "root_document": "Root Document", + "spell_check": "Spell check", + "compiler": "Compiler", + "private": "Private", + "public": "Public", + "delete_forever": "Delete Forever", + "support_and_feedback": "Support and feedback", + "help": "Help", + "latex_templates": "LaTeX Templates", + "info": "Info", + "latex_help_guide": "LaTeX help guide", + "choose_your_plan": "Choose your plan", + "indvidual_plans": "Individual Plans", + "free_forever": "Free forever", + "low_priority_compile": "Low priority compiling", + "unlimited_projects": "Unlimited projects", + "unlimited_compiles": "Unlimited compiles", + "full_history_of_changes": "Full history of changes", + "highest_priority_compiling": "Highest priority compiling", + "dropbox_sync": "Dropbox Sync", + "beta": "Beta", + "sign_up_now": "Sign Up Now", + "annual": "Annual", + "half_price_student": "Half Price Student Plans", + "about_us": "About Us", + "loading_recent_github_commits": "Loading recent commits", + "no_new_commits_in_github": "No new commits in GitHub since last merge.", + "dropbox_sync_description": "Keep your __appName__ projects in sync with your Dropbox. Changes in __appName__ are automatically sent to your Dropbox, and the other way around.", + "github_sync_description": "With GitHub Sync you can link your __appName__ projects to GitHub repositories. Create new commits from __appName__, and merge with commits made offline or in GitHub.", + "github_import_description": "With GitHub Sync you can import your GitHub Repositories into __appName__. Create new commits from __appName__, and merge with commits made offline or in GitHub.", + "link_to_github_description": "You need to authorise __appName__ to access your GitHub account to allow us to sync your projects.", + "unlink": "Unlink", + "unlink_github_warning": "Any projects that you have synced with GitHub will be disconnected and no longer kept in sync with GitHub. Are you sure you want to unlink your GitHub account?", + "github_account_successfully_linked": "GitHub Account Successfully Linked!", + "github_successfully_linked_description": "Thanks, we've successfully linked your GitHub account to __appName__. You can now export your __appName__ projects to GitHub, or import projects from your GitHub repositories.", + "import_from_github": "Import from GitHub", + "github_sync_error": "Sorry, there was an error talking to our GitHub service. Please try again in a few moments.", + "loading_github_repositories": "Loading your GitHub repositories", + "select_github_repository": "Select a GitHub repository to import into __appName__.", + "import_to_sharelatex": "Import to __appName__", + "importing": "Importing", + "github_sync": "GitHub Sync", + "checking_project_github_status": "Checking project status in GitHub", + "account_not_linked_to_github": "Your account is not linked to GitHub", + "project_not_linked_to_github": "This project is not linked to a GitHub repository. You can create a repository for it in GitHub:", + "create_project_in_github": "Create a GitHub repository", + "project_synced_with_git_repo_at": "This project is synced with the GitHub repository at", + "recent_commits_in_github": "Recent commits in GitHub", + "sync_project_to_github": "Sync project to GitHub", + "sync_project_to_github_explanation": "Any changes you have made in __appName__ will be committed and merged with any updates in GitHub.", + "github_merge_failed": "Your changes in __appName__ and GitHub could not be automatically merged. Please manually merge the __sharelatex_branch__ branch into the __master_branch__ branch in git. Click below to continue, after you have manually merged.", + "continue_github_merge": "I have manually merged. Continue", + "export_project_to_github": "Export Project to GitHub", + "github_validation_check": "Please check that the repository name is valid, and that you have permission to create the repository.", + "repository_name": "Repository Name", + "optional": "Optional", + "github_public_description": "Anyone can see this repository. You choose who can commit.", + "github_commit_message_placeholder": "Commit message for changes made in __appName__...", + "merge": "Merge", + "merging": "Merging", + "github_account_is_linked": "Your GitHub account is successfully linked.", + "unlink_github": "Unlink your GitHub account", + "link_to_github": "Link to your GitHub account", + "github_integration": "GitHub Integration", + "github_is_premium": "GitHub sync is a premium feature" +} \ No newline at end of file diff --git a/services/web/locales/en.json b/services/web/locales/en.json new file mode 100644 index 0000000000..63d77e3900 --- /dev/null +++ b/services/web/locales/en.json @@ -0,0 +1,1282 @@ +{ + "last_login": "Last Login", + "invalid_insitituional_email": "Your institution's SSO service returned your email address as __email__, which is at an unexpected domain that we do not recognise as belonging to it. You may be able to change your primary email address via your user profile at your institution to one at your institution's domain. Please contact your IT department if you have any questions.", + "thank_you_for_being_part_of_our_beta_program": "Thank you for being part of our Beta Program, where you can have early access to new features and help us understand your needs better", + "you_will_be_able_to_contact_us_any_time_to_share_your_feedback": "You will be able to contact us any time to share your feedback", + "we_may_also_contact_you_from_time_to_time_by_email_with_a_survey": "We may also contact you from time to time by email with a survey, or to see if you would like to participate in other user research initiatives", + "you_can_opt_in_and_out_of_the_program_at_any_time_on_this_page": "You can opt in and out of the program at any time on this page", + "give_feedback": "Give feedback", + "beta_feature_badge": "Beta feature badge", + "invalid_filename": "Upload failed: check that the file name doesn't contain special characters or trailing/leading whitespace", + "clsi_unavailable": "Sorry, the compile server for your project was temporarily unavailable. Please try again in a few moments.", + "x_price_per_month": "__price__ per month", + "x_price_per_year": "__price__ per year", + "x_price_for_first_month": "__price__ for your first month", + "x_price_for_first_year": "__price__ for your first year", + "normally_x_price_per_month": "Normally __price__ per month", + "normally_x_price_per_year": "Normally __price__ per year", + "then_x_price_per_month": "Then __price__ per month", + "then_x_price_per_year": "Then __price__ per year", + "for_your_first": "for your first", + "sso_not_linked": "You have not linked your account to __provider__. Please log in to your account another way and link your __provider__ account via your account settings.", + "template_gallery": "Template Gallery", + "template_not_found_description": "This way of creating projects from templates has been removed. Please visit our template gallery to find more templates.", + "dropbox_checking_sync_status": "Checking Dropbox Integration status", + "dropbox_sync_in": "Updating Overleaf", + "dropbox_sync_out": "Updating Dropbox", + "dropbox_sync_both": "Updating Overleaf and Dropbox", + "dropbox_synced": "Overleaf and Dropbox are up-to-date", + "dropbox_sync_status_error": "An error has occurred with the Dropbox Integration", + "requesting_password_reset": "Requesting password reset", + "tex_live_version": "TeX Live version", + "email_does_not_belong_to_university": "We don't recognize that domain as being affiliated with your university. Please contact us to add the affiliation.", + "company_name": "Company Name", + "add_company_details": "Add Company Details", + "github_timeout_error": "Syncing your Overleaf project with Github has timed out. This may be due to the overall size of your project, or the number of files/changes to sync, being too large.", + "github_large_files_error": "Merge failed: your Github repository contains files over the 50mb file size limit ", + "no_history_available": "This project doesn't have any history yet. Please make some changes to the project and try again.", + "project_approaching_file_limit": "This project is approaching the file limit", + "recurly_email_updated": "Your billing email address was successfully updated", + "recurly_email_update_needed": "Your billing email address is currently __recurlyEmail__. If needed you can update your billing address to __userEmail__.", + "project_has_too_many_files": "This project has reached the 2000 file limit", + "processing_your_request": "Please wait while we process your request.", + "github_repository_diverged": "The master branch of the linked repository has been force-pushed. Pulling GitHub changes after a force push can cause Overleaf and GitHub to get out of sync. You might need to push changes after pulling to get back in sync.", + "unlink_github_repository": "Unlink Github Repository", + "unlinking": "Unlinking", + "github_no_master_branch_error": "This repository cannot be imported as it is missing the master branch. Please make sure the project has a master branch", + "confirmation_token_invalid": "Sorry, your confirmation token is invalid or has expired. Please request a new email confirmation link.", + "confirmation_link_broken": "Sorry, something is wrong with your confirmation link. Please try copy and pasting the link from the bottom of your confirmation email.", + "duplicate_file": "Duplicate File", + "file_already_exists_in_this_location": "An item named __fileName__ already exists in this location. If you wish to move this file, rename or remove the conflicting file and try again.", + "group_full": "This group is already full", + "no_selection_select_file": "Currently, no file is selected. Please select a file from the file tree.", + "no_selection_create_new_file": "Your project is currently empty. Please create a new file.", + "files_selected": "files selected.", + "home": "Home", + "this_action_cannot_be_undone": "This action cannot be undone.", + "dropbox_email_not_verified": "We have been unable to retrieve updates from your Dropbox account. Dropbox reported that your email address is unverified. Please verify your email address in your Dropbox account to resolve this.", + "link_email_to_join": "Link your institutional email to join __portalTitle__ on __appName__", + "token_access_success": "Access granted", + "token_access_failure": "Cannot grant access; contact the project owner for help", + "trashed_projects": "Trashed Projects", + "trash": "Trash", + "untrash": "Restore", + "delete_and_leave": "Delete / Leave", + "trash_projects": "Trash Projects", + "about_to_trash_projects": "You are about to trash the following projects:", + "archived_projects_info_note": "The Archive now works on a per-user basis. Projects that you decide to archive will only be archived for you, not your collaborators.", + "trashed_projects_info_note": "Overleaf now has a Trash for projects you want to get rid of. Trashing a project won't affect your collaborators.", + "register_intercept_sso": "You can link your __authProviderName__ account from the Account Settings page after logging in.", + "continue_to": "Continue to __appName__", + "project_ownership_transfer_confirmation_1": "Are you sure you want to make __user__ the owner of __project__?", + "project_ownership_transfer_confirmation_2": "This action cannot be undone. The new owner will be notified and will be able to change project access settings (including removing your own access).", + "change_owner": "Change owner", + "change_project_owner": "Change Project Owner", + "faq_pay_by_invoice_answer": "Yes, if you'd like to purchase a group account or site license and would prefer to pay by invoice,\r\nor need to raise a purchase order, please __payByInvoiceLinkOpen__let us know__payByInvoiceLinkClose__.\r\nFor individual accounts or accounts with monthly billing, we can only accept payment online\r\nvia credit or debit card, or PayPal.", + "password_too_long_please_reset": "Maximum password length exceeded. Please reset your password.", + "view_other_options_to_log_in": "View other options to log in", + "we_logged_you_in": "We have logged you in.", + "will_need_to_log_out_from_and_in_with": "You will need to log out from your __email1__ account and then log in with __email2__.", + "resubmit_institutional_email": "Please resubmit your institutional email.", + "opted_out_linking": "You've opted out from linking your __email__ __appName__ account to your institutional account.", + "please_link_to_institution_account": "Please link your __email__ __appName__ account to your __institutionName__ institutional account.", + "register_with_another_email": "Register with __appName__ using another email.", + "register_with_email_provided": "Register with __appName__ using the email and password you provided.", + "security_reasons_linked_accts": "For security reasons, as your institutional email is already associated with the __email__ __appName__ account, we can only allow account linking with that specific account.", + "this_grants_access_to_features": "This grants you access to __appName__ __featureType__ features.", + "to_add_email_accounts_need_to_be_linked": "To add this email, your __appName__ and __institutionName__ accounts will need to be linked.", + "tried_to_log_in_with_email": "You've tried to login with __email__.", + "tried_to_register_with_email": "You've tried to register with __email__, which is already registered with __appName__ as an institutional account.", + "log_in_with_email": "Log in with __email__", + "log_in_with_existing_institution_email": "Please log in with your existing __appName__ account in order to get your __appName__ and __institutionName__ institutional accounts linked.", + "log_out_from": "Log out from __email__", + "logged_in_with_acct_that_cannot_be_linked": "You've logged in with an __appName__ account that cannot be linked to your institution account.", + "logged_in_with_email": "You are currently logged in to __appName__ with the email __email__.", + "looks_like_logged_in_with_email": "It looks like you're already logged in to __appName__ with the email __email__.", + "make_primary_to_log_in_through_institution": "Make your __email__ email primary to log in through your institution portal. ", + "make_primary_which_will_allow_log_in_through_institution": "Making it your primary __appName__ email will allow you to log in through your institution portal.", + "need_to_do_this_to_access_license": "You'll need to do this in order to have access to the benefits from the __institutionName__ site license.", + "institutional_login_not_supported": "Your university doesn't support institutional login yet, but you can still register with your institutional email.", + "link_account": "Link Account", + "link_accounts": "Link Accounts", + "link_accounts_and_add_email": "Link Accounts and Add Email", + "link_your_accounts": "Link your accounts", + "log_in_and_link": "Log in and link", + "log_in_and_link_accounts": "Log in and link accounts", + "log_in_first_to_proceed": "You will need to log in first to proceed.", + "log_in_through_institution": "Log in through your institution", + "if_have_existing_can_link": "If you have an existing __appName__ account on another email, you can link it to your __institutionName__ account by clicking __clickText__.", + "if_owner_can_link": "If you own the __appName__ account with __email__, you will be allowed to link it to your __institutionName__ institutional account.", + "ignore_and_continue_institution_linking": "You can also ignore this and continue to __appName__ with your __email__ account.", + "in_order_to_match_institutional_metadata": "In order to match your institutional metadata, we've linked your account using __email__.", + "in_order_to_match_institutional_metadata_associated": "In order to match your institutional metadata, your account is associated with the email __email__.", + "institution_account_tried_to_add_already_registered": "The email/institution account you tried to add is already registered with __appName__.", + "institution_acct_successfully_linked": "Your __appName__ account was successfully linked to your __institutionName__ institutional account.", + "institution_email_new_to_app": "Your __institutionName__ email (__email__) is new to __appName__.", + "institutional": "Institutional", + "doing_this_allow_log_in_through_institution": "Doing this will allow you to log in to __appName__ through your institution portal.", + "doing_this_will_verify_affiliation_and_allow_log_in": "Doing this will verify your affiliation with __institutionName__ and will allow you to log in to __appName__ through your institution.", + "email_already_associated_with": "The __email1__ email is already associated with the __email2__ __appName__ account.", + "enter_institution_email_to_log_in": "Enter your institutional email to log in through your institution.", + "find_out_more_about_institution_login": "Find out more about institutional login", + "get_in_touch_having_problems": "Get in touch with support if you're having problems", + "go_back_and_link_accts": "Go back and link your accounts", + "go_back_and_log_in": "Go back and log in again", + "go_back_to_institution": "Go back to your institution", + "can_link_institution_email_by_clicking": "You can link your __email__ __appName__ account to your __institutionName__ account by clicking __clickText__.", + "can_link_institution_email_to_login": "You can link your __email__ __appName__ account to your __institutionName__ account, which will allow you to log in to __appName__ through your institution portal.", + "can_link_your_institution_acct": "You can now link your __appName__ account to your __institutionName__ institutional account.", + "can_now_link_to_institution_acct": "You can link your __email__ __appName__ account to your __institutionName__ institutional account.", + "click_link_to_proceed": "Click __clickText__ below to proceed.", + "continue_with_email": "Continue to __appName__ with your __email__ account", + "create_new_account": "Create new account", + "do_not_have_acct_or_do_not_want_to_link": "If you don't have an __appName__ account, or if you don't want to link to your __institutionName__ account, please click __clickText__.", + "do_not_link_accounts": "Don't link accounts", + "account_has_been_link_to_institution_account": "Your __appName__ account on __email__ has been linked to your __institutionName__ institutional account.", + "account_linking": "Account Linking", + "account_with_email_exists": "It looks like an __appName__ account with the email __email__ already exists.", + "acct_linked_to_institution_acct": "This account is linked to your __institutionName__ institution account.", + "alternatively_create_new_institution_account": "Alternatively, you can create a new account with your institution email (__email__) by clicking __clickText__.", + "as_a_member_of_sso": "As a member of __institutionName__, you can log in to __appName__ through your institution portal.", + "as_a_member_of_sso_required": "As a member of __institutionName__, you must log in to __appName__ through your institution portal.", + "can_link_institution_email_acct_to_institution_acct": "You can now link your __email__ __appName__ account to your __institutionName__ institutional account.", + "can_link_institution_email_acct_to_institution_acct_alt": "You can link your __email__ __appName__ account to your __institutionName__ institutional account.", + "user_deletion_error": "Sorry, something went wrong deleting your account. Please try again in a minute.", + "card_must_be_authenticated_by_3dsecure": "Your card must be authenticated with 3D Secure before continuing", + "view_your_invoices": "View Your Invoices", + "payment_provider_unreachable_error": "Sorry, there was an error talking to our payment provider. Please try again in a few moments.\nIf you are using any ad or script blocking extensions in your browser, you may need to temporarily disable them.", + "dropbox_unlinked_because_access_denied": "Your Dropbox account has been unlinked because the Dropbox service rejected your stored credentials. Please relink your Dropbox account to continue using it with Overleaf.", + "dropbox_unlinked_because_full": "Your Dropbox account has been unlinked because it is full, and we can no longer send updates to it. Please free up some space and relink your Dropbox account to continue using it with Overleaf.", + "upgrade_for_longer_compiles": "Upgrade to increase your timeout limit.", + "ask_proj_owner_to_upgrade_for_longer_compiles": "Please ask the project owner to upgrade to increase the timeout limit.", + "plus_upgraded_accounts_receive": "Plus with an upgraded account you get", + "sso_account_already_linked": "Account already linked to another __appName__ user", + "subscription_admins_cannot_be_deleted": "You cannot delete your account while on a subscription. Please cancel your subscription and try again. If you keep seeing this message please contact us.", + "delete_acct_no_existing_pw": "Please use the password reset form to set a password before deleting your account", + "empty_zip_file": "Zip doesn't contain any file", + "you_can_now_login_through_overleaf_sl": "You can now log in to your ShareLaTeX account through Overleaf.", + "find_out_more_nt": "Find out more.", + "register_error": "Registration error", + "login_error": "Login error", + "sso_link_error": "Error linking SSO account", + "more_info": "More Info", + "synctex_failed": "Couldn't find the corresponding source file", + "linked_collabratec_description": "Use Collabratec to manage your __appName__ projects.", + "reset_from_sl": "Please reset your password from ShareLaTeX and login there to move your account to Overleaf", + "dropbox_already_linked_error": "Your Dropbox account cannot be linked as it is already linked with another Overleaf account.", + "github_too_many_files_error": "This repository cannot be imported as it exceeds the maximum number of files allowed", + "linked_accounts": "linked accounts", + "linked_accounts_explained": "You can link your __appName__ account with other services to enable the features described below", + "oauth_orcid_description": " Securely establish your identity by linking your ORCID iD to your __appName__ account. Submissions to participating publishers will automatically include your ORCID iD for improved workflow and visibility. ", + "no_existing_password": "Please use the password reset form to set your password", + " to_reactivate_your_subscription_go_to": "To reactivate your subscription go to", + "subscription_canceled": "Subscription Canceled", + "coupons_not_included": "This does not include your current discounts, which will be applied automatically before your next payment", + "email_already_registered_secondary": "This email is already registered as a secondary email", + "secondary_email_password_reset": "That email is registered as a secondary email. Please enter the primary email for your account.", + "if_registered_email_sent": "If you have an account, we have sent you an email.", + "reconfirm": "reconfirm", + "request_reconfirmation_email": "Request reconfirmation email", + "reconfirm_explained": "We need to reconfirm your account. Please request a password reset link via the form below to reconfirm your account. If you have any problems reconfirming your account, please contact us at", + "upload_failed": "Upload failed", + "file_too_large": "File too large", + "zip_contents_too_large": "Zip contents too large", + "invalid_zip_file": "Invalid zip file", + "make_primary": "Make Primary", + "make_email_primary_description": "Make this the primary email, used to log in", + "github_sync_repository_not_found_description": "The linked repository has either been removed, or you no longer have access to it. You can set up sync with a new repository by cloning the project and using the 'Github' menu item. You can also unlink the repository from this project.", + "unarchive": "Restore", + "cant_see_what_youre_looking_for_question": "Can't see what you're looking for?", + "something_went_wrong_canceling_your_subscription": "Something went wrong canceling your subscription. Please contact support.", + "department": "Department", + "notification_features_upgraded_by_affiliation": "Good news! Your affiliated organization __institutionName__ has a partnership with Overleaf, and you now have access to all of Overleaf's Professional features.", + "notification_personal_subscription_not_required_due_to_affiliation": " Good news! Your affiliated organization __institutionName__ has a partnership with Overleaf, and you now have access to Overleaf's Professional features through your affiliation. You can cancel your personal subscription without losing access to any of your benefits.", + "github_private_description": "You choose who can see and commit to this repository.", + "notification_project_invite_message": "__userName__ would like you to join __projectName__", + "notification_project_invite_accepted_message": "You've joined __projectName__", + "subject_to_additional_vat": "Prices may be subject to additional VAT, depending on your country.", + "select_country_vat": "Please select your country on the payment page to view the total price including any VAT.", + "to_change_access_permissions": "To change access permissions, please ask the project owner", + "file_name_in_this_project": "File Name In This Project", + "new_snippet_project": "Untitled", + "loading_content": "Creating Project", + "there_was_an_error_opening_your_content": "There was an error creating your project", + "sorry_something_went_wrong_opening_the_document_please_try_again": "Sorry, an unexpected error occurred when trying to open this content on Overleaf. Please try again.", + "the_required_parameters_were_not_supplied": "The link to open this content on Overleaf was missing some required parameters. If this keeps happening for links on a particular site, please report this to them.", + "more_than_one_kind_of_snippet_was_requested": "The link to open this content on Overleaf included some invalid parameters. If this keeps happening for links on a particular site, please report this to them.", + "the_supplied_parameters_were_invalid": "The link to open this content on Overleaf included some invalid parameters. If this keeps happening for links on a particular site, please report this to them.", + "unable_to_extract_the_supplied_zip_file": "Opening this content on Overleaf failed because the zip file could not be extracted. Please ensure that it is a valid zip file. If this keeps happening for links on a particular site, please report this to them.", + "the_file_supplied_is_of_an_unsupported_type ": "The link to open this content on Overleaf pointed to the wrong kind of file. Valid file types are .tex documents and .zip files. If this keeps happening for links on a particular site, please report this to them.", + "the_requested_publisher_was_not_found": "The link to open this content on Overleaf specified a publisher that could not be found. If this keeps happening for links on a particular site, please report this to them.", + "the_supplied_uri_is_invalid": "The link to open this content on Overleaf included an invalid URI. If this keeps happening for links on a particular site, please report this to them.", + "the_requested_conversion_job_was_not_found": "The link to open this content on Overleaf specified a conversion job that could not be found. It's possible that the job has expired and needs to be run again. If this keeps happening for links on a particular site, please report this to them.", + "not_found_error_from_the_supplied_url": "The link to open this content on Overleaf pointed to a file that could not be found. If this keeps happening for links on a particular site, please report this to them.", + "too_many_requests": "Too many requests were received in a short space of time. Please wait for a few moments and try again.", + "password_change_passwords_do_not_match": "Passwords do not match", + "github_for_link_shared_projects": "This project was accessed via link-sharing and won't be synchronised with your Github unless you are invited via e-mail by the project owner.", + "browsing_project_latest_for_pseudo_label": "Browsing your project's current state", + "history_label_project_current_state": "Current state", + "download_project_at_this_version": "Download project at this version", + "submit": "submit", + "help_articles_matching": "Help articles matching your subject", + "dropbox_for_link_share_projs": "This project was accessed via link-sharing and won't be synchronised to your Dropbox unless you are invited via e-mail by the project owner.", + "clear_search": "clear search", + "email_registered_try_alternative": "Sorry, we do not have an account matching those credentials. Perhaps you signed up using a different provider?", + "access_your_projects_with_git": "Access your projects with Git", + "ask_proj_owner_to_upgrade_for_git_bridge": "Ask the project owner to upgrade their account to use git", + "export_csv": "Export CSV", + "add_comma_separated_emails_help": "Separate multiple email addresses using the comma (,) character.", + "members_management": "Members management", + "managers_management": "Managers management", + "institution_account": "Institution Account", + "git": "Git", + "clone_with_git": "Clone with Git", + "git_bridge_modal_description": "You can git clone your project using the link displayed below.", + "managers_cannot_remove_admin": "Admins cannot be removed", + "managers_cannot_remove_self": "Managers cannot remove themselves", + "user_not_found": "User not found", + "user_already_added": "User already added", + "bonus_twitter_share_text": "I'm using __appName__, the free online collaborative LaTeX editor - it's awesome and easy to use!", + "bonus_email_share_header": "Online LaTeX editor you may like", + "bonus_email_share_body": "Hey, I have been using the online LaTeX editor __appName__ recently and thought you might like to check it out.", + "bonus_share_link_text": "Online LaTeX Editor __appName__", + "bonus_facebook_name": "__appName__ - Online LaTeX Editor", + "bonus_facebook_caption": "Free Unlimited Projects and Compiles", + "bonus_facebook_description": "__appName__ is a free online LaTeX Editor. Real time collaboration like Google Docs, with Dropbox, history and auto-complete.", + "remove_manager": "Remove manager", + "invalid_element_name": "Could not copy your project because of filenames containing invalid characters\r\n(such as asterisks, slashes or control characters). Please rename the files and\r\ntry again.", + "collabratec_account_not_registered": "IEEE Collabratec™ account not registered. Please connect to Overleaf from IEEE Collabratec™ or login with a different account.", + "password_change_failed_attempt": "Password change failed", + "password_change_successful": "Password changed", + "not_registered": "Not registered", + "featured_latex_templates": "Featured LaTeX Templates", + "no_featured_templates": "No featured templates", + "try_again": "Please try again", + "email_required": "Email required", + "registration_error": "Registration error", + "newsletter-accept": "I’d like emails about product offers and company news and events.", + "resending_confirmation_email": "Resending confirmation email", + "please_confirm_email": "Please confirm your email __emailAddress__ by clicking on the link in the confirmation email ", + "register_using_service": "Register using __service__", + "login_to_overleaf": "Log in to Overleaf", + "login_with_email": "Log in with your email", + "login_with_service": "Log in with __service__", + "first_time_sl_user": "First time here as a ShareLaTeX user", + "migrate_from_sl": "Migrate from ShareLaTeX", + "dont_have_account": "Don't have an account?", + "sl_extra_info_tooltip": "Please log in to ShareLaTeX to move your account to Overleaf. It will only take a few seconds. If you have a ShareLaTeX subscription, it will automatically be transferred to Overleaf.", + "register_using_email": "Register using your email", + "login_register_or": "or", + "to_add_more_collaborators": "To add more collaborators or turn on link sharing, please ask the project owner", + "by": "by", + "emails": "Emails", + "editor_theme": "Editor theme", + "overall_theme": "Overall theme", + "faq_how_does_free_trial_works_answer": "You get full access to your chosen __appName__ plan during your __len__-day free trial. There is no obligation to continue beyond the trial. Your card will be charged at the end of your __len__ day trial unless you cancel before then. You can cancel via your subscription settings.", + "thousands_templates": "Thousands of templates", + "get_instant_access_to": "Get instant access to", + "ask_proj_owner_to_upgrade_for_full_history": "Please ask the project owner to upgrade to access this project's full history.", + "currently_seeing_only_24_hrs_history": "You're currently seeing the last 24 hours of changes in this project.", + "archive_projects": "Archive Projects", + "archive_and_leave_projects": "Archive and Leave Projects", + "about_to_archive_projects": "You are about to archive the following projects:", + "please_confirm_your_email_before_making_it_default": "Please confirm your email before making it the default.", + "back_to_editor": "Back to the editor", + "generic_history_error": "Something went wrong trying to fetch your project's history. If the error persists, please contact us via:", + "unconfirmed": "Unconfirmed", + "please_check_your_inbox": "Please check your inbox", + "resend_confirmation_email": "Resend confirmation email", + "history_label_created_by": "Created by", + "history_label_this_version": "Label this version", + "history_add_label": "Add label", + "history_adding_label": "Adding label", + "history_new_label_name": "New label name", + "history_new_label_added_at": "A new label will be added as of", + "history_delete_label": "Delete label", + "history_deleting_label": "Deleting label", + "history_are_you_sure_delete_label": "Are you sure you want to delete the following label", + "browsing_project_labelled": "Browsing project version labelled", + "history_view_all": "All history", + "history_view_labels": "Labels", + "history_view_a11y_description": "Show all of the project history or only labelled versions.", + "add_another_email": "Add another email", + "start_by_adding_your_email": "Start by adding your email address.", + "is_email_affiliated": "Is your email affiliated with an institution? ", + "let_us_know": "Let us know", + "add_new_email": "Add new email", + "error_performing_request": "An error has occurred while performing your request.", + "reload_emails_and_affiliations": "Reload emails and affiliations", + "emails_and_affiliations_title": "Emails and Affiliations", + "emails_and_affiliations_explanation": "Add additional email addresses to your account to access any upgrades your university or institution has, to make it easier for collaborators to find you, and to make sure you can recover your account.", + "institution_and_role": "Institution and role", + "add_role_and_department": "Add role and department", + "save_or_cancel-save": "Save", + "save_or_cancel-or": "or", + "save_or_cancel-cancel": "Cancel", + "make_default": "Make default", + "remove": "remove", + "confirm_email": "Confirm Email", + "invited_to_join_team": "You have been invited to join a team", + "join_team": "Join Team", + "accepted_invite": "Accepted invite", + "invited_to_group": "__inviterName__ has invited you to join a team on __appName__", + "join_team_explanation": "Please click the button below to join the team and enjoy the benefits of an upgraded __appName__ account", + "accept_invitation": "Accept invitation", + "joined_team": "You have joined the team managed by __inviterName__", + "compare_to_another_version": "Compare to another version", + "file_action_edited": "Edited", + "file_action_renamed": "Renamed", + "file_action_created": "Created", + "file_action_deleted": "Deleted", + "browsing_project_as_of": "Browsing project as of", + "view_single_version": "View single version", + "font_family": "Font Family", + "line_height": "Line Height", + "compact": "Compact", + "wide": "Wide", + "default": "Default", + "leave": "Leave", + "archived_projects": "Archived Projects", + "archive": "Archive", + "student_disclaimer": "The educational discount applies to all students at secondary and postsecondary institutions (schools and universities). We may contact you to confirm that you're eligible for the discount.", + "billed_after_x_days": "You won’t be billed until after your __len__ day trial expires.", + "looking_multiple_licenses": "Looking for multiple licenses?", + "reduce_costs_group_licenses": "You can cut down on paperwork and reduce costs with our discounted group licenses.", + "find_out_more": "Find out More", + "compare_plan_features": "Compare Plan Features", + "in_good_company": "You're In Good Company", + "unlimited": "Unlimited", + "priority_support": "Priority support", + "dropbox_integration_lowercase": "Dropbox integration", + "github_integration_lowercase": "GitHub integration", + "discounted_group_accounts": "discounted group accounts", + "referring_your_friends": "referring your friends", + "still_have_questions": "Still have questions?", + "quote_erdogmus": "The ability to track changes and the real-time collaborative nature is what sets ShareLaTeX apart.", + "quote_henderson": "ShareLaTeX has proven to be a powerful and robust collaboration tool that is widely used in our School.", + "best_value": "Best value", + "faq_how_free_trial_works_question": "How does the free trial work?", + "faq_change_plans_question": "Can I change plans later?", + "faq_do_collab_need_premium_question": "Do my collaborators also need premium accounts?", + "faq_need_more_collab_question": "What if I need more collaborators?", + "faq_purchase_more_licenses_question": "Can I purchase additional licenses for my colleagues?", + "faq_monthly_or_annual_question": "Should I choose monthly or annual billing?", + "faq_how_to_pay_question": "Can I pay online with a credit or debit card, or PayPal?", + "faq_pay_by_invoice_question": "Can I pay by invoice / purchase order?", + "reference_search": "Advanced reference search", + "reference_search_info": "You can always search by citation key, and advanced reference search lets you also search by author, title, year or journal.", + "reference_sync": "Reference manager sync", + "reference_sync_info": "Manage your reference library in Mendeley and link it directly to a .bib file in Overleaf, so you can easily cite anything in your Mendeley library.", + "faq_how_free_trial_works_answer": "You get full access to your chosen __appName__ plan during your __len__-day free trial. There is no obligation to continue beyond the trial. Your card will be charged at the end of your __len__ day trial unless you cancel before then. You can cancel via your subscription settings.", + "faq_change_plans_answer": "Yes, you can change your plan at any time via your subscription settings. This includes options to switch to a different plan, or to switch between monthly and annual billing options, or to cancel to downgrade to the free plan.", + "faq_do_collab_need_premium_answer": "Premium features, such as tracked changes, will be available to your collaborators on projects that you have created, even if those collaborators have free accounts.", + "faq_need_more_collab_answer": "You can upgrade to one of our paid accounts, which support more collaborators. You can also earn additional collaborators on our free accounts by __referFriendsLink__.", + "faq_purchase_more_licenses_answer": "Yes, we provide __groupLink__, which are easy to manage, help to save on paperwork, and reduce the cost of purchasing multiple licenses.", + "faq_monthly_or_annual_answer": "Annual billing offers a way to cut down on your admin and paperwork. If you’d prefer to manage a single payment every year, instead of twelve, annual billing is for you.", + "faq_how_to_pay_answer": "Yes, you can. All major credit and debit cards and Paypal are supported. Select the plan you’d like above, and you’ll have the option to pay by card or to go through to PayPal when it’s time to set up payment.", + "powerful_latex_editor": "Powerful LaTeX editor", + "realtime_track_changes": "Real-time track changes", + "realtime_track_changes_info": "Now you don’t have to choose between tracked changes and typesetting in LaTeX. Leave comments, keep track of TODOs, and accept or reject others’ changes.", + "full_doc_history_info": "Travel back in time to see any version and who made changes. No matter what happens, we've got your back.", + "dropbox_integration_info": "Work online and offline seamlessly with two-way Dropbox sync. Changes you make locally will be sent automatically to the version on Overleaf and vice versa.", + "github_integration_info": "Push and pull commits to and from GitHub, so you or your collaborators can work offline with git and online with Overleaf.", + "latex_editor_info": "Everything you need in a modern LaTeX editor --- spell check, intelligent autocomplete, syntax highlighting, dozens of color themes, vim and emacs bindings, help with LaTeX warnings and error messages, and much more.", + "change_plans_any_time": "You can change plans or change your account at any time. ", + "number_collab": "Number of collaborators", + "unlimited_private_info": "All your projects are private by default. Invite collaborators to read or edit by email address or by sending them a secret link.", + "unlimited_private": "Unlimited private projects", + "realtime_collab": "Real-time collaboration", + "realtime_collab_info": "When you’re working together, you can see your collaborators’ cursors and their changes in real time, so everyone always has the latest version.", + "hundreds_templates": "Hundreds of templates", + "hundreds_templates_info": "Produce beautiful documents starting from our gallery of LaTeX templates for journals, conferences, theses, reports, CVs and much more.", + "instant_access": "Get instant access to __appName__", + "tagline_personal": "Ideal when working solo", + "tagline_collaborator": "Great for shared projects", + "tagline_professional": "For those working with many", + "tagline_student_annual": "Save even more", + "tagline_student_monthly": "Great for a single term", + "all_premium_features": "All premium features", + "sync_dropbox_github": "Sync with Dropbox and GitHub", + "track_changes": "Track changes", + "tooltip_hide_pdf": "Click to hide the PDF", + "tooltip_show_pdf": "Click to show the PDF", + "tooltip_hide_filetree": "Click to hide the file-tree", + "tooltip_show_filetree": "Click to show the file-tree", + "cannot_verify_user_not_robot": "Sorry, we could not verify that you are not a robot. Please check that Google reCAPTCHA is not being blocked by an ad blocker or firewall.", + "uncompiled_changes": "Uncompiled Changes", + "code_check_failed": "Code check failed", + "code_check_failed_explanation": "Your code has errors that need to be fixed before the auto-compile can run", + "tags_slash_folders": "Tags/Folders", + "file_already_exists": "A file or folder with this name already exists", + "import_project_to_v2": "Import Project to V2", + "open_in_v1": "Open in V1", + "import_to_v2": "Import to V2", + "never_mind_open_in_v1": "Never mind, open in V1", + "yes_im_sure": "Yes, I'm sure", + "drop_files_here_to_upload": "Drop files here to upload", + "drag_here": "drag here", + "creating_project": "Creating project", + "select_a_zip_file": "Select a .zip file", + "drag_a_zip_file": "drag a .zip file", + "v1_badge": "V1 Badge", + "v1_projects": "V1 Projects", + "open_your_billing_details_page": "Open Your Billing Details Page", + "try_out_link_sharing": "Try the new link sharing feature!", + "try_link_sharing": "Try Link Sharing", + "try_link_sharing_description": "Give access to your project by simply sharing a link.", + "learn_more_about_link_sharing": "Learn more about Link Sharing", + "link_sharing": "Link sharing", + "tc_switch_everyone_tip": "Toggle track-changes for everyone", + "tc_switch_user_tip": "Toggle track-changes for this user", + "tc_switch_guests_tip": "Toggle track-changes for all link-sharing guests", + "tc_guests": "Guests", + "select_all_projects": "Select all", + "select_project": "Select", + "main_file_not_found": "Unknown main document.", + "please_set_main_file": "Please choose the main file for this project in the project menu. ", + "link_sharing_is_off": "Link sharing is off, only invited users can view this project.", + "turn_on_link_sharing": "Turn on link sharing", + "link_sharing_is_on": "Link sharing is on", + "turn_off_link_sharing": "Turn off link sharing", + "anyone_with_link_can_edit": "Anyone with this link can edit this project", + "anyone_with_link_can_view": "Anyone with this link can view this project", + "turn_on_link_sharing_consequences": "When link sharing is enabled, anyone with the relevant link will be able to access or edit this project", + "turn_off_link_sharing_consequences": "When link sharing is disabled, only people who are invited to this project will be have access", + "autocompile_disabled": "Autocompile disabled", + "autocompile_disabled_reason": "Due to high server load, background recompilation has been temporarily disabled. Please recompile by clicking the button above.", + "auto_compile_onboarding_description": "When enabled, your project will compile as you type.", + "try_out_auto_compile_setting": "Try out the new auto compile setting!", + "got_it": "Got it", + "pdf_compile_in_progress_error": "Compile already running in another window", + "pdf_compile_try_again": "Please wait for your other compile to finish before trying again.", + "invalid_email": "An email address is invalid", + "auto_compile": "Auto Compile", + "on": "On", + "tc_everyone": "Everyone", + "per_user_tc_title": "Per-user Track Changes", + "you_can_use_per_user_tc": "Now you can use Track Changes on a per-user basis", + "turn_tc_on_individuals": "Turn Track Changes on for individuals users", + "keep_tc_on_like_before": "Or keep it on for everyone, like before", + "auto_close_brackets": "Auto-close Brackets", + "auto_pair_delimiters": "Auto-Pair Delimiters", + "successfull_dropbox_link": "Dropbox successfully linked, Redirecting to settings page.", + "show_link": "Show Link", + "hide_link": "Hide Link", + "aggregate_changed": "Changed", + "aggregate_to": "to", + "confirm_password_to_continue": "Confirm password to continue", + "confirm_password_footer": "We won't ask for your password again for a while.", + "accept_all": "Accept all", + "reject_all": "Reject all", + "bulk_accept_confirm": "Are you sure you want to accept the selected __nChanges__ changes?", + "bulk_reject_confirm": "Are you sure you want to reject the selected __nChanges__ changes?", + "uncategorized": "Uncategorized", + "pdf_compile_rate_limit_hit": "Compile rate limit hit", + "project_flagged_too_many_compiles": "This project has been flagged for compiling too often. The limit will be lifted shortly.", + "reauthorize_github_account": "Reauthorize your GitHub Account", + "github_credentials_expired": "Your GitHub authorization credentials have expired", + "hit_enter_to_reply": "Hit Enter to reply", + "add_your_comment_here": "Add your comment here", + "resolved_comments": "Resolved comments", + "try_it_for_free": "Try it for free", + "please_ask_the_project_owner_to_upgrade_to_track_changes": "Please ask the project owner to upgrade to use track changes", + "mark_as_resolved": "Mark as resolved", + "reopen": "Re-open", + "add_comment": "Add comment", + "no_resolved_threads": "No resolved threads", + "upgrade_to_track_changes": "Upgrade to Track Changes", + "see_changes_in_your_documents_live": "See changes in your documents, live", + "track_any_change_in_real_time": "Track any change, in real-time", + "review_your_peers_work": "Review your peers' work", + "accept_or_reject_each_changes_individually": "Accept or reject each change individually", + "accept": "Accept", + "reject": "Reject", + "no_comments": "No comments", + "edit": "Edit", + "are_you_sure": "Are you sure?", + "resolve": "Resolve", + "reply": "Reply", + "quoted_text_in": "Quoted text in", + "review": "Review", + "track_changes_is_on": "Track changes is on", + "track_changes_is_off": "Track changes is off", + "current_file": "Current file", + "overview": "Overview", + "tracked_change_added": "Added", + "tracked_change_deleted": "Deleted", + "show_all": "show all", + "show_less": "show less", + "dropbox_sync_error": "Dropbox Sync Error", + "send": "Send", + "sending": "Sending", + "invalid_password": "Invalid Password", + "error": "Error", + "other_actions": "Other Actions", + "send_test_email": "Send a test email", + "email_sent": "Email Sent", + "create_first_admin_account": "Create the first Admin account", + "ldap": "LDAP", + "ldap_create_admin_instructions": "Choose an email address for the first __appName__ admin account. This should correspond to an account in the LDAP system. You will then be asked to log in with this account.", + "saml": "SAML", + "saml_create_admin_instructions": "Choose an email address for the first __appName__ admin account. This should correspond to an account in the SAML system. You will then be asked to log in with this account.", + "admin_user_created_message": "Created admin user, Log in here to continue", + "status_checks": "Status Checks", + "editor_resources": "Editor Resources", + "checking": "Checking", + "cannot_invite_self": "Can't send invite to yourself", + "cannot_invite_non_user": "Can't send invite. Recipient must already have a __appName__ account", + "log_in_with": "Log in with __provider__", + "return_to_login_page": "Return to Login page", + "login_failed": "Login failed", + "delete_account_warning_message_3": "You are about to permanently delete all of your account data, including your projects and settings. Please type your account email address and password in the boxes below to proceed.", + "delete_account_warning_message_2": "You are about to permanently delete all of your account data, including your projects and settings. Please type your account email address into the box below to proceed.", + "your_sessions": "Your Sessions", + "clear_sessions_description": "This is a list of other sessions (logins) which are active on your account, not including your current session. Click the \"Clear Sessions\" button below to log them out.", + "no_other_sessions": "No other sessions active", + "ip_address": "IP Address", + "session_created_at": "Session Created At", + "clear_sessions": "Clear Sessions", + "clear_sessions_success": "Sessions Cleared", + "sessions": "Sessions", + "manage_sessions": "Manage Your Sessions", + "syntax_validation": "Code check", + "history": "History", + "joining": "Joining", + "open_project": "Open Project", + "files_cannot_include_invalid_characters": "File name is empty or contains invalid characters", + "invalid_file_name": "Invalid File Name", + "autocomplete_references": "Reference Autocomplete (inside a \\cite{} block)", + "autocomplete": "Autocomplete", + "failed_compile_check": "It looks like your project has some fatal syntax errors that you should fix before we compile it", + "failed_compile_check_try": "Try compiling anyway", + "failed_compile_option_or": "or", + "failed_compile_check_ignore": "turn off syntax checking", + "compile_time_checks": "Syntax Checks", + "stop_on_validation_error": "Check syntax before compile", + "ignore_validation_errors": "Don't check syntax", + "run_syntax_check_now": "Run syntax check now", + "your_billing_details_were_saved": "Your billing details were saved", + "security_code": "Security code", + "paypal_upgrade": "To upgrade, click on the button below and log on to PayPal using your email and password.", + "upgrade_cc_btn": "Upgrade now, pay after 7 days", + "upgrade_paypal_btn": "Continue", + "notification_project_invite": "__userName__ would like you to join __projectName__ Join Project", + "file_restored": "Your file (__filename__) has been recovered.", + "file_restored_back_to_editor": "You can go back to the editor and work on it again.", + "file_restored_back_to_editor_btn": "Back to editor", + "view_project": "View Project", + "join_project": "Join Project", + "invite_not_accepted": "Invite not yet accepted", + "resend": "Resend", + "syntax_check": "Syntax check", + "revoke_invite": "Revoke Invite", + "pending": "Pending", + "invite_not_valid": "This is not a valid project invite", + "invite_not_valid_description": "The invite may have expired. Please contact the project owner", + "accepting_invite_as": "You are accepting this invite as", + "accept_invite": "Accept invite", + "log_hint_ask_extra_feedback": "Can you help us understand why this hint wasn't helpful?", + "log_hint_extra_feedback_didnt_understand": "I didn’t understand the hint", + "log_hint_extra_feedback_not_applicable": "I can’t apply this solution to my document", + "log_hint_extra_feedback_incorrect": "This doesn’t fix the error", + "log_hint_extra_feedback_other": "Other:", + "log_hint_extra_feedback_submit": "Submit", + "if_you_are_registered": "If you are already registered", + "stop_compile": "Stop compilation", + "terminated": "Compilation cancelled", + "compile_terminated_by_user": "The compile was cancelled using the 'Stop Compilation' button. You can view the raw logs to see where the compile stopped.", + "site_description": "An online LaTeX editor that's easy to use. No installation, real-time collaboration, version control, hundreds of LaTeX templates, and more.", + "knowledge_base": "knowledge base", + "contact_message_label": "Message", + "kb_suggestions_enquiry": "Have you checked our __kbLink__?", + "answer_yes": "Yes", + "answer_no": "No", + "log_hint_extra_info": "Learn more", + "log_hint_feedback_label": "Was this hint helpful?", + "log_hint_feedback_gratitude": "Thank you for your feedback!", + "recompile_pdf": "Recompile the PDF", + "about_paulo_reis": "is a front-end software developer and user experience researcher living in Aveiro, Portugal. Paulo has a PhD in user experience and is passionate about shaping technology towards human usage — either in concept or testing/validation, in design or implementation.", + "login_or_password_wrong_try_again": "Your login or password is incorrect. Please try again", + "manage_beta_program_membership": "Manage Beta Program Membership", + "beta_program_opt_out_action": "Opt-Out of Beta Program", + "disable_beta": "Disable Beta", + "beta_program_badge_description": "While using __appName__, you will see beta features marked with this badge:", + "beta_program_current_beta_features_description": "We are currently testing the following new features in beta:", + "enable_beta": "Enable Beta", + "user_in_beta_program": "User is participating in Beta Program", + "beta_program_already_participating": "You are enrolled in the Beta Program", + "sharelatex_beta_program": "__appName__ Beta Program", + "beta_program_benefits": "We're always improving __appName__. By joining our Beta program you can have early access to new features and help us understand your needs better.", + "beta_program_opt_in_action": "Opt-In to Beta Program", + "conflicting_paths_found": "Conflicting Paths Found", + "following_paths_conflict": "The following files & folders conflict with the same path", + "open_a_file_on_the_left": "Open a file on the left", + "reference_error_relink_hint": "If this error persists, try re-linking your account here:", + "pdf_rendering_error": "PDF Rendering Error", + "something_went_wrong_rendering_pdf": "Something went wrong while rendering this PDF.", + "mendeley_reference_loading_error_expired": "Mendeley token expired, please re-link your account", + "zotero_reference_loading_error_expired": "Zotero token expired, please re-link your account", + "mendeley_reference_loading_error_forbidden": "Could not load references from Mendeley, please re-link your account and try again", + "zotero_reference_loading_error_forbidden": "Could not load references from Zotero, please re-link your account and try again", + "mendeley_integration": "Mendeley Integration", + "mendeley_sync_description": "With Mendeley integration you can import your references from Mendeley into your __appName__ projects.", + "mendeley_is_premium": "Mendeley Integration is a premium feature", + "link_to_mendeley": "Link to Mendeley", + "unlink_to_mendeley": "Unlink Mendeley", + "mendeley_reference_loading": "Loading references from Mendeley", + "mendeley_reference_loading_success": "Loaded references from Mendeley", + "mendeley_reference_loading_error": "Error, could not load references from Mendeley", + "zotero_integration": "Zotero Integration.", + "zotero_sync_description": "With Zotero integration you can import your references from Zotero into your __appName__ projects.", + "zotero_is_premium": "Zotero Integration is a premium feature", + "link_to_zotero": "Link to Zotero", + "unlink_to_zotero": "Unlink Zotero", + "zotero_reference_loading": "Loading references from Zotero", + "zotero_reference_loading_success": "Loaded references from Zotero", + "zotero_reference_loading_error": "Error, could not load references from Zotero", + "reference_import_button": "Import References to", + "unlink_reference": "Unlink References Provider", + "unlink_warning_reference": "Warning: When you unlink your account from this provider you will not be able to import references into your projects.", + "mendeley": "Mendeley", + "zotero": "Zotero", + "suggest_new_doc": "Suggest new doc", + "request_sent_thank_you": "Your contact request has been sent. It will be reviewed by our support staff and you will receive a reply via email.", + "suggestion": "Suggestion", + "project_url": "Affected project URL", + "subject": "Subject", + "confirm": "Confirm", + "cancel_personal_subscription_first": "You already have a personal subscription, would you like us to cancel this first before joining the group licence?", + "delete_projects": "Delete Projects", + "leave_projects": "Leave Projects", + "delete_and_leave_projects": "Delete and Leave Projects", + "too_recently_compiled": "This project was compiled very recently, so this compile has been skipped.", + "clsi_maintenance": "The compile servers are down for maintenance, and will be back shortly.", + "references_search_hint": "Press CTRL-Space to Search", + "ask_proj_owner_to_upgrade_for_references_search": "Please ask the project owner to upgrade to use the References Search feature.", + "ask_proj_owner_to_upgrade_for_faster_compiles": "Please ask the project owner to upgrade for faster compiles and to increase the timeout limit.", + "search_bib_files": "Search by author, title, year", + "leave_group": "Leave group", + "leave_now": "Leave now", + "sure_you_want_to_leave_group": "Are you sure you want to leave this group?", + "notification_group_invite": "You have been invited to join the __groupName__, Join Here.", + "search_references": "Search the .bib files in this project", + "no_search_results": "No Search Results", + "email_already_registered": "This email is already registered", + "compile_mode": "Compile Mode", + "normal": "Normal", + "fast": "Fast", + "rename_folder": "Rename Folder", + "delete_folder": "Delete Folder", + "about_to_delete_folder": "You are about to delete the following folders (any projects in them will not be deleted):", + "to_modify_your_subscription_go_to": "To modify your subscription go to", + "manage_subscription": "Manage Subscription", + "activate_account": "Activate your account", + "yes_please": "Yes Please!", + "nearly_activated": "You're one step away from activating your __appName__ account!", + "please_set_a_password": "Please set a password", + "activation_token_expired": "Your activation token has expired, you will need to get another one sent to you.", + "activate": "Activate", + "activating": "Activating", + "ill_take_it": "I'll take it!", + "cancel_your_subscription": "Stop Your Subscription", + "no_thanks_cancel_now": "No thanks - I still want to Cancel Now", + "cancel_my_account": "Cancel my subscription", + "sure_you_want_to_cancel": "Are you sure you want to cancel?", + "i_want_to_stay": "I want to stay", + "have_more_days_to_try": "Have another __days__ days on your Trial!", + "interested_in_cheaper_plan": "Would you be interested in the cheaper __price__ student plan?", + "session_expired_redirecting_to_login": "Session Expired. Redirecting to login page in __seconds__ seconds", + "maximum_files_uploaded_together": "Maximum __max__ files uploaded together", + "too_many_files_uploaded_throttled_short_period": "Too many files uploaded, your uploads have been throttled for short period.", + "compile_larger_projects": "Compile larger projects", + "upgrade_to_get_feature": "Upgrade to get __feature__, plus:", + "new_group": "New Group", + "about_to_delete_groups": "You are about to delete the following groups:", + "removing": "Removing", + "adding": "Adding", + "groups": "Groups", + "rename_group": "Rename Group", + "renaming": "Renaming", + "create_group": "Create Group", + "delete_group": "Delete Group", + "delete_groups": "Delete Groups", + "your_groups": "Your Groups", + "group_name": "Group Name", + "no_groups": "No Groups", + "Subscription": "Subscription", + "Documentation": "Documentation", + "Universities": "Universities", + "Account Settings": "Account Settings", + "Projects": "Projects", + "Account": "Account", + "global": "global", + "Terms": "Terms", + "Security": "Security", + "About": "About", + "editor_disconected_click_to_reconnect": "Editor disconnected, click anywhere to reconnect.", + "word_count": "Word Count", + "please_compile_pdf_before_word_count": "Please compile your project before performing a word count", + "total_words": "Total Words", + "headers": "Headers", + "math_inline": "Math Inline", + "math_display": "Math Display", + "connected_users": "Connected Users", + "projects": "Projects", + "upload_project": "Upload Project", + "all_projects": "All Projects", + "your_projects": "Your Projects", + "shared_with_you": "Shared with you", + "deleted_projects": "Deleted Projects", + "templates": "Templates", + "new_folder": "New Folder", + "create_your_first_project": "Create your first project!", + "complete": "Complete", + "on_free_sl": "You are using the free version of __appName__", + "upgrade": "Upgrade", + "or_unlock_features_bonus": "or unlock some free bonus features by", + "sharing_sl": "sharing __appName__", + "add_to_folder": "Add to folder", + "create_new_folder": "Create New Folder", + "more": "More", + "rename": "Rename", + "make_copy": "Make a copy", + "restore": "Restore", + "title": "Title", + "last_modified": "Last Modified", + "no_projects": "No projects", + "welcome_to_sl": "Welcome to __appName__!", + "new_to_latex_look_at": "New to LaTeX? Start by having a look at our", + "or": "or", + "or_create_project_left": "or create your first project on the left.", + "thanks_settings_updated": "Thanks, your settings have been updated.", + "update_account_info": "Update Account Info", + "must_be_email_address": "Must be an email address", + "first_name": "First Name", + "last_name": "Last Name", + "update": "Update", + "change_password": "Change Password", + "current_password": "Current Password", + "new_password": "New Password", + "confirm_new_password": "Confirm New Password", + "required": "Required", + "doesnt_match": "Doesn't match", + "dropbox_integration": "Dropbox Integration", + "learn_more": "Learn more", + "dropbox_is_premium": "Dropbox sync is a premium feature", + "account_is_linked": "Account is linked", + "unlink_dropbox": "Unlink Dropbox", + "link_to_dropbox": "Link to Dropbox", + "newsletter_info_and_unsubscribe": "Every few months we send a newsletter out summarizing the new features available. If you would prefer not to receive this email then you can unsubscribe at any time:", + "unsubscribed": "Unsubscribed", + "unsubscribing": "Unsubscribing", + "unsubscribe": "Unsubscribe", + "need_to_leave": "Need to leave?", + "delete_your_account": "Delete your account", + "delete_account": "Delete Account", + "delete_account_warning_message": "You are about to permanently delete all of your account data, including your projects and settings. Please type your account email address into the box below to proceed.", + "deleting": "Deleting", + "delete": "Delete", + "sl_benefits_plans": "__appName__ is the world's easiest to use LaTeX editor. Stay up to date with your collaborators, keep track of all changes to your work, and use our LaTeX environment from anywhere in the world.", + "monthly": "Monthly", + "personal": "Personal", + "free": "Free", + "one_collaborator": "Only one collaborator", + "collaborator": "Collaborator", + "collabs_per_proj": "__collabcount__ collaborators per project", + "full_doc_history": "Full document history", + "sync_to_dropbox": "Sync to Dropbox", + "start_free_trial": "Start Free Trial!", + "professional": "Professional", + "unlimited_collabs": "Unlimited collaborators", + "name": "Name", + "student": "Student", + "university": "University", + "position": "Position", + "choose_plan_works_for_you": "Choose the plan that works for you with our __len__-day free trial. Cancel at any time.", + "interested_in_group_licence": "Interested in using __appName__ with a group, team or department wide account?", + "get_in_touch_for_details": "Get in touch for details!", + "group_plan_enquiry": "Group Plan Enquiry", + "enjoy_these_features": "Enjoy all of these great features", + "create_unlimited_projects": "Create as many projects as you need.", + "never_loose_work": "Never lose a step, we've got your back.", + "access_projects_anywhere": "Access your projects everywhere.", + "log_in": "Log In", + "login": "Login", + "logging_in": "Logging in", + "forgot_your_password": "Forgot your password", + "password_reset": "Password Reset", + "password_reset_email_sent": "You have been sent an email to complete your password reset.", + "please_enter_email": "Please enter your email address", + "request_password_reset": "Request password reset", + "reset_your_password": "Reset your password", + "password_has_been_reset": "Your password has been reset", + "login_here": "Login here", + "set_new_password": "Set new password", + "user_wants_you_to_see_project": "__username__ would like you to join __projectname__", + "join_sl_to_view_project": "Join __appName__ to view this project", + "register_to_edit_template": "Please register to edit the __templateName__ template", + "already_have_sl_account": "Already have a __appName__ account?", + "register": "Register", + "password": "Password", + "registering": "Registering", + "planned_maintenance": "Planned Maintenance", + "no_planned_maintenance": "There is currently no planned maintenance", + "cant_find_page": "Sorry, we can't find the page you are looking for.", + "take_me_home": "Take me home!", + "no_preview_available": "Sorry, no preview is available.", + "no_messages": "No messages", + "send_first_message": "Send your first message to your collaborators", + "account_not_linked_to_dropbox": "Your account is not linked to Dropbox", + "update_dropbox_settings": "Update Dropbox Settings", + "refresh_page_after_starting_free_trial": "Please refresh this page after starting your free trial.", + "checking_dropbox_status": "checking Dropbox status", + "dismiss": "Dismiss", + "deleted_files": "Deleted Files", + "new_file": "New File", + "upload_file": "Upload File", + "create": "Create", + "creating": "Creating", + "upload_files": "Upload File(s)", + "sure_you_want_to_delete": "Are you sure you want to permanently delete the following files?", + "common": "Common", + "navigation": "Navigation", + "editing": "Editing", + "ok": "OK", + "source": "Source", + "actions": "Actions", + "copy_project": "Copy Project", + "publish_as_template": "Publish as Template", + "sync": "Sync", + "settings": "Settings", + "main_document": "Main document", + "off": "Off", + "auto_complete": "Auto-complete", + "theme": "Theme", + "font_size": "Font Size", + "pdf_viewer": "PDF Viewer", + "built_in": "Built-In", + "native": "Native", + "show_hotkeys": "Show Hotkeys", + "new_name": "New Name", + "copying": "Copying", + "copy": "Copy", + "compiling": "Compiling", + "click_here_to_preview_pdf": "Click here to preview your work as a PDF.", + "server_error": "Server Error", + "somthing_went_wrong_compiling": "Sorry, something went wrong and your project could not be compiled. Please try again in a few moments.", + "timedout": "Timed out", + "proj_timed_out_reason": "Sorry, your compile took too long to run and timed out. This may be due to a LaTeX error, or a large number of high-res images or complicated diagrams.", + "no_errors_good_job": "No errors, good job!", + "compile_error": "Compile Error", + "generic_failed_compile_message": "Sorry, your LaTeX code couldn't compile for some reason. Please check the errors below for details, or view the raw log", + "other_logs_and_files": "Other logs & files", + "view_raw_logs": "View Raw Logs", + "hide_raw_logs": "Hide Raw Logs", + "clear_cache": "Clear cache", + "clear_cache_explanation": "This will clear all hidden LaTeX files (.aux, .bbl, etc) from our compile server. You generally don't need to do this unless you're having trouble with references.", + "clear_cache_is_safe": "Your project files will not be deleted or changed.", + "clearing": "Clearing", + "template_description": "Template Description", + "project_last_published_at": "Your project was last published at", + "problem_talking_to_publishing_service": "There is a problem with our publishing service, please try again in a few minutes", + "unpublishing": "Unpublishing", + "republish": "Republish", + "publishing": "Publishing", + "share_project": "Share Project", + "this_project_is_private": "This project is private and can only be accessed by the people below.", + "make_public": "Make Public", + "this_project_is_public": "This project is public and can be edited by anyone with the URL.", + "make_private": "Make Private", + "can_edit": "Can Edit", + "share_with_your_collabs": "Share with your collaborators", + "share": "Share", + "need_to_upgrade_for_more_collabs": "You need to upgrade your account to add more collaborators", + "make_project_public": "Make project public", + "make_project_public_consequences": "If you make your project public then anyone with the URL will be able to access it.", + "allow_public_editing": "Allow public editing", + "allow_public_read_only": "Allow public read only access", + "make_project_private": "Disable link-sharing", + "make_project_private_consequences": "If you make your project private then only the people you choose to share it with will have access.", + "need_to_upgrade_for_history": "You need to upgrade your account to use the History feature.", + "ask_proj_owner_to_upgrade_for_history": "Please ask the project owner to upgrade to use the History feature.", + "anonymous": "Anonymous", + "generic_something_went_wrong": "Sorry, something went wrong", + "restoring": "Restoring", + "restore_to_before_these_changes": "Restore to before these changes", + "profile_complete_percentage": "Your profile is __percentval__% complete", + "file_has_been_deleted": "__filename__ has been deleted", + "sure_you_want_to_restore_before": "Are you sure you want to restore __filename__ to before the changes on __date__?", + "rename_project": "Rename Project", + "about_to_delete_projects": "You are about to delete the following projects:", + "about_to_leave_projects": "You are about to leave the following projects:", + "upload_zipped_project": "Upload Zipped Project", + "upload_a_zipped_project": "Upload a zipped project", + "your_profile": "Your Profile", + "institution": "Institution", + "role": "Role", + "folders": "Folders", + "disconnected": "Disconnected", + "please_refresh": "Please refresh the page to continue.", + "lost_connection": "Lost Connection", + "reconnecting_in_x_secs": "Reconnecting in __seconds__ secs", + "try_now": "Try Now", + "reconnecting": "Reconnecting", + "saving_notification_with_seconds": "Saving __docname__... (__seconds__ seconds of unsaved changes)", + "help_us_spread_word": "Help us spread the word about __appName__", + "share_sl_to_get_rewards": "Share __appName__ with your friends and colleagues and unlock the rewards below", + "post_on_facebook": "Post on Facebook", + "share_us_on_googleplus": "Share us on Google+", + "email_us_to_your_friends": "Email us to your friends", + "link_to_us": "Link to us from your website", + "direct_link": "Direct Link", + "sl_gives_you_free_stuff_see_progress_below": "When someone starts using __appName__ after your recommendation we'll give you some free stuff to say thanks! Check your progress below.", + "spread_the_word_and_fill_bar": "Spread the word and fill this bar up", + "one_free_collab": "One free collaborator", + "three_free_collab": "Three free collaborators", + "free_dropbox_and_history": "Free Dropbox and History", + "you_not_introed_anyone_to_sl": "You've not introduced anyone to __appName__ yet. Get sharing!", + "you_introed_small_number": " You've introduced __numberOfPeople__ person to __appName__. Good job, but can you get some more?", + "you_introed_high_number": " You've introduced __numberOfPeople__ people to __appName__. Good job!", + "link_to_sl": "Link to __appName__", + "can_link_to_sl_with_html": "You can link to __appName__ with the following HTML:", + "year": "year", + "month": "month", + "subscribe_to_this_plan": "Subscribe to this plan", + "your_plan": "Your plan", + "your_subscription": "Your Subscription", + "on_free_trial_expiring_at": "You are currently using a free trial which expires on __expiresAt__.", + "choose_a_plan_below": "Choose a plan below to subscribe to.", + "currently_subscribed_to_plan": "You are currently subscribed to the __planName__ plan.", + "change_plan": "Change plan", + "next_payment_of_x_collectected_on_y": "The next payment of __paymentAmmount__ will be collected on __collectionDate__.", + "update_your_billing_details": "Update Your Billing Details", + "subscription_canceled_and_terminate_on_x": " Your subscription has been canceled and will terminate on __terminateDate__. No further payments will be taken.", + "your_subscription_has_expired": "Your subscription has expired.", + "create_new_subscription": "Create New Subscription", + "problem_with_subscription_contact_us": "There is a problem with your subscription. Please contact us for more information.", + "manage_group": "Manage Group", + "loading_billing_form": "Loading billing details form", + "you_have_added_x_of_group_size_y": "You have added __addedUsersSize__ of __groupSize__ available members", + "remove_from_group": "Remove from group", + "group_account": "Group Account", + "registered": "Registered", + "no_members": "No members", + "add_more_members": "Add more members", + "add": "Add", + "thanks_for_subscribing": "Thanks for subscribing!", + "your_card_will_be_charged_soon": "Your card will be charged soon.", + "if_you_dont_want_to_be_charged": "If you do not want to be charged again ", + "add_your_first_group_member_now": "Add your first group members now", + "thanks_for_subscribing_you_help_sl": "Thank you for subscribing to the __planName__ plan. It's support from people like yourself that allows __appName__ to continue to grow and improve.", + "back_to_your_projects": "Back to your projects", + "goes_straight_to_our_inboxes": "It goes straight to both our inboxes", + "need_anything_contact_us_at": "If there is anything you ever need please feel free to contact us directly at", + "regards": "Regards", + "about": "About", + "comment": "Comment", + "restricted_no_permission": "Restricted, sorry you don't have permission to load this page.", + "online_latex_editor": "Online LaTeX Editor", + "meet_team_behind_latex_editor": "Meet the team behind your favourite online LaTeX editor.", + "follow_me_on_twitter": "Follow me on Twitter", + "motivation": "Motivation", + "evolved": "Evolved", + "the_easy_online_collab_latex_editor": "The easy to use, online, collaborative LaTeX editor", + "get_started_now": "Get started now", + "sl_used_over_x_people_at": "__appName__ is used by over __numberOfUsers__ students and academics at:", + "collaboration": "Collaboration", + "work_on_single_version": "Work together on a single version", + "view_collab_edits": "View collaborator edits ", + "ease_of_use": " Ease of Use", + "no_complicated_latex_install": "No complicated LaTeX installation", + "all_packages_and_templates": "All the packages and __templatesLink__ you need", + "document_history": "Document history", + "see_what_has_been": "See what has been ", + "added": "added", + "and": "and", + "removed": "removed", + "restore_to_any_older_version": "Restore to any older version", + "work_from_anywhere": "Work from anywhere", + "acces_work_from_anywhere": "Access your work from anywhere in the world", + "work_offline_and_sync_with_dropbox": "Work offline and sync your files via Dropbox and GitHub", + "over": "over", + "view_templates": "View templates", + "nothing_to_install_ready_to_go": "There's nothing complicated or difficult for you to install, and you can __start_now__, even if you've never seen it before. __appName__ comes with a complete, ready to go LaTeX environment which runs on our servers.", + "start_using_latex_now": "start using LaTeX right now", + "get_same_latex_setup": "With __appName__ you get the same LaTeX set-up wherever you go. By working with your colleagues and students on __appName__, you know that you're not going to hit any version inconsistencies or package conflicts.", + "support_lots_of_features": "We support almost all LaTeX features, including inserting images, bibliographies, equations, and much more! Read about all the exciting things you can do with __appName__ in our __help_guides_link__", + "latex_guides": "LaTeX guides", + "reset_password": "Reset Password", + "set_password": "Set Password", + "updating_site": "Updating Site", + "bonus_please_recommend_us": "Bonus - Please recommend us", + "admin": "admin", + "subscribe": "Subscribe", + "update_billing_details": "Update Billing Details", + "thank_you": "Thank You", + "group_admin": "Group Admin", + "all_templates": "All Templates", + "your_settings": "Your settings", + "maintenance": "Maintenance", + "to_many_login_requests_2_mins": "This account has had too many login requests. Please wait 2 minutes before trying to log in again", + "email_or_password_wrong_try_again": "Your email or password is incorrect. Please try again", + "rate_limit_hit_wait": "Rate limit hit. Please wait a while before retrying", + "problem_changing_email_address": "There was a problem changing your email address. Please try again in a few moments. If the problem continues please contact us.", + "single_version_easy_collab_blurb": "__appName__ makes sure that you're always up to date with your collaborators and what they are doing. There is only a single master version of each document which everyone has access to. It's impossible to make conflicting changes, and you don't have to wait for your colleagues to send you the latest draft before you can keep working.", + "can_see_collabs_type_blurb": "If multiple people want to work on a document at the same time then that's no problem. You can see where your colleagues are typing directly in the editor and their changes show up on your screen immediately.", + "work_directly_with_collabs": "Work directly with your collaborators", + "work_with_word_users": "Work with Word users", + "work_with_word_users_blurb": "__appName__ is so easy to get started with that you'll be able to invite your non-LaTeX colleagues to contribute directly to your LaTeX documents. They'll be productive from day one and be able to pick up small amounts of LaTeX as they go.", + "view_which_changes": "View which changes have been", + "sl_included_history_of_changes_blurb": "__appName__ includes a history of all of your changes so you can see exactly who changed what, and when. This makes it extremely easy to keep up to date with any progress made by your collaborators and allows you to review recent work.", + "can_revert_back_blurb": "In a collaboration or on your own, sometimes mistakes are made. Reverting back to previous versions is simple and removes the risk of losing work or regretting a change.", + "start_using_sl_now": "Start using __appName__ now", + "over_x_templates_easy_getting_started": "There are thousands of __templates__ in our template gallery, so it's really easy to get started, whether you're writing a journal article, thesis, CV or something else.", + "done": "Done", + "change": "Change", + "page_not_found": "Page Not Found", + "please_see_help_for_more_info": "Please see our help guide for more information", + "this_project_will_appear_in_your_dropbox_folder_at": "This project will appear in your Dropbox folder at ", + "member_of_group_subscription": "You are a member of a group subscription managed by __admin_email__. Please contact them to manage your subscription.\n", + "about_henry_oswald": "is a software engineer living in London. He built the original prototype of __appName__ and has been responsible for building a stable and scalable platform. Henry is a strong advocate of Test Driven Development and makes sure we keep the __appName__ code clean and easy to maintain.", + "about_james_allen": "has a PhD in theoretical physics and is passionate about LaTeX. He created one of the first online LaTeX editors, ScribTeX, and has played a large role in developing the technologies that make __appName__ possible.", + "two_strong_principles_behind_sl": "There are two strong driving principles behind our work on __appName__:", + "want_to_improve_workflow_of_as_many_people_as_possible": "We want to improve the workflow of as many people as possible.", + "detail_on_improve_peoples_workflow": "LaTeX is notoriously hard to use, and collaboration is always difficult to coordinate. We believe that we've developed some great solutions to help people who face these problems, and we want to make sure that __appName__ is accessible to as many people as possible. We've tried to keep our pricing fair, and have released much of __appName__ as open source so that anyone can host their own.", + "want_to_create_sustainable_lasting_legacy": "We want to create a sustainable and lasting legacy.", + "details_on_legacy": "Development and maintenance of a product like __appName__ takes a lot of time and work, so it's important that we can find a business model that will support this both now, and in the long term. We don't want __appName__ to be dependent on external funding or disappear due to a failed business model. I'm pleased to say that we're currently able to run __appName__ profitably and sustainably, and expect to be able to do so in the long term.", + "get_in_touch": "Get in touch", + "want_to_hear_from_you_email_us_at": "We'd love to hear from anyone who is using __appName__, or wants to have a chat about what we're doing. You can get in touch with us at ", + "cant_find_email": "That email address is not registered, sorry.", + "plans_amper_pricing": "Plans & Pricing", + "documentation": "Documentation", + "account": "Account", + "subscription": "Subscription", + "log_out": "Log Out", + "en": "English", + "pt": "Portuguese", + "es": "Spanish", + "fr": "French", + "de": "German", + "it": "Italian", + "da": "Danish", + "sv": "Swedish", + "no": "Norwegian", + "nl": "Dutch", + "pl": "Polish", + "ru": "Russian", + "uk": "Ukrainian", + "ro": "Romanian", + "click_here_to_view_sl_in_lng": "Click here to use __appName__ in __lngName__", + "language": "Language", + "upload": "Upload", + "menu": "Menu", + "full_screen": "Full screen", + "logs_and_output_files": "Logs and output files", + "download_pdf": "Download PDF", + "split_screen": "Split screen", + "clear_cached_files": "Clear cached files", + "go_to_code_location_in_pdf": "Go to code location in PDF", + "please_compile_pdf_before_download": "Please compile your project before downloading the PDF", + "remove_collaborator": "Remove collaborator", + "add_to_folders": "Add to folders", + "download_zip_file": "Download .zip File", + "price": "Price", + "close": "Close", + "keybindings": "Keybindings", + "restricted": "Restricted", + "start_x_day_trial": "Start Your __len__-Day Free Trial Today!", + "buy_now": "Buy Now!", + "cs": "Czech", + "view_all": "View All", + "terms": "Terms", + "privacy": "Privacy", + "contact": "Contact", + "change_to_this_plan": "Change to this plan", + "processing": "processing", + "sure_you_want_to_change_plan": "Are you sure you want to change plan to __planName__?", + "move_to_annual_billing": "Move to Annual Billing", + "annual_billing_enabled": "Annual billing enabled", + "move_to_annual_billing_now": "Move to annual billing now", + "change_to_annual_billing_and_save": "Get __percentage__ off with annual billing. If you switch now you'll save __yearlySaving__ per year.", + "missing_template_question": "Missing Template?", + "tell_us_about_the_template": "If we are missing a template please either: Send us a copy of the template, a __appName__ url to the template or let us know where we can find the template. Also please let us know a little about the template for the description.", + "email_us": "Email us", + "this_project_is_public_read_only": "This project is public and can be viewed but not edited by anyone with the URL", + "tr": "Turkish", + "select_files": "Select file(s)", + "drag_files": "drag file(s)", + "upload_failed_sorry": "Upload failed, sorry :(", + "inserting_files": "Inserting file...", + "password_reset_token_expired": "Your password reset token has expired. Please request a new password reset email and follow the link there.", + "merge_project_with_github": "Merge Project with GitHub", + "pull_github_changes_into_sharelatex": "Pull GitHub changes into __appName__", + "push_sharelatex_changes_to_github": "Push __appName__ changes to GitHub", + "features": "Features", + "commit": "Commit", + "commiting": "Committing", + "importing_and_merging_changes_in_github": "Importing and merging changes in GitHub", + "upgrade_for_faster_compiles": "Upgrade for faster compiles and to increase your timeout limit", + "free_accounts_have_timeout_upgrade_to_increase": "Free accounts have a one minute timeout, whereas upgraded accounts have a timeout of four minutes.", + "learn_how_to_make_documents_compile_quickly": "Learn how to fix compile timeouts", + "zh-CN": "Chinese", + "cn": "Chinese (Simplified)", + "sync_to_github": "Sync to GitHub", + "sync_to_dropbox_and_github": "Sync to Dropbox and GitHub", + "project_too_large": "Project too large", + "project_too_large_please_reduce": "This project has too much editable text, please try and reduce it. The largest files are:", + "please_ask_the_project_owner_to_link_to_github": "Please ask the project owner to link this project to a GitHub repository", + "go_to_pdf_location_in_code": "Go to PDF location in code", + "ko": "Korean", + "ja": "Japanese", + "about_brian_gough": "is a software developer and former theoretical high energy physicist at Fermilab and Los Alamos. For many years he published free software manuals commercially using TeX and LaTeX and was also the maintainer of the GNU Scientific Library.", + "first_few_days_free": "First __trialLen__ days free", + "every": "per", + "credit_card": "Credit Card", + "credit_card_number": "Credit Card Number", + "invalid": "Invalid", + "expiry": "Expiry Date", + "january": "January", + "february": "February", + "march": "March", + "april": "April", + "may": "May", + "june": "June", + "july": "July", + "august": "August", + "september": "September", + "october": "October", + "november": "November", + "december": "December", + "zip_post_code": "Zip / Post Code", + "city": "City", + "address": "Address", + "coupon_code": "Coupon code", + "country": "Country", + "billing_address": "Billing Address", + "upgrade_now": "Upgrade Now", + "state": "State", + "vat_number": "VAT Number", + "you_have_joined": "You have joined __groupName__", + "claim_premium_account": "You have claimed your premium account provided by __groupName__.", + "you_are_invited_to_group": "You are invited to join __groupName__", + "you_can_claim_premium_account": "You can claim a premium account provided by __groupName__ by verifying your email", + "not_now": "Not now", + "verify_email_join_group": "Verify email and join Group", + "check_email_to_complete_group": "Please check your email to complete joining the group", + "verify_email_address": "Verify Email Address", + "group_provides_you_with_premium_account": "__groupName__ provides you with a premium account. Verifiy your email address to upgrade your account.", + "check_email_to_complete_the_upgrade": "Please check your email to complete the upgrade", + "email_link_expired": "Email link expired, please request a new one.", + "services": "Services", + "about_shane_kilkelly": "is a software developer living in Edinburgh. Shane is a strong advocate for Functional Programming, Test Driven Development and takes pride in building quality software.", + "this_is_your_template": "This is your template from your project", + "links": "Links", + "account_settings": "Account Settings", + "search_projects": "Search projects", + "clone_project": "Clone Project", + "delete_project": "Delete Project", + "download_zip": "Download Zip", + "new_project": "New Project", + "blank_project": "Blank Project", + "example_project": "Example Project", + "from_template": "From Template", + "cv_or_resume": "CV or Resume", + "cover_letter": "Cover Letter", + "journal_article": "Journal Article", + "presentation": "Presentation", + "thesis": "Thesis", + "bibliographies": "Bibliographies", + "terms_of_service": "Terms of Service", + "privacy_policy": "Privacy Policy", + "plans_and_pricing": "Plans and Pricing", + "university_licences": "University Licenses", + "security": "Security", + "contact_us": "Contact Us", + "thanks": "Thanks", + "blog": "Blog", + "latex_editor": "LaTeX Editor", + "get_free_stuff": "Get free stuff", + "chat": "Chat", + "your_message": "Your Message", + "loading": "Loading", + "connecting": "Connecting", + "recompile": "Recompile", + "download": "Download", + "email": "Email", + "owner": "Owner", + "read_and_write": "Read and Write", + "read_only": "Read Only", + "publish": "Publish", + "view_in_template_gallery": "View it in template gallery", + "description": "Description", + "unpublish": "Unpublish", + "hotkeys": "Hotkeys", + "saving": "Saving", + "cancel": "Cancel", + "project_name": "Project Name", + "root_document": "Root Document", + "spell_check": "Spell check", + "compiler": "Compiler", + "private": "Private", + "public": "Public", + "delete_forever": "Delete Forever", + "support_and_feedback": "Support and feedback", + "help": "Help", + "latex_templates": "LaTeX Templates", + "info": "Info", + "latex_help_guide": "LaTeX help guide", + "choose_your_plan": "Choose your plan", + "indvidual_plans": "Individual Plans", + "free_forever": "Free forever", + "low_priority_compile": "Low priority compiling", + "unlimited_projects": "Unlimited projects", + "unlimited_compiles": "Unlimited compiles", + "full_history_of_changes": "Full history of changes", + "highest_priority_compiling": "Highest priority compiling", + "dropbox_sync": "Dropbox Sync", + "beta": "Beta", + "sign_up_now": "Sign Up Now", + "annual": "Annual", + "half_price_student": "Half Price Student Plans", + "about_us": "About Us", + "loading_recent_github_commits": "Loading recent commits", + "no_new_commits_in_github": "No new commits in GitHub since last merge.", + "dropbox_sync_description": "Keep your __appName__ projects in sync with your Dropbox. Changes in __appName__ are automatically sent to your Dropbox, and the other way around.", + "github_sync_description": "With GitHub Sync you can link your __appName__ projects to GitHub repositories. Create new commits from __appName__, and merge with commits made offline or in GitHub.", + "github_import_description": "With GitHub Sync you can import your GitHub Repositories into __appName__. Create new commits from __appName__, and merge with commits made offline or in GitHub.", + "link_to_github_description": "You need to authorise __appName__ to access your GitHub account to allow us to sync your projects.", + "unlink": "Unlink", + "unlink_github_warning": "Any projects that you have synced with GitHub will be disconnected and no longer kept in sync with GitHub. Are you sure you want to unlink your GitHub account?", + "github_account_successfully_linked": "GitHub Account Successfully Linked!", + "github_successfully_linked_description": "Thanks, we've successfully linked your GitHub account to __appName__. You can now export your __appName__ projects to GitHub, or import projects from your GitHub repositories.", + "import_from_github": "Import from GitHub", + "github_sync_error": "Sorry, there was an error talking to our GitHub service. Please try again in a few moments.", + "loading_github_repositories": "Loading your GitHub repositories", + "select_github_repository": "Select a GitHub repository to import into __appName__.", + "import_to_sharelatex": "Import to __appName__", + "importing": "Importing", + "github_sync": "GitHub Sync", + "checking_project_github_status": "Checking project status in GitHub", + "account_not_linked_to_github": "Your account is not linked to GitHub", + "project_not_linked_to_github": "This project is not linked to a GitHub repository. You can create a repository for it in GitHub:", + "create_project_in_github": "Create a GitHub repository", + "project_synced_with_git_repo_at": "This project is synced with the GitHub repository at", + "recent_commits_in_github": "Recent commits in GitHub", + "sync_project_to_github": "Sync project to GitHub", + "sync_project_to_github_explanation": "Any changes you have made in __appName__ will be committed and merged with any updates in GitHub.", + "github_merge_failed": "Your changes in __appName__ and GitHub could not be automatically merged. Please manually merge the __sharelatex_branch__ branch into the __master_branch__ branch in git. Click below to continue, after you have manually merged.", + "continue_github_merge": "I have manually merged. Continue", + "export_project_to_github": "Export Project to GitHub", + "github_validation_check": "Please check that the repository name is valid, and that you have permission to create the repository.", + "repository_name": "Repository Name", + "optional": "Optional", + "github_public_description": "Anyone can see this repository. You choose who can commit.", + "github_commit_message_placeholder": "Commit message for changes made in __appName__...", + "merge": "Merge", + "merging": "Merging", + "github_account_is_linked": "Your GitHub account is successfully linked.", + "unlink_github": "Unlink your GitHub account", + "link_to_github": "Link to your GitHub account", + "github_integration": "GitHub Integration", + "github_is_premium": "GitHub sync is a premium feature" +} \ No newline at end of file diff --git a/services/web/locales/es.json b/services/web/locales/es.json new file mode 100644 index 0000000000..0d4f7fc941 --- /dev/null +++ b/services/web/locales/es.json @@ -0,0 +1,671 @@ +{ + "open_a_file_on_the_left": "Abrir un archivo a la izquierda", + "reference_error_relink_hint": "Si el error persiste, prueba a volver a vincular la cuenta aquí:", + "pdf_rendering_error": "Error al renderizar PDF", + "something_went_wrong_rendering_pdf": "Algo ha fallado al renderizar este PDF.", + "mendeley_reference_loading_error_expired": "Tu token de Mendeley ha caducado, vuelve a vincular tu cuenta", + "zotero_reference_loading_error_expired": "Tu token de Zotero ha caducado, vuelve a vincular tu cuenta", + "mendeley_reference_loading_error_forbidden": "No se han podido cargar las referencias de Mendeley, vuelve a vincular tu cuenta y prueba de nuevo", + "zotero_reference_loading_error_forbidden": "No se han podido cargar las referencias de Zotero, vuelve a vincular tu cuenta y prueba de nuevo", + "mendeley_integration": "Integración de Mendeley", + "mendeley_sync_description": "Con la integración de Mendeley puedes importar tus referencias de mendeley a tus proyectos de __appName__", + "mendeley_is_premium": "La integración de Mendeley es una característica premium", + "link_to_mendeley": "Vincular a Mendeley", + "unlink_to_mendeley": "Desvincular Mendeley", + "mendeley_reference_loading": "Cargando referencias de Mendeley", + "mendeley_reference_loading_success": "Se han cargado las referencias de Mendeley", + "mendeley_reference_loading_error": "Error, no se han podido cargar las referencias de Mendeley", + "zotero_integration": "Integración de Zotero.", + "zotero_sync_description": "Con la integración de Zotero puedes importar tus referencias de zotero a tus proyectos de __appName__.", + "zotero_is_premium": "La integración de Zotero es una característica premium", + "link_to_zotero": "Vincular a Zotero", + "unlink_to_zotero": "Desvincular Zotero", + "zotero_reference_loading": "Cargando referencias de Zotero", + "zotero_reference_loading_success": "Se han cargado las referencias de Zotero", + "zotero_reference_loading_error": "Error, no se han podido cargar las referencias de Mendeley", + "reference_import_button": "Importar referencias en", + "unlink_reference": "Desvincular proveedor de referencias", + "unlink_warning_reference": "Aviso: al desvincular tu cuenta de este proveedor no podrás importar referencias en tus proyectos.", + "mendeley": "Mendeley", + "zotero": "Zotero", + "suggest_new_doc": "Sugerir nuevo documento", + "request_sent_thank_you": "Solicitud enviada, gracias.", + "suggestion": "Sugerencia", + "project_url": "URL de proyecto", + "subject": "Asunto", + "confirm": "Confirmar", + "cancel_personal_subscription_first": "Ya tienes una suscripción personal, ¿quieres que cancelemos esta primero antes de unirte a esta licencia grupal?", + "delete_projects": "Eliminar proyectos", + "leave_projects": "Abandonar proyectos", + "delete_and_leave_projects": "Eliminar y abandonar proyectos", + "too_recently_compiled": "Este proyecto se ha compilado hace muy poco, por lo que se ha omitido esta complicación.", + "clsi_maintenance": "Los servidores de compilación están fuera de servicio por mantenimiento y volverán a estar operativos muy pronto.", + "references_search_hint": "Pulsa CTRL-Espacio para buscar", + "ask_proj_owner_to_upgrade_for_references_search": "Pide al creador del proyecto que suba de categoría para usar la característica Búsqueda de referencias.", + "ask_proj_owner_to_upgrade_for_faster_compiles": "Pide al creador del proyecto que suba de categoría para compilar con mayor rapidez y aumentar el límite de tiempo.", + "search_bib_files": "Buscar por autor, título, año", + "leave_group": "Abandonar grupo", + "leave_now": "Abandonar ya", + "sure_you_want_to_leave_group": "¿Seguro que quieres abandonar este grupo?", + "notification_group_invite": "Te han invitado a unirte a __groupName__, Únete aquí.", + "search_references": "Buscar los archivos .bib de este proyecto", + "no_search_results": "No hay resultados de búsqueda", + "email_already_registered": "Este correo electrónico ya está registrado", + "compile_mode": "Modo de compilación", + "normal": "Normal", + "fast": "Rápido", + "rename_folder": "Renombrar carpeta", + "delete_folder": "Eliminar carpeta", + "about_to_delete_folder": "Estás a punto de eliminar las siguientes carpetas (no se eliminarán los proyectos en las mismas):", + "to_modify_your_subscription_go_to": "Para modificar tu suscripción ve a", + "manage_subscription": "Gestionar suscripción", + "activate_account": "Activar tu cuenta", + "yes_please": "¡Sí, por favor!", + "nearly_activated": "¡Estás a un solo de paso de activar tu cuenta de __appName__!", + "please_set_a_password": "Establece una contraseña", + "activation_token_expired": "Tu token de activación ha caducado, tendrás que solicitar que enviemos otro.", + "activate": "Activar", + "activating": "Activando", + "ill_take_it": "¡Sí!", + "cancel_your_subscription": "Cancelar tu suscripción", + "no_thanks_cancel_now": "No, gracias. Sigo queriendo cancelar", + "cancel_my_account": "Cancelar mi suscripción", + "sure_you_want_to_cancel": "¿Seguro que quieres cancelar?", + "i_want_to_stay": "Quiero seguir", + "have_more_days_to_try": "¡Aquí tienes __days__ días más de prueba!", + "interested_in_cheaper_plan": "¿Te interesaría el plan de estudiante más barato por __price__?", + "session_expired_redirecting_to_login": "La sesión ha caducado. Se te redirigirá a la página de inicio de sesión en __seconds__ segundos", + "maximum_files_uploaded_together": "Máximo de archivos que se pueden subir a la vez: __max__", + "too_many_files_uploaded_throttled_short_period": "Estás intentando subir demasiados archivos. Se te han limitado las subidas por un corto período de tiempo.", + "compile_larger_projects": "Compilar proyectos grandes", + "upgrade_to_get_feature": "Sube de categoría para conseguir __feature__, además de:", + "new_group": "Nuevo grupo", + "about_to_delete_groups": "Estás a punto de eliminar los siguientes grupos:", + "removing": "Eliminando", + "adding": "Añadiendo", + "groups": "Grupos", + "rename_group": "Renombrar grupo", + "renaming": "Renombrando", + "create_group": "Crear grupo", + "delete_group": "Eliminar grupo", + "delete_groups": "Eliminar grupos", + "your_groups": "Tus grupos", + "group_name": "Nombre del grupo", + "no_groups": "No hay grupos", + "Subscription": "Suscripción", + "Documentation": "Documentación", + "Universities": "Universidades", + "Account Settings": "Opciones de la cuenta", + "Projects": "Proyectos", + "Account": "Cuenta", + "global": "global", + "Terms": "Términos", + "Security": "Seguridad", + "About": "Quiénes somos", + "editor_disconected_click_to_reconnect": "Editor desconectado, clickea en cualquier parte para volver a conectar.", + "word_count": "Conteo de palabras", + "please_compile_pdf_before_word_count": "Por favor compila tu proyecto antes de realizar un conteo de palabras", + "total_words": "Palabras totales", + "headers": "Encabezados", + "math_inline": "Fórmulas en texto", + "math_display": "Fórmulas mostradas", + "connected_users": "Usuarios conectados", + "projects": "Proyectos", + "upload_project": "Subir proyecto", + "all_projects": "Todos los proyectos", + "your_projects": "Tus proyectos", + "shared_with_you": "Compartidos contigo", + "deleted_projects": "Proyectos borrados", + "templates": "Plantillas", + "new_folder": "Nueva carpeta", + "create_your_first_project": "¡Crea tu primer proyecto!", + "complete": "Completar", + "on_free_sl": "Estás usando la versión gratuita de __appName__", + "upgrade": "Sube de categoría", + "or_unlock_features_bonus": "o desbloquea gratuitamente algunas características", + "sharing_sl": "compartiendo __appName__", + "add_to_folder": "Agrega a una carpeta", + "create_new_folder": "Crear nueva carpeta", + "more": "Más", + "rename": "Renombrar", + "make_copy": "Hacer una copia", + "restore": "Restablecer", + "title": "Título", + "last_modified": "Última modificación", + "no_projects": "Sin proyectos", + "welcome_to_sl": "¡Bienvenido a __appName__!", + "new_to_latex_look_at": "¿Nuevo en LaTeX?", + "or": "o", + "or_create_project_left": "o crea tu primer proyecto a la izquierda.", + "thanks_settings_updated": "Gracias, tus opciones han sido actualizadas.", + "update_account_info": "Actualizar información de la cuenta", + "must_be_email_address": "Debe ser una dirección de correo electrónico", + "first_name": "Nombre", + "last_name": "Apellido", + "update": "Actualizar", + "change_password": "Cambiar contraseña", + "current_password": "Contraseña actual", + "new_password": "Nueva contraseña", + "confirm_new_password": "Confirmar nueva contraseña", + "required": "obligatorio", + "doesnt_match": "No concuerdan", + "dropbox_integration": "Integración con Dropbox", + "learn_more": "Más detalles", + "dropbox_is_premium": "La sincronización con Dropbox es una característica premium", + "account_is_linked": "La cuenta está conectada", + "unlink_dropbox": "Desconectar Dropbox", + "link_to_dropbox": "Conectar a Dropbox", + "newsletter_info_and_unsubscribe": "Cada pocos meses enviamos un boletín de noticias resumiendo las nuevas características disponibles. Si prefieres no recibir este correo electrónico, puedes anular la suscripción en cualquier momento:", + "unsubscribed": "Suscripción anulada", + "unsubscribing": "Anulando la suscripción", + "unsubscribe": "Anular suscripción", + "need_to_leave": "¿Necesitas dejarnos?", + "delete_your_account": "Elimina tu cuenta", + "delete_account": "Eliminar cuenta", + "delete_account_warning_message": "Estás a punto de borrar permanentemente toda tu información de la cuenta, incluyendo tus proyectos y opciones. Por favor, escribe DELETE dentro del cuadro de abajo para proceder.", + "deleting": "Eliminando", + "delete": "Eliminar", + "sl_benefits_plans": "__appName__ es el editor de LaTeX más fácil de utilizar del mundo. Mantente al día con tus colaboradores, sigue todos los cambios a tu trabajo y usa nuestro ambiente LaTeX desde cualquier parte del mundo.", + "monthly": "Mensualmente", + "personal": "Personal", + "free": "Gratis", + "one_collaborator": "Solo un colaborador", + "collaborator": "Colaborador", + "collabs_per_proj": "__collabcount__ colaboradores por proyecto", + "full_doc_history": "Historial completo de documentos", + "sync_to_dropbox": "Sincronización con Dropbox", + "start_free_trial": "¡Empieza la prueba gratuita!", + "professional": "Profesional", + "unlimited_collabs": "Colaboradores ilimitados", + "name": "Nombre", + "student": "Estudiante", + "university": "Universidad", + "position": "Cargo", + "choose_plan_works_for_you": "Elige el plan que funcione mejor para ti con nuestra prueba gratuita de __len__ días. Cancélala en cualquier momento.", + "interested_in_group_licence": "¿Interesado en usar __appName__ con un grupo, equipo o departamento?", + "get_in_touch_for_details": "¡Ponte en contacto con nostros para más detalles!", + "group_plan_enquiry": "Petición de plan grupal", + "enjoy_these_features": "Disfruta todas estas excelentes características", + "create_unlimited_projects": "Crea cuantos proyectos necesites.", + "never_loose_work": "Nunca pierdas un paso, nosotros lo traemos de vuelta.", + "access_projects_anywhere": "Accede a tus proyectos desde cualquier lugar.", + "log_in": "Ingresar", + "login": "Ingresar", + "logging_in": "Ingresando", + "forgot_your_password": "¿Olvidaste tu contraseña", + "password_reset": "Restablecer contraseña", + "password_reset_email_sent": "Se ha enviado un correo electrónico con tu contraseña restablecida.", + "please_enter_email": "Ingresa tu dirección de correo electrónico, por favor ", + "request_password_reset": "Pedir restablecimiento de contraseña", + "reset_your_password": "Restablecer tu contraseña", + "password_has_been_reset": "Tu contraseña ha sido restablecida", + "login_here": "Ingresa aquí", + "set_new_password": "Establece una nueva contraseña", + "user_wants_you_to_see_project": "__username__ quiere que veas __projectname__", + "join_sl_to_view_project": "Ingresa a __appName__ para ver este proyecto", + "register_to_edit_template": "Por favor regístrate para editar la plantilla __templateName__", + "already_have_sl_account": "¿Ya tienes una cuenta de __appName__?", + "register": "Registrarse", + "password": "Contraseña", + "registering": "Registrando", + "planned_maintenance": "Mantenimiento programado", + "no_planned_maintenance": "No hay mantenimiento programado actualmente", + "cant_find_page": "Disculpa, no podemos encontrar la página que estás buscando.", + "take_me_home": "¡Llévame al incio!", + "no_preview_available": "Disculpa, no hay previsualización.", + "no_messages": "Sin mensajes", + "send_first_message": "Envía tu primer mensaje", + "account_not_linked_to_dropbox": "Tu cuenta no está conectada con Dropbox", + "update_dropbox_settings": "Actualizar opciones de Dropbox", + "refresh_page_after_starting_free_trial": "Por favor actualiza esta página para empezar tu prueba gratuita.", + "checking_dropbox_status": "revisando estado de Dropbox", + "dismiss": "Descartar", + "deleted_files": "Archivos borrados", + "new_file": "Archivo nuevo", + "upload_file": "Subir archivo", + "create": "Crear", + "creating": "Creando", + "upload_files": "Subir archivo(s)", + "sure_you_want_to_delete": "¿Seguro que quieres borrar permanentemente los siguientes archivos?", + "common": "Común", + "navigation": "Navegación", + "editing": "Editando", + "ok": "Aceptar", + "source": "Fuente", + "actions": "Acciones", + "copy_project": "Copiar proyecto", + "publish_as_template": "Publicar como plantilla", + "sync": "Sincronizar", + "settings": "Opciones", + "main_document": "Documento principal", + "off": "Apagado", + "auto_complete": "Autocompletar", + "theme": "Tema", + "font_size": "Tamaño de la tipografía", + "pdf_viewer": "Visor de PDF", + "built_in": "Integrado", + "native": "nativo", + "show_hotkeys": "Mostrar teclas de acceso rápido", + "new_name": "Nuevo nombre", + "copying": "copiando", + "copy": "Copiar", + "compiling": "Compilando", + "click_here_to_preview_pdf": "Clickea aquí para previsualizar tu trabajo como un PDF.", + "server_error": "Error del servidor", + "somthing_went_wrong_compiling": "Disculpa, algo anduvo mal y tu proyecto no se pudo compilar. Por favor, intenta de nuevo en unos minutos más.", + "timedout": "Expiró el tiempo de espera", + "proj_timed_out_reason": "Disculpa, tu compilación tomó mucho tiempo en completarse y falló. Esto puede ser debido a un gran número de imágenes de alta resolución o diagramas muy complicados.", + "no_errors_good_job": "Sin errores, ¡buen trabajo!", + "compile_error": "Error de compilación", + "generic_failed_compile_message": "Disculpa, tu código LaTeX no se pudo compilar por alguna razón. Por favor revisa los errores de abajo para detalles o mira el log completo", + "other_logs_and_files": "Otros logs y archivos", + "view_raw_logs": "Ver logs completos", + "hide_raw_logs": "Esconder logs completos", + "clear_cache": "Borrar caché", + "clear_cache_explanation": "Esto limpiará todos los archivos LaTeX escondidos (.aux, .bbl, etc.) de tu servidor de compilación. Generalmente no necesitas hacer eso a menos que estés teniendo problemas con las referencias.", + "clear_cache_is_safe": "Tus archivos del proyecto no serán borrados ni cambiados.", + "clearing": "Limpiando", + "template_description": "Descripción de plantilla", + "project_last_published_at": "Tu proyecto fue publicado en", + "problem_talking_to_publishing_service": "Hay un problema con nuestro servicio de publicación, por favor intenta en unos minutos más", + "unpublishing": "Anular publicación", + "republish": "Volver a publicar", + "publishing": "Publicando", + "share_project": "Compartir proyecto", + "this_project_is_private": "Este proyecto es privado y es solamente accesible por las personas de abajo.", + "make_public": "Hacer público", + "this_project_is_public": "Este proyecto es público y puede ser editado por cualquiera que tenga la URL.", + "make_private": "Hacer privado", + "can_edit": "Puede editar", + "share_with_your_collabs": "Compartir con tus colaboradores", + "share": "Compartir", + "need_to_upgrade_for_more_collabs": "Necesitas subir de categoría tu cuenta para añadir más colaboradores", + "make_project_public": "Hacer público este proyecto", + "make_project_public_consequences": "Si haces público tu proyecto, cualquiera que tenga la URL podrá acceder a él.", + "allow_public_editing": "Permitir edición pública", + "allow_public_read_only": "Permitir solo acceso público de lectura", + "make_project_private": "Hacer proyecto privado", + "make_project_private_consequences": "Si hacer tu proyecto privado, solo las personas a las que tú elijas compartir tendrán acceso a él.", + "need_to_upgrade_for_history": "Necesitas subir de categoría tu cuenta para usar la característica Historial.", + "ask_proj_owner_to_upgrade_for_history": "Por favor pregúntale al dueño del proyecto para subir de categoría para usar la característica Historial.", + "anonymous": "Anónimo", + "generic_something_went_wrong": "Disculpa, algo falló :(", + "restoring": "Restableciendo", + "restore_to_before_these_changes": "Restablecer antes de hacer los cambios", + "profile_complete_percentage": "Tu perfil está __percentval__% completo", + "file_has_been_deleted": "__filename__ ha sido eliminado", + "sure_you_want_to_restore_before": "¿Estás seguro que quieres restablecer __filename__ antes de los cambios en __date__?", + "rename_project": "Renombrar proyecto", + "about_to_delete_projects": "Estás a punto de eliminar los siguientes proyectos:", + "about_to_leave_projects": "Estás apunto de abandonar los siguientes proyectos:", + "upload_zipped_project": "Subir proyecto en Zip", + "upload_a_zipped_project": "Subir un proyecto en Zip", + "your_profile": "Tu pergil", + "institution": "Institución", + "role": "Rol", + "folders": "Carpetas", + "disconnected": "Desconectado", + "please_refresh": "Por favor actualiza la página para continuar.", + "lost_connection": "Conexión perdida", + "reconnecting_in_x_secs": "Volviendo a coectar en __seconds__ segundos", + "try_now": "Intenta ahora", + "reconnecting": "Volviendo a conectar", + "saving_notification_with_seconds": "Guardando __docname__... (__seconds__ segundos de cambios no guardados)", + "help_us_spread_word": "Ayúdanos a difundir __appName__", + "share_sl_to_get_rewards": "Comparte __appName__ con tus amigos y colegas y desbloquea los siguientes beneficios", + "post_on_facebook": "Postea en Facebook", + "share_us_on_googleplus": "Compártelo en Google+", + "email_us_to_your_friends": "Envía un correo electrónico a tus amigos", + "link_to_us": "Enlázanos desde tu sitio web", + "direct_link": "Enlace directo", + "sl_gives_you_free_stuff_see_progress_below": "Cuando alguien empieza a usar __appName__ después de tu recomendación, ¡te daremos beneficios gratuitos para agradecerte! Revisa tu progreso abajo.", + "spread_the_word_and_fill_bar": "Corre la voz y llena esta barra", + "one_free_collab": "Un colaborador gratis", + "three_free_collab": "Tres colaboradores gratis", + "free_dropbox_and_history": "Dropbox e historial gratis", + "you_not_introed_anyone_to_sl": "Todavía no has logrado que alguien use __appName__. ¡Sigue compartiendo!", + "you_introed_small_number": " Has hecho usar __appName__ a __numberOfPeople__ personas. Buen trabajo, pero ¿puedes un poco más?", + "you_introed_high_number": " Has hecho usar __appName__ a __numberOfPeople__ personas. ¡Buen trabajo!", + "link_to_sl": "Enlace a __appName__", + "can_link_to_sl_with_html": "Puedes enlazar a __appName__ con el siguiente código HTML:", + "year": "año", + "month": "mes", + "subscribe_to_this_plan": "Suscríbete a este plan", + "your_plan": "Tu plan", + "your_subscription": "Tu suscripción", + "on_free_trial_expiring_at": "Actualmente estás ocupando la prueba gratuita que expira el __expiresAt__.", + "choose_a_plan_below": "Elige un plan de abajo para suscribirte.", + "currently_subscribed_to_plan": "Actualmente estás suscrito al plan __planName__.", + "change_plan": "Cambiar plan", + "next_payment_of_x_collectected_on_y": "El próximo pago de __paymentAmmount__ será cobrado el __collectionDate__", + "update_your_billing_details": "Actualiza tus detalles para cobro", + "subscription_canceled_and_terminate_on_x": " Tu suscripción ha sido cancelada y terminará el __terminateDate__. No se realizarán futuros pagos.", + "your_subscription_has_expired": "Tu suscripción expiró.", + "create_new_subscription": "Crear nueva suscripción", + "problem_with_subscription_contact_us": "Hay un problema con tu suscripción. Por favor toma contacto con nosotros para mayor infor\u001bmación.", + "manage_group": "Administrar grupo", + "loading_billing_form": "Cargando formulario de detalles de pago", + "you_have_added_x_of_group_size_y": "Has agregado __addedUsersSize__ de __groupSize__ miembros disponibles", + "remove_from_group": "Eliminar del grupo", + "group_account": "Cuenta grupal", + "registered": "Registrado", + "no_members": "Sin miembros", + "add_more_members": "Agregar más miembros", + "add": "Agregar", + "thanks_for_subscribing": "¡Gracias por suscribirte!", + "your_card_will_be_charged_soon": "Pronto se cobrará en tu tarjeta.", + "if_you_dont_want_to_be_charged": "Si no quieres que te cobremos de nuevo ", + "add_your_first_group_member_now": "Agrega tu primer grupo de miembros ahora", + "thanks_for_subscribing_you_help_sl": "Gracias por suscribirte al plan __planName__. Es por personas como tú que permite que __appName__ siga creciendo y mejorando.", + "back_to_your_projects": "Volver a tus proyectos", + "goes_straight_to_our_inboxes": "Va directo a nuestras dos bandejas de entrada", + "need_anything_contact_us_at": "Si hay algo que necesitas, no dudes en contactarnos directamente en", + "regards": "Atentamente", + "about": "Quiénes somos", + "comment": "Comentar", + "restricted_no_permission": "Restringido. Disculpa, no tienes permiso para cargar esta página.", + "online_latex_editor": "Editor de LaTeX online", + "meet_team_behind_latex_editor": "Conoce al equipo detrás de tu editor online de LaTeX favorito.", + "follow_me_on_twitter": "Síguenos en Twitter", + "motivation": "Motivación", + "evolved": "Evolucionado", + "the_easy_online_collab_latex_editor": "El editor de LaTeX fácil de usar, online y colaborativo", + "get_started_now": "Comienza ahora", + "sl_used_over_x_people_at": "__appName__ es usado por más de __numberOfUsers__ estudiantes y académicos en:", + "collaboration": "Colaboración", + "work_on_single_version": "Trabajen juntos en una sola versión", + "view_collab_edits": "Ver ediciones de los colaboradores ", + "ease_of_use": " Facilidad de uso", + "no_complicated_latex_install": "Sin instalaciones complicadas de LaTeX", + "all_packages_and_templates": "Todos los paquetes y __templatesLink__ que necesitas", + "document_history": "Historial del documento", + "see_what_has_been": "Mira qué ha sido ", + "added": "agregado", + "and": "y", + "removed": "eliminado", + "restore_to_any_older_version": "Restaura cualquier versión anterior", + "work_from_anywhere": "Trabaja desde cualquier lugar", + "acces_work_from_anywhere": "Accede a tu trabajo desde cualquier parte del mundo", + "work_offline_and_sync_with_dropbox": "Trabaja offline y sincroniza tus archivos a través de Dropbox y GitHub", + "over": "más", + "view_templates": "Ver plantillas", + "nothing_to_install_ready_to_go": "No hay nada complejo ni difícil que tengas que instalar, y puedes __start_now__, incluso si nunca lo has visto antes. __appName__ viene con un ambiente LaTeX completo y listo para usar que se ejecuta en nuestros servidores.", + "start_using_latex_now": "comenzar a usar LaTeX ahora", + "get_same_latex_setup": "Con __appName__ obtienes la misma configuración donde quiera que estés. Trabajando con tus colegas y estudiantes en __appName__, sabes que no te conducirá a inconsistencia de versiones o conflictos de paquetes.", + "support_lots_of_features": "Soportamos casi todas las características de LaTeX, incluyendo inserción de imágenes, bibliografías, ecuaciones ¡y mucho más! Lee sobre todas las emocionantes cosas que puedes hacer con __appName__ en nuestras __help_guides_link__", + "latex_guides": "Guías de LaTeX", + "reset_password": "Restablecer contraseña", + "set_password": "Establecer contraseña", + "updating_site": "Actualizando sitio", + "bonus_please_recommend_us": "Bono - Recomiéndanos, por favor", + "admin": "administrador", + "subscribe": "Suscríbete", + "update_billing_details": "Actualizar detalles de pago", + "thank_you": "Gracias", + "group_admin": "Grupo de administración", + "all_templates": "Todas las plantillas", + "your_settings": "Tus opciones", + "maintenance": "Mantenimiento", + "to_many_login_requests_2_mins": "Esta cuenta ha tenido muchas peticiones de identificación. Por favor espera 2 minutos antes de intentar identificarte de nuevo", + "email_or_password_wrong_try_again": "Tu correo electrónico o contraseña es incorrecto.", + "rate_limit_hit_wait": "Límite de intentos alcanzado. Por favor espera un momento antes de reintentar", + "problem_changing_email_address": "Hubo un problema cambiando tu dirección de correo electrónico. Por favor intenta de nuevo en unos minutos. Si tu problema persiste, contáctanos por favor.", + "single_version_easy_collab_blurb": "__appName__ asegura que estás siempre actualizado con tus colaboradores y lo qué están haciendo. Hay solo una versión de cada documento al que todos tienen acceso. Es imposible hacer cambios que produzcan conflictos, y no tienes que esperar a que tus colegas te envíen el último borrador antes de que puedas seguir trabajando.", + "can_see_collabs_type_blurb": "Si múltiples personas quieren trabajar en un documento al mismo tiempo, no hay problema. Puedes ver dónde están escribiendo tus colegas directamente en el editor, y los cambios se muestran inmediatamente en tu pantalla.", + "work_directly_with_collabs": "Trabaja directamente con tus colaboradores", + "work_with_word_users": "Trabaja con usuarios de Word", + "work_with_word_users_blurb": "Es tán fácil empezar con __appName__ que podrás invitar a colegas que no usen LaTeX para que contribuyan directamente en tus documentos LaTeX. Serán productivos desde el primer día y podrán editar pequeñas partes de LaTeX mientras se inicien.", + "view_which_changes": "Ver qué cambios han ocurrido", + "sl_included_history_of_changes_blurb": "__appName__ incluye un historial de todos los cambios, para que así puedas ver exactamente qué se ha cambiado y cuándo. Esto hace extremadamente fácil mantenerse al día con cualquier progreso hecho por tus colaboradores y te permite ver trabajo reciente.", + "can_revert_back_blurb": "Trabajando solo o con colaboradores, a veces se cometen errores. Revirtiendo los cambios a versiones previas es simple y elimina el riesgo de perder trabajo o lamentar un cambio.", + "start_using_sl_now": "Comienza a usar __appName__ ahora", + "over_x_templates_easy_getting_started": "Hay __over__ de 400 __templates__ en nuestra galería de plantillas, así que es bastante fácil empezar, ya sea que estés escribiendo un artículo científico, una tesis, un CV u otro.", + "done": "Listo", + "change": "Cambiar", + "page_not_found": "Página no encontrada", + "please_see_help_for_more_info": "Por favor ve nuestra guía para mayor información", + "this_project_will_appear_in_your_dropbox_folder_at": "Este proyecto aparecerá en tu carpeta de Dropbox en ", + "member_of_group_subscription": "Eres miembro de un grupo de suscripción administrado por __admin_email__. Por favor contáctanos para administrar tu suscripción. \n", + "about_henry_oswald": "es un ingeniero de software que vive en Londres. Construyó el prototipo original de __appName__ y ha sido responsable de construir una plataforma estable y escalable. Henry es un fuerte defendor del Desarrollo guiado por pruebas y asegura que mantengamos el código de __appName__ limpio y fácil de mantener.", + "about_james_allen": "tiene un doctorado en física teórica y es apasionado sobre LaTeX. Creó uno de los primeros editores de LaTeX online, ScribTeX, y ha jugado un gran rol desarrollando tecnologías que hacen __appName__ posible.", + "two_strong_principles_behind_sl": "Hay dos fuerte principios que nos guían en nuestro trabajo en __appName__:", + "want_to_improve_workflow_of_as_many_people_as_possible": "Queremos mejorar el flujo de trabajo de tantas personas como sea posible.", + "detail_on_improve_peoples_workflow": "LaTeX es notoriamente difícil de usar, y la colaboración siempre es difícil de coordinar. Creemos que hemos desarrollado algunas buenas soluciones para ayudar a las personas que enfrentan estos problemas, y queremos asegurar que __appName__ sea accesible a tantas personas como sea posible. Hemos intentado mantener un precio justo y hemos liberado la mayor parte del código de __appName__ como código abierto, de manera tal que cualquier persona puesta montar su propia versión en su servidor.", + "want_to_create_sustainable_lasting_legacy": "Queremos crear un legado sustentable y duraredo.", + "details_on_legacy": "El desarrollo y mantención de un producto como __appName__ toma mucho tiempo y trabajo, así que es importante que podamos encontrar un modelo de negocios que mantenga esto tanto ahora como en el largo plazo. No queremos que __appName__ sea dependiente de un financiador externo o desaparezca debido a un fallo en el modelo de negocios. Me complace decir que actualmente estamos en condiciones de llevar __appName__ de manera rentable y sustentable, y esperamos hacerlo en el largo plazo.", + "get_in_touch": "Ponte en contacto", + "want_to_hear_from_you_email_us_at": "Apreciamos la opinión de cualquier persona que use __appName__, o quiera conversar sobre lo que estamos haciendo. Puedes contactarte con nosotros en ", + "cant_find_email": "Ese correo electrónico no está registrado, disculpa.", + "plans_amper_pricing": "Planes y precios", + "documentation": "Documentación", + "account": "Cuenta", + "subscription": "Suscripción", + "log_out": "Cerrar sesión", + "en": "Inglés", + "pt": "Portugués", + "es": "Español", + "fr": "Francés", + "de": "Alemán", + "it": "Italiano", + "da": "Danés", + "sv": "Sueco", + "no": "Noruego", + "nl": "Neerlandés", + "pl": "Polaco", + "ru": "Ruso", + "uk": "Ucraniano", + "ro": "Rumano", + "click_here_to_view_sl_in_lng": "Clickea aquí para usar __appName__ en __lngName__", + "language": "Idioma", + "upload": "Subir", + "menu": "Menú", + "full_screen": "Pantalla completa", + "logs_and_output_files": "Logs y archivos de salida", + "download_pdf": "Descargar PDF", + "split_screen": "Dividir pantalla", + "clear_cached_files": "Borrar archivos en la caché", + "go_to_code_location_in_pdf": "Ir a la ubicación del código en el PDF", + "please_compile_pdf_before_download": "Por favor compila tu proyecto antes de descargar el PDF", + "remove_collaborator": "Eliminar colaborador(a)", + "add_to_folders": "Agregar a carpetas", + "download_zip_file": "Descargar archivo .zip", + "price": "Precio", + "close": "Cerrar", + "keybindings": "Teclas asociadas", + "restricted": "Restringido", + "start_x_day_trial": "¡Empieza hoy tu prueba gratis por __len__ días!", + "buy_now": "¡Comprar ahora!", + "cs": "Checo", + "view_all": "Ver todas", + "terms": "Términos", + "privacy": "Privacidad", + "contact": "Contacto", + "change_to_this_plan": "Cambiar a este plan", + "processing": "procesando", + "sure_you_want_to_change_plan": "¿Estás seguro que quieres cambiar al plan __planName___?", + "move_to_annual_billing": "Cambiar a facturación anual", + "annual_billing_enabled": "Facturación anual habilitada", + "move_to_annual_billing_now": "Cambiar ahora a facturación anual", + "change_to_annual_billing_and_save": "Consigue un __percentage__ de descuento con facturación anual. Si cambias ahora, ahorrarás __yearlySaving__ cada año.", + "missing_template_question": "¿Falta una plantilla?", + "tell_us_about_the_template": "Si estamos olvidando una plantilla, por favor: Envíanos una copia de la plantilla, una dirección url de la plantilla en __appName__ o dinos dónde podemos encontrar la plantilla. Además, cuéntanos un poco sobre la plantilla para su descripción, por favor.", + "email_us": "Envíanos un correo electrónico", + "this_project_is_public_read_only": "Este proyecto es público y puede ser visto (pero no editado) por cualquiera que tenga la dirección URL", + "tr": "Turco", + "select_files": "Seleccionar archivo(s)", + "drag_files": "arrastrar archivo(s)", + "upload_failed_sorry": "Falló la subida, disculpa :(", + "inserting_files": "Insertando archivo...", + "password_reset_token_expired": "Tu token de reinicio de contraseña ha expirado. Por favor solicita un nuevo correo electrónico para reinicio de contraseña y sigue el enlace ahí.", + "merge_project_with_github": "Une el proyecto con GitHub", + "pull_github_changes_into_sharelatex": "Actualiza cambios de GitHub en __appName__", + "push_sharelatex_changes_to_github": "Envía cambios de __appName__ a GitHub", + "features": "Características", + "commit": "Commit", + "commiting": "Commiting", + "importing_and_merging_changes_in_github": "Importando y uniendo cambios en GitHub", + "upgrade_for_faster_compiles": "Sube de categoría para compilaciones más rápidas e incrementar tu tiempo de espera límite", + "free_accounts_have_timeout_upgrade_to_increase": "Las cuentas gratis tienen un tiempo de espera de un minuto. Sube de categoría para incrementar tu tiempo de espera límite.", + "learn_how_to_make_documents_compile_quickly": "Aprende a hacer la compilación de tu documento más rápida", + "zh-CN": "Chino", + "cn": "Chino (simplificado)", + "sync_to_github": "Sincronizar con GitHub", + "sync_to_dropbox_and_github": "Sincroniza con Dropbox y GitHub", + "project_too_large": "Proyecto demasiado grande", + "project_too_large_please_reduce": "Este proyecto tiene mucho texto, por favor intenta reducirlo.", + "please_ask_the_project_owner_to_link_to_github": "Por favor solicita al dueño del proyecto enlazar este proyecto a un repositorio en GitHub", + "go_to_pdf_location_in_code": "Ir a la ubicación del PDF en el código", + "ko": "Coreano", + "ja": "Japonés", + "about_brian_gough": "es un desarrollador de software y ex físico teórico de partículas en Fermilab y Los Alamos. Por muchos años ha publicado manuales de software usando TeX y LaTeX, y también fue mantenedor de la biblioteca científica GNU.", + "first_few_days_free": "Primeros __trialLen__ días gratis", + "every": "cada", + "credit_card": "Tarjeta de crédito", + "credit_card_number": "Número de tarjeta de crédito", + "invalid": "Inválida", + "expiry": "Fecha de expiración", + "january": "Enero", + "february": "Febrero", + "march": "Marzo", + "april": "Abril", + "may": "Mayo", + "june": "Junio", + "july": "Julio", + "august": "Agosto", + "september": "Septiembre", + "october": "Octubre", + "november": "Noviembre", + "december": "Diciembre", + "zip_post_code": "Código postal", + "city": "Ciudad", + "address": "Dirección", + "coupon_code": "código de cupón", + "country": "País", + "billing_address": "Dirección para cobranza", + "upgrade_now": "Sube de categoría ahora", + "state": "Estado", + "vat_number": "Número VAT", + "you_have_joined": "Te has unido a __groupName__", + "claim_premium_account": "Has reclamdo tu cuenta premium otorgada por __groupName__.", + "you_are_invited_to_group": "Te han invitado a unirte a __groupName__", + "you_can_claim_premium_account": "Puedes pedir una cuenta premium otorgada por __groupName__ verificando tu correo electrónico", + "not_now": "Ahora no", + "verify_email_join_group": "Verificar correo electrónico e ingresar a grupo", + "check_email_to_complete_group": "Por favor revisa tu correo electrónico para completar el ingreso al grupo", + "verify_email_address": "Verificar correo electrónico", + "group_provides_you_with_premium_account": "__groupName__ te otorga una cuenta premium. Verifica tu dirección de correo electrónico para subir de nivel tu cuenta.", + "check_email_to_complete_the_upgrade": "Por favor revisa tu correo electrónico para completar el cambio", + "email_link_expired": "El link para el correo electrónico expiró, por favor solicita uno nuevo.", + "services": "Servicios", + "about_shane_kilkelly": "es un desarrollador de software que vive en Edimburgo. Shane es un fuerte adherente de la programación funcional, desarrollo dirigido por pruebas y se enorgullece de construir software de calidad.", + "this_is_your_template": "Esta es la plantilla de tu proyecto", + "links": "Enlaces", + "account_settings": "Opciones de la cuenta", + "search_projects": "Buscar proyectos", + "clone_project": "Clonar proyecto", + "delete_project": "Eliminar proyecto", + "download_zip": "Descargar Zip", + "new_project": "Nuevo proyecto", + "blank_project": "Proyecto vacío", + "example_project": "Proyecto de ejemplo", + "from_template": "Desde plantilla", + "cv_or_resume": "Currículum Vitae", + "cover_letter": "Carta de presentación", + "journal_article": "Artículo para journal", + "presentation": "Presentación", + "thesis": "Tesis", + "bibliographies": "Bibliografías", + "terms_of_service": "Términos de servicio", + "privacy_policy": "Política de privacidad", + "plans_and_pricing": "Planes y precios", + "university_licences": "Licencias para universidades", + "security": "Seguridad", + "contact_us": "Contáctanos", + "thanks": "¡Gracias", + "blog": "Blog", + "latex_editor": "Editor LaTeX", + "get_free_stuff": "Obtén beneficios gratis", + "chat": "Chat", + "your_message": "Tu mensaje", + "loading": "Cargando", + "connecting": "Conectando", + "recompile": "Recompilar", + "download": "Descargar", + "email": "Email", + "owner": "Propietario", + "read_and_write": "Leer y escribir", + "read_only": "Solo leer", + "publish": "Publicar", + "view_in_template_gallery": "Verlo en la galería de plantillas", + "description": "Descripción", + "unpublish": "Anular publicación", + "hotkeys": "Teclas de acceso rápido", + "saving": "Guardando", + "cancel": "Cancelar", + "project_name": "Nombre del proyecto", + "root_document": "Documento raíz", + "spell_check": "Revisión de ortografía", + "compiler": "Compilador", + "private": "Privado", + "public": "Público", + "delete_forever": "Eliminar para siempre", + "support_and_feedback": "Soporte y feedback", + "help": "Ayuda", + "latex_templates": "Plantillas LaTeX", + "info": "Información", + "latex_help_guide": "Guía de ayuda de LaTeX", + "choose_your_plan": "Elige tu plan", + "indvidual_plans": "Planes individuales", + "free_forever": "Gratis para siempre", + "low_priority_compile": "Baja prioridad en compilación", + "unlimited_projects": "Proyectos ilimitados", + "unlimited_compiles": "Compilaciones ilimitadas", + "full_history_of_changes": "Historial completo de cambios", + "highest_priority_compiling": "Prioridad de compilación más alta", + "dropbox_sync": "Sincronización con Dropbox", + "beta": "Beta", + "sign_up_now": "¡Regístrate ahora", + "annual": "Anual", + "half_price_student": "Planes de estudiantes a mitad de precio", + "about_us": "Quiénes somos", + "loading_recent_github_commits": "Cargando commits recientes", + "no_new_commits_in_github": "No hay nuevos commits en GitHub desde el último merge.", + "dropbox_sync_description": "Mantén tus proyectos de __appName__ sincronizados con Dropbox. Los cambios en __appName__ son automáticamente enviados a tu Dropbox y vice versa.", + "github_sync_description": "Con la sincronización con GitHub puedes enlazar tus proyectos de __appName__ con repositorios GitHub. Crea nuevos commits desde __appName__ y únelos con commits hechos offline o en GitHub.", + "github_import_description": "Con la sincronización con GitHub puedes importar tus repositorios de GitHub en __appName__. Crea nuevos commits desde __appName__ y únelos con commits hechos offline o en GitHub.", + "link_to_github_description": "Necesitas autorizar a __appName__ para acceder a tu cuenta de GitHub para permitirnos sincronizar tus proyectos.", + "unlink": "Desvincular", + "unlink_github_warning": "Cualquier proyecto que hayas sincronizado con GitHub será desconectado y no se mantendrá sincronizado con GitHub. ¿Estás seguro que quieres desvincular tu cuenta de GitHub?", + "github_account_successfully_linked": "¡Cuenta de GitHub vinculada satisfactoriamente!", + "github_successfully_linked_description": "Gracias, vinculamos exitosamente tu cuenta de GitHub con __appName__. Ahora puedes exportar tus proyectos de __appName__ a GitHub o importar proyectos desde tus repositorios en GitHub.", + "import_from_github": "Importar desde GitHub", + "github_sync_error": "Disculpa, hubo un error en la conexión con nuestro servicio de GitHub. Intenta de nuevo en unos minutos más, por favor.", + "loading_github_repositories": "Cargando tus repositorios de GitHub", + "select_github_repository": "Selecciona un repositorio de GitHub para importarlo en __appName__", + "import_to_sharelatex": "Importa a __appName__", + "importing": "Importando", + "github_sync": "Sincronización con GitHub", + "checking_project_github_status": "Revisando estado de proyecto en GitHub", + "account_not_linked_to_github": "Tu cuenta no está enlazada con GitHub", + "project_not_linked_to_github": "Este proyecto no está enlazado a un repositorio de GitHub. Puedes crear un repositorio para él en GitHub:", + "create_project_in_github": "Crear un repositorio en GitHub", + "project_synced_with_git_repo_at": "Este proyecto está sincronizado con el repositorio de GitHub en", + "recent_commits_in_github": "Commits recientes en GitHub", + "sync_project_to_github": "Sincronizar proyecto con GitHub", + "sync_project_to_github_explanation": "Cualquier cambio que hagas en __appName__ será guardado como un commit y merge con cualquier actualización en GitHub.", + "github_merge_failed": "Tus cambios en __appName__ y GitHub podrían no ser automáticamente unidos. Por favor, une (merge) la rama __sharelatex_branch__ en la rama __master_branch__ a través de git. Clickea abajo para continuar, después de que hayas hecho el merge manual.", + "continue_github_merge": "He hecho el merge de forma manual. Continuar", + "export_project_to_github": "Exportar proyecto a GitHub", + "github_validation_check": "Por favor revisa que el nombre del repositorio es válido y que tienes permisos para crear el repositorio.", + "repository_name": "Nombre del repositorio", + "optional": "Opcional", + "github_public_description": "Cualquier persona puede ver este repositorio. Tú eliges quién puede contribuir.", + "github_commit_message_placeholder": "Mensaje del commit para cambios hechos en __appName__...", + "merge": "Merge", + "merging": "Merging", + "github_account_is_linked": "Tu cuenta de GitHub fue enlazada exitosamente.", + "unlink_github": "Desvincula tu cuenta de GitHub", + "link_to_github": "Enlace a tu cuenta de GitHub", + "github_integration": "Integración con GitHub", + "github_is_premium": "La sincronización con GitHub es una característica premium" +} \ No newline at end of file diff --git a/services/web/locales/fi.json b/services/web/locales/fi.json new file mode 100644 index 0000000000..0e6c6d6322 --- /dev/null +++ b/services/web/locales/fi.json @@ -0,0 +1,554 @@ +{ + "projects": "Projektit", + "upload_project": "Siirrä projekti palvelimelle", + "all_projects": "Kaikki projektit", + "your_projects": "Sinun projektisi", + "shared_with_you": "Jaettu kanssasi", + "deleted_projects": "Poistetut projektit", + "templates": "Mallit", + "new_folder": "Uusi kansio", + "create_your_first_project": "Luo ensimmäinen projektisi!", + "complete": "Valmis", + "on_free_sl": "Käytät ohjelman __appName__ ilmaista versiota", + "upgrade": "Päivitä", + "or_unlock_features_bonus": "tai avaa ilmaisia lisäominaisuuksia", + "sharing_sl": "jaa __appName__", + "add_to_folder": "Lisää kansioon", + "create_new_folder": "Luo uusi kansio", + "more": "Lisää", + "rename": "Nimeä uudelleen", + "make_copy": "Tee kopio", + "restore": "Palauta", + "title": "Otsikko", + "last_modified": "Viimeksi muokattu", + "no_projects": "Ei projekteja", + "welcome_to_sl": "Tämä on __appName__, tervetuloa!", + "new_to_latex_look_at": "Uusi LaTeXin käyttäjä? Aloita katsomalla", + "or": "tai", + "or_create_project_left": "tai luo ensimmäinen projekti vasemmalta.", + "thanks_settings_updated": "Kiitos, asetuksesi ovat päivitetty.", + "update_account_info": "Päivitä tilin tiedot", + "must_be_email_address": "Täytyy olla sähköpostiosoite", + "first_name": "Etunimi", + "last_name": "Sukunimi", + "update": "Päivitä", + "change_password": "Vaihda salasana", + "current_password": "Nykyinen salasana", + "new_password": "Uusi salasana", + "confirm_new_password": "Vahvista uusi salasana", + "required": "vaadittu", + "doesnt_match": "Eivät vastaa toisiaan", + "dropbox_integration": "Dropboxiin yhdistäminen", + "learn_more": "Lue lisää", + "dropbox_is_premium": "Dropbox-synkronointi on premium-ominaisuus", + "account_is_linked": "Tili on yhdistetty", + "unlink_dropbox": "Poista Dropbox-yhteys", + "link_to_dropbox": "Yhdistä Dropboxiin", + "newsletter_info_and_unsubscribe": "Lähetämme muutaman kuukauden välein uutiskirjeen jossa kerromme lyhyesti uusista ominaisuuksista. Jos haluaisit olla saamatta tätä sähköpostia voit peruuttaa sen milloin tahansa:", + "unsubscribed": "Tilaus peruutettu", + "unsubscribing": "Tilausta peruutetaan", + "unsubscribe": "Peruuta tilaus", + "need_to_leave": "Haluatko lähteä?", + "delete_your_account": "Poista tilisi", + "delete_account": "Poista tili", + "delete_account_warning_message": "Olet poistamassa kaikki tilisi tiedot pysyvästi, mukaanlukien projektisi ja asetuksesi. Ole hyvä ja kirjoita DELETE allaolevaan laatikkoon jatkaaksesi.", + "deleting": "Poistetaan", + "delete": "Poista", + "sl_benefits_plans": "__appName__ on maailman helppokäyttöisin LaTeX-editori. Pysy ajan tasalla työtovereidesi kanssa, pidä kirjaa kaikista muutoksista, ja käytä LaTeX-ympäristöämme missä tahansa maailmaa oletkin.", + "monthly": "Kuukausittainen", + "personal": "Henkilökohtainen", + "free": "Ilmainen", + "one_collaborator": "Vain yksi työtoveri", + "collaborator": "Työtoveri", + "collabs_per_proj": "__collabcount__ työtoveria per projekti", + "full_doc_history": "Täysi dokumentin historia", + "sync_to_dropbox": "Yhdistä Dropboxiin", + "start_free_trial": "Aloita ilmainen kokeilu!", + "professional": "Ammattilainen", + "unlimited_collabs": "Rajattomasti työtovereita", + "name": "Nimi", + "student": "Opiskelija", + "university": "Yliopisto", + "position": "Asema", + "choose_plan_works_for_you": "Valitse sopivin sopimus __len__:n päivän mittaisella kokeilulla. Peruuta koska vain.", + "interested_in_group_licence": "Oletko kiinnostunut käyttämään sovellusta __appName__ koko ryhmän, tiimin tai osaston yhteiskäytössä olevalla tilillä?", + "get_in_touch_for_details": "Ota yhteyttä saadaksesi lisätietoja!", + "group_plan_enquiry": "Ryhmäsopimustiedustelu", + "enjoy_these_features": "Nauti kaikista näistä mahtavista ominaisuuksista", + "create_unlimited_projects": "Luo niin monta projektia kuin haluat.", + "never_loose_work": "Älä huoli, turvaamme selustasi.", + "access_projects_anywhere": "Pääse projekteihisi käsiksi mistä tahansa.", + "log_in": "Kirjaudu sisään", + "login": "Kirjaudu", + "logging_in": "Kirjaudutaan sisään", + "forgot_your_password": "Unohditko salasanasi", + "password_reset": "Nollaa salasana", + "password_reset_email_sent": "Sinulle on lähetetty sähköposti, jossa on ohjeet salasanan nollaamiseksi.", + "please_enter_email": "Syötä sähköpostiosoitteesi", + "request_password_reset": "Pyydä salasanan nollausta", + "reset_your_password": "Nollaa salasanasi", + "password_has_been_reset": "Salasanasi on nollattu", + "login_here": "Kirjaudu tästä", + "set_new_password": "Aseta uusi salasana", + "user_wants_you_to_see_project": "__username__ haluaisi katsoa projektiasi __projectname__", + "join_sl_to_view_project": "Liity sovellukseen __appName__ nähdäksesti tämän projektin", + "register_to_edit_template": "Ole hyvä ja rekisteröidy muokataksesi mallia __templateName__", + "already_have_sl_account": "Onko sinulla jo __appName__-tili?", + "register": "Rekisteröidy", + "password": "Salasana", + "registering": "Rekisteröidään", + "planned_maintenance": "Suunniteltu ylläpito", + "no_planned_maintenance": "Tällä hetkellä ei ole suunniteltuja ylläpitoja", + "cant_find_page": "Anteeksi, emme löydä hakemaasi sivua.", + "take_me_home": "Vie minut kotiin!", + "no_preview_available": "Anteeksi, esikatselua ei ole saatavilla.", + "no_messages": "Ei viestejä", + "send_first_message": "Lähetä ensimmäinen viestisi", + "account_not_linked_to_dropbox": "Tilisi ei ole yhdistetty Dropboxiin", + "update_dropbox_settings": "Päivitä Dropbox-asetukset", + "refresh_page_after_starting_free_trial": "Ole hyvä ja päivitä tämä sivu aloitettuasi ilmaisen kokeilusi.", + "checking_dropbox_status": "tarkistetaan Dropboxin tilaa", + "dismiss": "Ohita", + "new_file": "Uusi tiedosto", + "upload_file": "Vie tiedosto", + "create": "Luo", + "creating": "Luodaan", + "upload_files": "Vie tiedosto(ja)", + "sure_you_want_to_delete": "Oletko varma että haluat pysyvästi poistaa {{ entity.name }}?", + "common": "Yleisiä", + "navigation": "Navigointi", + "editing": "Muokkaaminen", + "ok": "OK", + "source": "Lähde", + "actions": "Toiminnot", + "copy_project": "Kopioi projekti", + "publish_as_template": "Julkaise mallina", + "sync": "Synkronointi", + "settings": "Asetukset", + "main_document": "Päädokumentti", + "off": "Pois", + "auto_complete": "Automaattinen täydennys", + "theme": "Teema", + "font_size": "Kirjasimen koko", + "pdf_viewer": "PDF-lukija", + "built_in": "Sisäänrakennettu", + "native": "natiivi", + "show_hotkeys": "Näytä pikanäppäimet", + "new_name": "Uusi nimi", + "copying": "kopioidaan", + "copy": "Kopioi", + "compiling": "Käännetään", + "click_here_to_preview_pdf": "Paina tästä esikatsellaksesi työtäsi PDF:nä.", + "server_error": "Palvelinvirhe", + "somthing_went_wrong_compiling": "Anteeksi, jokin meni pieleen ja projektiasi ei voitu kääntää. Yritä uudelleen hetken kuluttua.", + "timedout": "Aikakatkaisu", + "proj_timed_out_reason": "Kääntämisessä kesti liian pitkää ja se aikakatkaistiin. Tämä saattaa johtua liian suuresta määrästä korkearesoluutioisia kuvia tai monimutkaisista kaavioista.", + "no_errors_good_job": "Ei virheitä, hyvin tehty!", + "compile_error": "Virhe kääntämisessä", + "generic_failed_compile_message": "Anteeksi, LaTeX-koodisi ei kääntynyt jostain syystä. Ole hyvä ja katso tarkempia tietoja allaolevista virheilmoituksista, tai katso raakalokia.", + "other_logs_and_files": "Muut lokit & tiedostot", + "view_raw_logs": "Katso raakalokeja", + "hide_raw_logs": "Piilota raakalokit", + "clear_cache": "Tyhjennä välimuisti", + "clear_cache_explanation": "Tämä tyhjentää kaikki piilotetut LaTeX-tiedostot (.aux, .bbl, jne.) kääntämisen hoitavalta palvelimeltamme. Et yleensä joudu tekemään tätä, paitsi jos sinulla on ongelmia viittausten kanssa.", + "clear_cache_is_safe": "Projektisi tiedostoja ei poisteta tai muuteta.", + "clearing": "Tyhjennetään", + "template_description": "Mallin kuvaus", + "project_last_published_at": "Projektisi julkaistiin viimeksi", + "problem_talking_to_publishing_service": "Julkaisupalvelussamme on ongelma, ole hyvä ja yritä uudestaan muutaman minuutin kuluttua.", + "unpublishing": "Lopetetaan julkaiseminen", + "republish": "Uudelleenjulkaise", + "publishing": "Julkaistaan", + "share_project": "Jaa projekti", + "this_project_is_private": "Tämä projekti on yksityinen ja siihen pääsevät käsiksi vain alla luetellut ihmiset.", + "make_public": "Tee julkiseksi", + "this_project_is_public": "Tämä projekti on julkinen ja sitä voi muokata kuka tahansa, jolla on URL.", + "make_private": "Tee yksityiseksi", + "can_edit": "Voi muokata", + "share_with_your_collabs": "Jaa työtovereidesi kanssa", + "share": "Jaa", + "need_to_upgrade_for_more_collabs": "Sinun täytyy päivittää tilisi lisätäksesi työtovereta", + "make_project_public": "Tee projektista julkinen", + "make_project_public_consequences": "Jos teet projektistasi julkisen, kuka tahansa, jolla on URL, pääsee siihen käsiksi.", + "allow_public_editing": "Salli julkinen muokkaaminen", + "allow_public_read_only": "Salli julkinen vain luku -oikeus", + "make_project_private": "Tee projektista yksityinen", + "make_project_private_consequences": "Jos teet projektistasi yksityisen, vain valitsemasi henkilöt pääsevät siihen käsiksi.", + "need_to_upgrade_for_history": "Sinun täytyy päivittää tilisi käyttääksesi Historia-toimintoa.", + "ask_proj_owner_to_upgrade_for_history": "Ole hyvä ja pyydä projektin omistajaa päivittämään käyttääksesi Historia-ominaisuutta.", + "anonymous": "Anonyymi", + "generic_something_went_wrong": "Anteeksi, jokin meni pieleen :(", + "restoring": "Palautetaan", + "restore_to_before_these_changes": "Palauta versioon ennen näitä muutoksia", + "profile_complete_percentage": "Profiilisi on __percentval__% valmis", + "file_has_been_deleted": "__filename__ on poistettu", + "sure_you_want_to_restore_before": "Oletko varma, että haluat palauttaa tiedoston __filename__ versioon ennen __date__ tehtyjä päivityksiä?", + "rename_project": "Uudelleennimeä projekti", + "about_to_delete_projects": "Olet poistamassa seuraavia projekteja:", + "about_to_leave_projects": "Olet jättämässä seuraavat projektit:", + "upload_zipped_project": "Vie pakattu projekti", + "upload_a_zipped_project": "Vie pakattu projekti", + "your_profile": "Profiilisi", + "institution": "Instituutio", + "role": "Rooli", + "folders": "Kansiot", + "disconnected": "Yhteys katkaistu", + "please_refresh": "Päivitä sivu jatkaaksesi.", + "lost_connection": "Yhteys menetettiin.", + "reconnecting_in_x_secs": "Yhteys muodostetaan uudestaan __seconds__ sekunnin kuluttua", + "try_now": "Yritä nyt", + "reconnecting": "Yhdistetään uudelleen", + "saving_notification_with_seconds": "Tallennetaan __docname__... (__seconds__ sekuntia tallentamattomia muutoksia)", + "help_us_spread_word": "Auta meitä jakamaan tietoa __appName__-sovelluksesta", + "share_sl_to_get_rewards": "Jaa __appName__ kavereille ja työtovereillesi ja avaa alla olevat palkinnot", + "post_on_facebook": "Julkaise Facebookissa", + "share_us_on_googleplus": "Jaa meidät Google+:ssa", + "email_us_to_your_friends": "Lähetä meistä sähköpostia kavereillesi", + "link_to_us": "Linkitä meihin nettisivuiltasi", + "direct_link": "Suora linkki", + "sl_gives_you_free_stuff_see_progress_below": "Kun joku alkaa käyttäämään __appName__-sovellusta suosituksesi perusteella, annamme sinulle ilmaista tavaraa kiitoksen osoitukseksi! Tarkista etenemisesi alla.", + "spread_the_word_and_fill_bar": "Levitä sanomaa ja täytä tämä palkki", + "one_free_collab": "Yksi ilmainen työtoveri", + "three_free_collab": "Kolme ilmaista työtoveria", + "free_dropbox_and_history": "Ilmainen Dropbox ja historia", + "you_not_introed_anyone_to_sl": "Et ole vielä esitellyt __appName__-sovellusta kenellekään. Aloita jakamaan!", + "you_introed_small_number": " Olet esitellyt __appName__-sovelluksen __numberOfPeople__ henkilölle. Hyvää työtä, mutta löydätkö vielä lisää?", + "you_introed_high_number": " Olet esitellyt __appName__-sovelluksen __numberOfPeople__ henkilölle. Hyvää työtä!", + "link_to_sl": "Linkitä sovellukseen __appName__", + "can_link_to_sl_with_html": "Voit linkittää sovellukseen __appName__ seuraavalla HTML-koodilla:", + "year": "vuosi", + "month": "kuukausi", + "subscribe_to_this_plan": "Tilaa tämä sopimus", + "your_plan": "Sopimuksesi", + "your_subscription": "Tilauksesi", + "on_free_trial_expiring_at": "Käytät tällä hetkellä ilmaista kokeiluversiota, joka vanhenee __expiresAt__.", + "choose_a_plan_below": "Valitse tilattava sopimus alta.", + "currently_subscribed_to_plan": "Sinula on tällä hetkellä __planName__-sopimus", + "change_plan": "Muuta sopimusta", + "next_payment_of_x_collectected_on_y": "Seuraava maksu on __paymentAmmount__ ja se kerätään __collectionDate__", + "update_your_billing_details": "Päivitä laskutustietojasi", + "subscription_canceled_and_terminate_on_x": " Tilauksesi on peruutettu ja loppuu __terminateDate__. Lisämaksuja ei veloiteta.", + "your_subscription_has_expired": "Tilauksesi on umpeutunut.", + "create_new_subscription": "Luo uusi tilaus", + "problem_with_subscription_contact_us": "Tilauksessasi on on ongelma. Ole hyvä ja ota meihin yhteyttä saadaksesi lisätietoja.", + "manage_group": "Hallinnoi ryhmää", + "loading_billing_form": "Ladataan laskutustietolomaketta", + "you_have_added_x_of_group_size_y": "Olet lisännyt __addedUsersSize__ saatavilla olevasta __groupSize__ jäsenestä", + "remove_from_group": "Poista ryhmästä", + "group_account": "Ryhmätili", + "registered": "Rekisteröitynyt", + "no_members": "Ei jäseniä", + "add_more_members": "Lisää jäseniä", + "add": "Lisää", + "thanks_for_subscribing": "Kiitos tilauksesta!", + "your_card_will_be_charged_soon": "Kortiltasi veloitetaan pian.", + "if_you_dont_want_to_be_charged": "Jos et halua, että sinulta veloitetaan uudestaan ", + "add_your_first_group_member_now": "Lisää ensimmäiset ryhmäsi jäsenet nyt", + "thanks_for_subscribing_you_help_sl": "Kiitos, että tilasit __planName__-sopimuksen. Kaltaistesi ihmisten antama tuki mahdollistaa __appName__-sovelluksen kehittämisen jatkumisen.", + "back_to_your_projects": "Takaisin projekteihisi", + "goes_straight_to_our_inboxes": "Se menee suoraan meidän molempien sähköpostilaatikoihimme", + "need_anything_contact_us_at": "Jos ikinä tarvitset mitään, ota suoraan yhteyttä osoitteeseen", + "regards": "Kiittäen", + "about": "Tietoa", + "comment": "Kommentoi", + "restricted_no_permission": "Rajoitettu, sinulla ei valitettavasti ole lupaa ladata tätä sivua", + "online_latex_editor": "Verkossa toimiva LaTeX-editori", + "meet_team_behind_latex_editor": "Tutustu tiimiin verkossa toimivan suosikki-LaTeX-editorisi takana.", + "follow_me_on_twitter": "Seuraa minua Twitterissä", + "motivation": "Motivaatio", + "evolved": "Kehittynyt", + "the_easy_online_collab_latex_editor": "Helppokäyttöinen, verkossa toimiva, yhteistyön mahdollistava LaTeX-editori", + "get_started_now": "Aloita heti", + "sl_used_over_x_people_at": "__appName__-sovellusta käyttää yli __numberOfUsers__ opiskelijaa ja akateemista seuraavissa paikoissa kuin:", + "collaboration": "Yhteistyö", + "work_on_single_version": "Työskentele yhdessä yhdellä versiolla", + "view_collab_edits": "Katso työtovereiden tekemät muutokset ", + "ease_of_use": " Helppokäyttöisyys", + "no_complicated_latex_install": "Ei monimutkaista LaTeXin asennusta", + "all_packages_and_templates": "Kaikki paketit ja __templatesLink__ mitä tarvitset", + "document_history": "Dokumenttihistoria", + "see_what_has_been": "Näe mitä on ", + "added": "lisätty", + "and": "ja", + "removed": "poistettu", + "restore_to_any_older_version": "Palauta mihin tahansa vanhempaan versioon", + "work_from_anywhere": "Työskentele mistä tahansa", + "acces_work_from_anywhere": "Pääse työhösi käsiksi mistä tahansa päin maailmaa", + "work_offline_and_sync_with_dropbox": "Työskentele ilman verkkoyhteyttä ja synkronoi tiedostosi Dropboxin ja GitHubin kautta", + "over": "yli", + "view_templates": "Katso mallipohjia", + "nothing_to_install_ready_to_go": "Sinun ei ole tarpeen asentaa mitään monimutkaista tai vaikeaa, ja voit __start_now__, vaikka et olisi ikinä nähnyt sitä ennen. __appName__-sovelluksen mukana tulee täydellinen palvelimillamme toimiva LaTeX-ympäristö, heti käyttöön.", + "start_using_latex_now": "aloita LaTeXin käyttäminen heti", + "get_same_latex_setup": "__appName__ antaa sinulle samat LaTeX-asetukset missä ikinä menetkin. Kun teet työtä __appName__-sovelluksella työtovereidesi ja opiskelijoiden kanssa, voit olla varma, että vältät versio-epäjohdonmukaisuudet ja pakettikonfliktit.", + "support_lots_of_features": "Tuemme lähes kaikkia LaTeXin ominaisuuksia, mukaanlukien kuvien lisäys, lähdeluettelot, yhtälöt ja paljon muuta! Lue mitä kaikkia jännittäviä asioita voit tehdä sovelluksen __appName__ avulla: __help_guides_link__", + "latex_guides": "LaTeX-oppaat", + "reset_password": "Nollaa salasana", + "set_password": "Aseta salasana", + "updating_site": "Päivitetään sivustoa", + "bonus_please_recommend_us": "Bonus - Ole hyvä ja suosittele meitä", + "admin": "ylläpitäjä", + "subscribe": "Tilaa", + "update_billing_details": "Päivitä laskutustiedot", + "thank_you": "Kiitos", + "group_admin": "Ryhmän ylläpitäjä", + "all_templates": "Kaikki mallipohjat", + "your_settings": "Asetuksesi", + "maintenance": "Huolto", + "to_many_login_requests_2_mins": "Tällä tilillä on liian monta sisäänkirjautumispyyntöä. Ole hyvä ja odota 2 minuuttia ennen kuin yrität kirjautua uudestaan", + "email_or_password_wrong_try_again": "Sähköpostiosoitteesi tai salasanasi oli väärä. Ole hyvä ja yritä uudelleen", + "rate_limit_hit_wait": "Vauhtiraja tuli vastaan. Odota hetki ennen kuin yrität uudelleen", + "problem_changing_email_address": "Sähköpostia muutettaessa tapahtui virhe. Ole hyvä ja yritä uudelleen hetken kuluttua. Jos ongelma jatkuu, ota meihin yhteyttä.", + "single_version_easy_collab_blurb": "__appName__ varmistaa, että olet aina ajan tasalla työtovereidesi kanssa ja tiedät mitä he ovat tekemässä. Jokaisesta dokumentista on olemassa vain yksi pääversio, johon kaikilla on pääsyoikeus. Sinun on mahdotonta tehdä keskenään ristiriidassa olevia muutoksia, eikä sinun tarvitse odottaa, että työtoverisi lähettävät sinulle viimeisimmän luonnoksen ennen kuin voit jatkaa työntekoa.", + "can_see_collabs_type_blurb": "Ei ole ongelma, jos useampi ihminen haluaa työskennellä saman dokumentin parissa samanaikaisesti. Näet missä kohtaa dokumenttia työtoverisi kirjoittavat ja heidän tekemänsä muutokset näkyvät suoraan editorissasi.", + "work_directly_with_collabs": "Työskentele suoraan työtovereidesi kanssa", + "work_with_word_users": "Työskentele Wordin käyttäjien kanssa", + "work_with_word_users_blurb": "Sovelluksen __appName__ käyttäminen on niin helppoa, että voit kutsua LaTeXia aikaisemmin käyttämättömät työtoverisi mukaan osallistumaan LaTeX-dokumentteihisi. He pystyvät olemaan tuottavia ja osallistumaan heti ensimmäisestä päivästä lähtien ja oppimaan lisää LaTeXia ajan mukaan.", + "view_which_changes": "Katso mitä muutoksia on", + "sl_included_history_of_changes_blurb": "__appName__ sisältää historiatiedot kaikista muutoksista, joten voit nähdä tarkalleen kuka muutti mitä, ja milloin. Näin pysyt kärryillä kuinka työtoverisi edistyvät ja voit tarkastella heidän tekemiä tuoreita muutoksia.", + "can_revert_back_blurb": "Tehdessä töitä itsenäisesti tai yhdessä tapahtuu joskus virheitä. Voit yksinkertaisesti palata takaisin aiempiin versioihin, joka poistaa sinulta riskin, että kadottaisit tehdyn työn tai kadut muutosta.", + "start_using_sl_now": "Ala käyttämään sovellusta __appName__ heti", + "over_x_templates_easy_getting_started": "Mallipohjagalleriastamme löytyy __yli__ 400 __mallipohjaa__, joten pääset todella helposti alkuun, kirjoitit sitten tiedeartikkelia, väitöstä, ansioluetteloa tai jotain muuta.", + "done": "Valmis", + "change": "Muuta", + "page_not_found": "Sivua Ei Löydy", + "please_see_help_for_more_info": "Lue lisätietoa ohjeoppaastamme", + "this_project_will_appear_in_your_dropbox_folder_at": "Tämä projekti ilmestyy Dropbox-kansioosi kohteessa ", + "member_of_group_subscription": "Olet ryhmätilauksen jäsen, jota hallitsee __admin_email__. Ota yhteyttä heihin hallitaksesi tilaustasi.\n", + "about_henry_oswald": "on Lontoossa asuva ohjelmistoinsinööri. Hän kehitti __appName__:in ensimmäisen prototyypin ja on vastannut vakaan ja skaalautuvan alustan suunnittelut. Henry uskoo vahvasti testauslähtöiseen kehittämiseen ja haluaa varmistaa, että sovelluksen __appName__ koodi pysyy selkeänä ja helposti ylläpidettävänä.", + "about_james_allen": "on teoreettisen fysiikan tohtori, joka suhtautuu LaTeXiin intohimolla. Hän loi yhden ensimmäisistä verkossa olevista LaTeX-editoreista, ScribTeXin, ja on ollut suuressa osassa muiden teknologioiden kehittämisessä, jotka ovat mahdollistaneet __appName__-sovelluksen kehittämisen.", + "two_strong_principles_behind_sl": "__appName__-sovelluksen parissa tekemäämme työtä ohjaa kaksi vahvaa periaatetta:", + "want_to_improve_workflow_of_as_many_people_as_possible": "Haluamme kehittää niin monen ihmisen työnkulkua kuin on vain mahdollista.", + "detail_on_improve_peoples_workflow": "LaTeX on pahamaineisen hankala käyttää ja yhteistyötä on aina hankala koordinoida. Uskomme, että olemme kehittäneet erinomaisia ratkaisuja, jotka auttavat ihmisiä kohtaamaan nämä ongelmat, ja haluamme varmistaa, että __appName__ saatavilla mahdollisimman monelle. Olemme pyrkineet pitämään hinnoittelumme reiluna ja julkaisseet suuren osan __appName__-sovelluksesta avoimena lähdekoodina, jolloin kuka tahansa voi ylläpitää sitä.", + "want_to_create_sustainable_lasting_legacy": "Me haluamme luoda kestävän ja jatkuvan perinnön.", + "details_on_legacy": "Tuotteen kuten __appName__ kehittäminen ja ylläpito vaatii paljon aikaa ja työtä, joten on tärkeää, että pystymme löytämään liiketoimintamallin, joka tukee tätä nyt ja pitkällä tähtäimellä. Emme halua, että __appName__ on riippuvainen ulkoisesta rahoituksesta tai katoaa, koska liiketoimintamalli ei toiminut. Voin onneksi kertoa, että __appName__ toimii tällä hetkellä kannattavasti ja kestävällä pohjalla, ja odotamme tämän jatkuvan myös tulevaisuudessa.", + "get_in_touch": "Ota yhteyttä", + "want_to_hear_from_you_email_us_at": "Kuulisimme mielellämme kaikista niistä, jotka käyttävät __appName__-sovellusta ja haluavat keskustella kanssamme siitä, mitä me teemme. Ota meihin yhteys osoitteessa ", + "cant_find_email": "Tämä sähköposti ei ole rekisteröity, pahoittelut.", + "plans_amper_pricing": "Sopimukset & Hinnoittelu", + "documentation": "Dokumentaatio", + "account": "Tili", + "subscription": "Tilaus", + "log_out": "Kirjaudu ulos", + "en": "Englanti", + "pt": "Portugali", + "es": "Espanja", + "fr": "Ranska", + "de": "Saksa", + "it": "Italia", + "da": "Tanska", + "sv": "Ruotsi", + "no": "Norja", + "nl": "Hollanti", + "pl": "Puola", + "ru": "Venäjä", + "uk": "Ukraina", + "ro": "Romania", + "click_here_to_view_sl_in_lng": "Klikkaa tästä käyttääksesi sovellusta __appName__ kielellä __lngName__", + "language": "Kieli", + "upload": "Siirrä", + "menu": "Valikko", + "full_screen": "Koko ruutu", + "logs_and_output_files": "Loki- ja tulostetiedostot", + "download_pdf": "Lataa PDF", + "split_screen": "Jaettu ruutu", + "clear_cached_files": "Tyhjennä väliaikaistiedostot", + "go_to_code_location_in_pdf": "Mene koodin sijaintiin PDF:ssä", + "please_compile_pdf_before_download": "Käännä projektisi ennen kuin lataat PDF:n", + "remove_collaborator": "Poista työtoveri", + "add_to_folders": "Lisää kansioihin", + "download_zip_file": "Lataa .zip-tiedosto", + "price": "Hinta", + "close": "Sulje", + "keybindings": "Näppäinasetukset", + "restricted": "Rajoitettu pääsy", + "start_x_day_trial": "Aloita __len__-Päivän Ilmainen Kokeilujakso Tänään!", + "buy_now": "Osta Heti!", + "cs": "Tsekki", + "view_all": "Näytä Kaikki", + "terms": "Ehdot", + "privacy": "Tietosuoja", + "contact": "Ota yhteyttä", + "change_to_this_plan": "Muutos tähän sopimukseen", + "processing": "käsitellään", + "sure_you_want_to_change_plan": "Oletko varma, että haluat vaihtaa sopimukseen __planName__?", + "move_to_annual_billing": "Siirry vuosilaskutukseen", + "annual_billing_enabled": "Vuosilaskutus käytössä", + "move_to_annual_billing_now": "Siirry vuosilaskutukseen nyt", + "change_to_annual_billing_and_save": "Saat __percentage__ pois vuosilaskutuksella. Jos vaihdat nyt säästät __yearlySaving__ vuodessa.", + "missing_template_question": "Puuttuva mallipohja?", + "tell_us_about_the_template": "Jos meiltä puuttuu mallipohja, voit joko: lähettää meille kopion mallipohjasta, __appName__-urlin mallipohjaan tai kertoa meille mistä voimme löytää mallipohjan. Kerro meille myös hiukan mallipohjasta kuvauksen luomista varten.", + "email_us": "Viestiä meille", + "this_project_is_public_read_only": "Tämä projekti on julkinen ja sitä voi katsoa mutta ei muokata URL-osoitteella", + "tr": "Turkki", + "select_files": "Valitse tiedosto(ja)", + "drag_files": "vedä tiedosto(ja)", + "upload_failed_sorry": "Siirto epäonnistui, pahoittelut :(", + "inserting_files": "Lisätään tiedostoa...", + "password_reset_token_expired": "Salasanan uusimislinkki on vanhentunut. Pyydä uusi salasanan uusimissähköposti ja seuraa saatua linkkiä.", + "merge_project_with_github": "Yhdistä Projekti GitHubiin", + "pull_github_changes_into_sharelatex": "Tuo __appName__-muutokset GitHubista", + "push_sharelatex_changes_to_github": "Vie __appName__-muutokset GitHubiin", + "features": "Ominaisuudet", + "commit": "Muuta", + "commiting": "Muuttaa", + "importing_and_merging_changes_in_github": "Tuodaan ja yhdistetään muutoksia GitHubissa", + "upgrade_for_faster_compiles": "Päivitä nopeampaan kääntämiseen ja lisää aikakatkaisun rajaa", + "free_accounts_have_timeout_upgrade_to_increase": "Ilmaisilla tileillä on minuutin aikakatkaisu. Päivitä lisätäksesi aikakatkaisun rajaa.", + "learn_how_to_make_documents_compile_quickly": "Lue kuinka saat dokumenttisi kääntymään nopeammin", + "zh-CN": "Kiina", + "cn": "Kiina (Yksinkertainen)", + "sync_to_github": "Synkronoi GitHubiin", + "sync_to_dropbox_and_github": "Synkronoi Dropboxiin ja GitHubiin", + "project_too_large": "Projekti liian suuri", + "project_too_large_please_reduce": "Tässä projektissa on liikaa tekstiä, yritä ja vähennä sitä.", + "please_ask_the_project_owner_to_link_to_github": "Pyydä projektin omistajaa linkittämään tämä projekti GitHub-repositoryyn", + "go_to_pdf_location_in_code": "Mene PDF-sijaintiin koodissa", + "ko": "Korea", + "ja": "Japani", + "about_brian_gough": "on sovelluskehittäjä ja entinen teoreettisen korkean energian fyysikko Fermilabissa ja Los Alamosissa. Hän on julkaissut useiden vuosien ajan vapaiden ohjelmistojen kaupallisia oppaita käyttämällä TeXiä ja LaTeXia sekä toiminut GNU Scientific Libraryn ylläpitäjänä.", + "first_few_days_free": "Ensimmäiset __trialLen__ päivää ilmaiseksi", + "every": "joka", + "credit_card": "Luottokortti", + "credit_card_number": "Luottokorttinumero", + "invalid": "Väärä", + "expiry": "Voimassa", + "january": "Tammikuu", + "february": "Helmikuu", + "march": "Maaliskuu", + "april": "Huhtikuu", + "may": "Toukokuu", + "june": "Kesäkuu", + "july": "Heinäkuu", + "august": "Elokuu", + "september": "Syyskuu", + "october": "Lokakuu", + "november": "Marraskuu", + "december": "Joulukuu", + "zip_post_code": "Postinumero", + "city": "Postitoimipaikka", + "address": "Osoite", + "coupon_code": "Kuponkikoodi", + "country": "Maa", + "billing_address": "Laskutusosoite", + "upgrade_now": "Päivitä Nyt", + "state": "Tila", + "vat_number": "Alv-numero", + "you_have_joined": "Olet liittynyt ryhmään __groupName__", + "claim_premium_account": "Olet ottanut käyttöön ryhmän __groupName__ tarjoaman premium-tilin.", + "you_are_invited_to_group": " Sinut on kutsuttu liittymään ryhmään __groupName__", + "you_can_claim_premium_account": "Voit ottaa käyttöön ryhmän __groupName__ tarjoaman premium-tilin vahvistamalla sähköpostisi", + "not_now": "Ei nyt", + "verify_email_join_group": "Vahvista sähköposti ja liity ryhmään", + "check_email_to_complete_group": "Ole hyvä ja tarkista vielä sähköpostisi liittyäksesi ryhmään", + "verify_email_address": "Vahvista sähköpostiosoite", + "group_provides_you_with_premium_account": "__groupName__ tarjoaa sinulle premium-tilin. Vahvista sähköpostiosoitteesi päivittääksesi tilisi uudelle tasolle.", + "check_email_to_complete_the_upgrade": "Ole hyvä ja tarkista sähköpostisi viimeistelläksesi päivitys", + "email_link_expired": "Sähköpostilinkki on vanhentunut, ole hyvä ja pyydä uusi.", + "account_settings": "Tilin asetukset", + "search_projects": "Etsi projekteja", + "clone_project": "Monista projekti", + "delete_project": "Poista projekti", + "download_zip": "Lataa Zip", + "new_project": "Uusi projekti", + "blank_project": "Tyhjä projekti", + "example_project": "Esimerkkiprojekti", + "from_template": "Mallista", + "cv_or_resume": "CV tai ansioluettelo", + "cover_letter": "Saatekirje", + "journal_article": "Tiedejulkaisun artikkeli", + "presentation": "Esitelmä", + "thesis": "Lopputyö", + "bibliographies": "Lähdeluettelot", + "terms_of_service": "Palveluehdot", + "privacy_policy": "Yksityisyyskäytäntö", + "plans_and_pricing": "Sopimukset ja hinnoittelu", + "university_licences": "Yliopistolisenssit", + "security": "Turvallisuus", + "contact_us": "Ota yhteyttä", + "thanks": "Kiitos", + "blog": "Blogi", + "latex_editor": "LaTeX-editori", + "get_free_stuff": "Hanki ilmaista tavaraa", + "chat": "Keskustelu", + "your_message": "Viestisi", + "loading": "Ladataan", + "connecting": "Yhdistetään", + "recompile": "Käännä uudestaan", + "download": "Lataa", + "email": "Sähköposti", + "owner": "Omistaja", + "read_and_write": "Lue ja kirjoita", + "read_only": "Read Only", + "publish": "Julkaise", + "view_in_template_gallery": "Katso mallikirjastossa", + "unpublish": "Lopeta julkaiseminen", + "hotkeys": "Pikanäppäimet", + "saving": "Tallennetaan", + "cancel": "Peru", + "project_name": "Projektin nimi", + "root_document": "Juuridokumentti", + "spell_check": "Oikeinkirjoituksen tarkistus", + "compiler": "Kääntäjä", + "private": "Yksityinen", + "public": "Julkinen", + "delete_forever": "Poista lopullisesti", + "support_and_feedback": "Tuki ja palaute", + "help": "Apua", + "latex_templates": "LaTeX-mallit", + "info": "Tietoa", + "latex_help_guide": "LaTeX-opas", + "choose_your_plan": "Valitse sopimustyyppi", + "indvidual_plans": "Yksilöllinen sopimus", + "free_forever": "Ikuisesti ilmainen", + "low_priority_compile": "Matalan tärkeystason kääntäminen", + "unlimited_projects": "Rajattomasti projekteja", + "unlimited_compiles": "Rajattomasti kääntämisiä", + "full_history_of_changes": "Täysi muutoshistoria", + "highest_priority_compiling": "Korkeimman tärkeystason kääntäminen", + "dropbox_sync": "Dropbox-synkronointi", + "beta": "Beta", + "sign_up_now": "Kirjoittaudu nyt", + "annual": "Vuosittainen", + "half_price_student": "Puolihintaiset opiskelijasopimukset", + "about_us": "Tietoa meistä", + "loading_recent_github_commits": "Ladataan viimeisiä muutoksia", + "no_new_commits_in_github": "Ei uusia muutoksia GitHubissa sitten viimeisen yhdistyksen.", + "dropbox_sync_description": "Pidä __appName__-projektisi synkronoituna Dropboxiisi. Sovelluksessa __appName__ tehdyt muutokset lähetetään automaattisesti Dropboxiin ja toisin päin.", + "github_sync_description": "Voit linkittää __appName__-projektisi GitHub-repositoryihin GitHub Syncin avulla. Tee uusia muutoksia sovelluksesta __appName__ ja yhdistä GitHubissa tai offline-tilassa tehtyihin muutoksiin.", + "github_import_description": "Voit tuoda omia GitHub Repositoryja sovellukseen __appName__ GitHub Syncin avulla. Tee uusia muutoksia sovelluksesta __appName__ ja yhdistä GitHubissa tai offline-tilassa tehtyihin muutoksiin.", + "link_to_github_description": "Sinun tulee antaa sovellukselle __appName__ pääsy GitHub-tilillesi, joka sallii meidän synkronoida projektisi.", + "unlink": "Poista linkki", + "unlink_github_warning": "Kaikkien GitHubin kanssa synkronoimasi projektien yhteys katkaistaan eikä niitä pidetä enää synkronituna GitHubin kanssa. Oletko varma, että haluat poistaa linkin GitHub-tilillesi?", + "github_account_successfully_linked": "GitHub-tili Linkitetty Onnistuneesti!", + "github_successfully_linked_description": "Kiitos, olemme linkittäneet GitHub-tilisi sovellukseen __appName__ onnistuneesti. Voit nyt viedä __appName__-projektejasi GitHubiin tai tuoda projekteja omista GitHub-repositoryistasi.", + "import_from_github": "Tuo GitHubista", + "github_sync_error": "Tapahtui virhe puhuessa GitHub-palvelullemme. Yritä uudelleen pienen hetken päästä.", + "loading_github_repositories": "Ladataan sinun GitHub-repositoryja", + "select_github_repository": "Valitse GitHub-repository tuotavaksi sovellukseen __appName__.", + "import_to_sharelatex": "Tuo sovellukseen __appName__", + "importing": "Tuodaan", + "github_sync": "GitHub Synkronointi", + "checking_project_github_status": "Tarkistetaan projektin tilaa GitHubissa", + "account_not_linked_to_github": "Tiliäsi ei ole linkitetty GitHubiin", + "project_not_linked_to_github": "Tämä projekti ei ole linkitetty GitHub-repositoryyn. Voit luoda sille repositoryn GitHubissa:", + "create_project_in_github": "Luo GitHub-repository", + "project_synced_with_git_repo_at": "Tämä projekti synkronoitiin GitHub-repositoryyn kohteessa", + "recent_commits_in_github": "Viimeiset muutokset GitHubissa", + "sync_project_to_github": "Synkronoi projekti GitHubiin", + "sync_project_to_github_explanation": "Kaikki __appName__-sovelluksessa tekemäsi muutokset viedään ja sulautetaan mihin tahansa GitHubissa oleviin päivityksiin.", + "github_merge_failed": "Muutoksiasi sovelluksessa __appName__ ja GitHubissa ei voitu yhdistää automaattisesti. Yhdistä haara __sharelatex_branch__ haaraan __master_branch__ gitissä. Klikkaa alla jatkaaksesi sen jälkeen kun olet yhdistänyt manuaalisesti.", + "continue_github_merge": "Olen yhdistänyt manuaalisesti. Jatka", + "export_project_to_github": "Vie Projekti GitHubiin", + "github_validation_check": "Tarkista, että repositoryn nimi on kelvollinen ja että sinulla on oikeudet luoda repository.", + "repository_name": "Repositoryn Nimi", + "optional": "Valinnainen", + "github_public_description": "Kuka tahansa voi nähdä tämän repositoryn. Voit valita kuka voi tehdä muutoksia.", + "github_commit_message_placeholder": "Tehdyt muutokset-viesti sovelluksessa __appName__ tehdyille muutoksille", + "merge": "Yhdistä", + "merging": "Yhdistetään", + "github_account_is_linked": "GitHub-tilisi on linkitetty onnistuneesti.", + "unlink_github": "Poista linkitys GitHub-tiliisi", + "link_to_github": "Linkitä GitHub-tiliisi", + "github_integration": "GitHub Integraatio", + "github_is_premium": "GitHub-synkronointi on premium-ominaisuus" +} \ No newline at end of file diff --git a/services/web/locales/fr.json b/services/web/locales/fr.json new file mode 100644 index 0000000000..19a7553d10 --- /dev/null +++ b/services/web/locales/fr.json @@ -0,0 +1,1280 @@ +{ + "last_login": "Dernière connexion", + "invalid_insitituional_email": "Le service d’authentification de votre établissement a indiqué que votre adresse courriel était __email__, mais le domaine de cette adresse n’appartient pas à ceux que nous reconnaissons pour cet établissement. Il est peut-être possible de modifier votre adresse courriel principale depuis le profil utilisateur de votre établissement pour qu’elle soit dans un domaine reconnu. Veuillez contacter votre département informatique si vous avez des questions.", + "thank_you_for_being_part_of_our_beta_program": "Merci de votre participation au programme de bêta, qui vous permet d’accéder en avant-première aux nouvelles fonctionnalités et de nous aider à mieux comprendre vos besoins", + "you_will_be_able_to_contact_us_any_time_to_share_your_feedback": "Vous pourrez nous contacter à tout moment pour donner votre avis", + "we_may_also_contact_you_from_time_to_time_by_email_with_a_survey": "Nous serons également amenés à vous inviter par courriel à participer à des sondages ou à d’autres initiatives de recherche utilisateur", + "you_can_opt_in_and_out_of_the_program_at_any_time_on_this_page": "Vous pouvez rejoindre ou quitter le programme à tout moment depuis cette page", + "give_feedback": "Donner votre avis", + "beta_feature_badge": "Badge de fonctionnalité bêta", + "invalid_filename": "Échec de l’envoi : assurez-vous que le nom du fichier ne contienne pas de caractères spéciaux ou de blancs au début ou à la fin", + "clsi_unavailable": "Désolé, le serveur de compilation attribué à votre projet est temporairement indisponible. Veuillez réessayer dans quelques instants.", + "x_price_per_month": "__price__ par mois", + "x_price_per_year": "__price__ par an", + "x_price_for_first_month": "__price__ pour votre premier mois", + "x_price_for_first_year": "__price__ pour votre première année", + "normally_x_price_per_month": "__price__ par mois en temps normal", + "normally_x_price_per_year": "__price__ par an en temps normal", + "then_x_price_per_month": "Puis __price__ par mois", + "then_x_price_per_year": "Puis __price__ par an", + "for_your_first": "pour votre premier·e", + "sso_not_linked": "Vous n’avez pas lié votre compte à __provider__. Veuillez vous connecter à votre compte via une autre méthode puis lier votre compte __provider__ dans les paramètres.", + "template_gallery": "Galerie de modèles", + "template_not_found_description": "Cette méthode de création de projets à partir de modèles n’est plus disponible. Merci de vous rendre sur notre galerie des modèles pour trouver d’autres modèles.", + "dropbox_checking_sync_status": "Vérification de l’état de l’intégration Dropbox", + "dropbox_sync_in": "Mise à jour sur Overleaf", + "dropbox_sync_out": "Mise à jour vers Dropbox", + "dropbox_sync_both": "Mise à jour d’Overleaf et de Dropbox", + "dropbox_synced": "Overleaf et Dropbox sont à jour", + "dropbox_sync_status_error": "Une erreur relative à l’intégration Dropbox s’est produite", + "requesting_password_reset": "Réinitialisation du mot de passe", + "tex_live_version": "Version de TeX Live", + "email_does_not_belong_to_university": "Nous n’avons pas connaissance de l’affiliation de ce domaine à votre université. Veuillez nous contacter pour faire valoir cette affiliation.", + "company_name": "Nom de l’entreprise", + "add_company_details": "Ajouter les infos de l’entreprise", + "github_timeout_error": "La synchronisation de votre projet Overleaf avec GitHub a pris trop de temps. Ceci peut être dû à un volume de données global trop grand ou à un nombre de fichiers/modifications trop important dans votre projet.", + "github_large_files_error": "Échec de fusion : votre dépôt GitHub contient des fichiers dépassant la taille limite de 50 Mo ", + "no_history_available": "Ce projet n’a aucun historique pour le moment. Veuillez apporter des changements au projet puis essayer à nouveau.", + "project_approaching_file_limit": "Ce projet approche la limite de fichiers", + "recurly_email_updated": "Votre adresse courriel de facturation a été modifiée avec succès", + "recurly_email_update_needed": "Votre adresse courriel de facturation est actuellement __recurlyEmail__. Si besoin, vous pouvez modifier votre adresse de facturation pour __userEmail__.", + "project_has_too_many_files": "La limite des 2 000 fichiers a été atteinte pour ce projet", + "processing_your_request": "Veuillez patienter pendant que nous traitons votre demande.", + "github_repository_diverged": "La branche master du dépôt lié a été poussée de force. La récupération des modifications faites sur GitHub après un poussage forcé peut causer la désynchronisation d’Overleaf et GitHub. Vous pourriez avoir besoin de pousser les modifications après leur récupération pour restaurer la synchronisation.", + "unlink_github_repository": "Annuler le lien avec le dépôt GitHub", + "unlinking": "Annuler le lien", + "github_no_master_branch_error": "Ce dépôt ne peut pas être importé car il n’a pas de branche master. Veuillez vous assurer qu’une branche master existe dans le projet.", + "confirmation_token_invalid": "Désolé, votre jeton de confirmation est invalide ou a expiré. Veuillez en demander un nouveau.", + "confirmation_link_broken": "Désolé, il y a un problème avec votre lien de confirmation. Veuillez essayer de copier et coller le lien en bas de votre courriel de confirmation.", + "duplicate_file": "Dupliquer le fichier", + "file_already_exists_in_this_location": "Un élément porte déjà le nom __fileName__ à cet emplacement. Si vous souhaitez déplacer ce fichier, renommez ou supprimez l’élément et essayez à nouveau.", + "group_full": "Ce groupe est déjà complet", + "no_selection_select_file": "Aucun fichier sélectionné. Veuillez sélectionner un fichier depuis l’arborescence.", + "no_selection_create_new_file": "Votre projet est vide. Veuillez créer un nouveau fichier.", + "files_selected": "fichiers sélectionnés.", + "home": "Accueil", + "this_action_cannot_be_undone": "Cette action est irréversible.", + "dropbox_email_not_verified": "Nous ne parvenons pas à joindre votre compte Dropbox. Le service rapporte que votre adresse courriel n’est pas vérifiée. Veuillez vérifier votre adresse depuis votre compte Dropbox pour résoudre ce problème.", + "link_email_to_join": "Liez votre courriel institutionnel pour rejoindre __portalTitle__ sur __appName__", + "token_access_success": "Accès autorisé", + "token_access_failure": "Accès refusé ; contactez le propriétaire du projet pour plus d’assistance", + "trashed_projects": "Corbeille des projets", + "trash": "Corbeille", + "untrash": "Restaurer", + "delete_and_leave": "Supprimer / Quitter", + "trash_projects": "Mettre à la corbeille", + "about_to_trash_projects": "Vous êtes sur le point de mettre à la corbeille les projets suivants :", + "archived_projects_info_note": "L’archive est désormais restreinte à vous uniquement. Les projets que vous décidez d’archiver ne le seront que pour vous et non pas pour vos collaborateur·rice·s.", + "trashed_projects_info_note": "Overleaf dispose désormais d’une corbeille pour les projets dont vous souhaitez vous débarrasser. Mettre un projet à la corbeille n’affectera pas vos collaborateur·rice·s.", + "register_intercept_sso": "Vous pourrez lier votre compte __authProviderName__ depuis la page « Paramètres du compte » une fois que vous vous serez connecté.", + "continue_to": "Poursuivre vers __appName__", + "project_ownership_transfer_confirmation_1": "Êtes-vous sûr de vouloir faire de __user__ le propriétaire de __project__ ?", + "project_ownership_transfer_confirmation_2": "Cette action est irréversible. Le nouveau propriétaire sera notifié et sera en mesure de modifier les paramètres d’accès au projet (y compris de vous ôter le droit d’accès).", + "change_owner": "Changer de propriétaire", + "change_project_owner": "Changer le propriétaire du projet", + "faq_pay_by_invoice_answer": "Oui, si vous souhaitez acheter un compte groupé ou une licence de site et que vous préférez payer par facture,\n\nou si vous avez besoin d’un bon de commande, __payByInvoiceLinkOpen__faites-le nous savoir__payByInvoiceLinkClose__.\n\nPour les comptes individuels ou à facturation mensuelle, nous ne pouvons accepter que le paiement en ligne\n\npar carte bleue ou PayPal.", + "password_too_long_please_reset": "La longueur maximale autorisée pour le mot de passe a été dépassée. Merci de réinitialiser votre mot de passe.", + "view_other_options_to_log_in": "Voir d’autres options de connexion", + "we_logged_you_in": "Nous vous avons connecté.", + "will_need_to_log_out_from_and_in_with": "Vous devrez vous déconnecter de votre compte __email1__ et vous reconnecter sur votre compte __email2__.", + "resubmit_institutional_email": "Merci de soumettre à nouveau votre adresse courriel institutionnelle.", + "opted_out_linking": "Vous avez choisi de ne pas lier votre compte __appName__ __email__ à votre compte institutionnel.", + "please_link_to_institution_account": "Veuillez lier votre compte __appName__ __email__ à votre compte institutionnel __institutionName__.", + "register_with_another_email": "Inscrivez-vous avec __appName__ en utilisant une autre adresse courriel.", + "register_with_email_provided": "Inscrivez-vous avec __appName__ en utilisant l’adresse courriel et le mot de passe que vous avez fourni.", + "security_reasons_linked_accts": "Pour des raisons de sécurité, puisque votre adresse institutionnelle est déjà associée avec le compte __appName__ __email__, nous ne pouvons autoriser la liaison avec un autre compte.", + "this_grants_access_to_features": "Ceci vous donne accès aux fonctionnalités __featureType__ de __appName__.", + "to_add_email_accounts_need_to_be_linked": "Pour ajouter cette adresse courriel, vos comptes __appName__ et __institutionName__ devront être liés.", + "tried_to_log_in_with_email": "Vous avez essayé de vous connecter avec __email__.", + "tried_to_register_with_email": "Vous avez essayé de vous inscrire avec l’adresse __email__ qui est déjà inscrite sur un compte institutionnel __appName__.", + "log_in_with_email": "Se connecter avec __email__", + "log_in_with_existing_institution_email": "Veuillez vous connecter sur votre compte __appName__ existant afin de lier vos comptes institutionnels __appName__ et __institutionName__.", + "log_out_from": "Se déconnecter de __email__", + "logged_in_with_acct_that_cannot_be_linked": "Vous vous êtes connecté avec un compte __appName__ qui ne peut être lié à votre compte institutionnel.", + "logged_in_with_email": "Vous êtes actuellement connecté à __appName__ avec l’adresse __email__.", + "looks_like_logged_in_with_email": "Il semble que vous soyez déjà connecté à __appName__ avec l’adresse __email__.", + "make_primary_to_log_in_through_institution": "Définissez l’adresse courriel __email__ comme votre adresse principale pour vous connecter depuis le portail de votre établissement. ", + "make_primary_which_will_allow_log_in_through_institution": "En faire votre adresse courriel __appName__ principale vous permettra de vous connecter depuis le portail de votre établissement.", + "need_to_do_this_to_access_license": "Vous aurez besoin de réaliser cette action pour obtenir l’accès aux avantages offerts par la licence de site __institutionName__.", + "institutional_login_not_supported": "Votre université ne supporte pas encore la connexion institutionnelle, mais vous pouvez toujours vous inscrire avec votre adresse courriel institutionnelle.", + "link_account": "Lier un compte", + "link_accounts": "Lier les comptes", + "link_accounts_and_add_email": "Lier les comptes et ajouter un courriel", + "link_your_accounts": "Lier vos comptes", + "log_in_and_link": "Se connecter et lier", + "log_in_and_link_accounts": "Se connecter et lier les comptes", + "log_in_first_to_proceed": "Vous aurez besoin de vous connecter avant de poursuivre.", + "log_in_through_institution": "Se connecter via votre établissement", + "if_have_existing_can_link": "Si vous avez déjà un compte __appName__ sur une autre adresse courriel, vous pouvez le lier à votre compte __institutionName__ en cliquant __clickText.", + "if_owner_can_link": "Si vous possédez le compte __appName__ ayant pour adresse __email__, vous serez autorisé à le lier à votre compte institutionnel __institutionName__.", + "ignore_and_continue_institution_linking": "Vous pouvez également ignorer ceci et continuer vers __appName__ avec votre compte __email__.", + "in_order_to_match_institutional_metadata": "Afin de faire correspondre vos métadonnées institutionnelles, nous avons lié votre compte en utilisant __email__.", + "in_order_to_match_institutional_metadata_associated": "Afin de faire correspondre vos métadonnées institutionnelles, votre compte est associé avec l’adresse courriel __email__.", + "institution_account_tried_to_add_already_registered": "Le compte ou l’adresse courriel institutionnelle que vous avez essayé d’ajouter est déjà inscrite sur __appName__.", + "institution_acct_successfully_linked": "Votre compte __appName a été lié avec succès à votre compte institutionnel __institutionName__.", + "institution_email_new_to_app": "Votre adresse courriel __institutionName__ (__email__) est nouvelle sur __appName__.", + "institutional": "Institutionnel", + "doing_this_allow_log_in_through_institution": "Faire ceci vous permettra de vous connecter à __appName__ via le portail de votre institution.", + "doing_this_will_verify_affiliation_and_allow_log_in": "Faire ceci va vérifier votre affiliation avec __institutionName__ et vous permettra de vous connecter à __appName__ via votre institution.", + "email_already_associated_with": "L’adresse courriel __email1__ est déjà associée avec le compte __appName__ __email2__.", + "enter_institution_email_to_log_in": "Saisissez votre adresse courriel institutionnelle pour vous connecter via votre institution", + "find_out_more_about_institution_login": "En savoir plus sur la connexion institutionnelle", + "get_in_touch_having_problems": "Contactez l’équipe du support si vous rencontrez des problèmes", + "go_back_and_link_accts": "Retournez en arrière et liez vos comptes", + "go_back_and_log_in": "Retournez en arrière et connectez-vous à nouveau", + "go_back_to_institution": "Retourner à votre établissement", + "can_link_institution_email_by_clicking": "Vous pouvez lier votre compte __appName__ __email__ à votre compte __institutionName__ en cliquant __clickText__.", + "can_link_institution_email_to_login": "Vous pouvez lier votre compte __appName__ __email__ à votre compte __institutionName__, ce qui vous permettra de vous connecter à __appName__ via le portail de votre établissement.", + "can_link_your_institution_acct": "Vous pouvez désormais lier votre compte __appName__ à votre compte institutionnel __institutionName__.", + "can_now_link_to_institution_acct": "Vous pouvez lier votre compte __appName__ __email__ à votre compte institutionnel __institutionName__.", + "click_link_to_proceed": "Cliquez sur __clickText__ ci-dessous pour poursuivre.", + "continue_with_email": "Continuer vers __appName__ avec votre compte __email__", + "create_new_account": "Créer un nouveau compte", + "do_not_have_acct_or_do_not_want_to_link": "Si vous n’avez pas de compte __appName__ ou si vous ne souhaitez pas le lier à votre compte __institutionName__, veuillez cliquer __clickText__.", + "do_not_link_accounts": "Ne pas lier les comptes", + "account_has_been_link_to_institution_account": "Votre compte __appName__ en __email__ a été lié à votre compte institutionnel __institutionName__.", + "account_linking": "Liaison des comptes", + "account_with_email_exists": "Il semble qu’un compte __appName__ avec l’adresse courriel __email__ existe déjà.", + "acct_linked_to_institution_acct": "Ce compte est lié à votre compte institutionnel __institutionName__.", + "alternatively_create_new_institution_account": "Autrement, vous pouvez créer un nouveau compte avec votre adresse courriel institutionnelle (__email__) en cliquant __clickText__.", + "as_a_member_of_sso": "En tant que membre de __institutionName__, vous pouvez vous connecter à __appName__ via votre portail institutionnel.", + "as_a_member_of_sso_required": "En tant que membre de __institutionName__, vous devez vous connecter à __appName__ via votre portail institutionnel.", + "can_link_institution_email_acct_to_institution_acct": "Vous pouvez maintenant lier votre compte __appName__ en __email__ à votre compte institutionnel __institutionName__.", + "can_link_institution_email_acct_to_institution_acct_alt": "Vous pouvez lier votre compte __appName__ en __email__ à votre compte institutionnel __institutionName__.", + "user_deletion_error": "Désolé, quelque chose n’a pas fonctionné lors de la suppression de votre compte. Veuillez réessayer dans une minute.", + "card_must_be_authenticated_by_3dsecure": "Vous devez authentifier votre carte avec 3D Secure avant de poursuivre", + "view_your_invoices": "Voir vos factures", + "payment_provider_unreachable_error": "Désolé, une erreur s’est produite lors de la communication avec notre fournisseur de paiements. Veuillez réessayer dans quelques instants.\n\nSi vous utilisez une extension dans votre navigateur pour bloquer les publicités ou les scripts, il peut être nécessaire de les désactiver temporairement.", + "dropbox_unlinked_because_access_denied": "La liaison avec votre compte Dropbox a été supprimée car le service Dropbox a rejeté vos identifiants. Veuillez restaurer cette liaison pour continuer à utiliser Dropbox avec Overleaf.", + "dropbox_unlinked_because_full": "La liaison avec votre compte Dropbox a été supprimée car le quota de celui-ci a été atteint et nous ne sommes plus en mesure d’y envoyer les mises à jour. Veuillez libérer de l’espace puis restaurer cette liaison pour continuer à utiliser Dropbox avec Overleaf.", + "upgrade_for_longer_compiles": "Mettez votre compte à niveau pour augmenter votre limite de temps.", + "ask_proj_owner_to_upgrade_for_longer_compiles": "Veuillez demander au propriétaire du projet de mettre à niveau son compte pour augmenter la limite de temps.", + "plus_upgraded_accounts_receive": "En plus, avec un compte premium, vous bénéficiez de", + "sso_account_already_linked": "Compte déjà lié à un autre utilisateur __appName__", + "subscription_admins_cannot_be_deleted": "Vous ne pouvez pas supprimer votre compte car vous avez un abonnement en cours. Veuillez annuler votre abonnement et réessayer. Si vous voyez toujours ce message après lors, veuillez nous contacter.", + "delete_acct_no_existing_pw": "Avant de supprimer votre compte, veuillez définir un mot de passe en utilisant le formulaire de réinitialisation de mot de passe", + "empty_zip_file": "L’archive ne contient aucun fichier", + "you_can_now_login_through_overleaf_sl": "Vous pouvez désormais vous connecter à votre compte ShareLaTeX sur Overleaf.", + "find_out_more_nt": "En savoir plus.", + "register_error": "Erreur d’inscription", + "login_error": "Erreur de connexion", + "sso_link_error": "Erreur lors de la liaison avec le compte SSO", + "more_info": "Plus d’infos", + "synctex_failed": "Impossible de trouver le fichier source correspondant", + "linked_collabratec_description": "Utilisez Collabratec pour gérer vos projets __appName__.", + "reset_from_sl": "Veuillez réinitialiser votre mot de passe sur ShareLaTeX et vous y connecter pour déménager votre compte vers Overleaf", + "dropbox_already_linked_error": "Votre compte Dropbox ne peut pas être lié à ce compte car il l’est déjà à un autre compte Overleaf.", + "github_too_many_files_error": "Ce dépôt ne peut pas être importé car il contient un nombre de fichiers supérieur à la limite autorisée", + "linked_accounts": "comptes liés", + "linked_accounts_explained": "Vous pouvez lier votre compte __appName__ avec d’autres services pour bénéficier des fonctionnalités ci-dessous", + "oauth_orcid_description": " Justifiez de votre identité de façon sécurisée en liant votre ORCID iD à votre compte __appName__. Vos soumissions aux éditeurs participants incluront automatiquement votre ORCID iD, permettant ainsi d’accroître votre productivité et votre visibilité. ", + "no_existing_password": "Veuillez utiliser le formulaire de réinitialisation de mot de passe pour définir votre mot de passe", + " to_reactivate_your_subscription_go_to": "Pour réactiver votre abonnement, accédez à", + "subscription_canceled": "Abonnement annulé", + "coupons_not_included": "Ceci n’inclut pas vos réductions actuelles, qui seront appliquées automatiquement avant votre prochain paiement", + "email_already_registered_secondary": "Cette adresse courriel est déjà utilisée en tant qu’adresse secondaire", + "secondary_email_password_reset": "Cette adresse courriel est une adresse secondaire. Veuillez saisir l’adresse principale associée à votre compte.", + "if_registered_email_sent": "Si vous aviez déjà un compte, nous vous avons envoyé un courriel.", + "reconfirm": "confirmez à nouveau", + "request_reconfirmation_email": "Demander un courriel de confirmation", + "reconfirm_explained": "Nous devons confirmer votre compte à nouveau. Veuillez demander une réinitialisation de votre mot de passe en utilisant le formulaire ci-dessous pour réaliser cette action. Si vous rencontrez des problèmes pour confirmer votre compte, contactez-nous à", + "upload_failed": "Échec du téléversement", + "file_too_large": "Fichier trop volumineux", + "zip_contents_too_large": "Contenu de l’archive trop volumineux", + "invalid_zip_file": "Archive invalide", + "make_primary": "Utiliser en principale", + "make_email_primary_description": "Faire de cette adresse courriel l’adresse principale, utilisée pour la connexion", + "github_sync_repository_not_found_description": "Le dépôt lié a été supprimé ou bien vous avez perdu accès à celui-ci. Vous pouvez configurer la synchronisation avec un nouveau dépôt en clonant le projet puis en accédant à l’option « GitHub » du menu. Vous pouvez également supprimer le lien entre ce projet et le dépôt.", + "unarchive": "Restaurer", + "cant_see_what_youre_looking_for_question": "Vous ne trouvez pas ce que vous cherchez ?", + "something_went_wrong_canceling_your_subscription": "Un problème est survenu lors de l’annulation de votre abonnement. Veuillez contacter le support.", + "department": "Département", + "notification_features_upgraded_by_affiliation": "Bonne nouvelle ! L’organisme dont vous faites partie, __institutionName__, est en partenariat avec Overleaf, ce qui vous permet d’accéder aux fonctionnalités professionnelles d’Overleaf.", + "notification_personal_subscription_not_required_due_to_affiliation": " Bonne nouvelle ! L’organisme dont vous faites partie, __institutionName__, est en partenariat avec Overleaf, ce qui vous permet d’accéder aux fonctionnalités professionnelles d’Overleaf. Vous pouvez ainsi annuler votre abonnement personnel en conservant l’accès à tous vos avantages.", + "github_private_description": "Vous choisissez qui peut voir et commiter dans ce dépôt.", + "notification_project_invite_message": "__userName__ souhaiterait que vous rejoigniez __projectName__", + "notification_project_invite_accepted_message": "Vous avez rejoint __projectName__", + "subject_to_additional_vat": "Selon votre pays, les prix peuvent en plus être sujets à la TVA.", + "select_country_vat": "Veuillez choisir votre pays sur la page de paiement pour obtenir le prix TTC.", + "to_change_access_permissions": "Pour modifier les droits d’accès, contactez le propriétaire du projet", + "file_name_in_this_project": "Nom d’un fichier dans ce projet", + "new_snippet_project": "Sans titre", + "there_was_an_error_opening_your_content": "Une erreur s’est produite lors de la création de votre projet", + "sorry_something_went_wrong_opening_the_document_please_try_again": "Désolé, une erreur s’est produite lors de l’ouverture de ce contenu sur Overleaf. Veuillez réessayer", + "the_required_parameters_were_not_supplied": "Certains paramètres obligatoires sont manquants dans le lien pour ouvrir ce contenu sur Overleaf. Si cela se produit régulièrement pour un site donné, veuillez leur faire part du problème.", + "more_than_one_kind_of_snippet_was_requested": "Certains paramètres invalides sont présents dans le lien pour ouvrir ce contenu sur Overleaf. Si cela se produit régulièrement pour un site donné, veuillez leur faire part du problème.", + "the_supplied_parameters_were_invalid": "Certains paramètres invalides sont présents dans le lien pour ouvrir ce contenu sur Overleaf. Si cela se produit régulièrement pour un site donné, veuillez leur faire part du problème.", + "unable_to_extract_the_supplied_zip_file": "L’ouverture de ce contenu sur Overleaf a échoué car l’archive n’a pas pu être extraite. Veuillez vous assurer de la validité de cette archive. Si cela se produit régulièrement pour un site donné, veuillez leur faire part du problème.", + "the_file_supplied_is_of_an_unsupported_type ": "Le lien pour ouvrir ce contenu sur Overleaf pointe vers un type de fichier invalide. Les types autorisés sont les documents .tex et les archives .zip. Si cela se produit régulièrement pour un site donné, veuillez leur faire part du problème.", + "the_requested_publisher_was_not_found": "Le lien pour ouvrir ce contenu sur Overleaf spécifie un éditeur inconnu. Si cela se produit régulièrement pour un site donné, veuillez leur faire part du problème.", + "the_supplied_uri_is_invalid": "Le lien pour ouvrir ce contenu sur Overleaf contient une URI invalide. Si cela se produit régulièrement pour un site donné, veuillez leur faire part du problème.", + "the_requested_conversion_job_was_not_found": "Le lien pour ouvrir ce contenu sur Overleaf spécifie une tâche de conversion inconnue. Il est possible que cette tâche ait expiré et qu’elle doive être lancée à nouveau. Si cela se produit régulièrement pour un site donné, veuillez leur faire part du problème.", + "not_found_error_from_the_supplied_url": "Le lien pour ouvrir ce contenu sur Overleaf pointe vers un fichier introuvable. Si cela se produit régulièrement pour un site donné, veuillez leur faire part du problème.", + "too_many_requests": "Trop de requêtes ont été reçues sur une courte période. Veuillez patienter quelques instants puis réessayer.", + "password_change_passwords_do_not_match": "Les mots de passe ne correspondent pas", + "github_for_link_shared_projects": "Vous avez accédé à ce projet par un partage de lien : celui-ci ne sera pas synchronisé à votre GitHub tant que vous n’aurez pas été invité par courriel par le propriétaire du projet.", + "browsing_project_latest_for_pseudo_label": "Vous explorez l’état actuel de votre projet", + "history_label_project_current_state": "État actuel", + "download_project_at_this_version": "Télécharger cette version du projet", + "submit": "envoyer", + "help_articles_matching": "Fiches d’aide correspondant à votre sujet", + "dropbox_for_link_share_projs": "Vous avez accédé à ce projet par un partage de lien : celui-ci ne sera pas synchronisé à votre Dropbox tant que vous n’aurez pas été invité par courriel par le propriétaire du projet.", + "clear_search": "effacer la recherche", + "email_registered_try_alternative": "Désolé, il n’y a aucun compte correspondant à ces identifiants. Peut-être vous êtes-vous inscrit·e avec un autre fournisseur ?", + "access_your_projects_with_git": "Accédez à vos projets avec Git", + "ask_proj_owner_to_upgrade_for_git_bridge": "Demandez au propriétaire du projet de mettre à niveau son compte pour utiliser Git", + "export_csv": "Exporter en CSV", + "add_comma_separated_emails_help": "Séparez les différentes adresses courriel en utilisant des virgules (,).", + "members_management": "Gestion des membres", + "managers_management": "Gestion des gestionnaires", + "institution_account": "Compte institutionnel", + "git": "Git", + "clone_with_git": "Cloner avec Git", + "git_bridge_modal_description": "Vous pouvez effectuer un git clone de votre projet en utilisant le lien ci-dessous.", + "managers_cannot_remove_admin": "Les administrateurs ne peuvent être supprimés", + "managers_cannot_remove_self": "Les gestionnaires ne peuvent pas s’auto-supprimer", + "user_not_found": "Utilisateur inconnu", + "user_already_added": "Utilisateur déjà ajouté", + "bonus_twitter_share_text": "J’utilise __appName__, l’éditeur gratuit et collaboratif de LaTeX en ligne — c’est génial et très facile d’utilisation !", + "bonus_email_share_header": "Un éditeur de LaTeX en ligne qui pourrait te plaire", + "bonus_email_share_body": "Salut ! J’ai récemment commencé à utiliser l’éditeur de LaTeX en ligne __appName__. Je pense que cela pourrait t’intéresser.", + "bonus_share_link_text": "Éditeur de LaTeX en ligne __appName__", + "bonus_facebook_name": "__appName__ — Éditeur de LaTeX en ligne", + "bonus_facebook_caption": "Projets et compilations illimitées gratuites", + "bonus_facebook_description": "__appName__ est un éditeur gratuit de LaTeX en ligne permettant de collaborer en temps réel comme sur Google Docs, avec une intégration Dropbox, un historique de versions et une auto-complétion.", + "remove_manager": "Supprimer un gestionnaire", + "invalid_element_name": "Impossible de copier votre projet en raison de certains fichiers qui contiennent des caractères invalides\n\ntels que des astérisques, des barres obliques ou des caractères de contrôle. Veuillez renommer les fichiers concernés et\n\nessayer à nouveau.", + "password_change_failed_attempt": "Échec de la modification du mot de passe", + "password_change_successful": "Mot de passe modifié", + "not_registered": "Pas inscrit·e", + "featured_latex_templates": "Modèles LaTeX mis en avant", + "no_featured_templates": "Aucun modèle mis en avant", + "try_again": "Veuillez réessayer", + "email_required": "Adresse courriel requise", + "registration_error": "Erreur d’inscription", + "newsletter-accept": "Je souhaite recevoir des courriels portant sur des offres de produits et sur les actualités et événements de notre entreprise.", + "resending_confirmation_email": "Réexpédition du courriel de confirmation", + "please_confirm_email": "Veuillez confirmer votre adresse courriel __emailAddress__ en cliquant sur le lien contenu dans le courriel de confirmation ", + "register_using_service": "S’inscrire avec __service__", + "login_to_overleaf": "Se connecter à Overleaf", + "login_with_email": "Se connecter avec son courriel", + "login_with_service": "Se connecter avec __service__", + "first_time_sl_user": "Est-ce votre première visite en tant qu’utilisateur de ShareLaTeX ", + "migrate_from_sl": "Déménager depuis ShareLaTeX", + "dont_have_account": "Vous n’avez pas de compte ?", + "sl_extra_info_tooltip": "Veuillez vous connecter sur ShareLaTeX pour déménager votre compte vers Overleaf. Cela ne prendra que quelques secondes. Si vous disposez d’un abonnement ShareLaTeX, celui-ci sera automatiquement transféré vers Overleaf.", + "register_using_email": "S’inscrire avec votre adresse courriel", + "login_register_or": "ou bien", + "to_add_more_collaborators": "Pour ajouter des collaborateur·rice·s supplémentaires ou pour activer le partage par lien, veuillez vous adresser au propriétaire du projet", + "by": "par", + "emails": "Courriels", + "editor_theme": "Apparence de l’éditeur", + "overall_theme": "Apparence générale", + "faq_how_does_free_trial_works_answer": "Vous obtenez un accès complet à l’offre __appName__ de votre choix pendant votre essai gratuit de __len__ jours. Il n’y a aucun engagement à poursuivre au delà de l’essai gratuit. Votre carte sera débitée à la fin de votre essai de __len__ jours à moins que vous n’annuliez votre essai auparavant. Vous pouvez annuler depuis les paramètres de votre abonnement.", + "thousands_templates": "Des milliers de modèles", + "get_instant_access_to": "Accédez immédiatement à", + "ask_proj_owner_to_upgrade_for_full_history": "Veuillez demander au propriétaire du projet de mettre à niveau son compte pour accéder à l’historique complet de ce projet.", + "currently_seeing_only_24_hrs_history": "Vous ne pouvez actuellement voir que les modifications des 24 dernières heures dans ce projet.", + "archive_projects": "Archiver les projets", + "archive_and_leave_projects": "Archiver et quitter les projets", + "about_to_archive_projects": "Vous êtes sur le point d’archiver les projets suivants :", + "please_confirm_your_email_before_making_it_default": "Veuillez confirmer cette adresse courriel avant de pouvoir la rendre principale.", + "back_to_editor": "Retour à l’éditeur", + "generic_history_error": "Une erreur s’est produite lors de la récupération de l’historique de votre projet. Si cette erreur persiste, veuillez nous contacter à", + "unconfirmed": "Non confirmé", + "please_check_your_inbox": "Veuillez relever votre courriel", + "resend_confirmation_email": "Réexpédier le courriel de confirmation", + "history_label_created_by": "Créé par", + "history_label_this_version": "Étiqueter cette version", + "history_add_label": "Ajouter étiquette", + "history_adding_label": "Ajout d’une étiquette", + "history_new_label_name": "Nom de la nouvelle étiquette", + "history_new_label_added_at": "Une nouvelle étiquette sera ajoutée à", + "history_delete_label": "Supprimer l’étiquette", + "history_deleting_label": "Suppression de l’étiquette", + "history_are_you_sure_delete_label": "Êtes-vous sûr·e de vouloir supprimer l’étiquette suivante ", + "browsing_project_labelled": "Vous explorez la version du projet étiquetée", + "history_view_all": "Tout l’historique", + "history_view_labels": "Étiquettes", + "history_view_a11y_description": "Afficher soit tout l’historique du projet soit uniquement les versions étiquetées.", + "add_another_email": "Ajouter une autre adresse", + "start_by_adding_your_email": "Commencez par saisir votre adresse courriel.", + "is_email_affiliated": "Votre adresse courriel est-elle affiliée à un établissement ? ", + "let_us_know": "Faites-le nous savoir", + "add_new_email": "Ajouter l’adresse", + "error_performing_request": "Une erreur s’est produite pendant l’exécution de votre requête.", + "reload_emails_and_affiliations": "Actualiser les adresses courriel et les affiliations", + "emails_and_affiliations_title": "Adresses courriel et affiliations", + "emails_and_affiliations_explanation": "Ajoutez des adresses courriel supplémentaires à votre compte pour accéder aux éventuels avantages fournis par votre université ou votre établissement, pour vous rendre plus facilement trouvable par vos collaborateur·rice·s et pour être certain de pouvoir récupérer l’accès à votre compte.", + "institution_and_role": "Établissement et rôle", + "add_role_and_department": "Ajouter votre rôle et votre département", + "save_or_cancel-save": "Enregistrer", + "save_or_cancel-or": "ou", + "save_or_cancel-cancel": "annuler", + "make_default": "Utiliser par défaut", + "remove": "Supprimer", + "confirm_email": "Confirmer l’adresse", + "invited_to_join_team": "Vous avez été invité à rejoindre une équipe", + "join_team": "Rejoindre l’équipe", + "accepted_invite": "Invitation acceptée", + "invited_to_group": "__inviterName__ vous a invité à rejoindre une équipe sur __appName__", + "join_team_explanation": "Veuillez cliquer sur le bouton ci-dessous pour rejoindre l’équipe et bénéficier des avantages d’un compte __appName__ premium", + "accept_invitation": "Accepter l’invitation", + "joined_team": "Vous avez rejoint l’équipe gérée par __inviterName__", + "compare_to_another_version": "Comparer avec une autre version", + "file_action_edited": "Édition de", + "file_action_renamed": "Renommage de", + "file_action_created": "Création de", + "file_action_deleted": "Suppression de", + "browsing_project_as_of": "Vous explorez le projet à la date du", + "view_single_version": "Voir la version seule", + "font_family": "Police", + "line_height": "Hauteur de ligne", + "compact": "Compact", + "wide": "Large", + "default": "Par défaut", + "leave": "Quitter", + "archived_projects": "Projets archivés", + "archive": "Archiver", + "student_disclaimer": "Cette réduction pour l’éducation s’applique à tous les étudiant·e·s des établissements du secondaire ou du supérieur (lycées et universités). Nous pouvons être amenés à vous contacter pour confirmer votre éligibilité à cette réduction.", + "billed_after_x_days": "Vous ne serez pas facturé avant l’expiration de votre essai de __len__ jours.", + "looking_multiple_licenses": "Vous cherchez des licences groupées ?", + "reduce_costs_group_licenses": "Vous pouvez simplifier les formalités et réaliser des économies grâce à nos réductions pour les licences groupées.", + "find_out_more": "En savoir plus", + "compare_plan_features": "Comparez les offres", + "in_good_company": "Vous êtes en bonne compagnie", + "unlimited": "Illimité", + "priority_support": "Support prioritaire", + "dropbox_integration_lowercase": "Intégration avec Dropbox", + "github_integration_lowercase": "Intégration avec GitHub", + "discounted_group_accounts": "économies sur les comptes groupés", + "referring_your_friends": "parrainant vos amis", + "still_have_questions": "Vous avez d’autres questions ?", + "quote_erdogmus": "La possibilité de suivre les modifications et la nature collaborative en temps réel distinguent ShareLaTeX de ses concurrents.", + "quote_henderson": "ShareLaTeX s’est révélé être un outil de collaboration puissant et robuste, utilisé largement à travers notre école.", + "best_value": "Meilleure offre", + "faq_how_free_trial_works_question": "Comment fonctionne l’essai gratuit ?", + "faq_change_plans_question": "Puis-je changer d’offre ultérieurement ?", + "faq_do_collab_need_premium_question": "Un compte premium est-il également nécessaire pour mes collaborateur·rice·s ?", + "faq_need_more_collab_question": "Et si j’ai besoin de plus de collaborateur·rice·s ?", + "faq_purchase_more_licenses_question": "Puis-je acheter des licences supplémentaires pour mes collègues ?", + "faq_monthly_or_annual_question": "Dois-je choisir une facturation mensuelle ou annuelle ?", + "faq_how_to_pay_question": "Puis-je payer en ligne avec une carte bleue ou PayPal ?", + "faq_pay_by_invoice_question": "Puis-je payer par facture/bon de commande ?", + "reference_search": "Recherche de références avancée", + "reference_search_info": "Vous pouvez toujours rechercher une citation par sa clé, mais la recherche de références avancée vous permet en plus de rechercher par auteur, titre, année ou revue.", + "reference_sync": "Synchro. avec gestionnaire de références", + "reference_sync_info": "Gérez votre bibliothèque de références sur Mendeley et liez-la directement à un fichier .bib sur Overleaf pour pouvoir aisément citer n’importe quel élément de votre bibliothèque Mendeley.", + "faq_how_free_trial_works_answer": "Vous obtenez un accès complet à l’offre __appName__ de votre choix pendant votre essai gratuit de __len__ jours. Il n’y a aucun engagement à poursuivre au delà de l’essai gratuit. Votre carte sera débitée à la fin de votre essai de __len__ jours à moins que vous n’annuliez votre essai auparavant. Vous pouvez annuler depuis les paramètres de votre abonnement.", + "faq_change_plans_answer": "Oui, vous pouvez changer d’offre à tout moment dans les paramètres de votre abonnement. En particulier, vous pouvez changer pour une offre différente, entre une facturation mensuelle ou annuelle ou encore annuler votre abonnement et revenir à l’offre gratuite.", + "faq_do_collab_need_premium_answer": "Les fonctionnalités premium telles que le suivi des modifications seront accessibles à vos collaborateur·rice·s sur les projets que vous avez créés, même en utilisant des comptes gratuits.", + "faq_need_more_collab_answer": "Vous pouvez mettre à niveau votre compte vers l’une de nos offres premium qui supportent un nombre plus important de collaborateur·rice·s. Vous pouvez également gagner des collaborateur·rice·s supplémentaires sur votre compte gratuit en __referFriendsLink__.", + "faq_purchase_more_licenses_answer": "Oui, nous proposons des __groupLink__, qui sont plus faciles à gérer, réduisent les formalités et vous permettent d’économiser sur l’achat de plusieurs licences.", + "faq_monthly_or_annual_answer": "La facturation annuelle vous permet de simplifier votre comptabilité et les formalités afférentes. Si vous préférez gérer un unique paiement par an au lieu de douze, la facturation annuelle est faite pour vous.", + "faq_how_to_pay_answer": "Oui, vous pouvez. La grande majorité des cartes bleues ainsi que le paiement PayPal sont acceptés. Choisissez l’offre qui vous convient ci-dessus puis vous aurez la possibilité de payer par carte ou de passer par PayPal au moment du paiement.", + "powerful_latex_editor": "Éditeur LaTeX puissant", + "realtime_track_changes": "Suivi des modifications en temps réel", + "realtime_track_changes_info": "Vous n’aurez plus à choisir entre suivre vos modifications et composer vos documents en LaTeX. Laissez des commentaires, gardez trace de ce qu’il reste à faire et acceptez ou rejetez les modifications des autres.", + "full_doc_history_info": "Revenez dans le temps pour voir toutes les versions et qui a fait quoi. Quoi qu’il arrive, nous sommes là.", + "dropbox_integration_info": "Travaillez avec ou sans connexion sans problème avec la synchronisation bidirectionnelle Dropbox. Les modifications apportées sur votre machine seront automatiquement envoyées à la version Overleaf, et vice versa.", + "github_integration_info": "Poussez et tirez des commits vers et depuis GitHub, permettant ainsi à vous et vos collaborateur·rice·s de travailler hors connexion avec Git ou en ligne sur Overleaf.", + "latex_editor_info": "Tout ce dont vous avez besoin dans un éditeur LaTeX moderne — correction orthographique, auto-complétion intelligente, coloration syntaxique, dizaines de choix d’apparence, raccourcis clavier Vim et Emacs, aide avec les avertissements et erreurs LaTeX et bien plus encore.", + "change_plans_any_time": "Vous pouvez changer d’offre ou revenir à l’offre gratuite à tout moment. ", + "number_collab": "Nombre de collaborateur·rice·s", + "unlimited_private_info": "Tous vos projets sont privés par défaut. Invitez vos collaborateur·rice·s à lire et éditer par courriel ou en leur envoyant un lien secret.", + "unlimited_private": "Projets privés illimités", + "realtime_collab": "Collaboration en temps réel", + "realtime_collab_info": "Lorsque vous travaillez ensemble, vous pouvez voir le curseur de vos collaborateur·rice·s ainsi que leurs modifications en temps réel ; ainsi, tout le monde est toujours sur la dernière version.", + "hundreds_templates": "Des centaines de modèles", + "hundreds_templates_info": "Créez de magnifiques documents en vous basant sur notre galerie de modèles LaTeX pour les revues, conférences, thèses, rapports, CV et bien plus encore.", + "instant_access": "Accédez immédiatement à __appName__", + "tagline_personal": "Idéal lorsque vous travaillez seul·e", + "tagline_collaborator": "Parfait pour les projets partagés", + "tagline_professional": "Pour celles et ceux qui travaillent nombreux", + "tagline_student_annual": "Économisez encore plus", + "tagline_student_monthly": "Parfait pour un seul semestre", + "all_premium_features": "Toutes les fonctionnalités premium", + "sync_dropbox_github": "Synchroniser avec Dropbox et GitHub", + "track_changes": "Suivre les modifications", + "tooltip_hide_pdf": "Cliquez pour cacher le PDF", + "tooltip_show_pdf": "Cliquez pour afficher le PDF", + "tooltip_hide_filetree": "Cliquez pour cacher l’arborescence des fichiers", + "tooltip_show_filetree": "Cliquez pour afficher l’arborescence des fichiers", + "cannot_verify_user_not_robot": "Désolé, nous n’avons pas pu nous assurer que vous n’étiez pas un robot. Veuillez vérifier que Google reCAPTCHA n’est pas bloqué par un bloqueur de publicités ou un pare-feu.", + "uncompiled_changes": "Changements non compilés", + "code_check_failed": "Échec de la vérification du code", + "code_check_failed_explanation": "Votre code contient des erreurs qui doivent être corrigées avant que l’auto-compilation puisse avoir lieu", + "tags_slash_folders": "Étiquettes/Dossiers", + "file_already_exists": "Un fichier ou un dossier avec ce nom existe déjà", + "import_project_to_v2": "Importer le projet dans la V2", + "open_in_v1": "Ouvrir dans la V1", + "import_to_v2": "Importer dans la V2", + "never_mind_open_in_v1": "Tant pis, ouvrir dans la V1", + "yes_im_sure": "Oui, je suis sûr", + "drop_files_here_to_upload": "Déposez des fichiers ici pour les téléverser", + "drag_here": "glissez ici", + "creating_project": "Création du projet", + "select_a_zip_file": "Sélectionnez une archive .zip", + "drag_a_zip_file": "glissez une archive .zip", + "v1_badge": "Badge V1", + "v1_projects": "Projets V1", + "open_your_billing_details_page": "Ouvrir la page des données de facturation", + "try_out_link_sharing": "Essayez la nouvelle fonctionnalité de partage par lien !", + "try_link_sharing": "Essayez le partage par lien", + "try_link_sharing_description": "Donnez accès à votre projet en partageant simplement un lien.", + "learn_more_about_link_sharing": "En savoir plus sur le partage par lien", + "link_sharing": "Partage par lien", + "tc_switch_everyone_tip": "Activer le suivi des modifications pour tout le monde", + "tc_switch_user_tip": "Activer le suivi des modifications pour cet utilisateur", + "tc_switch_guests_tip": "Activer le suivi des modifications pour les invités par partage de lien", + "tc_guests": "Invités", + "select_all_projects": "Tout sélectionner", + "select_project": "Sélectionner", + "main_file_not_found": "Document principal inconnu.", + "please_set_main_file": "Veuillez choisir le fichier principal pour ce projet depuis le menu du projet. ", + "link_sharing_is_off": "Le partage par lien est désactivé, seuls les utilisateurs invités peuvent voir ce projet.", + "turn_on_link_sharing": "Activer le partage par lien", + "link_sharing_is_on": "Le partage par lien est activé", + "turn_off_link_sharing": "Désactiver le partage par lien", + "anyone_with_link_can_edit": "Toute personne disposant de ce lien peut éditer ce projet", + "anyone_with_link_can_view": "Toute personne disposant de ce lien peut voir ce projet", + "turn_on_link_sharing_consequences": "Lorsque le partage par lien est activé, toute personne disposant du bon lien est en mesure d’accéder au projet et de l’éditer", + "turn_off_link_sharing_consequences": "Lorsque le partage par lien est désactivé, seules les personnes qui ont été invitées sur ce projet y ont accès", + "autocompile_disabled": "Auto-compilation désactivée", + "autocompile_disabled_reason": "En raison d’une charge serveur élevée, la compilation en arrière-plan a été temporairement désactivée. Veuillez recompiler en utilisant le bouton ci-dessus.", + "auto_compile_onboarding_description": "Lorsque ceci est activé, votre projet se compilera au fil de votre saisie.", + "try_out_auto_compile_setting": "Essayez la nouvelle fonctionnalité d’auto-compilation !", + "got_it": "Entendu", + "pdf_compile_in_progress_error": "La compilation s’exécute déjà dans une autre fenêtre", + "pdf_compile_try_again": "Veuillez attendre que votre compilation précédente se termine avant de réessayer.", + "invalid_email": "Une adresse courriel est invalide", + "auto_compile": "Auto-compilation", + "on": "Activé", + "tc_everyone": "Tout le monde", + "per_user_tc_title": "Suivi des modifications par utilisateur", + "you_can_use_per_user_tc": "Vous pouvez désormais utiliser le suivi des modifications utilisateur par utilisateur", + "turn_tc_on_individuals": "Activer le suivi des modifications pour des utilisateurs individuels", + "keep_tc_on_like_before": "Ou bien laissez-le activé pour tout le monde, comme avant", + "auto_close_brackets": "Auto-fermeture des accolades", + "auto_pair_delimiters": "Appariement automatique des délimiteurs", + "successfull_dropbox_link": "Dropbox liée avec succès. Redirection vers la page des paramètres.", + "show_link": "Afficher le lien", + "hide_link": "Masquer le lien", + "aggregate_changed": "Modification de", + "aggregate_to": "en", + "confirm_password_to_continue": "Confirmez votre mot de passe pour poursuivre", + "confirm_password_footer": "Nous ne vous demanderons plus votre mot de passe pendant un moment.", + "accept_all": "Tout accepter", + "reject_all": "Tout rejeter", + "bulk_accept_confirm": "Êtes-vous sûr·e de vouloir accepter les __nChanges__ modifications sélectionnées ?", + "bulk_reject_confirm": "Êtes-vous sûr·e de vouloir rejeter les __nChanges__ modifications sélectionnées ?", + "uncategorized": "Non-classés", + "pdf_compile_rate_limit_hit": "Limite de fréquence de compilation atteinte", + "project_flagged_too_many_compiles": "Ce projet a été compilé trop fréquemment. Cette limite sera levée sous peu.", + "reauthorize_github_account": "Autorisez votre compte GitHub à nouveau", + "github_credentials_expired": "Vos identifiants GitHub ont expiré", + "hit_enter_to_reply": "Appuyez sur Entrée pour répondre", + "add_your_comment_here": "Ajoutez votre commentaire ici", + "resolved_comments": "Commentaires résolus", + "try_it_for_free": "Essayez gratuitement", + "please_ask_the_project_owner_to_upgrade_to_track_changes": "Veuillez demander au propriétaire du projet de mettre à niveau son compte pour pouvoir suivre les modifications", + "mark_as_resolved": "Marquer comme résolu", + "reopen": "Rouvrir", + "add_comment": "Ajouter un commentaire", + "no_resolved_threads": "Aucun fil de discussion résolu", + "upgrade_to_track_changes": "Mettez à niveau pour suivre les modifications", + "see_changes_in_your_documents_live": "Observez les modifications dans vos documents, en direct", + "track_any_change_in_real_time": "Suivez toute modification, en temps réel", + "review_your_peers_work": "Relisez le travail de vos pairs", + "accept_or_reject_each_changes_individually": "Acceptez ou rejetez chaque modification individuellement", + "accept": "Accepter", + "reject": "Rejeter", + "no_comments": "Aucun commentaire", + "edit": "Modifier", + "are_you_sure": "Êtes-vous sûr·e ?", + "resolve": "Résoudre", + "reply": "Répondre", + "quoted_text_in": "Texte cité dans", + "review": "Relecture", + "track_changes_is_on": "Le suivi des modifications est activé", + "track_changes_is_off": "Le suivi des modifications est désactivé", + "current_file": "Fichier actuel", + "overview": "Vue d’ensemble", + "tracked_change_added": "Ajout de", + "tracked_change_deleted": "Suppression de", + "show_all": "tout voir", + "show_less": "voir moins", + "dropbox_sync_error": "Erreur de synchronisation Dropbox", + "send": "Envoyer", + "sending": "Envoi", + "invalid_password": "Mot de passe invalide", + "error": "Erreur", + "other_actions": "Autres actions", + "send_test_email": "Envoyer un courriel de test", + "email_sent": "Email envoyé", + "create_first_admin_account": "Créer le compte administrateur initial", + "ldap": "LDAP", + "ldap_create_admin_instructions": "Choisissez une adresse courriel pour le compte __appName__ initial. Celle-ci doit correspondre à un compte dans la base LDAP. Vous serez ensuite invité à vous connecter avec ce compte.", + "saml": "SAML", + "saml_create_admin_instructions": "Choisissez une adresse courriel pour le compte __appName__ initial. Celle-ci doit correspondre à un compte dans le système SAML. Vous serez ensuite invité à vous connecter avec ce compte.", + "admin_user_created_message": "Compte administrateur créé. Pour poursuivre, connectez-vous ici", + "status_checks": "Vérifications d’état", + "editor_resources": "Ressources de l’éditeur", + "checking": "Vérification", + "cannot_invite_self": "Impossible de vous inviter vous-même", + "cannot_invite_non_user": "Impossible d’envoyer l’invitation. Il est nécessaire que le destinataire possède déjà un compte __appName__", + "log_in_with": "Se connecter avec __provider__", + "return_to_login_page": "Retourner à la page de connexion", + "login_failed": "Échec de connexion", + "delete_account_warning_message_3": "Vous êtes sur le point de supprimer définitivement toutes les données de votre compte, y compris vos projets et vos paramètres. Veuillez saisir l’adresse courriel associée à votre compte ainsi que votre mot de passe ci-dessous pour poursuivre.", + "delete_account_warning_message_2": "Vous êtes sur le point de supprimer définitivement toutes les données de votre compte, y compris vos projets et vos paramètres. Veuillez saisir l’adresse courriel associée à votre compte ci-dessous pour poursuivre.", + "your_sessions": "Vos sessions", + "clear_sessions_description": "Ceci est une liste des autres sessions (ou connexions) actives sur votre compte, excluant votre session actuelle. Cliquez sur le bouton « Effacer les sessions » ci-dessous pour les déconnecter.", + "no_other_sessions": "Aucune autre session n’est active", + "ip_address": "Adresse IP", + "session_created_at": "Session créée le", + "clear_sessions": "Effacer les sessions", + "clear_sessions_success": "Sessions effacées", + "sessions": "Sessions", + "manage_sessions": "Gérer vos sessions", + "syntax_validation": "Vérification du code", + "history": "Historique", + "joining": "Jonction", + "open_project": "Ouvrir le projet", + "files_cannot_include_invalid_characters": "Le nom du fichier est vide ou contient des caractères invalides", + "invalid_file_name": "Nom de fichier invalide", + "autocomplete_references": "Auto-complétion des références (à l’intérieur d’un bloc \\cite{})", + "autocomplete": "Auto-complétion", + "failed_compile_check": "Il semblerait que votre projet contienne des erreurs fatales de syntaxe que vous devriez corriger avant de le compiler", + "failed_compile_check_try": "Essayer de le compiler quand même", + "failed_compile_option_or": "ou bien", + "failed_compile_check_ignore": "désactiver la vérification syntaxique", + "compile_time_checks": "Vérification syntaxique", + "stop_on_validation_error": "Vérifier la syntaxe avant la compilation", + "ignore_validation_errors": "Ne pas vérifier la syntaxe", + "run_syntax_check_now": "Vérifier la syntaxe maintenant", + "your_billing_details_were_saved": "Vos données de facturation ont été enregistrées", + "security_code": "Code de sécurité", + "paypal_upgrade": "Pour mettre à niveau votre compte, cliquez sur le bouton ci-dessous puis connectez-vous à PayPal avec votre adresse courriel et votre mot de passe.", + "upgrade_cc_btn": "Mettez à niveau maintenant, payez dans 7 jours", + "upgrade_paypal_btn": "Poursuivre", + "notification_project_invite": "__userName__ souhaiterait que vous rejoigniez __projectName__ Rejoindre le projet", + "file_restored": "Votre fichier (__filename__) a été récupéré.", + "file_restored_back_to_editor": "Vous pouvez retourner à l’éditeur et reprendre votre travail", + "file_restored_back_to_editor_btn": "Retour à l’éditeur", + "view_project": "Voir le projet", + "join_project": "Rejoindre le projet", + "invite_not_accepted": "Invitation en attente", + "resend": "Envoyer de nouveau", + "syntax_check": "Vérification syntaxique", + "revoke_invite": "Retirer l’invitation", + "pending": "En attente", + "invite_not_valid": "Cette invitation à un projet n’est pas valable", + "invite_not_valid_description": "L’invitation a peut-être expiré. Veuillez contacter le propriétaire du projet", + "accepting_invite_as": "Vous allez accepter cette invitation en tant que", + "accept_invite": "Accepter l’invitation", + "log_hint_ask_extra_feedback": "Pouvez-vous nous aider à comprendre pourquoi cette astuce ne vous a pas été utile ?", + "log_hint_extra_feedback_didnt_understand": "Je n’ai pas compris l’astuce", + "log_hint_extra_feedback_not_applicable": "Je ne peux pas appliquer cette solution à mon projet", + "log_hint_extra_feedback_incorrect": "Ceci ne corrige pas l’erreur", + "log_hint_extra_feedback_other": "Autre :", + "log_hint_extra_feedback_submit": "Envoyer", + "if_you_are_registered": "Si vous êtes déjà inscrit·e", + "stop_compile": "Arrêter la compilation", + "terminated": "Compilation annulée", + "compile_terminated_by_user": "La compilation a été annulée avec le bouton « Arrêter la compilation ». Vous pouvez consulter les fichiers journaux pour voir où la compilation s’est arrêtée.", + "site_description": "Un éditeur LaTeX en ligne facile à utiliser. Pas d’installation, collaboration en temps réel, gestion des versions, des centaines de modèles de documents LaTeX, et plus encore.", + "knowledge_base": "Base de connaissances", + "contact_message_label": "Message", + "kb_suggestions_enquiry": "Avez-vous consulté notre __kbLink__ ?", + "answer_yes": "Oui", + "answer_no": "Non", + "log_hint_extra_info": "En savoir plus", + "log_hint_feedback_label": "Ce conseil vous a-t-il été utile ?", + "log_hint_feedback_gratitude": "Merci pour votre avis !", + "recompile_pdf": "Recompiler le PDF", + "about_paulo_reis": "est un développeur logiciel front-end et un chercheur en expérience utilisateur vivant à Aveiro au Portugal. Paulo détient un doctorat en expérience utilisateur et a pour passion de modeler la technologie pour l’utilisation par les humains, que ce soit en conception, en test/validation ou en implémentation.", + "login_or_password_wrong_try_again": "Votre identifiant ou votre mot de passe est incorrect. Veuillez essayer à nouveau", + "manage_beta_program_membership": "Gérer votre participation au programme de bêta", + "beta_program_opt_out_action": "Quitter le programme de bêta", + "disable_beta": "Désactiver la bêta", + "beta_program_badge_description": "Lors de votre utilisation de __appName__, vous pourrez distinguer les fonctionnalités en bêta au badge qui les accompagne :", + "beta_program_current_beta_features_description": "Nous testons actuellement les nouvelles fonctionnalités suivantes dans le programme de bêta :", + "enable_beta": "Activer la bêta", + "user_in_beta_program": "L’utilisateur participe au programme de bêta", + "beta_program_already_participating": "Vous participez au programme de bêta", + "sharelatex_beta_program": "Programme de bêta __appName__", + "beta_program_benefits": "Nous améliorons __appName__ sans cesse. En rejoignant notre programme de bêta, vous pourrez accéder en avant-première aux fonctionnalités à venir et ainsi nous aider à mieux comprendre vos besoins.", + "beta_program_opt_in_action": "Participer au programme de bêta", + "conflicting_paths_found": "Chemins conflictuels détectés", + "following_paths_conflict": "Les fichiers et dossiers suivants sont en conflit avec le même chemin", + "open_a_file_on_the_left": "Ouvrir un fichier sur la gauche", + "reference_error_relink_hint": "Si cette erreur persiste, essayez de lier à nouveau votre compte ici :", + "pdf_rendering_error": "Erreur de rendu PDF", + "something_went_wrong_rendering_pdf": "Une erreur s’est produite lors du rendu de ce PDF.", + "mendeley_reference_loading_error_expired": "Le jeton Mendeley est expiré, veuillez lier à nouveau votre compte", + "zotero_reference_loading_error_expired": "Le jeton Zotero est expiré, veuillez lier à nouveau votre compte", + "mendeley_reference_loading_error_forbidden": "Impossible de charger les références de Mendeley, veuillez lier à nouveau votre compte et réessayer.", + "zotero_reference_loading_error_forbidden": "Impossible de charger les références de Zotero, veuillez lier à nouveau votre compte et réessayer.", + "mendeley_integration": "Intégration Mendeley", + "mendeley_sync_description": "Avec l’intégration Mendeley, vous pouvez importer vos références à partir de Mendeley dans vos projets __appName__.", + "mendeley_is_premium": "L’intégration Mendeley est une fonctionnalité premium", + "link_to_mendeley": "Lier à Mendeley", + "unlink_to_mendeley": "Ne plus lier à Mendeley", + "mendeley_reference_loading": "Chargement des références depuis Mendeley", + "mendeley_reference_loading_success": "Références chargées depuis Mendeley", + "mendeley_reference_loading_error": "Erreur, impossible de charger les références depuis Mendeley", + "zotero_integration": "Intégration Zotero", + "zotero_sync_description": "Avec l’intégration Zotero, vous pouvez importer vos références à partir de Zotero dans vos projets __appName__.", + "zotero_is_premium": "L’intégration Zotero est une fonctionnalité premium", + "link_to_zotero": "Lier à Zotero", + "unlink_to_zotero": "Ne plus lier à Zotero", + "zotero_reference_loading": "Chargement des références depuis Zotero", + "zotero_reference_loading_success": "Références chargées depuis Zotero", + "zotero_reference_loading_error": "Erreur, impossible de charger les références depuis Zotero", + "reference_import_button": "Importer les références vers", + "unlink_reference": "Ne plus lier le fournisseur de références", + "unlink_warning_reference": "Attention : si vous supprimez le lien entre votre compte et ce fournisseur, vous ne pourrez plus importer des références dans vos projets.", + "mendeley": "Mendeley", + "zotero": "Zotero", + "suggest_new_doc": "Suggérer un nouveau document", + "request_sent_thank_you": "Votre demande de contact a été envoyée. Notre équipe de support va l’examiner et vous recevrez une réponse par courriel.", + "suggestion": "Suggestion", + "project_url": "URL du projet concerné", + "subject": "Objet", + "confirm": "Confirmer", + "cancel_personal_subscription_first": "Vous avez déjà un abonnement personnel, voulez-vous que nous l’annulions avant que vous ne rejoigniez la licence de groupe ?", + "delete_projects": "Supprimer les projets", + "leave_projects": "Quitter les projets", + "delete_and_leave_projects": "Supprimer et quitter les projets", + "too_recently_compiled": "Ce projet a été compilé très récemment, cette compilation a donc été passée.", + "clsi_maintenance": "Les serveurs de compilation sont inaccessibles pour cause de maintenance et seront réactivés bientôt.", + "references_search_hint": "Appuyez sur CTRL-espace pour rechercher", + "ask_proj_owner_to_upgrade_for_references_search": "Veuillez demander au propriétaire du projet de mettre à niveau son compte pour pouvoir utiliser la recherche de références.", + "ask_proj_owner_to_upgrade_for_faster_compiles": "Veuillez demander au propriétaire du projet de mettre à niveau son compte pour accélérer la compilation et pour augmenter la limite de temps.", + "search_bib_files": "Rechercher par auteur, titre, année", + "leave_group": "Quitter le groupe", + "leave_now": "Quitter maintenant", + "sure_you_want_to_leave_group": "Voulez-vous vraiment quitter ce groupe ?", + "notification_group_invite": "Vous avez été invité·e à rejoindre __groupName__, cliquez ici pour accepter.", + "search_references": "Rechercher les fichiers .bib dans ce projet", + "no_search_results": "Aucun résultat pour la recherche", + "email_already_registered": "Cette adresse courriel est déjà utilisée", + "compile_mode": "Mode de compilation", + "normal": "Normal", + "fast": "Rapide", + "rename_folder": "Renommer le dossier", + "delete_folder": "Supprimer le dossier", + "about_to_delete_folder": "Vous allez supprimer les dossiers suivants (les projets qu’ils contiennent ne seront pas supprimés)", + "to_modify_your_subscription_go_to": "Pour modifier votre abonnement, allez sur", + "manage_subscription": "gérer l’abonnement", + "activate_account": "Activer votre compte", + "yes_please": "Oui, merci !", + "nearly_activated": "Il ne vous reste plus qu’une étape pour activer votre compte __appName__ !", + "please_set_a_password": "Veuillez choisir un mot de passe", + "activation_token_expired": "Votre jeton d’authentification a expiré, vous devez en obtenir un nouveau.", + "activate": "Activer", + "activating": "Activation", + "ill_take_it": "Je le prends !", + "cancel_your_subscription": "Arrêter votre abonnement", + "no_thanks_cancel_now": "Non merci - je veux toujours annuler maintenant", + "cancel_my_account": "Annuler mon abonnement", + "sure_you_want_to_cancel": "Voulez-vous vraiment annuler ?", + "i_want_to_stay": "Je veux rester", + "have_more_days_to_try": "Voici __days__ days d’essai en plus !", + "interested_in_cheaper_plan": "Seriez-vous intéressé·e par l’offre étudiant à __price__ ?", + "session_expired_redirecting_to_login": "Session expirée. Redirection vers la page de connexion dans __seconds__ s", + "maximum_files_uploaded_together": "__max__ fichiers téléversés simultanément. Valeur maximale atteinte.", + "too_many_files_uploaded_throttled_short_period": "Trop de fichiers téléversés, votre envoi est en attente pour un court instant.", + "compile_larger_projects": "Compiler des projects plus volumineux", + "upgrade_to_get_feature": "Mettre à niveau pour profiter de __feature__, plus :", + "new_group": "Nouveau groupe", + "about_to_delete_groups": "Vous êtes sur le point de supprimer les groupes suivants :", + "removing": "Suppression", + "adding": "Ajout", + "groups": "Groupes", + "rename_group": "Renommer le groupe", + "renaming": "Renommage", + "create_group": "Créer un groupe", + "delete_group": "Supprimer un groupe", + "delete_groups": "Supprimer des groupes", + "your_groups": "Vos groupes", + "group_name": "Nom du groupe", + "no_groups": "Aucun groupe", + "Subscription": "Abonnement", + "Documentation": "Documentation", + "Universities": "Universités", + "Account Settings": "Paramètres du compte", + "Projects": "Projets", + "Account": "Compte", + "global": "global", + "Terms": "Conditions", + "Security": "Sécurité", + "About": "À propos", + "editor_disconected_click_to_reconnect": "L’éditeur a été déconnecté. Cliquez n’importe où pour vous reconnecter", + "word_count": "Nombre de mots", + "please_compile_pdf_before_word_count": "Veuillez d’abord compiler votre projet afin de compter les mots", + "total_words": "Total des mots", + "headers": "Titres", + "math_inline": "Formules en ligne", + "math_display": "Formules centrées", + "connected_users": "Utilisateurs connectés", + "projects": "Projets", + "upload_project": "Importer un projet", + "all_projects": "Tous les projets", + "your_projects": "Mes projets", + "shared_with_you": "Partagé avec moi", + "deleted_projects": "Projets supprimés", + "templates": "Modèles", + "new_folder": "Nouveau dossier", + "create_your_first_project": "Créer votre premier projet !", + "complete": "Compléter", + "on_free_sl": "Vous utilisez la version gratuite de __appName__", + "upgrade": "Mettre à niveau", + "or_unlock_features_bonus": "ou déverrouillez des bonus gratuits en", + "sharing_sl": "partageant __appName__", + "add_to_folder": "Ajouter au dossier", + "create_new_folder": "Créer un nouveau dossier", + "more": "Plus", + "rename": "Renommer", + "make_copy": "Faire une copie", + "restore": "Restaurer", + "title": "Titre", + "last_modified": "Dernière modification", + "no_projects": "Aucun projet", + "welcome_to_sl": "Bienvenue dans __appName__ !", + "new_to_latex_look_at": "Débutant avec LaTeX ? Commencez par découvrir nos", + "or": "ou", + "or_create_project_left": "ou créez votre premier projet à gauche.", + "thanks_settings_updated": "Merci, vos réglages ont été mis à jour.", + "update_account_info": "Mettre à jour les infos du compte", + "must_be_email_address": "Adresse électronique attendue", + "first_name": "Prénom", + "last_name": "Nom", + "update": "Mettre à jour", + "change_password": "Changer de mot de passe", + "current_password": "Mot de passe actuel", + "new_password": "Nouveau mot de passe", + "confirm_new_password": "Confirmer le mot de passe", + "required": "requis", + "doesnt_match": "Ne correspond pas", + "dropbox_integration": "Intégration Dropbox", + "learn_more": "En savoir plus", + "dropbox_is_premium": "La synchronisation Dropbox est une fonctionnalité premium", + "account_is_linked": "Le compte est lié", + "unlink_dropbox": "Ne plus lier à Dropbox", + "link_to_dropbox": "Lier à Dropbox", + "newsletter_info_and_unsubscribe": "Presque tous les mois, nous envoyons une lettre d’information résumant les nouvelles fonctionnalités disponibles. Si vous préférez ne pas recevoir ce courriel, vous pouvez vous désabonner à tout moment :", + "unsubscribed": "Désabonné(e)", + "unsubscribing": "Désabonnement en cours", + "unsubscribe": "Se désabonner", + "need_to_leave": "Besoin de partir ?", + "delete_your_account": "Supprimer votre compte", + "delete_account": "Supprimer un compte", + "delete_account_warning_message": "Vous êtes sur le point de supprimer définitivement toutes les données de votre compte, y compris vos projets et vos réglages. Veuillez saisir DELETE dans la case ci-dessous pour continuer.", + "deleting": "Suppression en cours", + "delete": "Supprimer", + "sl_benefits_plans": "__appName__ est l’éditeur LaTeX le plus facile à utiliser au monde. Restez à jour avec vos collaborateur·rice·s, gardez la trace de toutes les modifications apportées à votre travail et utilisez notre environnement LaTeX où que vous soyez.", + "monthly": "Mensuel", + "personal": "Personnel", + "free": "Gratuit", + "one_collaborator": "Un·e seul·e collaborateur·rice", + "collaborator": "Collaborateur·rice", + "collabs_per_proj": "__collabcount__ collaborateur·rice·s par projet", + "full_doc_history": "Historique complet des documents", + "sync_to_dropbox": "Synchronisation avec Dropbox", + "start_free_trial": "Commencer l’essai gratuit !", + "professional": "Professionnel·le", + "unlimited_collabs": "Collaborateurs illimités", + "name": "Nom", + "student": "Étudiant·e", + "university": "Université", + "position": "Grade", + "choose_plan_works_for_you": "Choisissez l’offre qui vous convient grâce à notre offre d’essai de __len__ jours. Vous pouvez annuler à tout moment.", + "interested_in_group_licence": "Intéressé par un compte __appName__ pour un groupe, une équipe ou un département ?", + "get_in_touch_for_details": "Contactez-nous pour plus de détails !", + "group_plan_enquiry": "Renseignements sur l’offre de groupe", + "enjoy_these_features": "Bénéficiez de toutes ces fonctionnalités", + "create_unlimited_projects": "Créez autant de projets que vous le souhaitez.", + "never_loose_work": "N’abandonnez jamais, nous sommes là pour vous.", + "access_projects_anywhere": "Accédez à vos projets où que vous soyez.", + "log_in": "Se connecter", + "login": "Identifiant", + "logging_in": "Connexion en cours", + "forgot_your_password": "Mot de passe oublié ", + "password_reset": "Réinitialisation du mot de passe", + "password_reset_email_sent": "Un courriel vous a été envoyé afin de finaliser la réinitialisation de votre mot de passe.", + "please_enter_email": "Veuillez indiquer votre adresse électronique", + "request_password_reset": "Réinitialiser le mot de passe", + "reset_your_password": "Réinitialiser votre mot de passe", + "password_has_been_reset": "Votre mot de passe a été réinitialisé", + "login_here": "Se connecter ici", + "set_new_password": "Changer le mot de passe", + "user_wants_you_to_see_project": "__username__ souhaiterait que vous rejoigniez __projectname__", + "join_sl_to_view_project": "Rejoinde __appName__ pour voir ce projet", + "register_to_edit_template": "Veuillez vous inscrire pour éditer le modèle __templateName__", + "already_have_sl_account": "Avez-vous déjà un compte __appName__ ?", + "register": "S’inscrire", + "password": "Mot de passe", + "registering": "Inscription en cours", + "planned_maintenance": "Maintenance prévue", + "no_planned_maintenance": "Il n’y a pas de maintenance prévue pour le moment", + "cant_find_page": "Désolé, nous ne trouvons pas la page que vous cherchez.", + "take_me_home": "Retour à la maison !", + "no_preview_available": "Désolé, aucune prévisualisation possible.", + "no_messages": "Pas de message", + "send_first_message": "Envoyez votre premier message à vos collaborateur·rice·s", + "account_not_linked_to_dropbox": "Votre compte n’est pas lié à Dropbox", + "update_dropbox_settings": "Mettre à jour vos paramètres Dropbox", + "refresh_page_after_starting_free_trial": "Veuillez actualiser cette page avant de commencer votre essai gratuit.", + "checking_dropbox_status": "vérification de l’état de Dropbox", + "dismiss": "Annuler", + "deleted_files": "Fichiers supprimés", + "new_file": "Nouveau fichier", + "upload_file": "Importer un fichier", + "create": "Créer", + "creating": "Création en cours", + "upload_files": "Importer des fichiers", + "sure_you_want_to_delete": "Êtes-vous sûr(e) de vouloir supprimer définitivement les fichiers suivants ?", + "common": "Commun", + "navigation": "Navigation", + "editing": "Édition", + "ok": "Ok", + "source": "Code source", + "actions": "Actions", + "copy_project": "Copier le projet", + "publish_as_template": "Publier comme modèle", + "sync": "Synchroniser", + "settings": "Réglages", + "main_document": "Document principal", + "off": "Éteint", + "auto_complete": "Auto-complétion", + "theme": "Thème", + "font_size": "Taille de la police", + "pdf_viewer": "Visualiseur de PDF", + "built_in": "Intégré", + "native": "Natif", + "show_hotkeys": "Montrer les raccourcis clavier", + "new_name": "Nouveau nom", + "copying": "Copie en cours", + "copy": "Copier", + "compiling": "Compilation en cours", + "click_here_to_preview_pdf": "Cliquer ici pour prévisualiser votre travail en tant que PDF", + "server_error": "Erreur du serveur", + "somthing_went_wrong_compiling": "Désolé, quelque chose ne fonctionne pas et votre projet ne peut pas être compilé. Veuillez réessayer dans quelques instants.", + "timedout": "Temps expiré", + "proj_timed_out_reason": "Désolé, votre compilation a dépassé le temps alloué et a été interrompue. Cela peut être dû à une erreur LaTeX, un trop grand nombre d’images en haute résolution ou à des schémas trop complexes.", + "no_errors_good_job": "Pas d’erreur, bon travail !", + "compile_error": "Erreur de compilation", + "generic_failed_compile_message": "Désolé, impossible de compiler votre code LaTeX. Veuillez vérifier les erreurs ci-dessous ou consulter les journaux bruts pour plus de détails.", + "other_logs_and_files": "Autres journaux et fichiers", + "view_raw_logs": "Voir les fichiers journaux", + "hide_raw_logs": "Masquer les fichiers journaux", + "clear_cache": "Effacer le cache", + "clear_cache_explanation": "Tous les fichiers LaTeX cachés (.aux, .bbl, …) seront effacés de notre serveur de compilation. Vous n’avez normalement pas besoin de les effacer, à moins d’avoir des problèmes avec les références.", + "clear_cache_is_safe": "Les fichiers de votre projet ne seront ni détruits, ni changés.", + "clearing": "Nettoyage en cours", + "template_description": "Description des modèles", + "project_last_published_at": "Votre projet a été édité pour la dernière fois le", + "problem_talking_to_publishing_service": "Il y a un problème avec notre service d’édition, veuillez réessayer dans quelques minutes", + "unpublishing": "Dépublication en cours", + "republish": "Publier à nouveau", + "publishing": "Publication en cours", + "share_project": "Partager le projet", + "this_project_is_private": "Ce projet est privé et n’est accessible qu’aux personnes ci-dessous.", + "make_public": "Rendre public", + "this_project_is_public": "Ce projet est public et peut être édité par n’importe qui disposant de son URL.", + "make_private": "Rendre privé", + "can_edit": "Peut éditer", + "share_with_your_collabs": "Partager avec vos collaborateur·rice·s", + "share": "Partage", + "need_to_upgrade_for_more_collabs": "Vous devez mettre à niveau votre compte pour ajouter plus de collaborateur·rice·s", + "make_project_public": "Rendre le projet public", + "make_project_public_consequences": "Si vous rendez votre projet public, n’importe qui disposant de son URL pourra y accéder.", + "allow_public_editing": "Autoriser l’édition publique", + "allow_public_read_only": "Autoriser un accès public en lecture seule", + "make_project_private": "Désactiver le partage par lien", + "make_project_private_consequences": "Si vous rendez votre projet privé, seules les personnes avec qui vous le partagez pourront y avoir accès.", + "need_to_upgrade_for_history": "Vous devez mettre à niveau votre compte pour pouvoir utiliser l’historique", + "ask_proj_owner_to_upgrade_for_history": "Veuillez demander au propriétaire du projet de mettre à niveau son compte pour pouvoir utiliser l’historique.", + "anonymous": "Anonyme", + "generic_something_went_wrong": "Désolé, quelque chose s'est mal passé :(", + "restoring": "Restauration en cours", + "restore_to_before_these_changes": "Restaurer juste avant ces changements", + "profile_complete_percentage": "Votre profil est complet à __percentval__%", + "file_has_been_deleted": "__filename__ a été supprimé", + "sure_you_want_to_restore_before": "Voulez-vous vraiment restaurer le fichier __filename__ au __date__ avant les changements ?", + "rename_project": "Renommer le projet", + "about_to_delete_projects": "Vous allez supprimer les projets suivants :", + "about_to_leave_projects": "Vous allez quitter les projets suivants :", + "upload_zipped_project": "Importer un projet zippé", + "upload_a_zipped_project": "Importer un projet zippé", + "your_profile": "Votre profil", + "institution": "Établissement", + "role": "Grade", + "folders": "Dossiers", + "disconnected": "Déconnecté", + "please_refresh": "Veuillez actualiser la page pour continuer.", + "lost_connection": "Connexion perdue", + "reconnecting_in_x_secs": "Reconnexion dans __seconds__ s", + "try_now": "Essayer maintenant", + "reconnecting": "Reconnexion", + "saving_notification_with_seconds": "Enregistrement de __docname__ (__seconds__ s de modifications non enregistrées)", + "help_us_spread_word": "Aidez-nous à diffuser __appName__", + "share_sl_to_get_rewards": "Partagez __appName__ avec vos ami·e·s et collègues et débloquez les récompenses ci-dessous", + "post_on_facebook": "Postez sur Facebook", + "share_us_on_googleplus": "Partagez-nous sur Google+", + "email_us_to_your_friends": "Envoyez un courriel à vos ami·e·s", + "link_to_us": "Ajoutez un lien sur votre site web", + "direct_link": "Lien direct", + "sl_gives_you_free_stuff_see_progress_below": "Lorsque quelqu’un commence à utiliser __appName__ suite à vos recommandations, nous vous offrons des cadeaux pour vous remercier ! Voyez votre progression ci-dessous.", + "spread_the_word_and_fill_bar": "Parlez-en autour de vous et remplissez cette barre", + "one_free_collab": "Un collaborateur offert", + "three_free_collab": "Trois collaborateurs offerts", + "free_dropbox_and_history": "Dropbox et historique", + "you_not_introed_anyone_to_sl": "Vous n’avez encore présenté __appName__ à personne. Partagez !", + "you_introed_small_number": " Vous avez présenté __appName__ à __numberOfPeople__ personne·s. Bien joué, mais pouvez-vous faire mieux ?", + "you_introed_high_number": " Vous avez présenté __appName__ à __numberOfPeople__ personnes. Bien joué !", + "link_to_sl": "Lien vers __appName__", + "can_link_to_sl_with_html": "Vous pouvez faire un lien vers __appName__ avec le code HTML suivant :", + "year": "année", + "month": "mois", + "subscribe_to_this_plan": "S’abonner à cette offre", + "your_plan": "Votre offre", + "your_subscription": "Votre abonnement", + "on_free_trial_expiring_at": "Vous bénéficiez actuellement d’un essai gratuit qui expire le __expiresAt__.", + "choose_a_plan_below": "Choisir ci-dessous une offre à laquelle vous souhaitez vous abonner.", + "currently_subscribed_to_plan": "Vous bénéficiez actuellement de l’offre __planName__.", + "change_plan": "Changer d’offre", + "next_payment_of_x_collectected_on_y": "Le prochain paiement de __paymentAmmount__ sera débité le __collectionDate__.", + "update_your_billing_details": "Mettre à jour vos données de facturation", + "subscription_canceled_and_terminate_on_x": " Votre abonnement a été annulé et se terminera le __terminateDate__. Aucun paiement supplémentaire ne vous sera demandé.", + "your_subscription_has_expired": "Votre abonnement a expiré", + "create_new_subscription": "Créer un nouvel abonnement", + "problem_with_subscription_contact_us": "Il y a un problème avec votre abonnement. Veuillez nous contacter pour davantage d’informations.", + "manage_group": "Gérer le groupe", + "loading_billing_form": "Chargement du formulaire de facturation", + "you_have_added_x_of_group_size_y": "Vous avez ajouté __addedUsersSize__ membres sur les __groupSize__ disponibles", + "remove_from_group": "Retirer du groupe", + "group_account": "Compte de groupe", + "registered": "Inscrit·e", + "no_members": "Aucun membre", + "add_more_members": "Ajouter plus de membres", + "add": "Ajouter", + "thanks_for_subscribing": "Merci de vous être abonné(e) !", + "your_card_will_be_charged_soon": "Votre carte sera débitée prochainement.", + "if_you_dont_want_to_be_charged": "Si vous ne voulez plus être débité de nouveau", + "add_your_first_group_member_now": "Ajouter le premier membre de votre groupe maintenant", + "thanks_for_subscribing_you_help_sl": "Merci de vous être abonné à l’offre __planName__. C’est grâce au support de personnes comme vous que __appName__ peut prospérer et continuer à s’améliorer.", + "back_to_your_projects": "Retourner à mes projets", + "goes_straight_to_our_inboxes": "Cela arrive directement dans nos deux boîtes aux lettres", + "need_anything_contact_us_at": "Si vous avez besoin de quelque chose, n’hésitez pas à nous contacter directement à", + "regards": "Merci", + "about": "À propos", + "comment": "Commentaire", + "restricted_no_permission": "Accès restreint, désolé vous n’avez pas l’autorisation de charger cette page.", + "online_latex_editor": "Éditeur LaTeX en ligne", + "meet_team_behind_latex_editor": "Rencontrez l’équipe de votre éditeur LaTeX en ligne favori.", + "follow_me_on_twitter": "Le suivre sur Twitter", + "motivation": "Nos motivations", + "evolved": "évolué", + "the_easy_online_collab_latex_editor": "L’éditeur de LaTeX facile d’utilisation, en ligne et collaboratif", + "get_started_now": "Commencer maintenant", + "sl_used_over_x_people_at": "__appName__ est utilisé par plus de __numberOfUsers__ étudiants et universitaires à :", + "collaboration": "Collaboration", + "work_on_single_version": "Travaillez ensemble sur la même version", + "view_collab_edits": "Voyez les modifications des autres ", + "ease_of_use": " Facilité d’utilisation", + "no_complicated_latex_install": "Pas d’installation compliquée de LaTeX", + "all_packages_and_templates": "Tous les paquets et __templatesLink__ qu’il vous faut", + "document_history": "Historique du document", + "see_what_has_been": "Voyez ce qui a été ", + "added": "ajouté", + "and": "et", + "removed": "retiré", + "restore_to_any_older_version": "Revenez à n’importe quelle version précédente", + "work_from_anywhere": "Travaillez n’importe où", + "acces_work_from_anywhere": "Accédez à votre travail où que vous soyez", + "work_offline_and_sync_with_dropbox": "Travaillez hors connexion et synchronisez vos fichiers via Dropbox et GitHub", + "over": "Plus de", + "view_templates": "Voir les modèles", + "nothing_to_install_ready_to_go": "Il n’y a rien de compliqué ou de difficile à installer, vous pouvez __start_now__, même si vous débutez totalement. __appName__ inclut un environnement LaTeX complet et prêt à l’emploi, qui fonctionne sur nos serveurs.", + "start_using_latex_now": "commencer à utiliser LaTeX dès à présent", + "get_same_latex_setup": "Avec __appName__, votre configuration LaTeX vous suit partout. En travaillant avec vos collègues ou étudiant·e·s sur __appName__, vous êtes sûr·e de ne pas rencontrer d’incohérences de version ou de conflits de paquets.", + "support_lots_of_features": "Nous prenons en charge presque toutes les fonctionnalités de LaTeX, y compris l’insertion d’images, de bibliographies, d’équations et bien d’autres choses ! Apprenez-en plus sur toutes les choses palpitantes que vous pouvez faire avec __appName__ dans nos __help_guides_link__", + "latex_guides": "guides LaTeX", + "reset_password": "Réinitialiser le mot de passe", + "set_password": "Changement de mot de passe", + "updating_site": "Mise à jour du site", + "bonus_please_recommend_us": "Bonus - S’il-vous-plaît, recommandez-nous", + "admin": "admin", + "subscribe": "S’abonner", + "update_billing_details": "Mettre à jour vos données de facturation", + "thank_you": "Merci", + "group_admin": "Administrateur du groupe", + "all_templates": "Tous les modèles", + "your_settings": "Vos paramètres", + "maintenance": "Maintenance", + "to_many_login_requests_2_mins": "Ce compte a reçu trop de demandes de connexion. Veuillez attendre deux minutes avant de tenter une nouvelle connexion", + "email_or_password_wrong_try_again": "Votre adresse courriel ou votre mot de passe est incorrect. Veuillez essayer à nouveau", + "rate_limit_hit_wait": "Limite atteinte. Veuillez attendre un peu avant de retenter.", + "problem_changing_email_address": "Il y a eu un problème lors de votre changement d’adresse courriel. Veuillez recommencer dans quelques instants. Si le problème persiste, veuillez nous contacter.", + "single_version_easy_collab_blurb": "__appName__ vous assure d’être toujours à jour avec vos collaborateur·rice·s et ce qu’ils·elles font. Il n’y a qu’une seule version centralisée de chaque document, à laquelle tout le monde a accès. Il est impossible de créer des conflits de version et il n’est pas nécessaire d’attendre que vos collègues vous envoient leur dernière version de travail pour continuer à travailler.", + "can_see_collabs_type_blurb": "Si plusieurs personnes veulent travailler sur un document en même temps, ce n’est pas un problème. Vous pouvez voir directement ce que saisissent vos collègues dans l’éditeur et leurs changements s’affichent immédiatement sur votre écran.", + "work_directly_with_collabs": "Travaillez directement avec vos collaborateur·rice·s", + "work_with_word_users": "Travaillez avec des utilisateur·trice·s de Word", + "work_with_word_users_blurb": "__appName__ est si simple à prendre en main que vous pourrez inviter vos collègues qui n’utilisent pas LaTeX à venir contribuer directement dans vos documents LaTeX. Ils·elles seront productif·ve·s dès le premier jour et pourront apprendre des éléments de LaTeX au fil de l’eau.", + "view_which_changes": "Voyez ce qui a été", + "sl_included_history_of_changes_blurb": "__appName__ inclut un historique de tous les changements effectués vous permettant de voir exactement qui a modifié quoi et quand. Ceci rend extrêmement simple le suivi des modifications effectuées par vos collaborateur·rice·s et vous permet d’examiner le travail effectué récemment.", + "can_revert_back_blurb": "Que ce soit seul·e ou en collaboration, vous pouvez faire des erreurs. Le retour à une version précédente est simple, ce qui élimine le risque de perdre votre travail ou de regretter une modification.", + "start_using_sl_now": "Commencer à utiliser __appName__ maintenant", + "over_x_templates_easy_getting_started": "Il y a des milliers de __templates__ dans notre galerie de modèles. Il est donc très facile de démarrer, que vous écriviez un article de revue, une thèse, un CV ou quoi que ce soit d’autre.", + "done": "Terminé", + "change": "Modifier", + "page_not_found": "Page introuvable", + "please_see_help_for_more_info": "Veuillez vous reporter au guide d’aide pour plus d’informations", + "this_project_will_appear_in_your_dropbox_folder_at": "Ce projet apparaîtra dans votre dossier Dropbox à ", + "member_of_group_subscription": "Vous êtes membre d’un abonnement de groupe géré par __admin_email__. Veuillez les contacter pour gérer votre abonnement.\n", + "about_henry_oswald": "est ingénieur logiciel et vit à Londres. Il a réalisé le premier prototype de __appName__ et a été responsable de la mise en place d’une plate-forme stable et évolutive. Henry est un fervent défenseur du développement dirigé par les tests et prend garde à ce que le code de __appName__ reste propre et facile à maintenir.", + "about_james_allen": "a une thèse de doctorat en physique théorique et est passionné par LaTeX. Il a créé l’un des tout premiers éditeurs LaTeX en ligne, ScribTeX, et a joué un rôle important dans le développement des technologies qui rendent __appName__ possible.", + "two_strong_principles_behind_sl": "Notre travail sur __appName__ repose sur deux principes fondateurs :", + "want_to_improve_workflow_of_as_many_people_as_possible": "Nous voulons améliorer le flux de travail du plus grand nombre possible de personnes.", + "detail_on_improve_peoples_workflow": "LaTeX est connu pour être difficile à utiliser et le travail collaboratif est toujours difficile à coordonner. Nous pensons avoir développé de bonnes solutions pour aider les personnes à faire face à ces problèmes. Nous voulons également nous assurer que __appName__ est accessible au plus grand nombre. Nous avons fait de notre mieux pour maintenir des tarifs justes et avons diffusé la plupart de __appName__ sous licence libre afin que chacun puisse héberger le sien.", + "want_to_create_sustainable_lasting_legacy": "Nous souhaitons créer un héritage durable.", + "details_on_legacy": "Le développement et la maintenance d’un produit comme __appName__ demandent beaucoup de temps et de travail. Il est donc important que nous trouvions un modèle économique qui puisse soutenir ces deux points sur le long terme. Nous ne souhaitons pas que __appName__ dépende d’un financement externe ou disparaisse à cause d’un modèle économique défectueux. Je suis ravi d’annoncer que nous sommes en mesure de faire fonctionner __appName__ de manière rentable et durable et que pensons pouvoir le faire pour longtemps.", + "get_in_touch": "Contactez-nous", + "want_to_hear_from_you_email_us_at": "Nous aimerions entendre parler de ceux qui utilisent __appName__ ou veulent discuter avec nous de ce que nous faisons. Vous pouvez nous contacter à ", + "cant_find_email": "Cette adresse électronique n’est pas connue, désolé.", + "plans_amper_pricing": "Offres et tarifs", + "documentation": "Documentation", + "account": "Compte", + "subscription": "Abonnement", + "log_out": "Déconnexion", + "en": "Anglais", + "pt": "Portugais", + "es": "Espagnol", + "fr": "Français", + "de": "Allemand", + "it": "Italien", + "da": "Danois", + "sv": "Suedois", + "no": "Norvégien", + "nl": "Hollandais", + "pl": "Polonais", + "ru": "Russe", + "uk": "Ukrainien", + "ro": "Roumain", + "click_here_to_view_sl_in_lng": "Cliquer ici pour utiliser __appName__ en __lngName__", + "language": "Langue", + "upload": "Importer", + "menu": "Menu", + "full_screen": "Plein écran", + "logs_and_output_files": "Journaux et fichiers de sortie", + "download_pdf": "Télécharger le PDF", + "split_screen": "Écran partagé", + "clear_cached_files": "Nettoyer le cache des fichiers", + "go_to_code_location_in_pdf": "Aller à l’emplacement du code dans le PDF", + "please_compile_pdf_before_download": "Veuillez compiler votre projet avant de pouvoir télécharger le PDF", + "remove_collaborator": "Exclure le ou la collaborateur·rice", + "add_to_folders": "Ajouter aux dossiers", + "download_zip_file": "Télécharger le fichier Zip", + "price": "Prix", + "close": "Fermer", + "keybindings": "Raccourcis clavier", + "restricted": "Accès restreint", + "start_x_day_trial": "Commencez aujourd’hui votre essai gratuit de __len__ jours !", + "buy_now": "Acheter maintenant !", + "cs": "Tchéque", + "view_all": "Tout voir", + "terms": "Conditions", + "privacy": "Politique de confidentialité", + "contact": "Contact", + "change_to_this_plan": "Changer pour cette offre", + "processing": "En traitement", + "sure_you_want_to_change_plan": "Voulez-vous vraiment changer d’offre pour __planName__ ?", + "move_to_annual_billing": "Opter pour une facturation annuelle", + "annual_billing_enabled": "Facturation annuelle activée", + "move_to_annual_billing_now": "Opter pour une facturation annuelle dès maintenant", + "change_to_annual_billing_and_save": "Obtenez __percentage__ de réduction grâce à la facturation annuelle. Si vous faites ce choix dès maintenant, vous économiserez __yearlySaving__ par an.", + "missing_template_question": "Un modèle qui manque ?", + "tell_us_about_the_template": "S’il manque un modèle, vous pouvez soit nous en envoyer une copie, soit une URL __appName__ vers le modèle, soit nous indiquer où nous pouvons le trouver. Merci de nous donner quelques informations complémentaires pour la description du modèle.", + "email_us": "Envoyez-nous un email", + "this_project_is_public_read_only": "Ce projet est public et peut être vu, mais non modifié, par toute personne disposant de son URL", + "tr": "Turque", + "select_files": "Sélectionnez les fichiers", + "drag_files": "glissez les fichiers", + "upload_failed_sorry": "Désolé, le téléversement a échoué.", + "inserting_files": "Insertion du fichier…", + "password_reset_token_expired": "Votre demande de réinitialisation de mot de passe a expiré. Veuillez refaire une demande de réinitialisation et suivre le lien qui figure dans le nouveau courriel.", + "merge_project_with_github": "Fusionner le projet avec GitHub", + "pull_github_changes_into_sharelatex": "Récupérer les modifications GitHub (pull) dans __appName__", + "push_sharelatex_changes_to_github": "Pousser les changements __appName__ vers GitHub", + "features": "Caractéristiques", + "commit": "Commiter", + "commiting": "Commit en cours", + "importing_and_merging_changes_in_github": "Import et fusion des changements dans GitHub", + "upgrade_for_faster_compiles": "Mettez votre compte à niveau pour des compilations plus rapides et pour augmenter la limite de temps", + "free_accounts_have_timeout_upgrade_to_increase": "Les comptes gratuits ont une limite de temps d’une minute alors que les comptes premium ont une limite de temps de quatre minutes.", + "learn_how_to_make_documents_compile_quickly": "Apprenez comment corriger ces dépassements de temps", + "zh-CN": "Chinois", + "cn": "Chinois (simplifié)", + "sync_to_github": "Synchroniser avec GitHub", + "sync_to_dropbox_and_github": "Synchroniser avec Dropbox et GitHub", + "project_too_large": "Projet trop volumineux", + "project_too_large_please_reduce": "Ce projet contient trop de texte, veuillez essayer de le réduire. Les fichiers les plus volumineux sont :", + "please_ask_the_project_owner_to_link_to_github": "Veuillez demander au propriétaire du projet de le lier à un dépôt GitHub", + "go_to_pdf_location_in_code": "Aller dans le code à l’emplacement du PDF", + "ko": "Koréen", + "ja": "Japonais", + "about_brian_gough": "est développeur et ancien physicien théoricien des hautes énergies au Fermilab et à Los Alamos. Il publie des manuels sur les logiciels libres depuis plusieurs années, en utilisant TeX et LaTeX, et a été également mainteneur de la librairie scientifique GNU.", + "first_few_days_free": "__trialLen__ premiers jours gratuits", + "every": "chaque", + "credit_card": "Carte bleue", + "credit_card_number": "Numéro de carte bleue", + "invalid": "Invalide", + "expiry": "Date d’expiration", + "january": "Janvier", + "february": "Février", + "march": "Mars", + "april": "Avril", + "may": "Mai", + "june": "Juin", + "july": "Juillet", + "august": "Août", + "september": "Septembre", + "october": "Octobre", + "november": "Novembre", + "december": "Décembre", + "zip_post_code": "Code postal", + "city": "Ville", + "address": "Adresse", + "coupon_code": "Code de promotion", + "country": "Pays", + "billing_address": "Adresse de facturation", + "upgrade_now": "Mettre à niveau maintenant", + "state": "État", + "vat_number": "Numéro de TVA", + "you_have_joined": "Vous avez rejoint __groupName__", + "claim_premium_account": "Vous avez demandé votre compte premium fourni par __groupName__.", + "you_are_invited_to_group": " Vous êtes invité(e) à rejoindre __groupName__", + "you_can_claim_premium_account": "Vous pouvez demander un compte premium fourni par __groupName__ en validant votre adresse électronique", + "not_now": "pas maintenant", + "verify_email_join_group": "Validez votre adresse électronique et rejoignez le groupe", + "check_email_to_complete_group": "Veuillez valider votre adresse électronique pour rejoindre le groupe", + "verify_email_address": "Validez votre adresse électronique", + "group_provides_you_with_premium_account": "__groupName__ vous fournit un compte premium. Validez votre adresse courriel pour mettre à niveau votre compte.", + "check_email_to_complete_the_upgrade": "Veuillez valider votre adresse courriel pour terminer la mise à niveau", + "email_link_expired": "Le lien a expiré, veuillez en demander un nouveau.", + "services": "Services", + "about_shane_kilkelly": "est un développeur de logiciel vivant à Édimbourg. Shane est un fervent défenseur de la programmation fonctionnelle, du développement piloté par les tests et est fier de construire des logiciels de qualité.", + "this_is_your_template": "Ceci est le modèle provenant de votre projet", + "links": "Liens", + "account_settings": "Paramètres du compte", + "search_projects": "Rechercher un projet", + "clone_project": "Dupliquer un projet", + "delete_project": "Supprimer un projet", + "download_zip": "Télécharger (ZIP)", + "new_project": "Nouveau projet", + "blank_project": "Projet vide", + "example_project": "Un exemple de projet", + "from_template": "Depuis un modèle", + "cv_or_resume": "CV", + "cover_letter": "Lettre de motivation", + "journal_article": "Article de revue", + "presentation": "Présentation", + "thesis": "Thèse", + "bibliographies": "Bibliographies", + "terms_of_service": "Conditions d’utilisation", + "privacy_policy": "Règles de confidentialité", + "plans_and_pricing": "Offres et prix", + "university_licences": "Licences universitaires", + "security": "Sécurité", + "contact_us": "Contactez-nous", + "thanks": "Merci", + "blog": "Blog", + "latex_editor": "Éditeur LaTeX", + "get_free_stuff": "Obtenir des fonctionnalités gratuites", + "chat": "Discussion", + "your_message": "Votre message", + "loading": "Chargement en cours", + "connecting": "Connexion en cours", + "recompile": "Recompiler", + "download": "Télécharger", + "email": "Courriel", + "owner": "Propriétaire", + "read_and_write": "Lire et écrire", + "read_only": "Lire seulement", + "publish": "Publier", + "view_in_template_gallery": "Voir dans la galerie des modèles", + "description": "Description", + "unpublish": "Dépublier", + "hotkeys": "Raccourcis clavier", + "saving": "Sauvegarde en cours", + "cancel": "Annuler", + "project_name": "Nom du projet", + "root_document": "Document maître", + "spell_check": "Correcteur orthographique", + "compiler": "Compilateur", + "private": "Privé", + "public": "Public", + "delete_forever": "Supprimer définitivement", + "support_and_feedback": "Support et retour d’expérience", + "help": "Aide", + "latex_templates": "Modèles LaTeX", + "info": "Info", + "latex_help_guide": "Guide d’aide pour LaTeX", + "choose_your_plan": "Choisir votre offre", + "indvidual_plans": "Offres individuelles", + "free_forever": "Gratuit à vie", + "low_priority_compile": "Compilation de faible priorité", + "unlimited_projects": "Projets illimités", + "unlimited_compiles": "Compilations illimitées", + "full_history_of_changes": "Historique complet des changements", + "highest_priority_compiling": "Compilation de plus haute priorité", + "dropbox_sync": "Synchronisation Dropbox", + "beta": "Bêta", + "sign_up_now": "Inscrivez-vous maintenant ", + "annual": "Annuel", + "half_price_student": "Moitié prix pour les étudiant·e·s", + "about_us": "À propos de nous", + "loading_recent_github_commits": "Chargement des commits récents", + "no_new_commits_in_github": "Aucun nouveau commit dans GitHub depuis la dernière fusion.", + "dropbox_sync_description": "Maintenez vos projets __appName__ synchronisés avec votre Dropbox. Les changements dans __appName__ sont automatiquement envoyés vers votre Dropbox, et vice versa.", + "github_sync_description": "Avec la synchronisation GitHub, vous pouvez lier vos projets __appName__ à des dépôts GitHub. Créez de nouveaux commits depuis __appName__, et fusionnez avec les commits réalisés hors ligne ou dans GitHub.", + "github_import_description": "Avec la synchronisation GitHub, vous pouvez importer vos dépôts GitHub dans __appName__. Créez de nouveaux commits depuis __appName__, et fusionnez avec les commits réalisés hors ligne ou dans GitHub.", + "link_to_github_description": "Vous devez autoriser __appName__ à accéder à votre compte GitHub afin de nous permettre de synchroniser vos projets.", + "unlink": "Ne plus lier", + "unlink_github_warning": "Tous les projets que vous avez synchronisés avec GitHub seront déconnectés et ne seront plus maintenu synchronisés avec GitHub. Voulez-vous vraiment ne plus lier votre compte GitHub ?", + "github_account_successfully_linked": "Compte GitHub lié avec succès !", + "github_successfully_linked_description": "Merci, nous avons lié votre compte GitHub avec __appName__. Vous pouvez maintenant exporter vos projets __appName__ dans GitHub ou importer des projets depuis vos dépôts GitHub.", + "import_from_github": "Importer depuis GitHub", + "github_sync_error": "Désolé, une erreur s’est produite lors de la communication avec le service GitHub. Veuillez essayer à nouveau dans quelques instants.", + "loading_github_repositories": "Chargement de vos dépôts GitHub", + "select_github_repository": "Choisissez un dépôt GitHub à importer dans __appName__", + "import_to_sharelatex": "Importer dans __appName__", + "importing": "Importation", + "github_sync": "Synchronisation GitHub", + "checking_project_github_status": "Vérification de l’état du projet dans GitHub", + "account_not_linked_to_github": "Votre compte n’est pas lié à GitHub", + "project_not_linked_to_github": "Ce projet n’est pas lié à un dépôt GitHub. Vous pouvez lui créer un dépôt dans GitHub :", + "create_project_in_github": "Créer un dépôt GitHub", + "project_synced_with_git_repo_at": "Ce projet est synchronisé avec le dépôt GitHub", + "recent_commits_in_github": "Commits récents dans GitHub", + "sync_project_to_github": "Synchroniser le projet vers GitHub", + "sync_project_to_github_explanation": "Tous les changements effectués dans __appName__ seront commités et fusionnés avec toutes les mises à jour dans GitHub.", + "github_merge_failed": "Impossible de fusionner automatiquement vos changements dans __appName__ et GitHub. Veuillez fusionner manuellement la branche __sharelatex_branch__ dans la branche __master_branch__ dans git. Cliquez ci-dessous pour continuer, après avoir fusionné manuellement.", + "continue_github_merge": "J’ai fusionné manuellement. Continuer", + "export_project_to_github": "Exporter le projet vers GitHub", + "github_validation_check": "Veuillez vérifier que le nom du dépôt est valable, et que vous avez les droits pour créer le dépôt.", + "repository_name": "Nom du dépôt", + "optional": "Optionnel", + "github_public_description": "Tout le monde peut voir ce dépôt. Vous choisissez qui peut commiter.", + "github_commit_message_placeholder": "Message de commit pour les changements effectués dans __appName__…", + "merge": "Fusion", + "merging": "Fusion", + "github_account_is_linked": "Votre compte GitHub a été lié avec succès.", + "unlink_github": "Ne plus lier à GitHub", + "link_to_github": "Lier à votre compte GitHub", + "github_integration": "Intégration GitHub", + "github_is_premium": "La synchronisation GitHub est une fonctionnalité premium" +} \ No newline at end of file diff --git a/services/web/locales/it.json b/services/web/locales/it.json new file mode 100644 index 0000000000..e5c0c031ab --- /dev/null +++ b/services/web/locales/it.json @@ -0,0 +1,604 @@ +{ + "trash": "Cestino", + "yes_please": "Sì, grazie!", + "ill_take_it": "Mi va bene!", + "cancel_your_subscription": "Elimina il tuo account", + "no_thanks_cancel_now": "No, grazie - Voglio ancora annullare", + "cancel_my_account": "Elimina il mio account", + "sure_you_want_to_cancel": "Sei sicuro di voler eliminare?", + "i_want_to_stay": "Voglio rimanere", + "have_more_days_to_try": "Hai altri __days__ giorni nel tuo Trial!", + "interested_in_cheaper_plan": "Saresti interessato nel piano economico da __price__ per studenti?", + "session_expired_redirecting_to_login": "Sessione scaduta. Redirezione alla pagina di login fra __seconds__ secondi", + "maximum_files_uploaded_together": "Massimo __max__ file caricati insieme", + "too_many_files_uploaded_throttled_short_period": "Troppi file caricati, i tuoi caricamenti sono stati limitati per un breve periodo.", + "compile_larger_projects": "Compila progetti più grandi", + "upgrade_to_get_feature": "Esegui l'upgrade per avere __feature__, oltre a:", + "new_group": "Nuovo Gruppo", + "about_to_delete_groups": "Stai per cancellare i seguenti gruppi:", + "removing": "Rimozione", + "adding": "Aggiunta", + "groups": "Gruppi", + "rename_group": "Rinomina Gruppo", + "renaming": "Ridenominazione", + "create_group": "Crea Gruppo", + "delete_group": "Elimina Gruppo", + "delete_groups": "Elimina Gruppi", + "your_groups": "I Tuoi Gruppi", + "group_name": "Nome Gruppo", + "no_groups": "Nessun Gruppo", + "Subscription": "Iscrizione", + "Documentation": "Documentazione", + "Universities": "Università", + "Account Settings": "Impostazioni Account", + "Projects": "Progetti", + "Account": "Account", + "global": "globale", + "Terms": "Termini", + "Security": "Sicurezza", + "About": "About", + "editor_disconected_click_to_reconnect": "Editor disconnesso, clicca in qualsiasi punto per riconnettere.", + "word_count": "Conteggio Parole", + "please_compile_pdf_before_word_count": "Per favore, compila il tuo progetto prima di eseguire il conteggio parole", + "total_words": "Parole Totali", + "headers": "Intestazioni", + "math_inline": "Formule In Linea", + "math_display": "Formule Mostrate", + "connected_users": "Utenti collegati", + "projects": "Progetti", + "upload_project": "Carica Progetto", + "all_projects": "Tutti i progetti", + "your_projects": "Tuoi Progetti", + "shared_with_you": "Condiviso con te", + "deleted_projects": "Progetti Eliminati", + "templates": "Modelli", + "new_folder": "Nuova Cartella", + "create_your_first_project": "Crea il tuo primo progetto!", + "complete": "Completo", + "on_free_sl": "Stai utilizzando la versione gratuita di __appName__", + "upgrade": "Upgrade", + "or_unlock_features_bonus": "o sblocca alcune funzionalità bonus", + "sharing_sl": "condividendo __appName__", + "add_to_folder": "Aggiungi a cartella", + "create_new_folder": "Crea Nuova Cartella", + "more": "Più", + "rename": "Rinomina", + "make_copy": "Crea una copia", + "restore": "Ripristina", + "title": "Titolo", + "last_modified": "Ultima Modifica", + "no_projects": "Nessun progetto", + "welcome_to_sl": "Benvenuto a __appName__!", + "new_to_latex_look_at": "Nuovo in LaTeX? Inizia dando uno sguardo al nostro", + "or": "o", + "or_create_project_left": "o crea il tuo primo progetto a sinistra.", + "thanks_settings_updated": "Grazie, le tue impostazioni sono state aggiornate.", + "update_account_info": "Aggiorna Info Account", + "must_be_email_address": "Deve essere un indirizzo email", + "first_name": "Nome", + "last_name": "Cognome", + "update": "Aggiorna", + "change_password": "Cambia Password", + "current_password": "Password Attuale", + "new_password": "Nuova Password", + "confirm_new_password": "Conferma Nuova Password", + "required": "richiesto", + "doesnt_match": "Non corrisponde", + "dropbox_integration": "Integrazione Dropbox", + "learn_more": "Scopri di più", + "dropbox_is_premium": "La sincronizzazione Dropbox è una funzionalità premium", + "account_is_linked": "L'account è collegato", + "unlink_dropbox": "Scollega Dropbox", + "link_to_dropbox": "Collega a Dropbox", + "newsletter_info_and_unsubscribe": "A intervalli di qualche mese inviamo una newsletter che ricapitola le nuove funzionalità disponibili. Se preferisci non ricevere questa email puoi cancellarti in ogni momento:", + "unsubscribed": "Cancellato", + "unsubscribing": "Cancellando", + "unsubscribe": "Cancellati", + "need_to_leave": "Vuoi andare via?", + "delete_your_account": "Elimina il tuo account", + "delete_account": "Elimina Account", + "delete_account_warning_message": "Stai per eliminare per sempre tutti i tuoi dati, inclusi progetti e impostazioni. Per favore scrivi DELETE nel box sottostante per procedere.", + "deleting": "Eliminando", + "delete": "Elimina", + "sl_benefits_plans": "__appName__ è l'editor più facile del mondo per usare LaTeX. Rimani aggiornato con i tuoi collaboratori, tieni traccia di tutti i cambiamenti al tuo lavoro, e usa il nostro ambiente LaTeX da qualsiasi parte nel mondo.", + "monthly": "Mensile", + "personal": "Personale", + "free": "Gratis", + "one_collaborator": "Solo un collaboratore", + "collaborator": "Collaboratore", + "collabs_per_proj": "__collabcount__ collaboratori per progetto", + "full_doc_history": "Storia completa del documento", + "sync_to_dropbox": "Sincronizzazione con Dropbox", + "start_free_trial": "Inizia Trial Gratuito!", + "professional": "Professionale", + "unlimited_collabs": "Collaboratori illimitati", + "name": "Nome", + "student": "Studente", + "university": "Università", + "position": "Posizione", + "choose_plan_works_for_you": "Scegli il piano che più gradisci con il nostro trial gratuito di __len__ giorni. Puoi annullare in ogni momento.", + "interested_in_group_licence": "Interessato ad utilizzare __appName__ in un account di gruppo, team o dipartimento?", + "get_in_touch_for_details": "Contattaci per i dettagli!", + "group_plan_enquiry": "Richiesta di Piano di Gruppo", + "enjoy_these_features": "Goditi tutte queste funzionalità gratuite", + "create_unlimited_projects": "Crea tutti i progetti di cui hai bisogno.", + "never_loose_work": "Non perdere mai niente, ci pensiamo noi.", + "access_projects_anywhere": "Accedi ai tuoi progetti da ovunque.", + "log_in": "Entra", + "login": "Entra", + "logging_in": "Entrata in corso", + "forgot_your_password": "Password dimenticata", + "password_reset": "Reimposta la Password", + "password_reset_email_sent": "Ti abbiamo inviato una email per completare il reset della password.", + "please_enter_email": "Per favore inserisci il tuo indirizzo email", + "request_password_reset": "Richiedi reset della password", + "reset_your_password": "Reimposta la tua password", + "password_has_been_reset": "La tua password è stata reimpostata", + "login_here": "Entra qui", + "set_new_password": "Imposta nuova password", + "user_wants_you_to_see_project": "__username__ vorrebbe che tu vedessi __projectname__", + "join_sl_to_view_project": "Unisciti a __appName__ per vedere questo progetto", + "register_to_edit_template": "Per favore registrati per modificare il modello __templateName__", + "already_have_sl_account": "Hai già un account __appName__?", + "register": "Registrati", + "password": "Password", + "registering": "Registrazione in corso", + "planned_maintenance": "Manutenzione Pianificata", + "no_planned_maintenance": "Non c'è nessuna manutenzione correntemente pianificata", + "cant_find_page": "Spiacenti, non riusciamo a trovare la pagina che stai cercando.", + "take_me_home": "Portami nella home!", + "no_preview_available": "Spiacenti, non è disponibile nessuna anteprima.", + "no_messages": "Nessun messaggio", + "send_first_message": "Invia il tuo primo messaggio", + "account_not_linked_to_dropbox": "Il tuo account non è collegato a Dropbox", + "update_dropbox_settings": "Aggiorna Impostazioni Dropbox", + "refresh_page_after_starting_free_trial": "Per favore aggiorna questa pagina dopo l'inizio del tuo trial gratuito.", + "checking_dropbox_status": "controllando lo stato di Dropbox", + "dismiss": "Rimuovi", + "new_file": "Nuovo File", + "upload_file": "Carica File", + "create": "Crea", + "creating": "Creazione", + "upload_files": "Carica File(s)", + "sure_you_want_to_delete": "Sei sicuro di voler eliminare per sempre {{ entity.name }}?", + "common": "Comune", + "navigation": "Navigazione", + "editing": "Modifica", + "ok": "OK", + "source": "Sorgente", + "actions": "Azioni", + "copy_project": "Copia Progetto", + "publish_as_template": "Pubblica come Modello", + "sync": "Sincronizza", + "settings": "Impostazioni", + "main_document": "Documento principale", + "off": "Off", + "auto_complete": "Auto-completamento", + "theme": "Tema", + "font_size": "Grandezza Font", + "pdf_viewer": "Visualizzatore PDF", + "built_in": "Built-In", + "native": "nativo", + "show_hotkeys": "Mostra Hotkeys", + "new_name": "Nuovo Nome", + "copying": "copia in corso", + "copy": "Copia", + "compiling": "Compilazione", + "click_here_to_preview_pdf": "Clicca qui per visualizzare un'anteprima del tuo lavoro in PDF.", + "server_error": "Errore Server", + "somthing_went_wrong_compiling": "Spiacenti, qualcosa è andato storto e il tuo progetto non è stato compilato. Si prega di riprovare fra qualche momento.", + "timedout": "Errore di time out", + "proj_timed_out_reason": "Spiacenti, la tua compilazione ha impiegato troppo tempo. Ciò potrebbe essere dovuto ad un elevato numero di immagini ad alta risoluzione, o a molti diagrammi complicati.", + "no_errors_good_job": "Nessun errore, bel lavoro!", + "compile_error": "Errore di Compilazione", + "generic_failed_compile_message": "Spiancenti, il tuo codice LaTeX non ha potuto essere compilato per qualche ragione. Per favore controlla qui sotto gli errori per i dettagli, o visualizza il log completo", + "other_logs_and_files": "Altri log & file", + "view_raw_logs": "Visualizza Log Completi", + "hide_raw_logs": "Nascondi Log Completi", + "clear_cache": "Pulisci cache", + "clear_cache_explanation": "Questo cancellerà tutti i file LaTeX nascosti (.aux, .bbl, ecc) dal nostro server per le compilazioni. In genere non hai bisogno di fare ciò a meno che non hai problemi con dei riferimenti.", + "clear_cache_is_safe": "I file del tuo progetto non saranno eliminati o modificati.", + "clearing": "Pulizia in corso", + "template_description": "Descrizione del Modello", + "project_last_published_at": "Il tuo progetto è stato pubblicato l'ultima volta alle", + "problem_talking_to_publishing_service": "C'è un problema con il nostro servizio di pubblicazione, si prega di riprovare fra qualche minuto", + "unpublishing": "Rimozione pubblicazione", + "republish": "Ri-pubblica", + "publishing": "Pubblicazione", + "share_project": "Condividi Progetto", + "this_project_is_private": "Questo progetto è privato e può essere acceduto solo dalle persone qui sotto.", + "make_public": "Rendi Pubblico", + "this_project_is_public": "Questo progetto è pubblico e può essere modificato da chiunque con la URL.", + "make_private": "Rendi Privato", + "can_edit": "Può Modificare", + "share_with_your_collabs": "Condividi con i tuoi collaboratori", + "share": "Condividi", + "need_to_upgrade_for_more_collabs": "Devi eseguire l'upgrade dell'account per aggiungere più collaboratori", + "make_project_public": "Rendi progetto pubblico", + "make_project_public_consequences": "Se rendi il tuo progetto pubblico chiunque possieda la URL potrà accedervi.", + "allow_public_editing": "Permetti modifica pubblica", + "allow_public_read_only": "Permetti accesso pubblico in sola lettura", + "make_project_private": "Rendi progetto privato", + "make_project_private_consequences": "Se rendi il tuo progetto privato solo le persone con cui scegli di condividerlo potranno avere accesso.", + "need_to_upgrade_for_history": "Devi eseguire l'upgrade dell'account per utilizzare la funzionalità della storia.", + "ask_proj_owner_to_upgrade_for_history": "Per favore chiedi al proprietario del progetto di eseguire l'upgrade per poter utilizzare la funzionalità della storia.", + "anonymous": "Anonimo", + "generic_something_went_wrong": "Spiacenti, qualcosa è andato storto :(", + "restoring": "Ripristinando", + "restore_to_before_these_changes": "Ripristina prima di queste modifiche", + "profile_complete_percentage": "Il tuo profilo è completo al __percentval__%", + "file_has_been_deleted": "__filename__ è stato eliminato", + "sure_you_want_to_restore_before": "Sei sicuro di voler ripristinare __filename__ a prima delle modifiche del __date__?", + "rename_project": "Rinomina Progetto", + "about_to_delete_projects": "Stai per eliminare i seguenti progetti:", + "about_to_leave_projects": "Stai per abbandonare i seguenti progetti:", + "upload_zipped_project": "Carica Progetto Zip", + "upload_a_zipped_project": "Carica un progetto zippato", + "your_profile": "Tuo Profilo", + "institution": "Istituzione", + "role": "Ruolo", + "folders": "Cartelle", + "disconnected": "Disconnesso", + "please_refresh": "Per favore, aggiorna la pagina per continuare.", + "lost_connection": "Connessione Persa", + "reconnecting_in_x_secs": "Riconnessione fra __seconds__ secondi", + "try_now": "Prova Ora", + "reconnecting": "Riconnessione", + "saving_notification_with_seconds": "Salvataggio in corso di __docname__... (__seconds__ secondi di modifiche non salvate)", + "help_us_spread_word": "Aiutaci a spargere la voce su __appName__", + "share_sl_to_get_rewards": "Condividi __appName__ con amici e colleghi e sblocca i premi qui sotto", + "post_on_facebook": "Condividi su Facebook", + "share_us_on_googleplus": "Condividi su Google+", + "email_us_to_your_friends": "Invia una email ai tuoi amici", + "link_to_us": "Crea un collegamento dal tuo sito web", + "direct_link": "Link Diretto", + "sl_gives_you_free_stuff_see_progress_below": "Quando qualcuno inizia a usare __appName__ sotto tuo consiglio ti daremo funzionalità gratuite come ringraziamento! Controlla qui sotto i tuoi progressi.", + "spread_the_word_and_fill_bar": "Spargi la voce e riempi questa barra", + "one_free_collab": "Un collaboratore gratuito", + "three_free_collab": "Tre collaboratori gratuiti", + "free_dropbox_and_history": "Dropbox e storia gratuita", + "you_not_introed_anyone_to_sl": "Non hai ancora presentato __appName__ a nessuno. Inizia a condividere!", + "you_introed_small_number": " Hai presentato __appName__ a __numberOfPeople__. Bel lavoro, ma puoi trovarne altre?", + "you_introed_high_number": " Hai presentato __appName__ a __numberOfPeople__. Bel lavoro!", + "link_to_sl": "Collega a __appName__", + "can_link_to_sl_with_html": "Puoi collegare a __appName__ con il seguente HTML:", + "year": "anno", + "month": "mese", + "subscribe_to_this_plan": "Abbonati a questo piano", + "your_plan": "Il tuo piano", + "your_subscription": "Il tuo abbonamento", + "on_free_trial_expiring_at": "Stai attualmente usando una versione di prova gratuita che scade il __expiresAt__.", + "choose_a_plan_below": "Scegli uno dei piani qui sotto a cui abbonarti.", + "currently_subscribed_to_plan": "Sei attualmente abbonato al piano __planName__.", + "change_plan": "Modifica piano", + "next_payment_of_x_collectected_on_y": "Il prossimo pagamento di __paymentAmmount__ sarà riscosso il __collectionDate__", + "update_your_billing_details": "Aggiorna Dettagli di Pagamento", + "subscription_canceled_and_terminate_on_x": " Il tuo abbonamento è stato annullato e terminerà il __terminateDate__. Non saranno addebitati ulteriori costi.", + "your_subscription_has_expired": "Il tuo abbonamento è scaduto.", + "create_new_subscription": "Crea Nuovo Abbonamento", + "problem_with_subscription_contact_us": "C'è un problema con il tuo abbonamento. Ti preghiamo di contattarci per altre informazioni.", + "manage_group": "Gestisci Gruppo", + "loading_billing_form": "Caricamento dettagli di addebito", + "you_have_added_x_of_group_size_y": "Hai aggiunto __addedUsersSize__ membri su __groupSize__ disponibili.", + "remove_from_group": "Rimuovi da gruppo", + "group_account": "Account di Gruppo", + "registered": "Registrato", + "no_members": "Nessun membro", + "add_more_members": "Aggiungi membri", + "add": "Aggiungi", + "thanks_for_subscribing": "Grazie per esserti abbonato!", + "your_card_will_be_charged_soon": "La tua carta verrà addebitata a breve.", + "if_you_dont_want_to_be_charged": "Se non vuoi altri addebiti ", + "add_your_first_group_member_now": "Aggiungi ora i primi membri del gruppo", + "thanks_for_subscribing_you_help_sl": "Grazie per esserti abbonato al piano __planName__. E' il supporto di persone come te che permettono a __appName__ di continuare a crescere e migliorare.", + "back_to_your_projects": "Indietro ai tuoi progetti", + "goes_straight_to_our_inboxes": "Finirà direttamente a entrambe le nostre email", + "need_anything_contact_us_at": "Per qualsiasi bisogno puoi contattarci direttamente al", + "regards": "Saluti", + "about": "About", + "comment": "Commento", + "restricted_no_permission": "Vietato, ci dispiace ma non hai i permessi per caricare questa pagina.", + "online_latex_editor": "Editor LaTeX online", + "meet_team_behind_latex_editor": "Ecco il team che lavora al tuo editor LaTeX preferito.", + "follow_me_on_twitter": "Seguimi su Twitter", + "motivation": "Motivazione", + "evolved": "Evoluto", + "the_easy_online_collab_latex_editor": "L'editor LaTeX facile da usare, online, collaborativo", + "get_started_now": "Inizia adesso", + "sl_used_over_x_people_at": "__appName__ è utilizzato da più di __numberOfUsers__ studenti e accademici a:", + "collaboration": "Collaborazione", + "work_on_single_version": "Lavorate insieme su una singola versione", + "view_collab_edits": "Visualizza le modifiche altrui ", + "ease_of_use": " Facilità d'Uso", + "no_complicated_latex_install": "Nessuna complicata installazione LaTeX", + "all_packages_and_templates": "Tutti i pacchetti e __templatesLink__ di cui hai bisogno", + "document_history": "Storia dei documenti", + "see_what_has_been": "Guarda cosa è stato ", + "added": "aggiunto", + "and": "e", + "removed": "rimosso", + "restore_to_any_older_version": "Ripristina a una versione precedente", + "work_from_anywhere": "Lavora da ovunque", + "acces_work_from_anywhere": "Accedi al tuo lavoro da qualsiasi parte del mondo", + "work_offline_and_sync_with_dropbox": "Lavora offline e sincronizza i tuoi file da Dropbox e GitHub", + "over": "su", + "view_templates": "Visualizza modelli", + "nothing_to_install_ready_to_go": "Non c'è niente di complicato o difficile da installare, e puoi __start_now__, anche se non l'hai mai visto prima. __appName__ è un ambiente LaTeX completo e pronto che viene eseguito sui nostri server.", + "start_using_latex_now": "iniziare a usare LaTeX da subito", + "get_same_latex_setup": "Con __appName__ hai le stesse impostazioni LaTeX dovunque tu sia. Lavorando con i tuoi colleghi e studenti su __appName__, sai che non avrai nessuna inconsistenza fra versioni o conflitti fra pacchetti.", + "support_lots_of_features": "Supportiamo quasi tutte le funzionalità di LaTeX, inclusa l'aggiunta di immagini, bibliografie, equazioni e molto altro! Leggi di tutto ciò che puoi fare con __appName__ nelle nostre __help_guides_link__", + "latex_guides": "guide a LaTeX", + "reset_password": "Ripristino Password", + "set_password": "Imposta Password", + "updating_site": "Aggiornamento del Sito", + "bonus_please_recommend_us": "Bonus - Per favore raccomandaci", + "admin": "admin", + "subscribe": "Abbonati", + "update_billing_details": "Aggiorna Dettagli Pagamento", + "thank_you": "Grazie", + "group_admin": "Amministratore Gruppo", + "all_templates": "Tutti i Modelli", + "your_settings": "Tue impostazioni", + "maintenance": "Manutenzione", + "to_many_login_requests_2_mins": "Questo account ha ricevuto troppe richieste di login. Per favore, attendi 2 minuti prima di riprovare ad entrare", + "email_or_password_wrong_try_again": "La tua email o password è errata.", + "rate_limit_hit_wait": "Raggiunto limite massimo. Per favore, attendi un po' prima di riprovare", + "problem_changing_email_address": "C'è stato un problema durante la modifica del tuo indirizzo email. Per favore, riprova fra qualche momento. Se il problema persiste non esitare a contattarci.", + "single_version_easy_collab_blurb": "__appName__ fa sì che tu sia sempre aggiornato con i tuoi collaboratori e con ciò che fanno. Esiste una sola versione principale di ogni documento a cui ognuno ha accesso. E' impossibile fare modifiche conflittuali, e non dovrai aspettare che i tuoi colleghi ti inviino le ultime bozze prima che tu possa continuare a lavorare.", + "can_see_collabs_type_blurb": "Non c'è problema se più persone vogliono lavorare su uno stesso documento in uno stesso momento. Puoi vedere dove i tuoi colleghi stanno scrivendo direttamente nell'editor, e le loro modifiche vengono mostrate immediatamente sul tuo schermo.", + "work_directly_with_collabs": "Lavora direttamente con i tuoi collaboratori", + "work_with_word_users": "Lavora con utenti Word", + "work_with_word_users_blurb": "E' così facile iniziare con __appName__ che potrai invitare i tuoi colleghi che non usano LaTeX affinché contribuiscano direttamente ai tuoi documenti. Saranno produttivi dal primo giorno e potranno imparare un po' di LaTeX man mano che procedono.", + "view_which_changes": "Visualizza quali modifiche sono state", + "sl_included_history_of_changes_blurb": "__appName__ include una storia di tutte le tue modifiche così che tu possa esattamente vedere chi ha modificato cosa, e quando. Questo rende estremamente facile mantenersi aggiornati con tutti i progressi fatti dai tuoi collaboratori e permette di revisionare gli ultimi lavori.", + "can_revert_back_blurb": "Sia in collaborazione che in proprio, si possono fare errori. Ritornare a versioni precedenti è semplice e rimuove il rischio di perdere lavoro o rimpiangere una modifica.", + "start_using_sl_now": "Inizia a usare __appName__ adesso", + "over_x_templates_easy_getting_started": "Esistono __over__ 400 __templates__ nella nostra galleria di modelli, ed è quindi molto facile iniziare, sia che tu stia scrivendo un articolo, una tesi, un CV o qualcos altro.", + "done": "Fatto", + "change": "Cambia", + "page_not_found": "Pagina Non Trovata", + "please_see_help_for_more_info": "Per favore, leggi la nostra guida di aiuto per più informazioni", + "this_project_will_appear_in_your_dropbox_folder_at": "Questo progetto apparirà nella tua cartella Dropbox in ", + "member_of_group_subscription": "Sei un membro di un abbonamento di gruppo gestito da __admin_email__. Per favore contattalo/la per gestire il tuo abbonamento. \n", + "about_henry_oswald": "è un software engineer che vive a Londra. Ha costruito il prototipo originale di __appName__ ed è stato responsabile della realizzazione di una piattaforma stabile e scalabile. Henry è un forte sostenitore del Test Driven Development e fa in modo tale da mantenere il codice di __appName__ pulito e facile da manutenere.", + "about_james_allen": "ha un PhD in fisica teorica ed è appassionato di LaTeX. Ha creato uno dei primi editor LaTeX online, ScribTeX, e ha preso parte nello sviluppo delle tecnologie che hanno reso possibile __appName__.", + "two_strong_principles_behind_sl": "Ci sono due forti principi dietro il nostro lavoro con __appName__:", + "want_to_improve_workflow_of_as_many_people_as_possible": "Vogliamo migliorare il lavoro del maggior numero possibile di persone.", + "detail_on_improve_peoples_workflow": "LaTeX è notoriamente difficile da utilizzare, e la collaborazione è sempre difficile da coordinare. Crediamo di aver sviluppato delle importanti soluzioni per aiutare le persone che affrontano questi problemi, e vogliamo essere sicuri che __appName__ sia accessibile al maggior numero possibile di utenti. Abbiamo tentato di mantenere i nostri prezzi bassi, e abbiamo rilasciato gran parte di __appName__ come open source, così che ognuno possa eseguirlo su un proprio host.", + "want_to_create_sustainable_lasting_legacy": "Vogliamo creare un lascito sostenibile e duraturo.", + "details_on_legacy": "Lo sviluppo e la manutenzione di un prodotto come __appName__ richiedono molto tempo e lavoro, ed è quindi importante poter trovare un modello di business che supporti tutto ciò, sia adesso che nel lungo termine. Non vogliamo che __appName__ dipenda da finanziamenti esterni o che scompaia a causa di un modello di business fallimentare. Sono contento nel dire che, al momento, siamo in grado di gestire __appName__ in maniera profittevole e sostenibile, e ci aspettiamo di continuare a far questo nel lungo termine.", + "get_in_touch": "Contattaci", + "want_to_hear_from_you_email_us_at": "Ci piacerebbe parlare di __appName__ o di ciò che facciamo con chiunque utilizzi __appName__. Puoi contattarci a ", + "cant_find_email": "Spiacenti, quell'indirizzo email non è registrato.", + "plans_amper_pricing": "Piani & Costi", + "documentation": "Documentazione", + "account": "Account", + "subscription": "Abbonamento", + "log_out": "Log Out", + "en": "Inglese", + "pt": "Portoghese", + "es": "Spagnolo", + "fr": "Francese", + "de": "Tedesco", + "it": "Italiano", + "da": "Danese", + "sv": "Svedese", + "no": "Norvegese", + "nl": "Olandese", + "pl": "Polacco", + "ru": "Russo", + "uk": "Ucraino", + "ro": "Rumeno", + "click_here_to_view_sl_in_lng": "Clicca qui per usare __appName__ in __lngName__", + "language": "Lingua", + "upload": "Carica", + "menu": "Menu", + "full_screen": "Schermo intero", + "logs_and_output_files": "Log e file di output", + "download_pdf": "Scarica PDF", + "split_screen": "Dividi schermo", + "clear_cached_files": "Pulisci file in cache", + "go_to_code_location_in_pdf": "Vai a riga in PDF", + "please_compile_pdf_before_download": "Per favore, compila il progetto prima di scariare il PDF", + "remove_collaborator": "Rimuovi collaboratore", + "add_to_folders": "Aggiungi a cartelle", + "download_zip_file": "Scarica file .zip", + "price": "Costo", + "close": "Chiudi", + "keybindings": "Associazioni tasti", + "restricted": "Limitato", + "start_x_day_trial": "Inizia il Tuo Periodo di Prova Gratuita di __len__ Giorni Oggi!", + "buy_now": "Compra Ora!", + "cs": "Ceco", + "view_all": "Visualizza Tutto", + "terms": "Termini", + "privacy": "Privacy", + "contact": "Contatti", + "change_to_this_plan": "Cambia a questo piano", + "processing": "processamento", + "sure_you_want_to_change_plan": "Sei sicuro di voler cambiare il piano a __planName__?", + "move_to_annual_billing": "Cambia ad Addebitamento Annuale", + "annual_billing_enabled": "Addebitamento annuale abilitato", + "move_to_annual_billing_now": "Cambia ad addebitamento annuale subito", + "change_to_annual_billing_and_save": "Ottieni uno sconto del __percentage__ con l'addebitamento annuale. Se cambi adesso risparmierai __yearlySaving__ all'anno.", + "missing_template_question": "Modello Mancante?", + "tell_us_about_the_template": "Se manca un modello puoi: Inviarci una copia del modello, un url __appName__ al modello, oppure puoi farci sapere dove possiamo trovarlo. Per favore, facci anche avere qualche informazione per la descrizione del modello.", + "email_us": "Contatto email", + "this_project_is_public_read_only": "Questo progetto è pubblico e può essere visualizzato, ma non modificato, da chiunque abbia la URL", + "tr": "Turco", + "select_files": "Seleziona file", + "drag_files": "trascina file", + "upload_failed_sorry": "Spiacenti, caricamento fallito :(", + "inserting_files": "Inserimento del file...", + "password_reset_token_expired": "Il tuo codice di password reset è scaduto. Per favore, richiedi una nuova password per email e segui il link che ti verrà fornito.", + "merge_project_with_github": "Unisci Progetto con GitHub", + "pull_github_changes_into_sharelatex": "Aggiorna da modifiche in GitHub verso __appName__", + "push_sharelatex_changes_to_github": "Invia le modifiche __appName__ a GitHub", + "features": "Caratteristiche", + "commit": "Commit", + "commiting": "Committing", + "importing_and_merging_changes_in_github": "Importazione e unione modifiche in GitHub", + "upgrade_for_faster_compiles": "Esegui l'upgrade per compilazioni più veloci e per aumentare il limite di timeout", + "free_accounts_have_timeout_upgrade_to_increase": "Gli account gratuiti hanno un limite di timeout di un minuto. Esegui l'upgrade per aumentare il limite.", + "learn_how_to_make_documents_compile_quickly": "Impara a rendere le tue compilazioni più veloci.", + "zh-CN": "Cinese", + "cn": "Cinese (Semplificato)", + "sync_to_github": "Sincronizza con GitHub", + "sync_to_dropbox_and_github": "Sincronizza con Dropbox e GitHub", + "project_too_large": "Progetto troppo grande", + "project_too_large_please_reduce": "Questo progetto contiene troppo testo, per favore prova a ridurlo.", + "please_ask_the_project_owner_to_link_to_github": "Chiedi al proprietario del progetto di collegare questo progetto a un repository GitHub", + "go_to_pdf_location_in_code": "Vai a locazione PDF in codice", + "ko": "Coreano", + "ja": "Giapponese", + "about_brian_gough": "è uno sviluppatore software e un ex fisico teorico-energetico a Fermilab e a Los Alamos. Ha pubblicato per molti anni manuali software gratuiti scritti con TeX e LaTeX, ed è anche stato il manutentore della GNU Scientific Library.", + "first_few_days_free": "Primi __trialLen__ giorni gratuiti", + "every": "ogni", + "credit_card": "Carta di Credito", + "credit_card_number": "Numero Carta di Credito", + "invalid": "Invalido", + "expiry": "Data Scadenza", + "january": "Gennaio", + "february": "Febbraio", + "march": "Marzo", + "april": "Aprile", + "may": "Maggio", + "june": "Giugno", + "july": "Luglio", + "august": "Agosto", + "september": "Settembre", + "october": "Ottobre", + "november": "Novembre", + "december": "Dicembre", + "zip_post_code": "CAP / Codice Postale", + "city": "Città", + "address": "Indirizzo", + "coupon_code": "codice coupon", + "country": "Nazione", + "billing_address": "Indirizzo di Fatturazione", + "upgrade_now": "Effettua l'Upgrade", + "state": "Nazione", + "vat_number": "Partita IVA", + "you_have_joined": "Ti sei unito a __groupName__", + "claim_premium_account": "Hai ottenuto un account premium fornito da __groupName__.", + "you_are_invited_to_group": " Sei stato invitato ad unirti a __groupName__.", + "you_can_claim_premium_account": "Puoi richiedere un account premium che sarà fornito da __groupName__ tramite verifica email", + "not_now": "Non adesso", + "verify_email_join_group": "Verifica email e unisciti al Gruppo", + "check_email_to_complete_group": "Per favore, controlla la tua email per completare l'adesione al gruppo", + "verify_email_address": "Verifica Indirizzo Email", + "group_provides_you_with_premium_account": "__groupName__ ti fornisce un account premium. Verifica la tua email per eseguire l'upgrade del tuo account.", + "check_email_to_complete_the_upgrade": "Per favore, controlla la tua email per completare l'upgrade", + "email_link_expired": "Collegamento email scaduto, per favore richiedine un altro.", + "services": "Servizi", + "about_shane_kilkelly": "è uno sviluppatore software e vive a Edinburgo. Shane è un forte sostenitore di Programmazione Funzionale e Test Driven Development, e ci tiene molto a produrre software di qualità.", + "this_is_your_template": "Questo è il template del tuo progetto", + "links": "Link", + "account_settings": "Impostazioni Account", + "search_projects": "Cerca progetti", + "clone_project": "Clona Progetto", + "delete_project": "Elimina Progetto", + "download_zip": "Scarica Zip", + "new_project": "Nuovo Progetto", + "blank_project": "Progetto Vuoto", + "example_project": "Progetto di Esempio", + "from_template": "Da Modello", + "cv_or_resume": "CV o Resume", + "cover_letter": "Lettera di Presentazione", + "journal_article": "Articolo di Journal", + "presentation": "Presentazione", + "thesis": "Tesi", + "bibliographies": "Bibliografie", + "terms_of_service": "Termini di Servizio", + "privacy_policy": "Privacy Policy", + "plans_and_pricing": "Piani e Costi", + "university_licences": "Licenze Universitarie", + "security": "Sicurezza", + "contact_us": "Contattaci", + "thanks": "Grazie", + "blog": "Blog", + "latex_editor": "LaTeX Editor", + "get_free_stuff": "Componenti gratuite", + "chat": "Chat", + "your_message": "Tuo Messaggio", + "loading": "Caricamento", + "connecting": "Connessione", + "recompile": "Ricompila", + "download": "Scarica", + "email": "Email", + "owner": "Proprietario", + "read_and_write": "Leggi e Scrivi", + "read_only": "Sola Lettura", + "publish": "Pubblica", + "view_in_template_gallery": "Visualizza nella galleria modelli", + "unpublish": "De-pubblica", + "hotkeys": "Scorciatoie", + "saving": "Salvataggio", + "cancel": "Annulla", + "project_name": "Nome Progetto", + "root_document": "Documento Radice", + "spell_check": "Controllo Lingua", + "compiler": "Compilatore", + "private": "Privato", + "public": "Pubblico", + "delete_forever": "Elimina per sempre", + "support_and_feedback": "Supporto e feedback", + "help": "Aiuto", + "latex_templates": "Modelli LaTeX", + "info": "Info", + "latex_help_guide": "Guida LaTeX", + "choose_your_plan": "Scegli il tuo piano", + "indvidual_plans": "Piani Individuali", + "free_forever": "Gratis per sempre", + "low_priority_compile": "Compilazione a bassa priorità", + "unlimited_projects": "Progetti illimitati", + "unlimited_compiles": "Compilazioni illimitate", + "full_history_of_changes": "Storia completa delle modifiche", + "highest_priority_compiling": "Compilazione a massima priorità", + "dropbox_sync": "Sincronizzazione Dropbox", + "beta": "Beta", + "sign_up_now": "Registrati Ora", + "annual": "Annuale", + "half_price_student": "Piani a Metà Prezzo per Studenti", + "about_us": "About Us", + "loading_recent_github_commits": "Caricamento di commit recenti", + "no_new_commits_in_github": "Nessun nuovo commit in GitHub dall'ultima unione.", + "dropbox_sync_description": "Mantieni i tuoi progetti __appName__ in sincrono con il tuo Dropbox. Le modifiche in __appName__ saranno automaticamente inviate nel tuo Dropbox, e viceversa.", + "github_sync_description": "Con GitHub Sync puoi collegare i tuoi progetti __appName__ a repository GitHub. Crea nuovi commit da __appName__ e unisci con commit fatti offline o su GitHub.", + "github_import_description": "Con GitHub Sync puoi importare i tuoi repository GitHub in __appName__. Crea nuovi commit da __appName__ e unisci con commit fatti offline o su GitHub.", + "link_to_github_description": "Devi autorizzare __appName__ ad accedere al tuo account GitHub per permetterci di sincronizzare i tuoi progetti.", + "unlink": "Scollega", + "unlink_github_warning": "Qualsiasi progetto sincronizzato con GitHub sarà disconnesso e non sarà più mantenuto sincronizzato con GitHub. Sei sicuro di voler scollegare il tuo account GitHub?", + "github_account_successfully_linked": "Account GitHub Collegato con Successo!", + "github_successfully_linked_description": "Grazie, abbiamo collegato con successo il tuo account GitHub a __appName__ . Adesso puoi esportare i progetti __appName__ in GitHub, o importarli dai tuoi repository GitHub.", + "import_from_github": "Importa da GitHub", + "github_sync_error": "Spiacenti, c'è stato un errore con la comunicazione con GitHub. Si prega di riprovare fra poco.", + "loading_github_repositories": "Caricamento dei tuoi repository GitHub", + "select_github_repository": "Seleziona un repository GitHub da importare in __appName__.", + "import_to_sharelatex": "Importa in __appName__", + "importing": "Importazione", + "github_sync": "Sincronizzazione GitHub", + "checking_project_github_status": "Controllo dello stato del progetto GitHub", + "account_not_linked_to_github": "Il tuo account non è collegato a GitHub", + "project_not_linked_to_github": "Questo progetto non è collegato ad un repository GitHub. Puoi creare un repository apposito in GitHub:", + "create_project_in_github": "Crea un repository GitHub", + "project_synced_with_git_repo_at": "Questo progetto è sincronizzato con il repository GitHub a", + "recent_commits_in_github": "Commit recenti in GitHub", + "sync_project_to_github": "Sincronizza progetto in GitHub", + "sync_project_to_github_explanation": "Tutte le modifiche fatte in __appName__ saranno inviate e unite con tutti gli aggiornamenti in GitHub.", + "github_merge_failed": "Le tue modifiche in __appName__ e GitHub non possono essere unite automaticamente. Per favore, unisci manualmente il branch __sharelatex_branch__ con il branch __master_branch__ in git. Clicca qui sotto per continuare dopo aver apportato le modifiche manuali.", + "continue_github_merge": "Ho eseguito l'unione manuale. Continua", + "export_project_to_github": "Esporta Progetto in GitHub", + "github_validation_check": "Per favore, controlla che il nome del repository sia valido, e che tu abbia i permessi per crearlo.", + "repository_name": "Nome Repository", + "optional": "Opzionale", + "github_public_description": "Chiunque può visualizzare il repository. Puoi scegliere chi può eseguire commit.", + "github_commit_message_placeholder": "Messaggio di commit per le modifiche effettuate in __appName__...", + "merge": "Unisci", + "merging": "Unione", + "github_account_is_linked": "Il tuo account GitHub è stato collegato con successo.", + "unlink_github": "Scollega il tuo account GitHub", + "link_to_github": "Collega il tuo account GitHub", + "github_integration": "Integrazione GitHub", + "github_is_premium": "La sincronizzazione GitHub è una funzionalità premium" +} \ No newline at end of file diff --git a/services/web/locales/ja.json b/services/web/locales/ja.json new file mode 100644 index 0000000000..988829c381 --- /dev/null +++ b/services/web/locales/ja.json @@ -0,0 +1,764 @@ +{ + "invalid_password": "パスワードの入力に誤りがあります", + "error": "エラー", + "other_actions": "その他の操作", + "email_sent": "メールが送信されました", + "create_first_admin_account": "初めての管理者アカウントの作成", + "ldap": "LDAP", + "status_checks": "ステータスの確認", + "editor_resources": "エディターの資源", + "checking": "確認中", + "cannot_invite_non_user": "招待を送信することができません。受信者が__appName__アカウントを所持している必要があります。", + "log_in_with": "__provider__ でログイン", + "return_to_login_page": "ログインページに戻る", + "login_failed": "ログイン失敗", + "delete_account_warning_message_3": "プロジェクトや設定などの アカウントのデータをすべて削除 しようとしています。続行するには下のボックスにお客さまのアカウントのメールアドレスとパスワードを入力してください。", + "delete_account_warning_message_2": "プロジェクトや設定などの アカウントデータをすべて削除 しようとしています。続行するには下のボックスにお客さまのアカウントのメールアドレスを入力してください。", + "your_sessions": "あなたのセッション", + "clear_sessions_description": "これはお客さまのアカウントでアクティブなセッション(ログイン)の一覧です。現在のセッションは含まれていません。下の「セッションのクリア」ボタンをクリックしてログアウトします。", + "no_other_sessions": "他にアクティブなセッションはありません", + "ip_address": "IPアドレス", + "session_created_at": "作成されたセッション", + "clear_sessions": "セッションのクリア", + "clear_sessions_success": "セッションがクリアされました", + "sessions": "セッション", + "manage_sessions": "セッションの管理", + "syntax_validation": "コードチェック", + "history": "履歴", + "joining": "参加中", + "open_project": "プロジェクトを開く", + "files_cannot_include_invalid_characters": "ファイルには「*」や「/」などの文字を含めることはできません", + "invalid_file_name": "無効なファイル名", + "autocomplete_references": "参照オートコンプリート(\\cite{}ブロック内)", + "autocomplete": "オートコンプリート", + "failed_compile_check": "コンパイルする前に修正すべき重大なシンタックスエラーがプロジェクトにあるようです", + "failed_compile_check_try": "とにかくコンパイルを実行", + "failed_compile_option_or": "あるいは", + "failed_compile_check_ignore": "シンタックスチェックを終了", + "compile_time_checks": "シンタックスチェック", + "stop_on_validation_error": "コンパイルの前にシンタックスをチェック", + "ignore_validation_errors": "シンタックスをチェックしない", + "run_syntax_check_now": "今すぐシンタックスチェックを実行", + "your_billing_details_were_saved": "お客さまの請求書情報が保存されました", + "security_code": "セキュリティコード", + "paypal_upgrade": "アップグレードするには、下のボタンをクリックし、メールアドレスとパスワードを入力してPayPalにログインしてください。", + "upgrade_cc_btn": "今すぐアップグレード、支払いは1週間後", + "upgrade_paypal_btn": "続行", + "notification_project_invite": "__userName____projectName__ への参加を求めていますプロジェクトに参加", + "file_restored": "ファイル(__filename__)が復元されました。", + "file_restored_back_to_editor": "エディターに戻ってもう一度作業をすることができます。", + "file_restored_back_to_editor_btn": "エディターに戻る", + "view_project": "プロジェクトの表示", + "join_project": "プロジェクトに参加", + "invite_not_accepted": "招待はまだ承認されていません", + "resend": "再送信", + "syntax_check": "シンタックスチェック", + "revoke_invite": "招待のキャンセル", + "pending": "承認待ち", + "invite_not_valid": "これは有効なプロジェクト招待ではありません", + "invite_not_valid_description": "招待の有効期限が切れている可能性があります。プロジェクトオーナーにお問い合わせください", + "accepting_invite_as": "この招待を以下のメールアドレスで承認します", + "accept_invite": "招待の承認", + "log_hint_ask_extra_feedback": "このヒントが役に立たなかった", + "log_hint_extra_feedback_didnt_understand": "ヒントが理解できませんでした", + "log_hint_extra_feedback_not_applicable": "このソリューションをドキュメントに適用できません", + "log_hint_extra_feedback_incorrect": "これではエラーを修正できません", + "log_hint_extra_feedback_other": "その他:", + "log_hint_extra_feedback_submit": "提出", + "if_you_are_registered": "すでに登録している場合", + "stop_compile": "コンパイルの停止", + "terminated": "コンパイルがキャンセルされました", + "compile_terminated_by_user": "「コンパイルの中止」ボタンを押してコンパイルがキャンセルされました。RAWログを表示して、コンパイルが停止した場所を確認することができます。", + "site_description": "簡単に使用できるオンラインLaTeXエディター。インストール不要、リアルタイムコラボレーション、バージョン管理、何百種類のLaTeXテンプレートなど多数の機能。", + "knowledge_base": "知識ベース", + "contact_message_label": "メッセージ", + "kb_suggestions_enquiry": "当社の __kbLink__ を確認しましたか?", + "answer_yes": "はい", + "answer_no": "いいえ", + "log_hint_extra_info": "詳しく見る", + "log_hint_feedback_label": "このヒントは役に立ちましたか?", + "log_hint_feedback_gratitude": "ご意見ありがとうございます!", + "recompile_pdf": "PDFを再コンパイル", + "about_paulo_reis": "ポルトガルのアヴェイロ在住のフロントエンドソフトウェア開発者およびユーザーエクスペリエンス研究者。パウロはユーザーエクスペリエンスの博士号を持ち、コンセプトやテスト・認証、デザインや実装において、人の使い方に合わせてテクノロジーを応用させることに情熱を傾けています。", + "login_or_password_wrong_try_again": "ログイン情報またはパスワードが正しくありません。再度お試しください", + "manage_beta_program_membership": "ベータプログラムメンバーシップを管理", + "beta_program_opt_out_action": "ベータプログラムからオプトアウト", + "disable_beta": "ベータを無効", + "beta_program_badge_description": "__appName__の使用中は、ベータ機能にこのバッジが付いています:", + "beta_program_current_beta_features_description": "以下の新機能はベータ版で現在テスト中です:", + "enable_beta": "ベータを許可", + "user_in_beta_program": "ユーザーはベータプログラムに参加しています", + "beta_program_already_participating": "ベータプログラムに参加しています。", + "sharelatex_beta_program": "__appName__ベータプログラム", + "beta_program_benefits": "当社は絶えず__appName__を改善しています。当社のベータプログラムに参加することによって、新しい機能にいち早くアクセスし、当社がお客さまのニーズをより良く理解できるようサポートすることができます。", + "beta_program_opt_in_action": "ベータプログラムにオプトイン", + "conflicting_paths_found": "競合パスが見つかりました", + "following_paths_conflict": "次のファイルとフォルダーは同一のパスと競合しています", + "open_a_file_on_the_left": "左のファイルを開く", + "reference_error_relink_hint": "エラーが継続して発生する場合は、こちらでアカウントを再リンク付けしてください:", + "pdf_rendering_error": "PDFレンダリングエラー", + "something_went_wrong_rendering_pdf": "このPDFのレンダリング中にエラーが発生しました。", + "mendeley_reference_loading_error_expired": "Mendeleyトークンの期限が切れました。アカウントを再リンク付けしてください", + "zotero_reference_loading_error_expired": "Zoteroトークンの期限が切れました。アカウントを再リンクしてください", + "mendeley_reference_loading_error_forbidden": "Mendeleyのリファレンスを読み込むことができませんでした。アカウントを再リンクして、再度お試しください", + "zotero_reference_loading_error_forbidden": "Zoteroのリファレンスを読み込むことができませんでした。アカウントを再リンクして、再度お試しください", + "mendeley_integration": "Mendeley統合", + "mendeley_sync_description": "Mendeleyを統合すると、Mendeleyから__appName__プロジェクトにリファレンスをインポートすることができます", + "mendeley_is_premium": "Mendeley統合はプレミアム機能です", + "link_to_mendeley": "Mendeleyのリンク", + "unlink_to_mendeley": "Mendeleyのリンク解除", + "mendeley_reference_loading": "Mendeleyからリファレンスを読み込み中", + "mendeley_reference_loading_success": "Mendeleyからリファレンスを読み込みました", + "mendeley_reference_loading_error": "エラー。Mendeleyからリファレンスを読み込むことができませんでした", + "zotero_integration": "Zotero統合。", + "zotero_sync_description": "Zoteroを統合すると、Zoteroから__appName__プロジェクトにリファレンスをインポートすることができます。", + "zotero_is_premium": "Zotero統合はプレミアム機能です", + "link_to_zotero": "Zoteroのリンク", + "unlink_to_zotero": "Zoteroのリンク解除", + "zotero_reference_loading": "Zoteroからリファレンスの読み込み中", + "zotero_reference_loading_success": "Zoteroからリファレンスを読み込みました", + "zotero_reference_loading_error": "エラー。Zoteroからリファレンスを読み込むことができませんでした", + "reference_import_button": "リファレンスをインポート", + "unlink_reference": "リファレンスプロバイダーのリンク解除", + "unlink_warning_reference": "警告:このプロバイダーからアカウントをリンク解除すると、リファレンスをプロジェクトにインポートすることができなくなります。", + "mendeley": "Mendeley", + "zotero": "Zotero", + "suggest_new_doc": "新しいドキュメントの提案", + "request_sent_thank_you": "リクエストが送信されました。ありがとうございます。", + "suggestion": "提案", + "project_url": "影響を受けたプロジェクトURL", + "subject": "件名", + "confirm": "確認", + "cancel_personal_subscription_first": "個人購読をすでに申し込んでいます。これをキャンセルしてグループライセンスに参加しますか?", + "delete_projects": "プロジェクトの削除", + "leave_projects": "プロジェクトを退出", + "delete_and_leave_projects": "プロジェクトを削除・退出", + "too_recently_compiled": "プロジェクトは最近コンパイルされました。そのため、このコンパイルはスキップされました。", + "clsi_maintenance": "コンパイルサーバーはメンテナンス中です。間もなく復旧します。", + "references_search_hint": "Ctrl+Spaceを押して検索", + "ask_proj_owner_to_upgrade_for_references_search": "アップグレードして参照検索機能を使用するには、プロジェクトオーナーにお問い合わせください。", + "ask_proj_owner_to_upgrade_for_faster_compiles": "アップグレードしてコンパイルをすばやくしタイムアウト制限を上げるには、プロジェクトオーナーにお問い合わせください。", + "search_bib_files": "作成者、タイトル、年ごとに検索", + "leave_group": "グループを退出", + "leave_now": "今すぐ退出", + "sure_you_want_to_leave_group": "このグループから本当に退出しますか?", + "notification_group_invite": "__groupName__への参加を招待されました。こちらから参加。", + "search_references": "このプロジェクトの.bibファイルを検索", + "no_search_results": "検索結果なし", + "email_already_registered": "このメールアドレスはすでに登録されています", + "compile_mode": "コンパイルモード", + "normal": "ノーマル", + "fast": "ファスト", + "rename_folder": "フォルダーの名前の変更", + "delete_folder": "フォルダーの削除", + "about_to_delete_folder": "次のフォルダーを削除しようとしています(フォルダーに含まれるプロジェクトは削除されません):", + "to_modify_your_subscription_go_to": "購読を変更するには、次に進んでください", + "manage_subscription": "購読管理", + "activate_account": "アカウントのアクティベート", + "yes_please": "はい、お願いします!", + "nearly_activated": "あと一歩であなたの__appName__アカウントがアクティべートされます!", + "please_set_a_password": "パスワードを設定してください", + "activation_token_expired": "アクティベーショントークンの期限が切れています。新しいトークンが必要となります。", + "activate": "アクティベート", + "activating": "アクティベート中", + "ill_take_it": "これにします!", + "cancel_your_subscription": "購読を中止", + "no_thanks_cancel_now": "結構です - 今すぐキャンセルします", + "cancel_my_account": "購読をキャンセル", + "sure_you_want_to_cancel": "キャンセルしてもよろしいですか?", + "i_want_to_stay": "留まります", + "have_more_days_to_try": "トライアルがまだ__days__ 日残っています!", + "interested_in_cheaper_plan": "よりお手頃な__price__生徒プランに興味がありますか?", + "session_expired_redirecting_to_login": "セッション期限切れ。__seconds__秒後にログインぺージにリダイレクトします", + "maximum_files_uploaded_together": "最大 __max__ファイルを一緒にアップロード", + "too_many_files_uploaded_throttled_short_period": "あまりにも多くのファイルがアップロードされました。アップロードがしばらく調整されます。", + "compile_larger_projects": "大きなプロジェクトをコンパイル", + "upgrade_to_get_feature": "__feature__のアップグレードを取得、プラス:", + "new_group": "新しいグループ", + "about_to_delete_groups": "次のグループを削除しようとしています:", + "removing": "削除中", + "adding": "追加中", + "groups": "グループ", + "rename_group": "グループの名前の変更", + "renaming": "名前の変更中", + "create_group": "グループの作成", + "delete_group": "グループの削除", + "delete_groups": "グループの削除", + "your_groups": "あなたのグループ", + "group_name": "グループ名", + "no_groups": "グループなし", + "Subscription": "購読", + "Documentation": "ドキュメンテーション", + "Universities": "大学", + "Account Settings": "アカウントの設定", + "Projects": "プロジェクト", + "Account": "アカウント", + "global": "グローバル", + "Terms": "規約", + "Security": "セキュリティ", + "About": "概要", + "editor_disconected_click_to_reconnect": "エディターの接続が切れました。どこかをクリックして再接続。", + "word_count": "文字数", + "please_compile_pdf_before_word_count": "文字数を計算する前にプロジェクトをコンパイルしてください", + "total_words": "合計文字数", + "headers": "ヘッダー", + "math_inline": "マスインライン", + "math_display": "マスディスプレイ", + "connected_users": "接続したユーザー", + "projects": "プロジェクト", + "upload_project": "プロジェクトのアップロード", + "all_projects": "すべてのプロジェクト", + "your_projects": "あなたのプロジェクト", + "shared_with_you": "シェアされたプロジェクト", + "deleted_projects": "削除されたプロジェクト", + "templates": "テンプレート", + "new_folder": "新規フォルダ", + "create_your_first_project": "最初のプロジェクトを作成!", + "complete": "完了", + "on_free_sl": "__appName__ の無料版を使用しています", + "upgrade": "アップグレード", + "or_unlock_features_bonus": "あるいは無料ボーナス機能を獲得", + "sharing_sl": "__appName__ を共有中", + "add_to_folder": "フォルダに追加", + "create_new_folder": "新規フォルダの作成", + "more": "さらに", + "rename": "名前の変更", + "make_copy": "コピーを作成", + "restore": "戻す", + "title": "タイトル", + "last_modified": "最終変更", + "no_projects": "プロジェクトはありません", + "welcome_to_sl": "__appName__ にようこそ!", + "new_to_latex_look_at": "LaTeXは初めてですか? まずは次のことから始めてください", + "or": "または", + "or_create_project_left": "あるいは、左で最初のプロジェクトを作成してください。", + "thanks_settings_updated": "ありがとうございます。設定が更新されました。", + "update_account_info": "アカウント情報の更新", + "must_be_email_address": "有効なメールアドレスを入力してください", + "first_name": "名", + "last_name": "姓", + "update": "更新", + "change_password": "パスワードの変更", + "current_password": "現在のパスワード", + "new_password": "新しいパスワード", + "confirm_new_password": "新しいパスワードの再入力", + "required": "必須", + "doesnt_match": "不一致", + "dropbox_integration": "Dropboxとの連携", + "learn_more": "さらに詳しく", + "dropbox_is_premium": "Dropboxとの同期はプレミアム機能です", + "account_is_linked": "アカウントはリンクされています", + "unlink_dropbox": "Dropboxとの接続を解除", + "link_to_dropbox": "Dropboxと接続", + "newsletter_info_and_unsubscribe": "数ヶ月毎に新機能を紹介するニュースレターをお送りします。 このメールの購読を希望しない場合はいつでも解除できます。", + "unsubscribed": "未購読", + "unsubscribing": "購読解除処理中", + "unsubscribe": "購読中止", + "need_to_leave": "アカウントを離れますか?", + "delete_your_account": "アカウントの削除", + "delete_account": "アカウントの削除", + "delete_account_warning_message": "プロジェクトと設定を含むあなたの全てのアカウントデータ完全に消去しようとしています。続行するには下のボックスにお客さまのアカウントのメールアドレスを入力してください。", + "deleting": "削除中", + "delete": "削除", + "sl_benefits_plans": "__appName__ は、世界で最も簡単に使えるLaTeXエディターです。共同編集者と最新情報を共有しながら、作業の変更状況を記録し、世界のどこからでも当社のLaTeX環境を利用できます。", + "monthly": "月額", + "personal": "個人", + "free": "無料", + "one_collaborator": "共同編集者1人のみ", + "collaborator": "共同編集者", + "collabs_per_proj": "プロジェクトあたりの __collabcount__ 共同編集者", + "full_doc_history": "すべてのドキュメントの履歴", + "sync_to_dropbox": "Dropboxとの同期", + "start_free_trial": "無料トライアルを開始!", + "professional": "プロフェッショナル", + "unlimited_collabs": "無制限の共同編集者", + "name": "名前", + "student": "学生", + "university": "大学", + "position": "役職", + "choose_plan_works_for_you": "__len__ 日間の無料トライアルであなたにぴったりのプランを選択してください。いつでもキャンセルできます。", + "interested_in_group_licence": "グループ、チーム、部署全体のアカウントで __appName__ を使用することに興味がありますか?", + "get_in_touch_for_details": "詳細はお問い合わせください!", + "group_plan_enquiry": "グループプランの問い合わせ", + "enjoy_these_features": "便利な機能をすべてお楽しみください", + "create_unlimited_projects": "必要な数のプロジェクトを作成。", + "never_loose_work": "立ち止まらないように、わたしたちがサポートします。", + "access_projects_anywhere": "どこでもあなたのプロジェクトにアクセス。", + "log_in": "ログイン", + "login": "ログイン", + "logging_in": "ログイン中", + "forgot_your_password": "パスワード紛失", + "password_reset": "パスワードの再設定", + "password_reset_email_sent": "パスワードの再設定を完了するためのメールを送信しました。", + "please_enter_email": "メールアドレスを入力してください", + "request_password_reset": "パスワード再設定のリクエスト", + "reset_your_password": "パスワードの再設定", + "password_has_been_reset": "あなたのパスワードはリセットされました", + "login_here": "ここからログイン", + "set_new_password": "新しいパスワードの設定", + "user_wants_you_to_see_project": "__username__ が __projectname__ への参加を求めています。", + "join_sl_to_view_project": "__appName__ に参加してこのプロジェクトを表示", + "register_to_edit_template": "__templateName__ テンプレートを編集するには登録してください", + "already_have_sl_account": "__appName__ のアカウントをすでにお持ちですか?", + "register": "登録する", + "password": "パスワード", + "registering": "登録中", + "planned_maintenance": "定期メンテナンス", + "no_planned_maintenance": "現在予定されているメンテナンスはありません", + "cant_find_page": "申し訳ありません。お探しのページは見つかりませんでした。", + "take_me_home": "元に戻る!", + "no_preview_available": "申し訳ありません。プレビューは利用できません。", + "no_messages": "メッセージはありません", + "send_first_message": "最初のメッセージを送信", + "account_not_linked_to_dropbox": "あなたのアカウントはDropboxと接続されていません", + "update_dropbox_settings": "Dropboxの設定を更新", + "refresh_page_after_starting_free_trial": "無料体験を開始したらにこのページの再読み込みを行ってください。", + "checking_dropbox_status": "Dropboxの状態を確認中", + "dismiss": "破棄", + "new_file": "新規ファイル", + "upload_file": "ファイルのアップロード", + "create": "作成", + "creating": "作成中", + "upload_files": "ファイルのアップロード", + "sure_you_want_to_delete": "以下のファイルを完全に消去しますか?", + "common": "共通", + "navigation": "ナビゲーション", + "editing": "編集中", + "ok": "OK", + "source": "ソース", + "actions": "操作", + "copy_project": "プロジェクトのコピー", + "publish_as_template": "テンプレートとして公開", + "sync": "同期", + "settings": "設定", + "main_document": "主要文書", + "off": "オフ", + "auto_complete": "オートコンプリート", + "theme": "テーマ", + "font_size": "フォントサイズ", + "pdf_viewer": "PDFビューア", + "built_in": "組み込み", + "native": "ネイティブ", + "show_hotkeys": "ショートカットキーの表示", + "new_name": "新しい名前", + "copying": "コピー中", + "copy": "コピーする", + "compiling": "コンパイル中", + "click_here_to_preview_pdf": "こちらをクリックしてPDFで作業をプレビュー表示", + "server_error": "サーバーエラー", + "somthing_went_wrong_compiling": "申し訳ありませんが、なんらかの理由によりあなたのプロジェクトはコンパイルできませんでした。しばらく経ってから再度お試しください。", + "timedout": "タイムアウト", + "proj_timed_out_reason": "申し訳ありません。編集に時間がかかりすぎたため、タイムアウトしました。高解像度の画像あるいは複雑な図表が多いことが原因である可能性があります。", + "no_errors_good_job": "エラーはありません!", + "compile_error": "コンパイルエラー", + "generic_failed_compile_message": "申し訳ありません。何らかの理由であなたのLaTeXコードは編集できませんでした。下記のエラーで詳細を確認するか、RAW記録を確認してください", + "other_logs_and_files": "他のログとファイル", + "view_raw_logs": "RAW記録を表示", + "hide_raw_logs": "RAW記録を非表示", + "clear_cache": "キャッシュのクリア", + "clear_cache_explanation": "当社の編集サーバーから隠れたLaTeXファイル(.aux、.bblなど)をすべて明らかにできます。レファレンスの問題がないかぎりは、一般的にこれを行う必要はありません。", + "clear_cache_is_safe": "あなたのプロジェクトファイルは削除・変更されません", + "clearing": "削除中", + "template_description": "テンプレート説明", + "project_last_published_at": "プロジェクトの最終公開日", + "problem_talking_to_publishing_service": "公開サービスに問題が発生しました。数分後に再度お試しください。", + "unpublishing": "非公開", + "republish": "再公開", + "publishing": "公開中", + "share_project": "プロジェクトの共有", + "this_project_is_private": "このプロジェクトは非公開であり以下の方のみがアクセス可能です。", + "make_public": "公開する", + "this_project_is_public": "このプロジェクトは公開されておりURLを知っている人なら誰でも編集可能です。", + "make_private": "非公開にする", + "can_edit": "編集可能", + "share_with_your_collabs": "共同編集者と共有", + "share": "共有", + "need_to_upgrade_for_more_collabs": "共同編集者をさらに追加するためにはアカウントのアップグレードが必要です。", + "make_project_public": "プロジェクトを公開する", + "make_project_public_consequences": "プロジェクトを公開した場合、URLを知っている人なら誰でもアクセスが可能になります。", + "allow_public_editing": "全員に編集を許可する", + "allow_public_read_only": "全員に閲覧のみ許可する", + "make_project_private": "プロジェクトを非公開にする", + "make_project_private_consequences": "プロジェクトを非公開にする場合、共有範囲に選択した人だけがアクセスできます。", + "need_to_upgrade_for_history": "変更履歴機能を使用するためにはアカウントのアップグレードが必要です。", + "ask_proj_owner_to_upgrade_for_history": "アップグレードして履歴機能を使えるようにするには、プロジェクト管理者に問い合わせください。", + "anonymous": "匿名", + "generic_something_went_wrong": "申し訳ありません。エラーが発生しました", + "restoring": "復元中", + "restore_to_before_these_changes": "変更前に戻す", + "profile_complete_percentage": "あなたのプロフィールは __percentval__%完了しています", + "file_has_been_deleted": "__filename__は削除されました", + "sure_you_want_to_restore_before": "本当に __filename__ を __date__ の変更前に戻しますか?", + "rename_project": "プロジェクト名を変更", + "about_to_delete_projects": "次ののプロジェクトを削除します:", + "about_to_leave_projects": "次のプロジェクトから離れようとしています:", + "upload_zipped_project": "ZIPプロジェクトのアップロード", + "upload_a_zipped_project": "ZIPプロジェクトのアップロード", + "your_profile": "あなたのプロフィール", + "institution": "組織", + "role": "役", + "folders": "フォルダ", + "disconnected": "非接続", + "please_refresh": "続行するにはページの再読み込みを行ってください", + "lost_connection": "接続がありません", + "reconnecting_in_x_secs": "__seconds__秒後に再接続", + "try_now": "今すぐ試す", + "reconnecting": "再接続中", + "saving_notification_with_seconds": "__docname__の保存中 (最後の保存から__seconds__秒経過)", + "help_us_spread_word": "__appName__ の普及にご協力ください", + "share_sl_to_get_rewards": "__appName__ を友だちや同僚と共有して、次の特典を獲得", + "post_on_facebook": "Facebookで投稿", + "share_us_on_googleplus": "Google+で共有", + "email_us_to_your_friends": "友だちにメールで教える", + "link_to_us": "あなたのサイトにリンクを置く", + "direct_link": "ダイレクトリンク", + "sl_gives_you_free_stuff_see_progress_below": "あなたの推薦によって誰かが __appName__ を使い始めたときは、感謝の気持ちとして無料プレゼントをお贈りします! 下記で状況を確認してください。", + "spread_the_word_and_fill_bar": "名前を広めると、このバーが貯まります", + "one_free_collab": "1人の無料共同編集者", + "three_free_collab": "3人の無料共同編集者", + "free_dropbox_and_history": "無料Dropbox・履歴", + "you_not_introed_anyone_to_sl": "まだ誰にも __appName__ を紹介していません。シェアしましょう!", + "you_introed_small_number": " __numberOfPeople__ 人に __appName__ を紹介しました。ありがとうございます。まだ他にも紹介できませんか?", + "you_introed_high_number": " __numberOfPeople__ 人に __appName__ を紹介しました。ありがとうございます。", + "link_to_sl": "__appName__ にリンク", + "can_link_to_sl_with_html": "次のHTMLで __appName__ にリンクすることができます:", + "year": "年", + "month": "月", + "subscribe_to_this_plan": "このプランに加入する", + "your_plan": "現在のプラン", + "your_subscription": "あなたの購読内容", + "on_free_trial_expiring_at": "__expiresAt__に期限が切れる無料トライアルを現在使用しています。", + "choose_a_plan_below": "下のプランを選択して定期購読する。", + "currently_subscribed_to_plan": "あなたは現在 __planName__ プランを購読しています。", + "change_plan": "プランの変更", + "next_payment_of_x_collectected_on_y": "__paymentAmmount__ の次回の支払いは__collectionDate__に集金されます", + "update_your_billing_details": "支払明細の更新", + "subscription_canceled_and_terminate_on_x": " あなたの購読はキャンセルされ、__terminateDate__ に終了します。今後支払いが発生することはありません。", + "your_subscription_has_expired": "あなたの購読は有効期限切れです。", + "create_new_subscription": "新しい購読の作成", + "problem_with_subscription_contact_us": "定期購読に問題が発生しました。詳細については当社にお問い合わせください。", + "manage_group": "管理グループ", + "loading_billing_form": "支払い明細フォームの読み込み中", + "you_have_added_x_of_group_size_y": "__groupSize__ メンバーの __addedUsersSize__ を追加しました。", + "remove_from_group": "グループから削除", + "group_account": "グループアカウント", + "registered": "登録済み", + "no_members": "メンバーはいません", + "add_more_members": "メンバーの追加", + "add": "追加", + "thanks_for_subscribing": "購読ありがとうございます!", + "your_card_will_be_charged_soon": "すぐにカードに請求されます。", + "if_you_dont_want_to_be_charged": "今後請求されたくない場合は", + "add_your_first_group_member_now": "最初のグループメンバーを今すぐ追加", + "thanks_for_subscribing_you_help_sl": "__planName__ プランの購読をありがとうございます。あなたのようなサポートが __appName__ の成長を後押ししてくれます。", + "back_to_your_projects": "プロジェクトに戻る", + "goes_straight_to_our_inboxes": "両方の受信箱に届きます", + "need_anything_contact_us_at": "必要なことがございましたら、いつでもごこちらまで連絡ください", + "regards": "よろしくお願いいたします", + "about": "概要", + "comment": "コメント", + "restricted_no_permission": "制限されています。申し訳ありません。このページを読み込む許可が与えられていません。", + "online_latex_editor": "オンラインLaTeXエディター", + "meet_team_behind_latex_editor": "お気に入りのオンラインLaTeXエディターのチームと会う", + "follow_me_on_twitter": "Twitterでフォローする", + "motivation": "モチベーション", + "evolved": "進化", + "the_easy_online_collab_latex_editor": "簡単に使えるオンラインの共同LaTeXエディター", + "get_started_now": "今すぐ開始", + "sl_used_over_x_people_at": "__appName__ は、__numberOfUsers__ 以上の生徒と大学で使用されています:", + "collaboration": "コラボレーション", + "work_on_single_version": "1つのバージョンで共同作業", + "view_collab_edits": "共同編集者による編集を表示", + "ease_of_use": "使いやすい", + "no_complicated_latex_install": "複雑なLaTeXのインストールは不要", + "all_packages_and_templates": "必要なパッケージと __templatesLink__ がすべて", + "document_history": "文書履歴", + "see_what_has_been": "今までの内容を表示 ", + "added": "追加", + "and": "と", + "removed": "削除", + "restore_to_any_older_version": "旧バージョンに戻す", + "work_from_anywhere": "どこからでも仕事ができます", + "acces_work_from_anywhere": "世界のどこからでもあなたの仕事にアクセス", + "work_offline_and_sync_with_dropbox": "オフラインで仕事して、DropboxとGitHubでファイルを同期", + "over": "以上", + "view_templates": "テンプレート表示", + "nothing_to_install_ready_to_go": "インストールするのは複雑でも難しくもありません。今まで見たことがなくても、__start_now__ できます。__appName__ には、当社のサーバーで働く完璧に整備されたLaTeX環境が用意されています。", + "start_using_latex_now": "今すぐLaTeXを使い始める", + "get_same_latex_setup": "__appName__ があれば、どこでも同じLaTeXセットアップを利用できます。__appName__ で同僚や生徒と一緒に働くことで、まだ見つかっていないバージョンの不一致やパッケージの衝突を調べることができます。", + "support_lots_of_features": "当社はほぼすべてのLaTeX機能をサポートしています。画像、文献目録、数式の挿入などたくさんの機能に対応しています! __appName__ で行える機能の詳細については、__help_guides_link__ をご覧ください。", + "latex_guides": "LaTeXガイド", + "reset_password": "パスワードの再設定", + "set_password": "パスワードの設定", + "updating_site": "サイトの更新中", + "bonus_please_recommend_us": "ボーナス- 当社を推薦してください", + "admin": "管理", + "subscribe": "定期購読", + "update_billing_details": "支払い詳細の更新", + "thank_you": "ありがとうございます", + "group_admin": "グループ管理", + "all_templates": "テンプレート一覧", + "your_settings": "設定", + "maintenance": "メンテナンス", + "to_many_login_requests_2_mins": "このアカウントはあまりに多くのログインリクエストを行っています。2分後に再度ログインしてください", + "email_or_password_wrong_try_again": "メールアドレスまたはパスワードが正しくありません。再度お試しください", + "rate_limit_hit_wait": "アクセス制限に達しました。しばらく時間を置いて再度お試しください", + "problem_changing_email_address": "メールアドレスの変更に際して問題が発生しました。しばらく時間を置いて再度お試しください。問題が解消されない場合は、当社までお問い合わせください。", + "single_version_easy_collab_blurb": "__appName__ があれば、共同編集者の最新状況、現在の作業内容を確認できます。 それぞれのドキュメントの1つのマスターバージョンに全員がアクセスできます。変更の衝突が起こることもなく、続きの仕事をするために同僚が最新の下書きを送信するのを待つ必要もありません。", + "can_see_collabs_type_blurb": "複数の人が同時に1つの文書で仕事をする必要がある場合でも、問題ありません。エディターで同僚が入力している箇所を直接確認することができ、変更内容も直ちに画面に表示されます。", + "work_directly_with_collabs": "共同編集者と直接作業する", + "work_with_word_users": "Wordユーザーと作業する", + "work_with_word_users_blurb": "__appName__ の始め方はとても簡単で、LaTeXを使用していない同僚を招待して、あなたのLaTeXドキュメントに協力してもらうことができます。初日から作業が捗り、時間の経過とともにLaTeXを少しずつ積み上げることができます。", + "view_which_changes": "行われた変更を表示", + "sl_included_history_of_changes_blurb": "__appName__ は変更履歴をすべて記録できるので、誰がいつ何を変更したかを正確に把握することができます。これによって、共同編集者によって行われた最新の進捗状況と作業内容をとても簡単に確認できます。", + "can_revert_back_blurb": "共同作業時あるいはご自身でミスをしてしまうことがあります。以前のバージョンに復元する機能で簡単に、作業の紛失や間違った変更のリスクを取り除くことができます。", + "start_using_sl_now": "__appName__ の利用を今すぐ開始", + "over_x_templates_easy_getting_started": "当社のテンプレートギャラリーには __over__ 400 __templates__ が用意されています。論文や履歴書、あるいは他の文書を書いているときでも、とても簡単に利用を開始することができます。", + "done": "完了", + "change": "変更", + "page_not_found": "ページが見つかりません", + "please_see_help_for_more_info": "詳細についてはヘルプガイドをご覧ください", + "this_project_will_appear_in_your_dropbox_folder_at": "このプロジェクトはあなたのDropboxフォルダに表示されます ", + "member_of_group_subscription": "あなたは __admin_email__ が管理するグループ購読のメンバーです。購読内容の管理についてはこの人たちに問い合わせてください。\n", + "about_henry_oswald": "ロンドンに住むソフトウェアエンジニアです。__appName__ のオリジナルプロトタイプを製作し、安定したスケーラブルなプラットフォームの構築を担っています。ヘンリーはテスト駆動開発を強く主張しており、__appName__ のコードが簡単に維持できるように努めています。", + "about_james_allen": "理論物理学の博士号を取得し、LaTeXに情熱を捧げています。初めてのオンラインLaTeXエディターの1つであるScribTeXを作成し、__appName__ を可能にする技術の開発において重大な役割を担っています。", + "two_strong_principles_behind_sl": "__appName__ 背景には2つの大きな原則が存在しています。", + "want_to_improve_workflow_of_as_many_people_as_possible": "なるべく多くの人のワークフローを改善したいと考えています。", + "detail_on_improve_peoples_workflow": "LaTeXは使い方が難しいことで名高く、共同作業を調整するのは難しいものです。このような問題に直面した人を助ける便利なソリューションを開発していることを当社は自負しており、なるべく多くの人が __appName__ を利用できるようにしたいと考えています。公正な価格に抑え、__appName__ の多くをオープンソースで発売することで、誰もが各自でホストできるようにしています。", + "want_to_create_sustainable_lasting_legacy": "持続可能で長持ちする遺産を作り出したいと考えています。", + "details_on_legacy": "__appName__ のような製品の開発とメンテナンスには多大な時間と労力が必要となります。そのため、現在および長期的に製品をサポートするビジネスモデルを見つけることが大切となります。__appName__ が外部資金に依存すること、ビジネスモデルの失敗によって消滅してしまうことは望んでいません。現在、利益を出して継続的に __appName__ の開発を実現しており、そして長期的にも行えると期待できることを喜んでお伝えします。", + "get_in_touch": "お問い合わせ", + "want_to_hear_from_you_email_us_at": "__appName__ を利用されている方からのご意見、当社の業務に興味のある人からのお問い合わせを喜んでお受けしております。次の連絡先からご連絡ください", + "cant_find_email": "このメールアドレスは登録されていません。申し訳ありません。", + "plans_amper_pricing": "プランと価格", + "documentation": "ドキュメンテーション", + "account": "アカウント", + "subscription": "購読", + "log_out": "ログアウト", + "en": "英語", + "pt": "ポルトガル語", + "es": "スペイン語", + "fr": "フランス語", + "de": "ドイツ語", + "it": "イタリア語", + "da": "デンマーク語", + "sv": "スェーデン語", + "no": "ノルウェー語", + "nl": "オランダ語", + "pl": "ポーランド語", + "ru": "ロシア語", + "uk": "ウクライナ語", + "ro": "ルーマニア語", + "click_here_to_view_sl_in_lng": "こちらをクリックして __lngName__ で __appName__ を使用", + "language": "言語", + "upload": "アップロード", + "menu": "メニュー", + "full_screen": "フルスクリーン", + "logs_and_output_files": "ログと出力ファイル", + "download_pdf": "PDFをダウンロード", + "split_screen": "スプリットスクリーン", + "clear_cached_files": "キャッシュファイルを削除", + "go_to_code_location_in_pdf": "PDFのコードロケーションに進む", + "please_compile_pdf_before_download": "PDFをダウンロードする前にプロジェクトをコンパイルして下さい", + "remove_collaborator": "共同編集者の削除", + "add_to_folders": "フォルダに追加", + "download_zip_file": "ZIPファイルをダウンロード", + "price": "価格", + "close": "閉じる", + "keybindings": "キー機能設定", + "restricted": "制限されています", + "start_x_day_trial": "__len__ 日間の無料トライアルを今日から始める!", + "buy_now": "今すぐ購入!", + "cs": "チェコ語", + "view_all": "すべて表示", + "terms": "規約", + "privacy": "プライバシー", + "contact": "お問い合わせ", + "change_to_this_plan": "このプランに変更", + "processing": "実行中", + "sure_you_want_to_change_plan": "本当にプランを __planName__ に変えますか?", + "move_to_annual_billing": "年間支払いに移動", + "annual_billing_enabled": "年間支払い許可", + "move_to_annual_billing_now": "年間支払いに今すぐ移動", + "change_to_annual_billing_and_save": "年間料金 __percentage__ オフを獲得。今切り替えると、年間 __yearlySaving__ 節約できます。", + "missing_template_question": "テンプレートが見当たりませんか?", + "tell_us_about_the_template": "テンプレートが見つからない場合は、テンプレートのコピー、テンプレートの __appName__ URLを送っていただくか、テンプレートの見つかる場所を教えてください。また、説明のテンプレートについての情報もお知らせください。", + "email_us": "メールを送る", + "this_project_is_public_read_only": "このプロジェクトは公開されており、URLを知っている人に表示されますが、編集はできません。", + "tr": "トルコ語", + "select_files": "ファイルを選択", + "drag_files": "ファイルをドラッグ", + "upload_failed_sorry": "アップロード失敗、申し訳ありません。 :(", + "inserting_files": "ファイルの挿入中…", + "password_reset_token_expired": "パスワード再設定トークンの期限が切れました。新しいパスワード再設定メールをリクエストして、そこに記載されたリンクにしたがってください。", + "merge_project_with_github": "GitHubとプロジェクトを統合", + "pull_github_changes_into_sharelatex": "GitHubの変更を __appName__ に引き込む", + "push_sharelatex_changes_to_github": "__appName__ の変更をGitHubに押し込む", + "features": "機能", + "commit": "コミット", + "commiting": "コミット中", + "importing_and_merging_changes_in_github": "GitHubの変更をインポートおよび統合中", + "upgrade_for_faster_compiles": "アップグレードしてすばやい編集、タイムアウト上限の引き上げ", + "free_accounts_have_timeout_upgrade_to_increase": "無料アカウントは1分でタイムアウトします。アップグレードしてタイムアウトの上限を引き上げる。", + "learn_how_to_make_documents_compile_quickly": "ドキュメントをすばやく編集する方法を学ぶ", + "zh-CN": "中国語", + "cn": "中国語(簡体字)", + "sync_to_github": "GitHubと同期", + "sync_to_dropbox_and_github": "DropboxとGitHubと同期", + "project_too_large": "プロジェクトが大きすぎます", + "project_too_large_please_reduce": "このプロジェクトには編集可能なテキストが多すぎます。テキストを減らしてください。最大ファイルは次の通りです:", + "please_ask_the_project_owner_to_link_to_github": "このプロジェクトをGitHubリポジトリとリンクするにはプロジェクト管理者に問い合わせてください", + "go_to_pdf_location_in_code": "コードのPDFロケーションに進む", + "ko": "韓国語", + "ja": "日本語", + "about_brian_gough": "ソフトウェア開発者で、以前はフェルミ国立加速器研究所およびロスアラモス国立研究所の理論高エネルギー物理学研究者でした。長年に渡り、TeXおよびLaTeXの商業的利用に関する無料ソフトウェアマニュアルを配布しており、GNU Scientific Libraryのメンテナーを務めていました。", + "first_few_days_free": "初回__trialLen__ 日間無料", + "every": "毎", + "credit_card": "クレジットカード", + "credit_card_number": "クレジットカード番号", + "invalid": "不正な", + "expiry": "有効期限", + "january": "1月", + "february": "2月", + "march": "3月", + "april": "4月", + "may": "5月", + "june": "6月", + "july": "7月", + "august": "8月", + "september": "9月", + "october": "10月", + "november": "11月", + "december": "12月", + "zip_post_code": "郵便番号", + "city": "市町村", + "address": "住所", + "coupon_code": "クーポンコード", + "country": "国", + "billing_address": "請求先住所", + "upgrade_now": "今すぐアップグレード", + "state": "状態", + "vat_number": "VAT番号", + "you_have_joined": "__groupName__ に参加しました", + "claim_premium_account": "__groupName__ のプレミアムアカウントを獲得しました。", + "you_are_invited_to_group": "__groupName__ への参加を招待されています。", + "you_can_claim_premium_account": "メール認証によって、__groupName__ のプレミアムアカウントを獲得しました", + "not_now": "今はまだありません", + "verify_email_join_group": "メールを認証してグループに参加", + "check_email_to_complete_group": "メールを確認して、グループへの参加を完了してください", + "verify_email_address": "メールアドレスの認証", + "group_provides_you_with_premium_account": "__groupName__ によってプレミアムアカウントが付与されました。メールアドレスを認証して、アカウントをアップグレードしてください。", + "check_email_to_complete_the_upgrade": "メールを確認して、アップグレードを完了してください", + "email_link_expired": "メールのリンクの有効期限が切れています。新しいリンクをリクエストしてください。", + "services": "サービス", + "about_shane_kilkelly": "エディンバラ在住のソフトウェア開発者です。シェーンは、関数型プログラミングとテスト駆動開発を強く支持しており、高クオリティのソフトウェア構築に大きな自信を持っています。", + "this_is_your_template": "これはあなたのプロジェクトのテンプレートです", + "links": "リンク", + "account_settings": "アカウントの設定", + "search_projects": "プロジェクトの検索", + "clone_project": "プロジェクトの複製", + "delete_project": "プロジェクトの削除", + "download_zip": "ZIPをダウンロード", + "new_project": "新規プロジェクト", + "blank_project": "空のプロジェクト", + "example_project": "プロジェクト例", + "from_template": "テンプレートを使う", + "cv_or_resume": "履歴書", + "cover_letter": "カバーレター", + "journal_article": "雑誌論文", + "presentation": "プレゼンテーション", + "thesis": "学位論文", + "bibliographies": "参考文献", + "terms_of_service": "利用規約", + "privacy_policy": "プライバシーポリシー", + "plans_and_pricing": "プランと料金", + "university_licences": "大学用ライセンス", + "security": "セキュリティ", + "contact_us": "お問い合わせ", + "thanks": "ありがとうございます", + "blog": "ブログ", + "latex_editor": "LaTeXエディター", + "get_free_stuff": "無料プレゼントを獲得", + "chat": "チャット", + "your_message": "メッセージ", + "loading": "読み込み中", + "connecting": "接続中", + "recompile": "リコンパイル", + "download": "ダウンロード", + "email": "電子メール", + "owner": "管理者", + "read_and_write": "読み書き", + "read_only": "読み込み専用", + "publish": "公開", + "view_in_template_gallery": "テンプレートギャラリーで表示", + "unpublish": "未公開", + "hotkeys": "ショートカットキー", + "saving": "保存中", + "cancel": "取消", + "project_name": "プロジェクト名", + "root_document": "ルートドキュメント", + "spell_check": "スペルチェック", + "compiler": "コンパイラ", + "private": "非公開", + "public": "公開", + "delete_forever": "完全に削除", + "support_and_feedback": "サポートとフィードバック", + "help": "ヘルプ", + "latex_templates": "LaTeXテンプレート", + "info": "情報", + "latex_help_guide": "LaTeXヘルプガイド", + "choose_your_plan": "プランの選択", + "indvidual_plans": "それぞれのプラン", + "free_forever": "永久無料", + "low_priority_compile": "優先度の低いコンパイル", + "unlimited_projects": "プロジェクト数無制限", + "unlimited_compiles": "コンパイル数無制限", + "full_history_of_changes": "すべての変更履歴", + "highest_priority_compiling": "最優先のコンパイル", + "dropbox_sync": "Dropbox同期", + "beta": "ベータ", + "sign_up_now": "今すぐサインアップ", + "annual": "年間", + "half_price_student": "学生向け半額プラン", + "about_us": "当社について", + "loading_recent_github_commits": "最新コミットを読み込み中", + "no_new_commits_in_github": "最終統合からGitHubに新しいコミットはありません。", + "dropbox_sync_description": "__appName__ プロジェクトをDropboxと同期しましょう。__appName__ の変更が自動的にDropboxに送信されます。その逆も同じです。", + "github_sync_description": "GitHub Syncがあれば、__appName__ プロジェクトとGitHubリポジトリを接続することができます。__appName__ から新しいコミットを作成して、オフラインあるいはGitHubで作成したコミットと統合できます。", + "github_import_description": "GitHub Syncがあれば、GitHubリポジトリを__appName__ にインポートすることができます。__appName__ から新しいコミットを作成して、オフラインあるいはGitHubで作成したコミットと統合できます。", + "link_to_github_description": "プロジェクトを同期するには __appName__ があなたのGitHubアカウントにアクセスするのを許可する必要があります。", + "unlink": "リンク解除", + "unlink_github_warning": "GitHubと同期したプロジェクトは接続を断たれ、GitHubと同期されなくなります。本当にGitHubアカウントの接続を解除しますか?", + "github_account_successfully_linked": "アカウントは接続されました!", + "github_successfully_linked_description": "ありがとうございます。GitHubアカウントと __appName__ のリンクが完了しました。これからは __appName__ プロジェクトをGitHubにエクスポート、あるいはGitHubリポジトリからプロジェクトのインポートをすることができます。", + "import_from_github": "GitHubからインポート", + "github_sync_error": "申し訳ありません。GitHubサービスとの接続に問題が発生しました。しばらく時間を置いて再度お試しください。", + "loading_github_repositories": "あなたのGitHubリポジトリを読み込み中", + "select_github_repository": "__appName__ にインポートするGitHubリポジトリを選択。", + "import_to_sharelatex": "__appName__ にインポート", + "importing": "インポート中", + "github_sync": "GitHub同期", + "checking_project_github_status": "GitHubのプロジェクトステータスを確認中", + "account_not_linked_to_github": "あなたのアカウントはGitHubに接続されていません", + "project_not_linked_to_github": "このプロジェクトはGitHubリポジトリと接続されていません。GitHubでリポジトリを作成できます:", + "create_project_in_github": "GitHubリポジトリの作成", + "project_synced_with_git_repo_at": "このプロジェクトはGitHubリポジトリと同期しています", + "recent_commits_in_github": "GitHubの最新コミット", + "sync_project_to_github": "プロジェクトをGitHubと同期", + "sync_project_to_github_explanation": "__appName__ で行った変更はすべてGitHubの更新と関連付けられ、統合されます。", + "github_merge_failed": "__appName__ とGitHubの変更を自動的に統合できませんでした。GIT内で __sharelatex_branch__ ブランチと __master_branch__ ブランチを手動で統合してください。手動で統合したあとに、下をクリックして続行してください。", + "continue_github_merge": "手動で統合。続行", + "export_project_to_github": "プロジェクトをGitHubにエクスポート", + "github_validation_check": "リポジトリ名が有効か、リポジトリを作成する権限があるか確認してください。", + "repository_name": "リポジトリ名", + "optional": "オプショナル", + "github_public_description": "このリポジトリは全員が閲覧できます。コミットできる人を選択します。", + "github_commit_message_placeholder": "__appName__ で行われた変更のコミットメッセージ…", + "merge": "統合", + "merging": "統合中", + "github_account_is_linked": "あなたのGitHubアカウントが接続されました。", + "unlink_github": "GitHubアカウントの接続を解除", + "link_to_github": "あなたのGitHubアカウントに接続", + "github_integration": "GitHub連携", + "github_is_premium": "GitHub統合はプレミアム機能です" +} \ No newline at end of file diff --git a/services/web/locales/ko.json b/services/web/locales/ko.json new file mode 100644 index 0000000000..56e992eccd --- /dev/null +++ b/services/web/locales/ko.json @@ -0,0 +1,900 @@ +{ + "find_out_more": "더 알아보기", + "compare_plan_features": "플랜 비교", + "in_good_company": "좋은 회사에 다니시네요", + "unlimited": "무제한", + "priority_support": "우선권 지원", + "dropbox_integration_lowercase": "Dropbox 통합", + "github_integration_lowercase": "GitHub 통합", + "discounted_group_accounts": "디스카운트 그룹 계정", + "referring_your_friends": "친구에게 알리기", + "still_have_questions": "궁금하신 점이 남아 있나요?", + "quote_erdogmus": "변경 내용 추적과 실시간 콜레버레이션은 ShareLaTeX만의 특별한 기능입니다.", + "quote_henderson": "ShareLaTeX은 강력하고 안정적인 콜레버레이션 툴이라는 것이 증명되었고 우리 학교에서 널리 쓰이고 있습니다.", + "faq_change_plans_question": "나중에 플랜을 바꿀 수 있나요?", + "faq_do_collab_need_premium_question": "공저자들도 프리미엄 계정이 필요한가요?", + "faq_need_more_collab_question": "공저자가 더 필요하면 어떻게 해야하나요?", + "faq_purchase_more_licenses_question": "동료들을 위해 추가적으로 라이센스를 구입할 수 있나요?", + "faq_monthly_or_annual_question": "월간 혹은 연간 청구를 선택해야하나요?", + "faq_how_to_pay_question": "신용카드나 직불카드, PayPal 등으로 온라인 결재를 할 수 있나요?", + "reference_search": "고급 레퍼런스 검색", + "reference_search_info": "Citation key로 검색할 수도 있고 저자나, 제목, 연도, 저널명 등을 고급 검색으로 찾아볼 수도 있습니다.", + "reference_sync": "레퍼런스 매니저 동기화", + "powerful_latex_editor": "강력한 LaTeX 편집기", + "realtime_track_changes": "실시간 변경 내용 추적", + "change_plans_any_time": "언제든 플랜이나 계정을 바꿀 수 있습니다.", + "number_collab": "공저자 수", + "unlimited_private": "무제한 개인 프로젝트", + "realtime_collab": "실시간 협업", + "hundreds_templates": "수백개의 양식", + "all_premium_features": "모든 프리미엄 기능", + "sync_dropbox_github": "Dropbox와 GitHub 연동", + "track_changes": "변경 내용 추적", + "tooltip_hide_pdf": "PDF를 숨기려면 클릭", + "tooltip_show_pdf": "PDF를 보려면 클릭", + "tooltip_hide_filetree": "파일 트리를 숨기려면 클릭", + "tooltip_show_filetree": "파일 트리를 보려면 클릭", + "cannot_verify_user_not_robot": "죄송합니다. 로봇이 아니라고 확신할 수 없습니다. 애드블록이나 방화벽에 의해 Google reCAPTCHA가 차단되지 않았는지 확인해주십시오.", + "uncompiled_changes": "컴파일되지 않은 변경 사항", + "code_check_failed": "코드 체크 실패", + "code_check_failed_explanation": "자동 컴파일 실행 전에 에러를 수정해야합니다.", + "tags_slash_folders": "태그/폴더", + "file_already_exists": "동일한 이름의 파일 혹은 폴더가 존재합니다.", + "import_project_to_v2": "프로젝트를 V2로 가져오기", + "open_in_v1": "V1에서 열기", + "import_to_v2": "V2에서 열기", + "never_mind_open_in_v1": "무시하고 V1에서 열기", + "yes_im_sure": "예, 확실합니다.", + "drop_files_here_to_upload": "여기에 파일 드랍 후 업로드", + "drag_here": "여기로 드래그", + "creating_project": "프로젝트 생성", + "select_a_zip_file": ".zip 파일 선택", + "drag_a_zip_file": ".zip 파일 드래그", + "v1_badge": "V1 뱃지", + "v1_projects": "V1 프로젝트", + "open_your_billing_details_page": "영수증 자세히 보기", + "try_out_link_sharing": "새로운 링크 공유 기능을 사용해보세요!", + "try_link_sharing": "링크 공유 해보기", + "try_link_sharing_description": "링크 공유를 이용해서 쉽게 프로젝트 접근 권한을 주세요.", + "learn_more_about_link_sharing": "링크 공유 더 알아보기", + "link_sharing": "링크 공유", + "tc_switch_everyone_tip": "모두에게 변경 사항 추적 고정", + "tc_switch_user_tip": "이 사용자에게 변경 사항 추적 고정", + "tc_switch_guests_tip": "링크를 공유하는 모든 게스트에게 변경 사항 추적 고정", + "tc_guests": "게스트", + "select_all_projects": "전체 선택", + "select_project": "선택", + "main_file_not_found": "main 도큐멘트 알 수 없음 ", + "please_set_main_file": "프로젝트 메뉴에서 이 프로젝트의 main 파일을 선택하세요. ", + "link_sharing_is_off": "링크 공유를 끄고 초대된 사용자만 볼 수 있습니다.", + "turn_on_link_sharing": "링크 공유 켜기", + "link_sharing_is_on": "링크 공유 중", + "turn_off_link_sharing": "링크 공유 끄기", + "anyone_with_link_can_edit": "이 링크에 있는 사람은 프로젝트 편집 가능", + "anyone_with_link_can_view": "이 링크에 있는 사람은 프로젝트를 볼 수 있음", + "turn_on_link_sharing_consequences": "링크 공유를 설정하면 관련된 사람들은 프로젝트에 접근 및 편집이 가능합니다.", + "turn_off_link_sharing_consequences": "링크 공유를 끄면 초대받은 사람들만 프로젝트에 접근할 수 있습니다.", + "autocompile_disabled": "자동 컴파일 불가", + "autocompile_disabled_reason": "서버에 부하가 많이 걸려서 백그라운드 재컴파일이 잠시 불가능했습니다. 위의 버튼을 다시 클릭해서 재컴파일 하십시오.", + "auto_compile_onboarding_description": "자동컴파일을 실행하면 타이핑하는대로 프로젝트를 컴파일 합니다.", + "try_out_auto_compile_setting": "새로운 자동 컴파일 세팅을 사용해보세요!", + "got_it": "알겠습니다.", + "pdf_compile_in_progress_error": "다른 창에서 컴파일 중", + "pdf_compile_try_again": "재시도 전에 현재 진행 중인 컴파일이 끝날 때까지 기다려주세요.", + "invalid_email": "이메일 주소가 잘못되었습니다.", + "auto_compile": "자동 컴파일", + "tc_everyone": "모든 사람", + "per_user_tc_title": "개인별 변경 내용 추적", + "you_can_use_per_user_tc": "이제 개인별 변경 내용 추적을 사용할 수 있습니다.", + "turn_tc_on_individuals": "개인별 변경 내용 추적 사용하기", + "keep_tc_on_like_before": "또는 이전처럼 모두를 위해 유지함", + "auto_close_brackets": "괄호 자동완성", + "auto_pair_delimiters": "구분문자 자동완성", + "successfull_dropbox_link": "Dropbox에 성공적으로 연결되었습니다. 설정 페이지로 이동합니다.", + "show_link": "링크 보기", + "hide_link": "링크 숨기기", + "aggregate_changed": "변경:", + "aggregate_to": "-->", + "confirm_password_to_continue": "계속 진행을 위해 비밀번호 확인", + "confirm_password_footer": "한 동안 비밀번호를 다시 묻지 않겠습니다.", + "accept_all": "모두 승락", + "reject_all": "모두 거절", + "bulk_accept_confirm": "선택하신 __nChanges__개의 변경 사항을 승락하시겠습니까?", + "bulk_reject_confirm": "선택하신 __nChanges__개의 변경 사항을 거절하시겠습니까?", + "uncategorized": "기타", + "pdf_compile_rate_limit_hit": "컴파일 빈도 제한 초과", + "project_flagged_too_many_compiles": "이 프로젝트에서 컴파일 플래그가 너무 자주 있었습니다. 곧 제한이 풀립니다.", + "reauthorize_github_account": "GitHub 계정 재확인", + "github_credentials_expired": "GitHub 아이디와 비밀번호가 만료되었습니다.", + "hit_enter_to_reply": "답을 하시려면 엔터를 누르세요.", + "add_your_comment_here": "여기에 코멘트 추가", + "resolved_comments": "해결된 코멘트", + "try_it_for_free": "무료로 사용해보세요", + "please_ask_the_project_owner_to_upgrade_to_track_changes": "변경 내용 추적을 사용하시려면 프로젝트 소유자에게 업그레이드를 요구하세요.", + "mark_as_resolved": "해결됨으로 표시", + "reopen": "다시 열기", + "add_comment": "코멘트 추가", + "no_resolved_threads": "해결된 코멘트 없음", + "upgrade_to_track_changes": "변경 내용 추적을 위해 업그레이드", + "see_changes_in_your_documents_live": "문서 변경사항 실시간으로 보기", + "track_any_change_in_real_time": "실시간으로 모든 변경 사항 추적", + "review_your_peers_work": "동료의 작업 검토", + "accept_or_reject_each_changes_individually": "각각의 변경 사항 승락 또는 거절", + "accept": "승락", + "reject": "거절", + "no_comments": "코멘트 없음", + "edit": "편집", + "are_you_sure": "확실한가요?", + "resolve": "해결", + "reply": "대답", + "quoted_text_in": "인용문", + "review": "검토", + "track_changes_is_on": "변경 내용 추적 사용", + "track_changes_is_off": "변경 내용 추적 꺼짐", + "current_file": "현재 파일", + "overview": "개요", + "tracked_change_added": "추가됨", + "tracked_change_deleted": "삭제됨", + "show_all": "모두 보기", + "show_less": "적게 보기", + "dropbox_sync_error": "Dropbox 동기 오류", + "send": "발신", + "sending": "발신 중", + "invalid_password": "비밀번호 틀림", + "error": "오류", + "other_actions": "다른 방법들", + "send_test_email": "테스트 이메일 보내기", + "email_sent": "이메일 보냄", + "create_first_admin_account": "첫 관리 계정 생성", + "ldap": "LDAP", + "ldap_create_admin_instructions": "__appName__ 관리 계정으로 사용할 이메일 주소를 선택하십시오. 사용하실 이메일 주소는 LDAP 시스템에서 사용하는 계정이어야합니다. 이 계정으로의 로그인을 요청받으실 것입니다.", + "saml": "SAML", + "saml_create_admin_instructions": "__appName__ 관리 계정으로 사용할 이메일 주소를 선택하십시오. 사용하실 이메일 주소는 LDAP 시스템에서 사용하는 계정이어야합니다. 이 계정으로의 로그인을 요청받으실 것입니다.", + "admin_user_created_message": "생성된 관리 계정으로 로그인", + "status_checks": "상태 확인", + "editor_resources": "에디터 리소스", + "checking": "확인하기", + "cannot_invite_self": "자신을 초대할 수는 없습니다.", + "cannot_invite_non_user": "초대할 수 없습니다. 수신자는 반드시 __appName__ 계정을 보유하고 있어야 합니다.", + "log_in_with": "__provider__(으)로 로그인", + "return_to_login_page": "로그인 페이지로 이동", + "login_failed": "로그인 실패", + "delete_account_warning_message_3": "프로젝트와 설정을 포함한 계정의 모든 것을 영구 삭제를 하시겠습니까. 계속 진행하시려면 계정 이메일 주소와 비밀번호를 아래 상자에 입력하십시오.", + "delete_account_warning_message_2": "프로젝트와 설정을 포함한 계정의 모든 것을 영구 삭제를 하시겠습니까. 계속 진행하시려면 계정 이메일 주소를 아래 상자에 입력하십시오.", + "your_sessions": "나의 세션", + "clear_sessions_description": "이 리스트는 다른 (로그인) 세션입니다. 이 세션들은 활성화되어 있지만 현재 세션에는 포함되어 있지 않습니다. 이들을 로그아웃하시려면 \"세션 클리어\" 버튼을 클릭하십시오.", + "no_other_sessions": "활성화된 세션이 없습니다.", + "ip_address": "IP 주소", + "session_created_at": "생성된 세션", + "clear_sessions": "세션 클리어", + "clear_sessions_success": "세션 클리어 완료", + "sessions": "세션", + "manage_sessions": "나의 세션 관리", + "syntax_validation": "코드 확인", + "history": "히스토리", + "joining": "참여하기", + "open_project": "프로젝트 열기", + "files_cannot_include_invalid_characters": "파일에 '*'과 '/'은 사용할 수 없습니다.", + "invalid_file_name": "파일 이름이 부적절합니다.", + "autocomplete_references": "레퍼런스 자동완성 (\\cite{} 블록 안에서)", + "autocomplete": "자동 완성", + "failed_compile_check": "프로젝트에 심각한 문법 오류가 있는 것으로 보입니다. 완료하기 전 수정하십시오.", + "failed_compile_check_try": "무시하고 컴파일하기", + "failed_compile_option_or": "또는", + "failed_compile_check_ignore": "문법 확인 끄기", + "compile_time_checks": "문법 확인", + "stop_on_validation_error": "컴파일 전에 문법 확인", + "ignore_validation_errors": "문법 확인 안 함", + "run_syntax_check_now": "문법 확인 실행", + "your_billing_details_were_saved": "청구서 세부사항이 저장되었습니다.", + "security_code": "보안 코드", + "paypal_upgrade": "업그레이드하시려면 밑의 버튼을 클릭하시고 이메일 계정과 비밀번호를 이용해서 PayPal에 로그인 하십시오.", + "upgrade_cc_btn": "지금 업그레이드하고 7일 후 지불", + "upgrade_paypal_btn": "계속", + "notification_project_invite": "__userName__님이 __projectName__에 참여하고자 합니다. Join Project", + "file_restored": "(__filename__) 파일이 삭제되었습니다.", + "file_restored_back_to_editor": "에디터로 돌아가서 다시 할 수 있습니다.", + "file_restored_back_to_editor_btn": "편집기로 돌아가기", + "view_project": "프로젝트 보기", + "join_project": "프로젝트 참여", + "invite_not_accepted": "받지 않은 초대장", + "resend": "다시 보냄", + "syntax_check": "문법 확인", + "revoke_invite": "초대 취소", + "pending": "보류", + "invite_not_valid": "프로젝트 초대가 유효하지 않습니다.", + "invite_not_valid_description": "초대가 만료되었습니다. 프로젝트 소유자에게 연락하십시오.", + "accepting_invite_as": "다음 이메일로 온 초대를 승락합니다.", + "accept_invite": "초대 승락", + "log_hint_ask_extra_feedback": "왜 이 힌트가 도움이 되지 않는지 알려주십시오.", + "log_hint_extra_feedback_didnt_understand": "힌트를 이해할 수 없습니다.", + "log_hint_extra_feedback_not_applicable": "이 방법으로 해결되지 않습니다.", + "log_hint_extra_feedback_incorrect": "오류를 해결할 수 없습니다.", + "log_hint_extra_feedback_other": "기타:", + "log_hint_extra_feedback_submit": "제출", + "if_you_are_registered": "이미 등록하셨다면", + "stop_compile": "컴파일 중지", + "terminated": "컴파일 취소됨", + "compile_terminated_by_user": "'컴파일 중지' 버튼을 사용하여 컴파일이 취소되었습니다. Raw log를 보시면 어디에서 중지 되었는지 확인할 수 있습니다.", + "site_description": "사용하기 쉬운 온라인 LaTex 편집기. 설치 필요없음. 실시간 협업. 버전 관리. 수백 개의 LaTex 템플릿. 그리고 그 이상.", + "knowledge_base": "지식 베이스", + "contact_message_label": "문의 사항", + "kb_suggestions_enquiry": "__kbLink__를 확신하셨습니까?", + "answer_yes": "예", + "answer_no": "아니오", + "log_hint_extra_info": "더 알아보기", + "log_hint_feedback_label": "힌트가 도움이 되었나요?", + "log_hint_feedback_gratitude": "피드백에 감사드립니다.", + "recompile_pdf": "PDF 다시 컴파일하기", + "about_paulo_reis": "포르투갈 Aveiro에서 살고 있는 front-end 소프트웨어 개발자이자 사용자 경험(user experience)를 연구합니다. 사용자 경험 연구로 박사 학위를 취득했고 디자인과 사용법에서 보다 인간적인 기술을 만들거나 제안하고 시험/검증하는 일에 매우 관심이 많습니다.", + "login_or_password_wrong_try_again": "계정 또는 비밀번호가 틀렸습니다. 다시 입력하세요.", + "manage_beta_program_membership": "베타 프로그램 멤버십 관리", + "beta_program_opt_out_action": "베타 프로그램에서 나옴", + "disable_beta": "베타 사용하지 않음", + "beta_program_badge_description": "__appName__을 사용하는 동안 다음과 같은 뱃지로 표시된 베타 기능을 보실 수 있습니다.", + "beta_program_current_beta_features_description": "현재 다음과 같은 새로운 기능을 베타 테스트하고 있습니다:", + "enable_beta": "베타 사용하기", + "user_in_beta_program": "베타 프로그램 참여중", + "beta_program_already_participating": "당신은 베타 프로그램에 등록되었습니다.", + "sharelatex_beta_program": "__appName__ 베타 프로그램", + "beta_program_benefits": "저희는 지금도 __appName__을 개선하고 있습니다. 베타 프로그램에 참여하여 새로운 기능을 먼저 사용해보시고 더 필요한 것을 알려주십시오.", + "beta_program_opt_in_action": "베타 프로그램 들어가기", + "conflicting_paths_found": "경로 충돌 발견", + "following_paths_conflict": "다음 파일과 폴더의 경로가 충돌합니다.", + "open_a_file_on_the_left": "왼쪽에서 파일 열기", + "reference_error_relink_hint": "이 에러가 지속되면 여기에서 계정을 다시 연결하십시오:", + "pdf_rendering_error": "PDF 렌더링 오류", + "something_went_wrong_rendering_pdf": "PDF 렌더링 중 무언가 잘못되었습니다.", + "mendeley_reference_loading_error_expired": "Mendeley 토큰이 만료되었습니다. 계정을 다시 연결해주세요.", + "mendeley_reference_loading_error_forbidden": "Mendeley에서 레퍼런스를 가져올 수 없습니다. 계정을 다시 연결한 후 다시 시도해주세요.", + "mendeley_integration": "Mendeley 통합", + "mendeley_sync_description": "Mendeley 통합을 이용해서 __appName__ 프로젝트로 mendeley 레퍼런스를 가져올 수 있습니다.", + "mendeley_is_premium": "Mendeley 통합은 프리미엄 기능입니다.", + "link_to_mendeley": "Mendeley 연결", + "unlink_to_mendeley": "Mendeley 연결해제", + "mendeley_reference_loading": "Mendeley에서 레퍼런스 가져오기", + "mendeley_reference_loading_success": "Mendeley에서 레퍼런스 가져옴", + "mendeley_reference_loading_error": "오류. Mendeley에서 레퍼런스를 가져올 수 없습니다.", + "reference_import_button": "레퍼런스 보내기", + "unlink_reference": "레퍼렌스 제공자 연결 해제", + "unlink_warning_reference": "경고: 이 공급자로부터의 계정을 해제하면 레퍼런스를 프로젝트로 가져올 수 없습니다.", + "mendeley": "Mendeley", + "suggest_new_doc": "새 문서 제안", + "request_sent_thank_you": "요청을 보냈습니다. 감사합니다.", + "suggestion": "제안", + "project_url": "관련 프로젝트 URL", + "subject": "제목", + "confirm": "확인", + "cancel_personal_subscription_first": "이미 개인 구독을 하고 있습니다. 그룹 라이센스를 사용하기 전에 개인 구독을 취소하시겠습니까?", + "delete_projects": "프로젝트 삭제", + "leave_projects": "프로젝트 나가기", + "delete_and_leave_projects": "프로젝트를 나가면서 삭제", + "too_recently_compiled": "이 프로젝트는 방금에 컴파일 되었기 때문에 컴파일을 생략합니다.", + "clsi_maintenance": "서버 유지를 위해 컴파일 서버를 다운했습니다. 금방 돌아오겠습니다.", + "references_search_hint": "CTRL-Space를 눌러 검색", + "ask_proj_owner_to_upgrade_for_references_search": "레퍼런스 탐색 기능을 사용하시려면 프로젝트 소유자에게 업그레이드를 요청하십시오.", + "ask_proj_owner_to_upgrade_for_faster_compiles": "더 빠른 컴파일과 타임아웃 한계를 연장하시려면 프로젝트 소유자에게 업그레이드를 요청하십시오.", + "search_bib_files": "저자, 제목, 연도로 검색", + "leave_group": "그룹 떠나기", + "leave_now": "지금 떠나기", + "sure_you_want_to_leave_group": "이 그룹을 떠나시겠습니까?", + "notification_group_invite": "__groupName__에 참여 초대를 받으셨습니다. 참여하기.", + "search_references": "이 프로젝트에서 .bib 파일 검색", + "no_search_results": "검색 결과 없음", + "email_already_registered": "이 이메일은 이미 등록되어있습니다.", + "compile_mode": "컴파일 모드", + "normal": "보통", + "fast": "고속", + "rename_folder": "폴더 이름 재설정", + "delete_folder": "폴더 삭제", + "about_to_delete_folder": "당신은 다음 폴더들을 삭제하려고 하십니다 (안에 있는 프로젝트는 삭제되지 않습니다):", + "to_modify_your_subscription_go_to": "구독 변경하러 가기", + "manage_subscription": "구독 관리", + "activate_account": "계정 활성화", + "yes_please": "예!", + "nearly_activated": "__appName__ 계정 활성화를 거의 마쳤습니다.", + "please_set_a_password": "비밀번호를 설정하세요.", + "activation_token_expired": "활성화 토큰이 만료되었습니다. 새로 받은 토큰을 사용하셔야 합니다.", + "activate": "활성화하기", + "activating": "활성화중", + "ill_take_it": "이걸로 할게요.", + "cancel_your_subscription": "구독 그만하기", + "no_thanks_cancel_now": "괜찮습니다. 지금 취소합니다.", + "cancel_my_account": "구독 취소하기", + "sure_you_want_to_cancel": "정말 취소 하시겠습니까?", + "i_want_to_stay": "계속하겠습니다.", + "have_more_days_to_try": "__days__ days일 더 사용해 보십시오!", + "interested_in_cheaper_plan": "저 저렴한 __price__ student plan에 관심이 있습니까?", + "session_expired_redirecting_to_login": "세션 종료. __seconds__ seconds 초 후 다시 로그인", + "maximum_files_uploaded_together": "최대 __max__ 파일 업로드됨", + "too_many_files_uploaded_throttled_short_period": "너무 많은 파일이 업로드되어 잠시 보류되었습니다.", + "compile_larger_projects": "큰 프로젝트 컴파일", + "upgrade_to_get_feature": "__feature__와 다음 기능 사용을 위해 업그레이드:", + "new_group": "새로운 그룹", + "about_to_delete_groups": "이 그룹에 대한 팔로우를 삭제하려고 합니다:", + "removing": "삭제하기", + "adding": "추가하기", + "groups": "그룹", + "rename_group": "그룹 이름 재설정", + "renaming": "이름 재설정", + "create_group": "그룹 생성", + "delete_group": "그룹 삭제", + "delete_groups": "여러 그룹 삭제", + "your_groups": "나의 그룹", + "group_name": "그룹 이름", + "no_groups": "그룹 없음", + "Subscription": "구독", + "Documentation": "참고 문서", + "Universities": "대학교", + "Account Settings": "계정 설정", + "Projects": "프로젝트", + "Account": "계정", + "global": "글로벌", + "Terms": "약관", + "Security": "보안", + "About": "소개", + "editor_disconected_click_to_reconnect": "에디터 접속 끊김. 재접속하려면 아무곳이나 클릭.", + "word_count": "단어 수 세기", + "please_compile_pdf_before_word_count": "단어 수 세기를 실행하기 전에 프로젝트를 컴파일 하십시오.", + "total_words": "총 단어 수", + "headers": "헤더", + "math_inline": "수식 갯수", + "math_display": "수식 표시", + "connected_users": "접속한 사용자", + "projects": "프로젝트", + "upload_project": "프로젝트 업로드", + "all_projects": "전체 프로젝트", + "your_projects": "나의 프로젝트", + "shared_with_you": "공유받은 프로젝트", + "deleted_projects": "삭제된 프로젝트", + "templates": "템플릿", + "new_folder": "새로운 폴더", + "create_your_first_project": "첫 프로젝트를 만드세요!", + "complete": "완료", + "on_free_sl": "__appName__ 무료버전을 사용하고 있습니다.", + "upgrade": "업그레이드", + "or_unlock_features_bonus": "또는 다음 기능을 무료로 사용하세요", + "sharing_sl": "__appName__ 공유하기", + "add_to_folder": "폴더에 추가하기", + "create_new_folder": "새로운 폴더 만들기", + "more": "더보기", + "rename": "이름 바꾸기", + "make_copy": "복사하기", + "restore": "복원하기", + "title": "제목", + "last_modified": "마지막 수정", + "no_projects": "프로젝트 없음", + "welcome_to_sl": "__appName__에 오신걸 환영합니다!", + "new_to_latex_look_at": "LaTex에 새로 오셨나요? 다음을 둘러보면서 시작해보세요", + "or": "또는", + "or_create_project_left": "또는 왼쪽에 첫 프로젝트를 만드세요.", + "thanks_settings_updated": "감사합니다, 당신의 설정사항이 업데이트되었습니다.", + "update_account_info": "계정 정보 업데이트", + "must_be_email_address": "반드시 이메일주소여야 합니다", + "first_name": "이름", + "last_name": "성", + "update": "업데이트", + "change_password": "암호 변경", + "current_password": "현재 암호", + "new_password": "새로운 암호", + "confirm_new_password": "새로운 암호 확인하기", + "required": "필수", + "doesnt_match": "일치하지 않습니다", + "dropbox_integration": "Dropbox 통합", + "learn_more": "더 배우기", + "dropbox_is_premium": "Dropbox 동기화는 프리미엄 기능입니다", + "account_is_linked": "계정이 연결되었습니다", + "unlink_dropbox": "Dropbox 연결끊기", + "link_to_dropbox": "Dropbox에 연결하기", + "newsletter_info_and_unsubscribe": "우리는 매달 새롭게 이용가능한 기능을 요약하여 뉴스레터를 전송합니다. 이메일을 받길 원치 않는다면 언제든지 구독을 해제하십시오:", + "unsubscribed": "구독해제", + "unsubscribing": "구독해제중", + "unsubscribe": "구독해제", + "need_to_leave": "떠나시나요?", + "delete_your_account": "나의 계정 삭제", + "delete_account": "계정 삭제", + "delete_account_warning_message": "프로젝트와 설정을 포함한 모든 계정 데이터에 대한 영구 삭제를 하려고 하시는군요. 계정 이메일을 아래 박스에 입력한 후 진행하십시오.", + "deleting": "삭제중", + "delete": "삭제", + "sl_benefits_plans": "__appName__는 전 세계에서 가장 쉬운 LaTeX 편집기입니다. 가장 최신의 문서를 협업자들과 공유하면서 모든 변경사항을 추적할 수 있고 전 세계 어디에서나 LaTeX 환경을 사용할 수 있습니다.", + "monthly": "매달", + "personal": "개인", + "free": "무료", + "one_collaborator": "1명 공유 가능", + "collaborator": "콜라보레이터", + "collabs_per_proj": "프로젝트 당 __collabcount__명까지 공유 가능", + "full_doc_history": "전체 문서 히스토리", + "sync_to_dropbox": "Dropbox 동기화", + "start_free_trial": "무료로 사용해보세요!", + "professional": "전문가", + "unlimited_collabs": "공유 무제한", + "name": "이름", + "student": "학생", + "university": "대학교", + "position": "직책", + "choose_plan_works_for_you": "필요한 플랜을 선택하세요. __len__일간 무료이며 언제든지 취소할수 있습니다.", + "interested_in_group_licence": "그룹, 팀 또는 부서 계정으로 __appName__를 사용하시겠습니까?", + "get_in_touch_for_details": "세부사항을 원하신다면 연락주세요!", + "group_plan_enquiry": "그룹 플랜 문의", + "enjoy_these_features": "이 모든 기능을 즐기세요", + "create_unlimited_projects": "필요하다면 얼마든지 만드세요.", + "never_loose_work": "절대 네버 어떤 것도 잃어버리지 않습니다. 모든 것을 백업하니까요.", + "access_projects_anywhere": "아무데서나 접속하세요.", + "log_in": "로그인", + "login": "로그인", + "logging_in": "로그인중", + "forgot_your_password": "암호를 잊어버리셨나요", + "password_reset": "암호 재설정", + "password_reset_email_sent": "암호 재설정을 완료하기위해 이메일을 전송하였습니다.", + "please_enter_email": "이메일 주소를 입력해주세요", + "request_password_reset": "암호 재설정 요청", + "reset_your_password": "암호 재설정", + "password_has_been_reset": "암호가 재설정되었습니다", + "login_here": "이곳에서 로그인하세요", + "set_new_password": "새로운 암호 설정", + "user_wants_you_to_see_project": "__username__ 님이 __projectname__에 참여하길 원합니다", + "join_sl_to_view_project": "이 프로젝트를 보시려면 __appName__에 참여하세요", + "register_to_edit_template": "__templateName__ 템플릿을 편집하기위해 등록해주세요", + "already_have_sl_account": "__appName__계정을 이미 보유하고 계신가요?", + "register": "등록", + "password": "암호", + "registering": "등록중", + "planned_maintenance": "플랜 유지", + "no_planned_maintenance": "플랜 유지가 현재 없습니다", + "cant_find_page": "죄송합니다. 찾으시려는 페이지를 발견하지 못했습니다.", + "take_me_home": "홈으로!", + "no_preview_available": "죄송합니다, 미리보기를 이용하실 수 없습니다.", + "no_messages": "메시지 없음", + "send_first_message": "첫 메시지를 전송하세요", + "account_not_linked_to_dropbox": "계정이 Dropbox에 연결되지 않았습니다", + "update_dropbox_settings": "Dropbox 설정 업데이트", + "refresh_page_after_starting_free_trial": "무료 시험 시작 후 이 페이지를 새로고침하세요.", + "checking_dropbox_status": "Dropbox 상태를 확인중", + "dismiss": "해제", + "new_file": "새로운 파일", + "upload_file": "파일 업로드", + "create": "만들기", + "creating": "만드는 중", + "upload_files": "파일 업로드", + "sure_you_want_to_delete": "정말 {{ entity.name }}을 영구삭제하시겠습니까?", + "common": "일반", + "navigation": "네비게이션", + "editing": "편집", + "ok": "OK", + "source": "소스", + "actions": "실행", + "copy_project": "프로젝트 복사", + "publish_as_template": "템플릿으로 공개", + "sync": "동기화", + "settings": "설정", + "main_document": "주 문서", + "off": "끄기", + "auto_complete": "자동 완성", + "theme": "테마", + "font_size": "글자 크기", + "pdf_viewer": "PDF 뷰어", + "built_in": "빌트인", + "native": "기본", + "show_hotkeys": "단축키보기", + "new_name": "새로운 이름", + "copying": "복사중", + "copy": "복사하기", + "compiling": "컴파일링", + "click_here_to_preview_pdf": "PDF로 미리보기 하시려면 이곳을 클릭하세요.", + "server_error": "서버 오류", + "somthing_went_wrong_compiling": "죄송합니다. 무언가 잘못되어 프로젝트가 컴파일되지 않았습니다. 나중에 다시 시도해주세요.", + "timedout": "시간초과", + "proj_timed_out_reason": "죄송합니다, 컴파일이 작동하는데 너무 오래걸려서 타임아웃되었습니다. 고해상도 이미지 또는 복잡한 다이어그램으로 인해 발생한 문제로 보입니다.", + "no_errors_good_job": "오류가 없습니다, 훌륭합니다!", + "compile_error": "오류 컴파일", + "generic_failed_compile_message": "죄송합니다, 어떠한 이유에서인지 LaTeX 코드를 컴파일 할 수 없습니다. 오류에 대해선 아래의 세부사항을 참조하시거나 Raw log를 보십시오.", + "other_logs_and_files": "기타 로그 및 파일 출력", + "view_raw_logs": "Raw log 보기", + "hide_raw_logs": "Raw log 숨기기", + "clear_cache": "캐시 지우기", + "clear_cache_explanation": "컴파일 서버의 모든 숨겨진 LaTeX 파일 (.aux, .bbl, 등)를 지울것입니다. 일반적으로, 참조사항과 문제를 가지고 있지 않는한 지우기를 실행하실 필요가 없습니다.", + "clear_cache_is_safe": "프로젝트 파일은 삭제되거나 변경되지 않을 것 입니다.", + "clearing": "지우는 중", + "template_description": "템플릿 설명", + "project_last_published_at": "프로젝트 마지막 게시일:", + "problem_talking_to_publishing_service": "서비스 게시에 문제가 있습니다, 몇 분 후에 다시 시도해주세요", + "unpublishing": "비공개", + "republish": "다시 공개하기", + "publishing": "공개중", + "share_project": "프로젝트 공유", + "this_project_is_private": "이 프로젝트는 비공개이며 아래에 있는 사람들만 접속할 수 있습니다", + "make_public": "공개하기", + "this_project_is_public": "이 프로젝트는 공개되어 있으며, URL에 접근한 모든 사람들이 편집할 수 있습니다.", + "make_private": "비공개로 만들기", + "can_edit": "편집가능", + "share_with_your_collabs": "콜레보레이터와 공유", + "share": "공유", + "need_to_upgrade_for_more_collabs": "더 많은 콜레보레이터를 추가하기위해 계정을 업그레이드하셔야 합니다", + "make_project_public": "프로젝트 공개하기", + "make_project_public_consequences": "프로젝트를 공개하신다면 URL로 접속하는 모든분들의 프로젝트 접근이 가능해지게 됩니다.", + "allow_public_editing": "공개 편집 허가", + "allow_public_read_only": "접속하는 경우마나 공개 읽기 허가", + "make_project_private": "프로젝트 비공개하기", + "make_project_private_consequences": "프로젝트를 비공개로하신다면, 당신이 프로젝트를 공유하는 사람만 접속할 수 있습니다.", + "need_to_upgrade_for_history": "히스토리 기능을 사용하시려면 계정을 업그레이드 하셔야 합니다.", + "ask_proj_owner_to_upgrade_for_history": "히스토리 기능을 사용하시려면, 업그레이드 할 프로젝트 소유자에게 문의하세요.", + "anonymous": "익명", + "generic_something_went_wrong": "죄송합니다. 문제가 생겼습니다.", + "restoring": "복원중", + "restore_to_before_these_changes": "변경 전으로 복원하기", + "profile_complete_percentage": "프로필이 __percentval__% 완료되었습니다", + "file_has_been_deleted": "__filename__파일이 삭제되었습니다", + "sure_you_want_to_restore_before": "__date__날짜를 변경하기 전에, __filename__ 복원을 원하시나요?", + "rename_project": "프로젝트 이름 바꾸기", + "about_to_delete_projects": "다음과 같은 프로젝트를 삭제하려 합니다:", + "about_to_leave_projects": "다음과 같은 프로젝트를 나가려고합니다:", + "upload_zipped_project": "압축된 프로젝트 업로드", + "upload_a_zipped_project": "압축된 프로젝트 업로드", + "your_profile": "나의 프로필", + "institution": "기관", + "role": "역할", + "folders": "폴더", + "disconnected": "연결끊김", + "please_refresh": "계속하시려면 페이지를 새로고침하세요.", + "lost_connection": "연결이 끊겼습니다", + "reconnecting_in_x_secs": "__seconds__초에 재연결", + "try_now": "지금 시도하세요", + "reconnecting": "재연결중", + "saving_notification_with_seconds": "__docname__문서를 저장중 입니다... (저장되지않은 변경사항 중 __seconds__초)", + "help_us_spread_word": "__appName__을 널리 알려주세요.", + "share_sl_to_get_rewards": "친구 및 동료들과 __appName__(을)를 공유하시고, 아래의 보상을 열어보세요", + "post_on_facebook": "페이스북에 글올리기", + "share_us_on_googleplus": "Google+에 공유하기", + "email_us_to_your_friends": "친구들에게 이메일 보내기", + "link_to_us": "웹사이트에 연결하기", + "direct_link": "바로 연결 링크", + "sl_gives_you_free_stuff_see_progress_below": "추천 후에 누군가 __appName__사용을 시작했을 때, 감사함을 전하기 위해 몇가지 무료 선물을 드리고자 합니다! 아래의 진행과정을 확인해주세요.", + "spread_the_word_and_fill_bar": "다른 이들에게 많이 알려주고, 이 줄을 채우세요", + "one_free_collab": "콜레보레이터 1명 무료", + "three_free_collab": "콜레버레이터 3명 무료", + "free_dropbox_and_history": "무료 Dropbox 및 히스토리", + "you_not_introed_anyone_to_sl": "__appName__(을)를 아직 아무도 소개하지 않으셨군요. 공유해보세요!", + "you_introed_small_number": "__numberOfPeople__명의 분들께 __appName__를 소개하셨군요. 훌륭합니다, 더 소개 하시겠습니까?", + "you_introed_high_number": " __numberOfPeople__명의 분들께 __appName__를 소개하셨습니다. 훌륭합니다!", + "link_to_sl": "__appName__에 연결하기", + "can_link_to_sl_with_html": "다음의 HTML에 __appName__(을)를 연결하실 수 있습니다:", + "year": "년", + "month": "월", + "subscribe_to_this_plan": "이 플랜을 구독하기", + "your_plan": "나의 플랜", + "your_subscription": "나의 구독", + "on_free_trial_expiring_at": "지금 사용하시는 무료 시험 버전이 __expiresAt__에 만료됩니다.", + "choose_a_plan_below": "구독하시려면 아래의 플랜을 선택하세요.", + "currently_subscribed_to_plan": "현재 __planName__플랜을 구독중입니다.", + "change_plan": "플랜 선택하기", + "next_payment_of_x_collectected_on_y": "__collectionDate__에 __paymentAmmount__원이 지불됩니다.", + "update_your_billing_details": "청구서 세부사항 업데이트", + "subscription_canceled_and_terminate_on_x": " 구독이 취소되고 __terminateDate__에 만기될 것 입니다. 더이상 지불해야 하는 금액은 없습니다.", + "your_subscription_has_expired": "구독이 만료되었습니다.", + "create_new_subscription": "새로운 구독 만들기", + "problem_with_subscription_contact_us": "구독에 문제가 있습니다. 더 많은 정보를위해 저희에게 연락해주세요.", + "manage_group": "그룹 관리", + "loading_billing_form": "청구서 세부사항 양식 로딩중", + "you_have_added_x_of_group_size_y": "이용가능한__groupSize__멤버 중 __addedUsersSize__멤버가 추가되었습니다", + "remove_from_group": "그룹에서 삭제하기", + "group_account": "그룹 계정", + "registered": "등록됨", + "no_members": "멤버없음", + "add_more_members": "더많은 멤버 추가", + "add": "추가", + "thanks_for_subscribing": "구독해주셔서 감사합니다!", + "your_card_will_be_charged_soon": "카드가 곧 변경될 것입니다.", + "if_you_dont_want_to_be_charged": "다시 지불하는걸 원치않으시는 경우 ", + "add_your_first_group_member_now": "지금 첫 그룹 멤버 추가", + "thanks_for_subscribing_you_help_sl": "__planName__ 플랜을 구독해주셔서 감사합니다. __appName__(이)가 지속적으로 성장하고 향상될 수 있도록 사람들에게 많이 알려주세요.", + "back_to_your_projects": "프로젝트로 돌아가기", + "goes_straight_to_our_inboxes": "우리 편지함으로 바로 가기", + "need_anything_contact_us_at": "필요하신게 있으시다면, 언제든지 연락주시기 바랍니다:", + "regards": "감사합니다", + "about": "소개", + "comment": "댓글", + "restricted_no_permission": "이 페이지를 불러올 권한이 없습니다.", + "online_latex_editor": "온라인 LaTex 편집기", + "meet_team_behind_latex_editor": "가장좋은 온라인 LaTex 편집기인 __appName__ 개발 팀을 만나보세요.", + "follow_me_on_twitter": "Twitter에서 팔로우하기", + "motivation": "우리의 비젼", + "evolved": "진화하다", + "the_easy_online_collab_latex_editor": "쉬운 온라인 콜레보레이터형 LaTeX 편집기", + "get_started_now": "지금 시작하기", + "sl_used_over_x_people_at": "__numberOfUsers__ 이상의 학생과 교육기관이 __appName__(을)를 사용하고 있습니다.", + "collaboration": "콜라보레이션", + "work_on_single_version": "단일 버전으로 함께 작업하기", + "view_collab_edits": "콜라보레이터 편집 보기 ", + "ease_of_use": " 쉬운 사용법", + "no_complicated_latex_install": "LaTex 설치 필요없음", + "all_packages_and_templates": "전체 패키지와 __templatesLink__", + "document_history": "문서 히스토리", + "see_what_has_been": "기록 보기 ", + "added": "추가완료", + "and": "및", + "removed": "제거완료", + "restore_to_any_older_version": "이전 버전으로 복원하기", + "work_from_anywhere": "어디에서든지 작업 가능", + "acces_work_from_anywhere": "전 세계 어디에서든지 작업하세요", + "work_offline_and_sync_with_dropbox": "오프라인으로 작업하고 Dropbox 및 GitHub을 통해서 파일을 동기화하세요", + "over": "더 많은", + "view_templates": "템플릿 보기", + "nothing_to_install_ready_to_go": "설치가 필요없습니다. 전혀 경험이 없어도 바로 __start_now__(을)를 시작 하실 수 있습니다. __appName__(은)는 완벽하게 준비된 LaTex환경을 갖춘 서버를 사용합니다.", + "start_using_latex_now": "LaTeX를 지금 바로 사용하세요", + "get_same_latex_setup": "어디에서든 동일한 LaTex 문서를 사용할 수 있습니다. __appName__은 동료들이나 학생들과 협업을 하는 중에도 전체 버전을 일관되게 유지하며 충돌을 일으키지 않습니다.", + "support_lots_of_features": "이미지, 참고문헌, 방정식 등을 포함한 거의 모든 LaTeX 기능을 지원합니다! __help_guides_link__에서 __appName__에 대한 모든 흥미로운 것들에 대해 알아보세요.", + "latex_guides": "LaTeX 가이드", + "reset_password": "암호 재설정", + "set_password": "암호 설정", + "updating_site": "사이트 업데이트", + "bonus_please_recommend_us": "보너스 - 저희를 추천하세요", + "admin": "관리", + "subscribe": "구독", + "update_billing_details": "청구서 세부사항 업데이트", + "thank_you": "감사합니다", + "group_admin": "그룹 관리", + "all_templates": "모든 템플릿", + "your_settings": "나의 설정", + "maintenance": "유지", + "to_many_login_requests_2_mins": "이 계정으로 너무 많은 로그인을 시도했습니다. 다시 로그인 하기 전에 2분만 기다려주세요", + "email_or_password_wrong_try_again": "이메일 또는 암호가 부정확합니다. 다시 시도해주세요", + "rate_limit_hit_wait": "Rate(이)가 한계에 도달했습니다. 다시 시도하기 전에 잠시만 기다려주세요", + "problem_changing_email_address": "이메일 주소 변경에 문제가 있었습니다. 잠시후에 다시 시도해주세요. 문제가 계속되면 저희에게 연락주시기 바랍니다.", + "single_version_easy_collab_blurb": "__appName__는 콜라보레이터의 최신날짜를 갖추고 있는지와 잘 작동하는지를 확인합니다. 모두가 접속할 수 있는 각 문서의 단일 마스터 버전만 있습니다. 변경사항 충돌이 절대 없으며, 계속 진행하기 전에 가장 최신 도안을 동료들에게 보내는 것을 기다릴 필요가 없습니다.", + "can_see_collabs_type_blurb": "여러 사람들이 동일한 시간에 문서를 작업해, 아무런 문제가 없습니다. 편집기에 동료들이 타이핑하는 것을 바로 볼 수 있으며, 즉시 화면에 변경사항들이 표시됩니다.", + "work_directly_with_collabs": "공동 연구자와 작업하기", + "work_with_word_users": "Word 사용자와 작업하기", + "work_with_word_users_blurb": "__appName__는 당신의 LaTeX 문서에 직접적으로 기여하도록 LaTeX를 가입하지 않은 동료를 초대할 수 있어서 시작하기 쉽습니다. 이분들은 생산적이게되며 LaTeX의 소량을 골라낼 수 있습니다.", + "view_which_changes": "변경사항들 보기", + "sl_included_history_of_changes_blurb": "__appName__는 전체 변경사항들에대한 히스토리를 포함하고 있어서, 무엇을 언제 누가 변경하였는지를 볼 수 있습니다. 이것은 공동 연구자들이 모든 진행사항들을 만드는데 최신형으로 쉽게 유지할 수 있도록 해주며, 당신은 최신 작업을 리뷰할 수 있습니다.", + "can_revert_back_blurb": "공동 연구자와 함께하거나 혼자 작업하면서 실수가 생길 수 있습니다. 이전으로 돌아가기를 사용하십시오. 작업 손실 위험이 없으며 후회하지 않으실 것입니다.", + "start_using_sl_now": "__appName__를 지금 사용하여 시작하세요", + "over_x_templates_easy_getting_started": "400개 이상의 템플릿으로 저널 논문(journal article)과 학위 논문(thesis), 자기소개서(CV) 등 여러 문서를 쉽게 작성할 수 있습니다.", + "done": "완료", + "change": "변경", + "page_not_found": "페이지를 찾을 수 없습니다", + "please_see_help_for_more_info": "더 많은 정보를 원하신다면 저희 도움말 가이드를 확인해주세요", + "this_project_will_appear_in_your_dropbox_folder_at": "이 프로젝트는 Dropbox 폴더에 나타날 것 입니다 ", + "member_of_group_subscription": "__admin_email__은 이 그룹 구독 멤버를 관리합니다. 구독을 관리하시려면 멤버들에게 연락하세요.\n", + "about_henry_oswald": "런던에 거주하는 소프트웨어 엔지니어 입니다. __appName__에서 오리지널 포트폴리오를 만들었으며 안정적이고 조절가능한 플랫폼을 만드는 업무를 맡고 있습니다. 헨리는 Test Driven Development 신봉자이며 저희가 __appName__ 코드를 간략하고 쉽게 유지하도록 해줍니다.", + "about_james_allen": "이론 물리학 박사이며 LaTeX에 대한 열정을 갖고 있습니다. 최초의 온라인 LaTeX 편집기인 ScribTeX을 만들었으며, __appName__를 가능하게 만드는 기술을 개발하는 매우 큰 역할을 맡고 있습니다.", + "two_strong_principles_behind_sl": "저희는 다음과 같은 두 가지 비젼을 가지고 __appName__을 개발합니다.", + "want_to_improve_workflow_of_as_many_people_as_possible": "우리는 가능한 많은분들이 더 수월하게 작업할 수 있기를 바랍니다.", + "detail_on_improve_peoples_workflow": "LaTeX는 사용하기 어렵기로 악명높고 공동 연구자들은 협업에 어려움을 겪습니다. 저희는 이러한 문제들을 해결하기위해 훌륭한 솔루션을 개발해왔으며, 많은 분들이 __appName__에 보다 쉽게 접근할 수 있다고 확신합니다. 저희의 구독료가 공정하다고 느끼도록 하기 위해 노력했으며 수많은 __appName__ 버전을 오픈 소스로 공개하여 누구든 사용할 수 있도록 했습니다.", + "want_to_create_sustainable_lasting_legacy": "오랫동안 지속될 레거시를 만들고자 합니다.", + "details_on_legacy": "__appName__과 같은 제품의 개발과 유지에는 많은 시간과 작업이 필요하기 때문에 장기적으로 이 두 가지를 모두 충족하는 비즈니스 모델을 찾아야합니다. 저희는 __appName__이 외부 자본에 의존하거나 비즈니스 모델의 실패로 인해 사라지는 것을 원치 않습니다. 지속적으로 수익성을 창출하며 __appName__을 운영할 수 있어 기쁘게 생각하며 앞으로도 오랫동안 계속되길 바랍니다.", + "get_in_touch": "연락하기", + "want_to_hear_from_you_email_us_at": "저희는 누구든 __appName__을 사용하는 분의 이야기를 듣고 싶고 저희 일에 대해 대화를 나누길 원합니다. 연락주십시오: ", + "cant_find_email": "해당 이메일 주소는 등록되지 않았습니다, 죄송합니다.", + "plans_amper_pricing": "플랜 & 가격", + "documentation": "참고 문서", + "account": "계정", + "subscription": "구독", + "log_out": "로그아웃", + "en": "English", + "pt": "Português", + "es": "Espagnol", + "fr": "Le français", + "de": "Deutsch", + "it": "Italiano", + "da": "Dansk", + "sv": "Svenska", + "no": "Norsk", + "nl": "Nederlands", + "pl": "폴란드어", + "ru": "Русский", + "uk": "우크라이나어", + "ro": "로마니아어", + "click_here_to_view_sl_in_lng": "__lngName__로 __appName__을 사용하시려면 이곳을 클릭하세요", + "language": "언어", + "upload": "업로드", + "menu": "메뉴", + "full_screen": "크게보기", + "logs_and_output_files": "로그 및 파일 출력", + "download_pdf": "PDF 다운로드", + "split_screen": "화면 분할", + "clear_cached_files": "캐시 파일 정리하기", + "go_to_code_location_in_pdf": "PDF의 코드 위치로 가기", + "please_compile_pdf_before_download": "PDF를 다운로드하기 전에 프로젝트를 컴파일하세요", + "remove_collaborator": "공동 연구자 삭제", + "add_to_folders": "폴더 추가", + "download_zip_file": ".zip 파일 다운로드", + "price": "가격", + "close": "닫기", + "keybindings": "키바인딩", + "restricted": "권한 없음", + "start_x_day_trial": "__len__일간 무료로 경험하세요. 오늘부터!", + "buy_now": "지금 구매하세요!", + "cs": "Čeština", + "view_all": "모두 보기", + "terms": "약관", + "privacy": "개인정보", + "contact": "문의하기", + "change_to_this_plan": "이 플랜으로 변경하기", + "processing": "처리중", + "sure_you_want_to_change_plan": "__planName__에 계획을 변경하길 원하시나요?", + "move_to_annual_billing": "연간 청구서로 옮기기", + "annual_billing_enabled": "연간 청구서 켜기", + "move_to_annual_billing_now": "지금 연간 청구서로 이동하기", + "change_to_annual_billing_and_save": "매년 __percentage__%를 할인받습니다 . 지금 변경하신다면, 매년__yearlySaving__ 을 절약하십니다.", + "missing_template_question": "템플릿이 없나요?", + "tell_us_about_the_template": "템플릿이 없는 경우: 템플릿 복사본이나 해당 __appName__ 템플릿의 url을 저희에게 보내시거나 템플렛을 찾을 수 있는 곳을 알려주십시오. 템플렛에 대해 간략한 정보를 알려주시면 많은 도움이 됩니다.", + "email_us": "이메일 문의", + "this_project_is_public_read_only": "이 프로젝트는 공개여서 모든 사람들이 볼 수 있지만 URL로 접속한 분들은 편집할 수 없습니다.", + "tr": "Türkçe", + "select_files": "파일 선택", + "drag_files": "파일 끌기", + "upload_failed_sorry": "죄송합니다, 업로드를 실패했습니다 :(", + "inserting_files": "파일 넣는중...", + "password_reset_token_expired": "암호 재설정 토큰이 만료되었습니다. 새로운 암호 재설정 이메일을 요청하시고 그곳의 링크를 따르세요.", + "merge_project_with_github": "프로젝트를 GitHub과 합치세요", + "pull_github_changes_into_sharelatex": "GitHub 변경사항들을 __appName__로 당겨주세요", + "push_sharelatex_changes_to_github": "__appName__ 변경사항을 GitHub으로 밀어주세요", + "features": "기능", + "commit": "커밋", + "commiting": "커밋중", + "importing_and_merging_changes_in_github": "GitHub의 변경사항들을 불러오고 합칩니다", + "upgrade_for_faster_compiles": "더 빠른 컴파일을위해 업그레이드하시고 시간제한을 증가시킵니다", + "free_accounts_have_timeout_upgrade_to_increase": "무료 계정은 1분 시간제한을 가지고 있습니다. 시간제한을 증가시키시려면 업그레이드하세요.", + "learn_how_to_make_documents_compile_quickly": "문서 컴파일을 더 빠르게 만드는 방법을 배우세요", + "zh-CN": "中國語", + "cn": "중국어(간체)", + "sync_to_github": "GitHub 동기화", + "sync_to_dropbox_and_github": "Dropbox 및 GitHub 동기화", + "project_too_large": "프로젝트가 너무 큽니다", + "project_too_large_please_reduce": "이 프로젝트는 글자가 너무 많습니다. 글자수를 줄여주세요.", + "please_ask_the_project_owner_to_link_to_github": "GitHub 저장소로 이 프로젝트를 연결하려면 프로젝트 소유자에게 문의하세요", + "go_to_pdf_location_in_code": "코드에서 PDF 위치로 가세요", + "ko": "한국어", + "ja": "日本語", + "about_brian_gough": "현재는 소프트웨어 개발자이며 이전에는 Fermilab과 Los Alamos에서 고에너지 이론 물리학자로 일했습니다. 수년간 프리 소프트웨어 매뉴얼들을 TeX과 LaTex을 이용하여 출판했고 GNU Scientific Library의 관리자이기도 했습니다.", + "first_few_days_free": "첫 __trialLen__일 동안 무료", + "every": "매", + "credit_card": "신용카드", + "credit_card_number": "신용카드 번호", + "invalid": "번호 틀림", + "expiry": "유효기간", + "january": "1월", + "february": "2월", + "march": "3월", + "april": "4월", + "may": "5월", + "june": "6월", + "july": "7월", + "august": "8월", + "september": "9월", + "october": "10월", + "november": "11월", + "december": "12월", + "zip_post_code": "우편번호", + "city": "시/도", + "address": "주소", + "coupon_code": "쿠폰 코드", + "country": "국가", + "billing_address": "청구서 주소", + "upgrade_now": "지금 업그레이드", + "state": "주", + "vat_number": "VAT 번호", + "you_have_joined": "__groupName__에 참여했습니다.", + "claim_premium_account": "__groupName__로부터 제공되는 프리미엄 계정을 요청하셨습니다.", + "you_are_invited_to_group": "__groupName__에서 참여 초대를 받았습니다.", + "you_can_claim_premium_account": "이메일 확인을 통해 __groupName__로부터 제공되는 프리미엄 계정을 요청하실 수 있습니다.", + "not_now": "지금은 안 함", + "verify_email_join_group": "이메일 확인 후 그룹 참여", + "check_email_to_complete_group": "그룹 참여 완료를 위해 이메일을 확인해주십시오.", + "verify_email_address": "이메일 주소 확인", + "group_provides_you_with_premium_account": "__groupName__이(가) 당신에게 프리미엄 계정을 제공합니다. 계정 업그레이드를 위해 이메일 주소를 확인하십시오.", + "check_email_to_complete_the_upgrade": "업그레이드 완료를 위해 이메일을 확인해주세요.", + "email_link_expired": "이메일 연결이 만료되었습니다. 새로운 계정을 요청하십시오.", + "services": "서비스", + "about_shane_kilkelly": "에딘버러에서 살고 있는 소프트웨어 개발자입니다. Functional Programming과 Test Driven Development 신봉자이며 고품질의 소프트웨어를 만드는 것에 자부심을 가지고 있습니다.", + "this_is_your_template": "당신의 프로젝트에서 가져온 템플릿입니다.", + "links": "연결", + "account_settings": "계정 설정", + "search_projects": "프로젝트 검색", + "clone_project": "프로젝트 복사", + "delete_project": "프로젝트 삭제", + "download_zip": "압축 다운로드", + "new_project": "신규 프로젝트", + "blank_project": "빈 프로젝트", + "example_project": "견본 프로젝트", + "from_template": "템플릿", + "cv_or_resume": "CV 및 이력서", + "cover_letter": "Cover letter", + "journal_article": "저널 논문", + "presentation": "프레젠테이션", + "thesis": "학위 논문", + "bibliographies": "서지(bibliography)", + "terms_of_service": "이용약관", + "privacy_policy": "개인정보보호", + "plans_and_pricing": "플랜 및 가격", + "university_licences": "대학교 라이센스", + "security": "보안", + "contact_us": "문의하기", + "thanks": "감사합니다", + "blog": "블로그", + "latex_editor": "LaTeX 편집기", + "get_free_stuff": "무료로 받기", + "chat": "채팅", + "your_message": "나의 메시지", + "loading": "로딩중", + "connecting": "연결중", + "recompile": "다시 컴파일하기", + "download": "다운로드", + "email": "이메일", + "owner": "소유자", + "read_and_write": "읽기 및 쓰기", + "read_only": "읽기만 허용", + "publish": "공개", + "view_in_template_gallery": "템플릿 갤러리에서 보기", + "unpublish": "비공개", + "hotkeys": "단축키", + "saving": "저장중", + "cancel": "취소", + "project_name": "프로젝트 이름", + "root_document": "원본 파일", + "spell_check": "철자 확인", + "compiler": "컴파일러", + "private": "비공개", + "public": "공개", + "delete_forever": "영구적으로 삭제", + "support_and_feedback": "지원 및 피드백", + "help": "도움말", + "latex_templates": "LaTeX 템플릿", + "info": "정보", + "latex_help_guide": "LaTeX 도움말", + "choose_your_plan": "나만의 플랜을 선택하세요", + "indvidual_plans": "개인 플랜", + "free_forever": "평생 무료", + "low_priority_compile": "컴파일링 우선순위 낮음", + "unlimited_projects": "무제한 프로젝트", + "unlimited_compiles": "무제한 컴파일", + "full_history_of_changes": "변경사항 전체 히스토리", + "highest_priority_compiling": "최우선 컴파일링 우선순위", + "dropbox_sync": "Dropbox 동기화", + "beta": "베타", + "sign_up_now": "지금 가입하기", + "annual": "매년", + "half_price_student": "반 값 학생 플랜", + "about_us": "회사 소개", + "loading_recent_github_commits": "최근 커밋 로딩 중", + "no_new_commits_in_github": "지난번에 합친 이후로 GitHub에 새로운 명령이 없습니다.", + "dropbox_sync_description": "Dropbox 동기화로 __appName__프로젝트를 저장하세요. __appName__ 변경사항들은 자동적으로 Dropbox에 전송됩니다.", + "github_sync_description": "GitHub 동기화로, __appName__ 프로젝트를 GitHub 저장소로 연결하실 수 있습니다. __appName__의 새로운 커밋을 만들고, 오프라인이나 GitHub에서 만들어진 커밋과 합치세요.", + "github_import_description": "GitHub 동기화로, GitHub 저장사항들을 __appName__로 불러오실 수 있습니다. __appName__의 새로운 커밋을 만들고, 오프라인이나 GitHub에서 만들어진 커밋과 합치세요.", + "link_to_github_description": "프로젝트를 동기화할 수 있도록 GitHub 계정에 접속할 수 있는 __appName__ 권한이 필요합니다.", + "unlink": "연결해제", + "unlink_github_warning": "GitHub로 동기화한 모든 프로젝트는 연결이 끊길 것이며 GitHub과 더이상 동기화되지 않을 것 입니다. GitHub 계정 연결을 정말로 해지하시겠습니까?", + "github_account_successfully_linked": "GitHub 계정이 성공적으로 연결되었습니다!", + "github_successfully_linked_description": "감사합니다, __appName__로 GitHub 계정을 성공적으로 연결하였습니다. __appName__ 프로젝트를 GitHub으로 전송하시거나 GitHub 저장소의 프로젝트를 불러올 수 있습니다.", + "import_from_github": "GitHub에서 불러오기", + "github_sync_error": "죄송합니다, GitHub 서비스에 대한 에러가 있었습니다. 잠시 후 다시 시도해주시기 바랍니다.", + "loading_github_repositories": "GitHub 저장소를 불러오는 중입니다", + "select_github_repository": "__appName__에 불러올 GitHub 저장소를 선택합니다.", + "import_to_sharelatex": "__appName__에 불러오기", + "importing": "불러오는 중", + "github_sync": "GitHub 동기화", + "checking_project_github_status": "GitHub에 프로젝트 상태 확인 중", + "account_not_linked_to_github": "계정이 GitHub에 연결되어 있지 않습니다", + "project_not_linked_to_github": "이 프로젝트는 GitHub 저장소에 연결되어있지 않습니다. GitHub에 프로젝트를위한 저장소를 만드실 수 있습니다:", + "create_project_in_github": "GitHub 저장소 만들기", + "project_synced_with_git_repo_at": "이 프로젝트는 다음 위치에 GitHub 저장소와 동기화 됩니다:", + "recent_commits_in_github": "GitHub의 최근 커밋", + "sync_project_to_github": "GitHub에 프로젝트 동기화", + "sync_project_to_github_explanation": "__appName__에 만들어진 모든 변경사항이 GitHub의 모든 업데이트와 통합될 것 입니다.", + "github_merge_failed": "__appName__와 GitHub의 변경사항들은 자동적으로 병합될 수 없습니다. __sharelatex_branch__ 브랜치를 git의__master_branch__브랜치로 수동적으로 병합해주시기 바랍니다. 수동적으로 합병된 후에, 계속하시려면 아래를 클릭하세요.", + "continue_github_merge": "수동으로 합병했습니다. 계속하기", + "export_project_to_github": "GitHub으로 프로젝트 보내기", + "github_validation_check": "저장소 이름이 유효한지 확인하시기 바랍니다, 그리고 저장소를 만들기위해 허가를 가지셔야 합니다.", + "repository_name": "저장소 이름", + "optional": "선택사항", + "github_public_description": "모두가 이 저장소를 볼 수 있습니다. 커밋할 수 있는 분을 선택하실 수 있습니다.", + "github_commit_message_placeholder": "__appName__로 만들어진 변경사항에 대한 메시지 커밋...", + "merge": "합치기", + "merging": "합치는중", + "github_account_is_linked": "GitHub 계정이 성공적으로 연결되었습니다.", + "unlink_github": "GitHub 계정 연결끊기", + "link_to_github": "GitHub 계정에 연결하기", + "github_integration": "GitHub 통합", + "github_is_premium": "GitHub 동기화는 프리미엄 기능입니다" +} \ No newline at end of file diff --git a/services/web/locales/nl.json b/services/web/locales/nl.json new file mode 100644 index 0000000000..477da443c0 --- /dev/null +++ b/services/web/locales/nl.json @@ -0,0 +1,869 @@ +{ + "ask_proj_owner_to_upgrade_for_full_history": "Vraag de projecteigenaar om te upgraden om toegang te krijgen tot de volledige geschiedenis van dit project.", + "archive_projects": "Archiveer projecten", + "archive_and_leave_projects": "Archiveer en verlaat projecten", + "about_to_archive_projects": "Je staat op het punt de volgende projecten te achiveren:", + "please_confirm_your_email_before_making_it_default": "Bevestig uw e-mail voordat u deze als standaard gebruikt.", + "back_to_editor": "Terug naar de editor", + "generic_history_error": "Er is iets misgegaan bij het ophalen van de geschiedenis van je project. Als het probleem blijft bestaan, neem dan contact met ons op via:", + "unconfirmed": "Niet bevestigd", + "please_check_your_inbox": "Controleer uw inbox", + "resend_confirmation_email": "Verstuur bevestigingsmail opnieuw", + "history_label_created_by": "Aangemaakt door", + "history_label_this_version": "Label deze versie", + "history_add_label": "Voeg label toe", + "history_adding_label": "Label aan het toevoegen", + "history_new_label_name": "Nieuwe labelnaam", + "history_new_label_added_at": "Een nieuw label zal worden toegevoegd vanaf", + "history_delete_label": "Verwijder label", + "history_deleting_label": "Label aan het verwijderen", + "history_are_you_sure_delete_label": "Weet u zeker dat u het volgende label wilt verwijderen:", + "browsing_project_labelled": "Bladeren door projectversie gelabeld", + "history_view_all": "Alle geschiedenis", + "history_view_labels": "Labels", + "add_another_email": "Voeg nog een email toe", + "start_by_adding_your_email": "Begin met het toevoegen van je e-mailadres", + "let_us_know": "Laat het ons weten", + "add_new_email": "Voeg nieuwe email toe", + "error_performing_request": "Er is een fout opgetreden tijdens het uitvoeren van uw verzoek.", + "emails_and_affiliations_explanation": "Voeg extra e-mailadressen toe aan uw account om toegang te krijgen tot eventuele upgrades die uw universiteit of instelling heeft, om het voor bijdragers gemakkelijker te maken om u te vinden en om ervoor te zorgen dat u uw account kunt herstellen.", + "institution_and_role": "Instelling en rol", + "add_role_and_department": "Voeg rol en afdeling toe", + "save_or_cancel-save": "Sla op", + "save_or_cancel-or": "of", + "save_or_cancel-cancel": "Anuleer", + "make_default": "Maak standaard", + "remove": "Verwijder", + "confirm_email": "Bevestig email", + "invited_to_join_team": "Je bent uitgenodigd om lid te worden van een team", + "join_team": "Wordt lid van het team", + "accepted_invite": "Uitnodiging geaccepteerd", + "invited_to_group": "__inviterName__ heeft je uitgenodigd om lid te worden van een team op __appName__", + "accept_invitation": "Accepteer de uitnodiging", + "joined_team": "Je bent lid geworden van het team dat door __inviterName__ wordt beheerd", + "compare_to_another_version": "Vergelijk met een andere versie", + "browsing_project_as_of": "Door project aan het bladeren vanaf", + "view_single_version": "Bekijk één versie", + "font_family": "Font familie", + "line_height": "Regel afstand", + "compact": "Compact", + "wide": "Breed", + "default": "Standaard", + "leave": "Verlaten", + "archived_projects": "Gearchiveerde Projecten", + "archive": "Archief", + "looking_multiple_licenses": "Op zoek naar meerdere licenties?", + "reduce_costs_group_licenses": "U kunt de administratie verkleinen en de kosten verlagen met onze scherp geprijsde groeplicenties.", + "find_out_more": "Kom meer te weten", + "in_good_company": "Je bent in goed gezelschap", + "dropbox_integration_lowercase": "Dropbox integratie", + "github_integration_lowercase": "Github integratie", + "still_have_questions": "Zijn er nog meer vragen?", + "best_value": "Voordeligste koop", + "faq_how_free_trial_works_question": "Hoe werkt de gratis proefperiode?", + "faq_do_collab_need_premium_question": "Hebben mijn bijdragers ook een premium accounts nodig?", + "faq_need_more_collab_question": "Wat als ik meer bijdragers nodig heb?", + "number_collab": "Aantal bijdragers", + "hit_enter_to_reply": "Toets Enter om te antwoorden", + "add_your_comment_here": "Voeg uw opmerking hier toe", + "resolved_comments": "Opgeloste opmerkingen", + "try_it_for_free": "Probeer het gratis", + "please_ask_the_project_owner_to_upgrade_to_track_changes": "Vraag alstublieft de projecteigenaar om te upgraden zodat de optie 'Wijzigingen bijhouden' gebruikt kan worden", + "mark_as_resolved": "Markeer als opgelost", + "reopen": "Heropen", + "add_comment": "Voeg opmerking toe", + "no_resolved_threads": "Geen opgeloste onderwerpen", + "upgrade_to_track_changes": "Upgrade naar Wijzigingen Bijhouden", + "see_changes_in_your_documents_live": "Zie verandering in uw documenten, live", + "track_any_change_in_real_time": "Hou alle veranderingen bij, in realtime", + "review_your_peers_work": "Review werk van uw collega's", + "accept_or_reject_each_changes_individually": "Accepteer of verwerp iedere wijziging individueel", + "accept": "Accepteer", + "reject": "Verwerp", + "no_comments": "Geen opmerkingen", + "edit": "Pas aan", + "are_you_sure": "Weet u het zeker?", + "resolve": "Los op", + "reply": "Beantwoord", + "quoted_text_in": "Gequote tekst in", + "review": "Review", + "track_changes_is_on": "Wijzigingen bijhouden staat aan", + "track_changes_is_off": "Wijzigingen bijhouden staat uit", + "current_file": "Huidige bestand", + "overview": "Overzicht", + "tracked_change_added": "Toegevoegd", + "tracked_change_deleted": "Verwijderd", + "show_all": "Laat alles zien", + "show_less": "Laat minder zien", + "dropbox_sync_error": "synchronisatiefout met Dropbox", + "send": "Verstuur", + "sending": "Versturen", + "invalid_password": "Onjuist Wachtwoord", + "error": "Fout", + "other_actions": "Andere acties", + "send_test_email": "Stuur een test e-mail", + "email_sent": "E-mail verzonden", + "create_first_admin_account": "Creëer het eerste Admin account", + "ldap": "LDAP", + "ldap_create_admin_instructions": "Kies een e-mail adres voor het eerste __appName__ admin account. Dit moet corresponderen met een account in het LDAP systeem. U zal daarna gevraagd worden in te loggen met dit account", + "saml": "SAML", + "saml_create_admin_instructions": "Kies een e-mail adres voor het eerste __appName__ admin account. Dit moet corresponderen met een account in het SAML systeem. U zal daarna gevraagd worden in te loggen met dit account", + "admin_user_created_message": "Admin gebruiker aangemaakt, Log hier in om verder te gaan", + "status_checks": "Status Checks", + "editor_resources": "Middelen van de Editor", + "checking": "Controleren", + "cannot_invite_self": "Kan geen uitnodiging naar jezelf sturen", + "cannot_invite_non_user": "Kan geen uitnodiging versturen. Ontvanger moet al een __appName__ account hebben", + "log_in_with": "Log in met __provider__", + "return_to_login_page": "Keer terug naar inlogpagina", + "login_failed": "Login mislukt", + "delete_account_warning_message_3": "Je staat op het punt permanent all je accountgegevens te verwijderen, inclusief je projecten en instellingen. Type uw account e-mail adres in onderstaande tekstvakken om verder te gaan", + "delete_account_warning_message_2": "Je staat op het punt al je accountgegevens pemanent te verwijderen, inclusief je projecten en instellingen. Type uw account e-mail adres in het onderstaande tekstvak om verder te gaan.", + "your_sessions": "Uw Sessies", + "clear_sessions_description": "Dit is een lijst van andere sessies (logins) die actief zijn op uw account, exclusief uw huidige sessie. Klik de \"Sessies Opschonen\" knop hieronder om ze uit te loggen", + "no_other_sessions": "Geen andere sessies actief", + "ip_address": "IP-adres", + "session_created_at": "Sessie gecreëerd op", + "clear_sessions": "Verwijder sessies", + "clear_sessions_success": "Sessies verwijderd", + "sessions": "Sessies", + "manage_sessions": "Manage Uw Sessies", + "syntax_validation": "Code check", + "history": "Geschiedenis", + "joining": "Aan het toevoegen", + "open_project": "Open Project", + "files_cannot_include_invalid_characters": "Bestandsnaam mag niet '*' of '/' bevatten", + "invalid_file_name": "Ongeldige Bestandsnaam", + "autocomplete_references": "Refereer Autocomplete (in een \\cite{} blok)", + "autocomplete": "Autocomplete", + "failed_compile_check": "Het lijkt erop dat uw project een aantal fatale syntax errors heeft die u zou moeten fixen voordat we het compilen", + "failed_compile_check_try": "Probeer toch te compileren", + "failed_compile_option_or": "of", + "failed_compile_check_ignore": "zet syntax checken uit", + "compile_time_checks": "Syntax checks", + "stop_on_validation_error": "Check syntax voor compileren", + "ignore_validation_errors": "Check syntax niet", + "run_syntax_check_now": "Doe nu een syntax check", + "your_billing_details_were_saved": "Uw betalingsgegevens zijn opgeslagen", + "security_code": "Beveiligingscode", + "paypal_upgrade": "Om op te waarderen, klik op onderstaande knop en log in met PayPal met uw e-mail en wachtwoord", + "upgrade_cc_btn": "Upgrade nu, betaal na 7 dagen", + "upgrade_paypal_btn": "Ga verder", + "notification_project_invite": "__userName__ wil dat u deelneemt aan __projectName__ Neem deel aan Project", + "file_restored": "Uw bestand (__filename__) is hersteld", + "file_restored_back_to_editor": "U kan terug gaan naar de editor en er weer aan werken", + "file_restored_back_to_editor_btn": "Terug naar editor", + "view_project": "Bekijk Project", + "join_project": "Neem deel aan Project", + "invite_not_accepted": "Uitnodiging nog niet geaccepteerd", + "resend": "Stuur opnieuw", + "syntax_check": "Syntax check", + "revoke_invite": "Herroep uitnodiging", + "pending": "In afwachting", + "invite_not_valid": "Dit is geen valide projectuitnodiging", + "invite_not_valid_description": "De uitnodiging kan verlopen zijn. Neem contact op met de projecteigenaar", + "accepting_invite_as": "U accepteert deze uitnodiging als", + "accept_invite": "Accepteer uitnodiging", + "log_hint_ask_extra_feedback": "Kan u ons helpen begrijpen waarom de hint niet bruikbaar was?", + "log_hint_extra_feedback_didnt_understand": "Ik begreep de hint niet", + "log_hint_extra_feedback_not_applicable": "Ik kan deze oplossing niet op mijn document toepassen", + "log_hint_extra_feedback_incorrect": "Dit lost de foutmelding niet op", + "log_hint_extra_feedback_other": "Anders:", + "log_hint_extra_feedback_submit": "Verstuur", + "if_you_are_registered": "Als u al geregistreerd bent", + "stop_compile": "Stop met compileren", + "terminated": "Compileren gestopt", + "compile_terminated_by_user": "Het compileren was gestopt door de 'Stop Compilatie' knop. U kan in de log files zien waar het compileren is gestopt", + "site_description": "Een online LaTeX editor die makkelijk te gebruiken is. Geen installatie, real-time samenwerken, versiecontrole, honderden LaTeX templates en meer.", + "knowledge_base": "Kennisbasis", + "contact_message_label": "Bericht", + "kb_suggestions_enquiry": "Heeft u onze __kbLink__ al gezien?", + "answer_yes": "Ja", + "answer_no": "Nee", + "log_hint_extra_info": "Meer informatie", + "log_hint_feedback_label": "Was deze hint behulpzaam?", + "log_hint_feedback_gratitude": "Bedankt voor uw feedback!", + "recompile_pdf": "Hercompileer de PDF", + "about_paulo_reis": "is een front-end software developer en user experience researcher uit Aveiro, Portugal. Paulo heeft een PhD in user experience en is gepassioneerd over het sturen van technologie naar menselijk gebruik - in concept of testen/validatie, in design of implementatie", + "login_or_password_wrong_try_again": "Uw inlognaam of wachtwoord is incorrect. Probeer a.u.b. opnieuw", + "manage_beta_program_membership": "Manage Bèta Programma Lidmaatschap", + "beta_program_opt_out_action": "Uitschrijven uit het Bèta Programma", + "disable_beta": "Schakel Bèta uit", + "beta_program_badge_description": "TIjdens het gebruik van __appName__, zullen bèta opties gemarkeerd zijn met deze badge:", + "beta_program_current_beta_features_description": "We testen momenteel de volgende nieuwe opties in bèta:", + "enable_beta": "Schakel Bèta in", + "user_in_beta_program": "Gebruiker participeert in een Bèta Programma", + "beta_program_already_participating": "U neemt al deel aan het Bèta Programma", + "sharelatex_beta_program": "__appName__ Beta Programma", + "beta_program_benefits": "We zijn altijd bezig met het verbeteren van __appName__. Door deel te nemen aan ons Bèta programma heeft u vervroegd toegang tot nieuwe opties en kan u ons helpen uw wensen beter te begrijpen.", + "beta_program_opt_in_action": "Schrijf in voor Bèta Programma", + "conflicting_paths_found": "Conflicterende Bestandspaden Gevonden", + "following_paths_conflict": "De volgende bestanden en folders hebben hetzelfde bestandspad", + "open_a_file_on_the_left": "Open een bestand aan de linkerkant", + "reference_error_relink_hint": "Als deze foutmelding blijft verschijnen, probeer dan uw account hier opnieuw te linken:", + "pdf_rendering_error": "PDF Render Error", + "something_went_wrong_rendering_pdf": "Er is iets misgegaan tijdens het renderen van deze PDF.", + "mendeley_reference_loading_error_expired": "Mendeley token verlopen, gelieve je account opnieuw te koppelen", + "zotero_reference_loading_error_expired": "Zotero token verlopen, gelieve je account opnieuw te koppelen", + "mendeley_reference_loading_error_forbidden": "Kon referenties niet laden vanaf Mendeley, gelieve je account opnieuw te koppelen en nogmaals te proberen", + "zotero_reference_loading_error_forbidden": "Kon referenties niet laden vanaf Zotero, gelieve je account opnieuw te koppelen en nogmaals te proberen", + "mendeley_integration": "Mendeley Integratie", + "mendeley_sync_description": "Met Mendeley integratie kan u uw referenties uit mendeley in uw __appName__ projecten importeren", + "mendeley_is_premium": "Mendeley Integratie is een premium functie", + "link_to_mendeley": "Verbinden met Mendeley", + "unlink_to_mendeley": "Mendeley Ontkoppelen", + "mendeley_reference_loading": "Referenties laden vanaf Mendeley", + "mendeley_reference_loading_success": "Referenties geladen vanaf Mendeley", + "mendeley_reference_loading_error": "Error, kan referenties niet laden vanaf Mendeley", + "zotero_integration": "Zetro Integratie", + "zotero_is_premium": "Zotero Integratie is een premium functie", + "link_to_zotero": "Verbinden met Zotero", + "unlink_to_zotero": "Zotero Ontkoppelen", + "zotero_reference_loading": "Referenties laden vanaf Zotero", + "zotero_reference_loading_success": "Referenties geladen vanaf Zotero", + "zotero_reference_loading_error": "Error, kan referenties niet laden vanaf Mendeley", + "reference_import_button": "Importeer referenties naar", + "unlink_reference": "Ontkoppel Referentie Provider", + "unlink_warning_reference": "Waarschuwing: Wanneer u uw account van deze provider losmaakt kan u geen referenties meer in uw projecten importeren", + "mendeley": "Mendeley", + "zotero": "Zotero", + "suggest_new_doc": "Stel nieuw document voor", + "request_sent_thank_you": "Verzoek verzonden, bedankt.", + "suggestion": "Suggestie", + "project_url": "Getroffen Project URL", + "subject": "Onderwerp", + "confirm": "Bevestig", + "cancel_personal_subscription_first": "U heeft al een persoonlijke inschrijving, wilt u dat wij deze annuleren voordat u deel neemt aan de groepslicentie?", + "delete_projects": "Verwijder projecten", + "leave_projects": "Verlaat projecten", + "delete_and_leave_projects": "Verwijder en verlaat projecten", + "too_recently_compiled": "Dit project is recentelijk nog gecompileerd, daarom is het nu overgeslagen.", + "clsi_maintenance": "De compilatie servers zijn momenteel in onderhoud, en zullen binnenkort weer beschikbaar zijn.", + "references_search_hint": "Druk op CTRL-Spatie om te zoeken", + "ask_proj_owner_to_upgrade_for_references_search": "Vraag alstublieft de projecteigenaar up te graden om de Zoek Referenties optie te gebruiken", + "ask_proj_owner_to_upgrade_for_faster_compiles": "Vraag alstublieft de projecteigenaar up te graden voor snellere compilaties en een verhoging van de timeout limiet", + "search_bib_files": "Zoek op auteur, titel, jaar", + "leave_group": "Verlaat groep", + "leave_now": "Verlaat nu", + "sure_you_want_to_leave_group": "Weet je zeker dat je deze groep wilt verlaten?", + "notification_group_invite": "Je bent uigenodigd om lid te worden van __groupName__, Word lid.", + "search_references": "Doorzoek het .bib bestand in dit project", + "no_search_results": "Geen zoek resultaten", + "email_already_registered": "Dit e-mailadres is al geregistreerd", + "compile_mode": "Compileer Mode", + "normal": "Normaal", + "fast": "Snel", + "rename_folder": "Hernoem map", + "delete_folder": "Verwijder map", + "about_to_delete_folder": "Je staat op het punt de volgende mappen te verwijderen (projecten in deze mappen zullen niet worden verwijderd):", + "to_modify_your_subscription_go_to": "Om je abonnement aan te passen, ga naar", + "manage_subscription": "Beheer abonnementen", + "activate_account": "Activeer je account", + "yes_please": "Ja alsjeblieft!", + "nearly_activated": "Je bent één stap verwijderd van het activeren van je __appName__ account", + "please_set_a_password": "Gelieve een wachtwoord te kiezen", + "activation_token_expired": "Je activatie token is verlopen, je zal een nieuwe moeten laten versturen.", + "activate": "Activeer", + "activating": "Activeren", + "ill_take_it": "Ik neem hem!", + "cancel_your_subscription": "Annuleer je abonnement", + "no_thanks_cancel_now": "Nee bedankt - Ik wil nog steeds annuleren.", + "cancel_my_account": "Annuleer mijn abonnement", + "sure_you_want_to_cancel": "Weet je zeker dat je wilt annuleren?", + "i_want_to_stay": "Ik wil blijven", + "have_more_days_to_try": "Hier zijn __days__ dagen extra Proefperiode!", + "interested_in_cheaper_plan": "Zou je geïnteresseerd zijn in de goedkopere __price__ studentenaanbieding?", + "session_expired_redirecting_to_login": "Sessie verlopen. Doorsturen naar de inlog pagina in __seconds__ seconden.", + "maximum_files_uploaded_together": "Maximum __max__ bestanden tegelijk geüplaod", + "too_many_files_uploaded_throttled_short_period": "Teveel bestanden geüpload, je uploads zijn afgeknepen voor een korte periode.", + "compile_larger_projects": "Compileer grote projecten", + "upgrade_to_get_feature": "Upgrade om __feature__ te krijgen, plus:", + "new_group": "Nieuwe groep", + "about_to_delete_groups": "Je staat op het punt de volgende groepen te verwijderen:", + "removing": "Verwijderen", + "adding": "Toevoegen", + "groups": "Groepen", + "rename_group": "Hernoem groep", + "renaming": "Hernoemen", + "create_group": "Maak groep", + "delete_group": "Verwijder groep", + "delete_groups": "Verwijder groepen", + "your_groups": "Jouw groepen", + "group_name": "Groepsnaam", + "no_groups": "Geen groepen", + "Subscription": "Abonnementen", + "Documentation": "Documentatie", + "Universities": "Universiteiten", + "Account Settings": "Accountinstellingen", + "Projects": "Projecten", + "Account": "Account", + "global": "globaal", + "Terms": "Voorwaarden", + "Security": "Beveiliging", + "About": "Over", + "editor_disconected_click_to_reconnect": "Verbinding Editor verbroken, klik om opnieuw te verbinden", + "word_count": "Aantal woorden", + "please_compile_pdf_before_word_count": "Compileer je project alvorens het aantal woorden te tellen", + "total_words": "Aantal woorden", + "headers": "Koppen", + "math_inline": "Math Inline", + "math_display": "Math Display", + "connected_users": "Verbonden gebruikers", + "projects": "Projecten", + "upload_project": "Project Uploaden", + "all_projects": "Alle projecten", + "your_projects": "Jouw Projecten", + "shared_with_you": "Gedeeld met jou", + "deleted_projects": "Verwijderde Projecten", + "templates": "Sjablonen", + "new_folder": "Nieuwe Map", + "create_your_first_project": "Maak je eerste project!", + "complete": "Klaar", + "on_free_sl": "Je gebruikt de gratis versie van __appName__", + "upgrade": "Upgraden", + "or_unlock_features_bonus": "of verkrijg bepaalde bonusfuncties door", + "sharing_sl": "__appName__ te delen", + "add_to_folder": "Toevoegen aan map", + "create_new_folder": "Nieuwe Map Maken", + "more": "Meer", + "rename": "Hernoemen", + "make_copy": "Een kopie maken", + "restore": "Herstellen", + "title": "Titel", + "last_modified": "Laatst Gewijzigd", + "no_projects": "Geen projecten", + "welcome_to_sl": "Welkom bij __appName__!", + "new_to_latex_look_at": "Onbekend met LaTeX? Begin door te kijken bij onze", + "or": "of", + "or_create_project_left": "of maak je eerste project aan de linkerkant.", + "thanks_settings_updated": "Bedankt, je instellingen zijn bijgewerkt.", + "update_account_info": "Accountinfo Bijwerken", + "must_be_email_address": "Moet een e-mailadres zijn", + "first_name": "Voornaam", + "last_name": "Achternaam", + "update": "Bijwerken", + "change_password": "Wachtwoord Wijzigen", + "current_password": "Huidige Wachtwoord", + "new_password": "Nieuwe Wachtwoord", + "confirm_new_password": "Bevestig Nieuwe Wachtwoord", + "required": "Vereist", + "doesnt_match": "Komt niet overeen", + "dropbox_integration": "Dropboxintegratie", + "learn_more": "Meer weten", + "dropbox_is_premium": "Synchronisatie met Dropbox is een premium functie", + "account_is_linked": "Account is gekoppeld", + "unlink_dropbox": "Dropbox Ontkoppelen", + "link_to_dropbox": "Verbinden met Dropbox", + "newsletter_info_and_unsubscribe": "Elke paar maanden versturen we een nieuwsbrief met een samenvatting van nieuwe functies. Als je deze e-mail niet wilt ontvangen, dan kun je je er altijd voor uitschrijven:", + "unsubscribed": "Uitgeschreven", + "unsubscribing": "Aan het uitschrijven", + "unsubscribe": "Uitschrijven", + "need_to_leave": "Moet je weg?", + "delete_your_account": "Account verwijderen", + "delete_account": "Account verwijderen", + "delete_account_warning_message": "Je staat op het punt al je accountgegevens pemanent te verwijderen, inclusief je projecten en instellingen. Type uw account e-mail adres in het onderstaande tekstvak om verder te gaan.", + "deleting": "Aan het verwijderen", + "delete": "Verwijderen", + "sl_benefits_plans": "__appName__ is de makkelijkste LaTeX-verwerker op aarde. Blijf up-to-date met je bijdragers, houd alle wijzigingen in je werk bij en gebruik onze LaTeX-omgeving waar je ook bent.", + "monthly": "Maandelijks", + "personal": "Persoonlijk", + "free": "Gratis", + "one_collaborator": "Slechts één bijdrager", + "collaborator": "Bijdrager", + "collabs_per_proj": "__collabcount__ bijdragers per project", + "full_doc_history": "Volledige documentsgeschiedenis", + "sync_to_dropbox": "Synchroniseren met Dropbox", + "start_free_trial": "Start Gratis Proefperiode!", + "professional": "Professioneel", + "unlimited_collabs": "Onbeperkt aantal bijdragers", + "name": "Naam", + "student": "Student", + "university": "Universiteit", + "position": "Functie", + "choose_plan_works_for_you": "Kies het abonnement dat bij jou past met onze __len__ dagen gratis proefperiode. Annuleren kan altijd.", + "interested_in_group_licence": "Interesse om __appName__ te gebruiken met een groeps-, team- of afdelingsaccount?", + "get_in_touch_for_details": "Contacteer ons voor details!", + "group_plan_enquiry": "Info Aanvragen Over Groepsabonnementen", + "enjoy_these_features": "Geniet van al deze gave functies", + "create_unlimited_projects": "Creëer zoveel projecten als je maar nodig hebt.", + "never_loose_work": "Raak geen stap kwijt, daar zorgen wij voor.", + "access_projects_anywhere": "Krijg overal toegang tot je projecten.", + "log_in": "Inloggen", + "login": "Inloggen", + "logging_in": "Aan het inloggen", + "forgot_your_password": "Wachtwoord vergeten", + "password_reset": "Wachtwoord Herstellen", + "password_reset_email_sent": "Er is een e-mail naar je verstuur om je wachtwoordreset te voltooien.", + "please_enter_email": "Vul je e-mailadres in", + "request_password_reset": "Wachtwoordherstel aanvragen", + "reset_your_password": "Herstel je wachtwoord", + "password_has_been_reset": "Je wachtwoord is hersteld", + "login_here": "Log hier in", + "set_new_password": "Nieuw wachtwoord instellen", + "user_wants_you_to_see_project": "__username__ wil dat u deelneemt aan __projectname__", + "join_sl_to_view_project": "Word lid van __appName__ om dit project te bekijken", + "register_to_edit_template": "Registreet om het sjabloon __templateName__ te bewerken", + "already_have_sl_account": "Heb je al een __appName__-account?", + "register": "Registreren", + "password": "Wachtwoord", + "registering": "Aan het registreren", + "planned_maintenance": "Gepland Onderhoud", + "no_planned_maintenance": "Er is op dit moment geen gepland onderhoud", + "cant_find_page": "Sorry, we kunnen die pagina waar je naar zocht niet vinden.", + "take_me_home": "Terug naar huis dan maar!", + "no_preview_available": "Sorry, er is geen voorbeeld beschikbaar.", + "no_messages": "Geen berichten", + "send_first_message": "Verzend je eerste bericht", + "account_not_linked_to_dropbox": "Je account is niet gekoppeld aan Dropbox", + "update_dropbox_settings": "Dropboxinstellingen Updaten", + "refresh_page_after_starting_free_trial": "Ververs deze pagina nadat je de gratis proefperiode hebt gestart.", + "checking_dropbox_status": "Dropboxstatus aan het controleren", + "dismiss": "Verbergen", + "new_file": "Nieuw Bestand", + "upload_file": "Bestand Uploaden", + "create": "Creëren", + "creating": "Aan het maken", + "upload_files": "Bestand(en) Uploaden", + "sure_you_want_to_delete": "Weet je zeker dat je de volgende bestanden permanent wilt verwijderen?", + "common": "Veelvoorkomend", + "navigation": "Navigatie", + "editing": "Aan het bewerken", + "ok": "OK", + "source": "Bron", + "actions": "Acties", + "copy_project": "Project Kopiëren", + "publish_as_template": "Publiceren als Sjabloon", + "sync": "Synchronisatie", + "settings": "Instellingen", + "main_document": "Hoofddocument", + "off": "Uit", + "auto_complete": "Autocorrectie", + "theme": "Thema", + "font_size": "Lettergrootte", + "pdf_viewer": "PDF-lezer", + "built_in": "Ingebouwd", + "native": "Browserkeuze", + "show_hotkeys": "Sneltoetsen Tonen", + "new_name": "Nieuwe Naam", + "copying": "aan het kopiëren", + "copy": "Kopiëren", + "compiling": "Aan het compileren", + "click_here_to_preview_pdf": "Klik hier om je werk als PDF te bekijken.", + "server_error": "Serverfout", + "somthing_went_wrong_compiling": "Sorry, er ging iets fout en je project kon niet gecompileerd worden. Probeer het over enkele ogenblikken opnieuw.", + "timedout": "Time-out", + "proj_timed_out_reason": "Sorry, je compilatie duurde te lang en bereikte de time-out. Dit zou kunnen komen door een groot aantal afbeeldingen in hoge resolutie, of veel gecompliceerde diagrammen.", + "no_errors_good_job": "Geen fouten, goed bezig!", + "compile_error": "Compilatiefout", + "generic_failed_compile_message": "Sorry, je LaTeX-code kon niet gecompileerd worden om een bepaalde reden. Bekijk de onderstaande foutmeldingen voor meer details, of bekijk de rauwe log", + "other_logs_and_files": "Andere logs en bestanden", + "view_raw_logs": "Rauwe Logs Bekijken", + "hide_raw_logs": "Rauwe Logs Verbergen", + "clear_cache": "Tijdelijk geheugen wissen", + "clear_cache_explanation": "Dit zal alle verborgen LaTeX-bestanden (.aux, .bbl, etc.) van onze compilatieserver verwijderen. Over het algemeen hoef je dit niet te doen, tenzij je problemen hebt met referenties.", + "clear_cache_is_safe": "Je projectbestanden zullen niet verwijderd of gewijzigd worden.", + "clearing": "Aan het leegmaken", + "template_description": "Sjabloonbeschrijving", + "project_last_published_at": "Je project is voor het laatst gepubliceerd om", + "problem_talking_to_publishing_service": "Er is een probleem met onze publicatiedienst, probeer het over enkele minuten opnieuw", + "unpublishing": "Aan het ontpubliceren", + "republish": "Herpubliceren", + "publishing": "Aan het publiceren", + "share_project": "Project Delen", + "this_project_is_private": "Dit project is privé en kan alleen door onderstaande personen bekeken worden.", + "make_public": "Publiek Toegankelijk Maken", + "this_project_is_public": "Dit project is publiek toegankelijk en kan gewijzigd worden door iedereen die de URL heeft.", + "make_private": "Privé Maken", + "can_edit": "Kan Bewerken", + "share_with_your_collabs": "Delen met je bijdragers", + "share": "Delen", + "need_to_upgrade_for_more_collabs": "Je dient je account te upgraden om meer bijdragers toe te voegen", + "make_project_public": "Project publiek toegankelijk maken", + "make_project_public_consequences": "Als je je project publiek toegankelijk maakt, dan kan iedereen die de URL heeft toegang verkrijgen.", + "allow_public_editing": "Publieke wijzigingen toestaan", + "allow_public_read_only": "Publiekelijk alleen-lezen toegang toestaan", + "make_project_private": "Project privé maken", + "make_project_private_consequences": "Als je je project privé maakt, dan kunnen alleen de personen die jij kiest toegang verkrijgen.", + "need_to_upgrade_for_history": "Je moet je account upgraden om de Geschiedenis te gebruiken.", + "ask_proj_owner_to_upgrade_for_history": "Vraag de eigenaar van het project om te upgraden om de Geschiedenis te gebruiken.", + "anonymous": "Anoniem", + "generic_something_went_wrong": "Sorry, er ging iets fout", + "restoring": "Aan het herstellen", + "restore_to_before_these_changes": "Herstellen naar voordat deze wijzigingen waren aangebracht", + "profile_complete_percentage": "Je profiel is __percentval__% volledig", + "file_has_been_deleted": "__filename__ is verwijderd", + "sure_you_want_to_restore_before": "Weet je zeker dat je __filename__ wilt herstellen naar de versie voor de veranderingen van __date__?", + "rename_project": "Project Hernoemen", + "about_to_delete_projects": "Je staat op het punt de volgende projecten te verwijderen:", + "about_to_leave_projects": "Je staat op het punt de volgende projecten te verlaten:", + "upload_zipped_project": "Gezipt Project Uploaden", + "upload_a_zipped_project": "Upload een gezipt project", + "your_profile": "Jouw Profiel", + "institution": "Instelling", + "role": "Functie", + "folders": "Mappen", + "disconnected": "Niet Verbonden", + "please_refresh": "Ververs de pagina om door te gaan.", + "lost_connection": "Verbinding Verbroken", + "reconnecting_in_x_secs": "Opnieuw verbinden over __seconds__ seconden", + "try_now": "Nu Proberen", + "reconnecting": "Opnieuw aan het verbinden", + "saving_notification_with_seconds": "__docname__ aan het opslaan... (__seconds__ seconden aan niet-opgeslagen wijzigingen)", + "help_us_spread_word": "Help __appName__ meer naamsbekendheid te krijgen", + "share_sl_to_get_rewards": "Deel __appName__ met je vrienden en collega's en verkrijg onderstaande beloningen", + "post_on_facebook": "Delen op Facebook", + "share_us_on_googleplus": "Deel on op Google+", + "email_us_to_your_friends": "E-mail ons naar je vrienden", + "link_to_us": "Link naar ons op je website", + "direct_link": "Directe Link", + "sl_gives_you_free_stuff_see_progress_below": "Wanneer iemand __appName__ gaat gebruiken dankzij jouw aanbeveling, geven we jou gratis functies als bedankje! Bekijk je voortgang hieronder.", + "spread_the_word_and_fill_bar": "Vertel anderen over ons en vul deze balk op", + "one_free_collab": "Één gratis bijdrager", + "three_free_collab": "Drie gratis bijdragers", + "free_dropbox_and_history": "Gratis Dropbox en Geschiedenis", + "you_not_introed_anyone_to_sl": "Je hebt nog niemand geïntroduceerd bij __appName__ . Deel nu!", + "you_introed_small_number": " Je hebt __numberOfPeople__ persoon bij __appName__ geïntroduceerd. Goed gedaan, maar kun je er meer overhalen?", + "you_introed_high_number": " Je hebt __numberOfPeople__ personen bij __appName__ geïntroduceerd. Goed gedaan!", + "link_to_sl": "Linken naar __appName__", + "can_link_to_sl_with_html": "Je kunt naar __appName__ linken via de volgende HTML-code:", + "year": "jaar", + "month": "maand", + "subscribe_to_this_plan": "Hierop abonneren", + "your_plan": "Jouw abonnement", + "your_subscription": "Jouw Abonnement", + "on_free_trial_expiring_at": "Je zit op dit moment in een gratis proefperiode die eindigt op __expiresAt__.", + "choose_a_plan_below": "Kies hieronder het abonnement om je voor in te schrijven.", + "currently_subscribed_to_plan": "Je bent op dit moment geabonneerd op __planName__.", + "change_plan": "Abonnement wijzigen", + "next_payment_of_x_collectected_on_y": "De volgende betaling van __paymentAmmount__ zal worden geïnd op __collectionDate__", + "update_your_billing_details": "Werk Je Factuurgegevens Bij", + "subscription_canceled_and_terminate_on_x": " Je abonnement is geannuleerd en zal eindigen op __terminateDate__. Er zullen geen betalingen meer worden vereist.", + "your_subscription_has_expired": "Je abonnement is verlopen.", + "create_new_subscription": "Nieuw Abonnement Maken", + "problem_with_subscription_contact_us": "Er is een probleem met je abonnement. Neem contact met ons op voor meer informatie.", + "manage_group": "Groep Beheren", + "loading_billing_form": "Factuurgegevens laden van", + "you_have_added_x_of_group_size_y": "Je hebt __addedUsersSize__ van de __groupSize__ beschikbare leden", + "remove_from_group": "Uit groep verwijderen", + "group_account": "Groepsaccount", + "registered": "Geregistreerd", + "no_members": "Geen leden", + "add_more_members": "Meer leden toevoegen", + "add": "Toevoegen", + "thanks_for_subscribing": "Bedankt voor het abonneren!", + "your_card_will_be_charged_soon": "Je creditcard zal binnenkort worden afgeschreven.", + "if_you_dont_want_to_be_charged": "Als je niet meer gefactureerd wilt worden ", + "add_your_first_group_member_now": "Voeg je eerste groepsleden nu toe", + "thanks_for_subscribing_you_help_sl": "Bedankt voor het abonneren op __planName__. De ondersteuning van mensen zoals jij maakt het mogelijk dat __appName__ groeit en verbetert.", + "back_to_your_projects": "Terug naar je projecten", + "goes_straight_to_our_inboxes": "Het gaat direct naar ons postvak-in", + "need_anything_contact_us_at": "Als er iets is dat je ooit nodig hebt, neem gerust direct contact met ons op via", + "regards": "Groeten", + "about": "Over", + "comment": "Reageren", + "restricted_no_permission": "Beperkt, sorry. Je hebt geen toegang tot deze pagina.", + "online_latex_editor": "Online LaTeX-verwerker", + "meet_team_behind_latex_editor": "Maak kennis met het team achter jouw favoriete online LaTeX-verwerker.", + "follow_me_on_twitter": "Volg mij op Twitter", + "motivation": "Motivatie", + "evolved": "Verfijnd", + "the_easy_online_collab_latex_editor": "De gemakkelijke, online LaTeX-verwerker voor samenwerking", + "get_started_now": "Ga nu aan de slag", + "sl_used_over_x_people_at": "__appName__ wordt gebruikt door meer dan __numberOfUsers__ studenten en academici aan:", + "collaboration": "Samenwerking", + "work_on_single_version": "Werk samen in één versie", + "view_collab_edits": "Bekijk wijzigingen door bijdragers ", + "ease_of_use": " Gebruiksgemak", + "no_complicated_latex_install": "Geen gecompliceerde LaTeX-installatie", + "all_packages_and_templates": "Alle pakketten en __templatesLink__ die je nodig hebt", + "document_history": "Documentsgeschiedenis", + "see_what_has_been": "Zie wat er is ", + "added": "toegevoegd", + "and": "en", + "removed": "verwijderd", + "restore_to_any_older_version": "Herstel naar elke willekeurige oudere versie", + "work_from_anywhere": "Werk vanaf waar ook ter wereld", + "acces_work_from_anywhere": "Je werk is overal op aarde toegankelijk", + "work_offline_and_sync_with_dropbox": "Werk offline en synchroniseer je bestanden via Dropbox en GitHub", + "over": "meer dan", + "view_templates": "Sjablonen bekijken", + "nothing_to_install_ready_to_go": "Er is niks moeilijks dat je moet installeren en je kunt __start_now__, zelfs als je het nooit eerder hebt gebruikt. __appName__ bevat een complete LaTeX-omgeving die klaar is voor gebruik en draait op onze servers.", + "start_using_latex_now": "nu beginnen met LaTeX", + "get_same_latex_setup": "Met __appName__ krijg je overal waar je bent dezelfde LaTeX-installatie. Door samen met je collega's en studenten te werken op __appName__, weet je zeker dat je geen versieproblemen of conflicterende pakketten tegen zult komen.", + "support_lots_of_features": "We ondersteunen bijna alle LaTeX-functies, waaronder het invoegen van afbeeldingen, bibliografieën, vergelijkingen en nog veel meer! Lees over alle leuke dingen die je kunt doen met __appName__ in onze __help_guides_link__", + "latex_guides": "LaTeX-gidsen", + "reset_password": "Wachtwoord Herstellen", + "set_password": "Wachtwoord Instellen", + "updating_site": "Site Aan Het Updaten", + "bonus_please_recommend_us": "Bonus - Beveel on aan", + "admin": "beheerder", + "subscribe": "Abonneren", + "update_billing_details": "Factuurgegevens Bijwerken", + "thank_you": "Dankjewel", + "group_admin": "Groepsbeheerder", + "all_templates": "Alles Sjablonen", + "your_settings": "Jouw instellingen", + "maintenance": "Onderhous", + "to_many_login_requests_2_mins": "Er is te vaak geprobeerd bij dit account in te loggen. Wacht 2 minuten alvorens het opnieuw te proberen.", + "email_or_password_wrong_try_again": "Je e-mailadres of wachtwoord is incorrect. Probeer het opnieuw", + "rate_limit_hit_wait": "Frequentielimiet bereikt. Wacht een moment voordat je het nogmaals probeert", + "problem_changing_email_address": "Er was een probleem tijdens het veranderen van je e-mailadres. Probeer het over een ogenblik opnieuw. Als het probleem blijft bestaan, neem dan a.u.b. contact met ons op.", + "single_version_easy_collab_blurb": "__appName__ zorgt ervoor dat je altijd up-to-date bent met je bijdragers en wat zij doen. Er is maar één hoofdversie van elk document, waar iedereen toegang tot heeft. Het is onmogelijk om conflicterende wijzigingen aan te brengen en je hoeft niet te wachten op de bewerkingen van je collega's, voordat je zelf aan de slag kunt gaan.", + "can_see_collabs_type_blurb": "Als meerdere mensen tegelijkertijd willen werken in een document, dan is dat geen enkel probleem. Je kunt direct in de verwerker zien waar je collega's typen en hun wijzigingen zie je meteen op je scherm.", + "work_directly_with_collabs": "Werk direct met je bijdragers", + "work_with_word_users": "Werk samen met Wordgebruikers", + "work_with_word_users_blurb": "__appName__ is zo eenvoudig om mee te beginnen, dat je al je collega's die geen LaTeX kennen gewoon kunt uitnodigen om direct aan je LaTeX-documenten bij te dragen. Ze kunnen productief te werk gaan vanaf dag één en langzamerhand leren omgaan met LaTeX.", + "view_which_changes": "Bekijk welke wijzigingen zijn", + "sl_included_history_of_changes_blurb": "__appName__ houdt een geschiedenis bij van alle wijzigingen, zodat je precies kunt zien wie wat heeft veranderd. Dit maakt het extreem gemakkelijk om up-to-date te blijven met vorderingen gemaakt door je bijdragers en je kunt recent werk beoordelen.", + "can_revert_back_blurb": "Zowel in samenwerkingsverband als in je eentje worden soms fouten gemaakt. Een vorige versie herstellen is eenvoudig en elimineert het risico op verlies van je werk of spijt van een wijziging.", + "start_using_sl_now": "Start nu met __appName__", + "over_x_templates_easy_getting_started": "Er zijn __over__ 400 __templates__ in onze sjablonengalerij, dus het is heel makkelijk om aan de slag te gaan, of je nu een tijdschriftartikel, scriptie, CV of iets anders schrijft.", + "done": "Klaar", + "change": "Wijzigen", + "page_not_found": "Pagina Niet Gevonden", + "please_see_help_for_more_info": "Zie onze hulpgids voor meer informatie", + "this_project_will_appear_in_your_dropbox_folder_at": "Dit project zal verschijnen in je Dropbox map in ", + "member_of_group_subscription": "Je account valt onder een groepsabonnement, beheerd door __admin_email__. Neem contact op met hem/haar om je account te beheren.\n", + "about_henry_oswald": "is een software-ingenieur en woont in Londen. Hij heeft het originele prototype van __appName__ gebouwd en is verantwoordelijk voor het bouwen van een stabiel en schaalbaar platform. Henry is sterke voorstander van Test Driven Development en zorgt ervoor dat we de __appName__-code schoon en makkelijk te onderhouden houden.", + "about_james_allen": "heeft een doctoraat in theoretische natuurkunde en heeft een passie voor LaTeX. Hij heeft één van de eerste online LaTeX-verwerkers, ScribTeX, gecreëerd en heeft een belangrijke rol gespeeld bij de ontwikkeling van de technologieën die __appName__ mogelijk maken.", + "two_strong_principles_behind_sl": "Er zijn twee sterke leidende principes die ten grondslag liggen aan ons werk op __appName__:", + "want_to_improve_workflow_of_as_many_people_as_possible": "We willen de werkstroom van zo veel mogelijk mensen verbeteren.", + "detail_on_improve_peoples_workflow": "LaTeX is berucht om zijn moeilijkheid in gebruik en samenwerking is altijd moeilijk om te coördineren. Wij geloven dat we een aantal goede oplossingen hebben ontwikkeld voor mensen die dit soort problemen hebben. We willen ervoor zorgen dat __appName__ bereikbaar is voor zo veel mogelijk mensen. Daarom proberen we onze prijzen eerlijk te houden en hebben veel van __appName__ open source gemaakt, zodat iedereen zijn eigen versie kan gebruiken.", + "want_to_create_sustainable_lasting_legacy": "We willen een duurzame en doorlopende nalatenschap creëren.", + "details_on_legacy": "Het ontwikkelen en onderhouden van een product als __appName__ kost veel tijd en werk, dus is het belangrijk dat we een bedrijfsmodel vinden dat zowel het heden, als de verre toekomst ondersteunt. We willen niet dat __appName__ afhankelijk is van externe financiering of dat het verdwijnt door een gefaalde bedrijfsstrategie. Ik ben blij dat we op dit moment __appName__ winstgevend en duurzaam kunnen draaien en ik verwacht dat dit ook in de toekomst zo blijft.", + "get_in_touch": "Contacteer ons", + "want_to_hear_from_you_email_us_at": "We horen graag van iedereen die __appName__ gebruikt of die gewoon even wil kletsen met ons over wat we allemaal doen. Je kunt ons bereiken via ", + "cant_find_email": "Dat e-mailadres is niet geregistreerd, sorry.", + "plans_amper_pricing": "Abonnementen en Prijzen", + "documentation": "Documentatie", + "account": "Account", + "subscription": "Abonnementen", + "log_out": "Uitloggen", + "en": "Engels", + "pt": "Portugees", + "es": "Spaans", + "fr": "Frans", + "de": "Duits", + "it": "Italiaans", + "da": "Deens", + "sv": "Zweeds", + "no": "Noors", + "nl": "Nederlands", + "pl": "Pools", + "ru": "Russisch", + "uk": "Oekraïens", + "ro": "Roemeens", + "click_here_to_view_sl_in_lng": "Klik hier om __appName__ te gebruiken in het __lngName__", + "language": "Taal", + "upload": "Uploaden", + "menu": "Menu", + "full_screen": "Volledig scherm", + "logs_and_output_files": "Logs en outputbestanden", + "download_pdf": "PDF Downloaden", + "split_screen": "Gesplitst scherm", + "clear_cached_files": "Wis bestanden in tijdelijke geheugen", + "go_to_code_location_in_pdf": "Ga naar codelocatie in de PDF", + "please_compile_pdf_before_download": "Compileer je project alvorens de PDF te downloaden", + "remove_collaborator": "Bijdrager verwijderen", + "add_to_folders": "Aan mappen toevoegen", + "download_zip_file": "Als .zip-bestand downloaden", + "price": "Prijs", + "close": "Sluiten", + "keybindings": "Sneltoetsen", + "restricted": "Beperkt", + "start_x_day_trial": "Start Jouw __len__ Dagen Durende Gratis Proefperiode Vandaag!", + "buy_now": "Nu kopen!", + "cs": "Tsjechisch", + "view_all": "Alle Bekijken", + "terms": "Voorwaarden", + "privacy": "Privacy", + "contact": "Contact", + "change_to_this_plan": "Overstappen naar dit abonnement", + "processing": "aan het verwerken", + "sure_you_want_to_change_plan": "Weet je zeker dat je wilt overstappen naar __planName__?", + "move_to_annual_billing": "Overstappen op Jaarlijkse Facturen", + "annual_billing_enabled": "Jaarlijkse facturen staan aan", + "move_to_annual_billing_now": "Nu overstappen op jaarlijkse facturen", + "change_to_annual_billing_and_save": "Krijg __percentage__ korting met jaarlijkse facturen. Als je nu overstapt, bespaar je __yearlySaving__ per jaar.", + "missing_template_question": "Missend Sjabloon?", + "tell_us_about_the_template": "Als we een sjabloon missen, doe dan a.u.b. het volgende: stuur ons een kopie van het sjabloon, een __appName__-URL naar het sjabloon of laat ons weten waar het te vinden is. Vertel ook kort wat het sjabloon inhoudt voor de beschrijving die erbij komt te staan.", + "email_us": "E-mail ons", + "this_project_is_public_read_only": "Dit project is publiek toegankelijk en kan bekeken, maar niet bewerkt worden door iedereen die de URL heeft", + "tr": "Turks", + "select_files": "Selecteer bestand(en)", + "drag_files": "sleep bestand(en)", + "upload_failed_sorry": "Het uploaden is niet gelukt, sorry :(", + "inserting_files": "Bestand aan het invoegen...", + "password_reset_token_expired": "Je wachtwoordherstelsleutel is verlopen. Vraag een nieuwe herstel-e-mail aan en volg daarin de link.", + "merge_project_with_github": "Project samenvoegen met GitHub", + "pull_github_changes_into_sharelatex": "Wijzigingen op GitHub naar __appName__ halen", + "push_sharelatex_changes_to_github": "Wijzigingen op __appName__ naar GitHub verplaatsen", + "features": "Functies", + "commit": "Toevoegen", + "commiting": "Aan het toevoegen", + "importing_and_merging_changes_in_github": "Veranderingen aan het importeren en toevoegen in GitHub", + "upgrade_for_faster_compiles": "Upgrade om sneller te compileren en om de time-out limiet te verhogen.", + "free_accounts_have_timeout_upgrade_to_increase": "Gratis accounts hebben een time-out van een minuut. Upgrade om de time-out limiet te verhogen.", + "learn_how_to_make_documents_compile_quickly": "Leer hoe je project sneller kan compileren", + "zh-CN": "Chinees", + "cn": "Chinees (vereenvoudigd)", + "sync_to_github": "Synchroniseer met GitHub", + "sync_to_dropbox_and_github": "Synchroniseer met Dropbox en GitHub", + "project_too_large": "Project is te groot", + "project_too_large_please_reduce": "Dit project bevat teveel tekst, probeer dit te verminderen. De grootste bestanden zijn:", + "please_ask_the_project_owner_to_link_to_github": "Vraag de projecteigenaar om het project te koppelen aan een GitHub repository", + "go_to_pdf_location_in_code": "Ga naar de PDF-locatie in de code", + "ko": "Koreaans", + "ja": "Japans", + "about_brian_gough": "is een software ontwikkelaar en voormalig theoretische hoogspanningsnatuurkundige aan Fermilab en Los Alamos. Al vele jaren publiceerde hij gratis software handleidingen commercieel gebruikmakend van TeX en LaTeX en was ook de onderhouder van de GNU Scientific Library.", + "first_few_days_free": "Eerste __trialLen__ dagen gratis", + "every": "per", + "credit_card": "Creditcard", + "credit_card_number": "Creditcard nummer", + "invalid": "Ongeldige", + "expiry": "Vervaldatum", + "january": "januari", + "february": "februari", + "march": "maart", + "april": "april", + "may": "mei", + "june": "juni", + "july": "juli", + "august": "augustus", + "september": "september", + "october": "oktober", + "november": "november", + "december": "december", + "zip_post_code": "Postcode", + "city": "Stad", + "address": "Straat", + "coupon_code": "Coupon code", + "country": "Land", + "billing_address": "Factuuradres", + "upgrade_now": "Upgrade Nu", + "state": "Provincie", + "vat_number": "BTW nummer", + "you_have_joined": "Je bent lid geworden van __groupName__", + "claim_premium_account": "Je hebt je premiumaccount via __groupName__ geclaimd.", + "you_are_invited_to_group": "Je bent uitgenodigd om lid te worden van __groupName__", + "you_can_claim_premium_account": "Je kun een premiumaccount claimen dat door __groupName__ wordt aangeboden door je e-mail te verifiëren", + "not_now": "Niet nu", + "verify_email_join_group": "E-mail verifiëren en lid worden van Groep", + "check_email_to_complete_group": "Controleer je e-mail om je lidmaatschap van de groep te voltooien", + "verify_email_address": "E-mailadres Verifiëren", + "group_provides_you_with_premium_account": "__groupName__ voorziet je van een premiumaccount. Verifieer je e-mailadres om je account te upgraden.", + "check_email_to_complete_the_upgrade": "Controleer je e-mail om je upgrade te voltooien", + "email_link_expired": "E-maillink is verlopen, vraag een nieuwe aan.", + "services": "Diensten", + "about_shane_kilkelly": "is een software ontwikkelaar woonachtig in Edinburgh. Shane is een sterk voorstander van Functioneel Programmeren, Test Driven Development en haalt voldoening uit het bouwen van kwaliteits software.", + "this_is_your_template": "Dit is jouw sjabloon uit jouw project", + "links": "Links", + "account_settings": "Accountinstellingen", + "search_projects": "Projecten zoeken", + "clone_project": "Project Klonen", + "delete_project": "Project Verwijderen", + "download_zip": "Downloaden Als Zip", + "new_project": "Nieuw Project", + "blank_project": "Blanco Project", + "example_project": "Voorbeeldproject", + "from_template": "Vanuit sjabloon", + "cv_or_resume": "CV", + "cover_letter": "Sollicitatiebrief", + "journal_article": "Tijdschriftartikel", + "presentation": "Presentatie", + "thesis": "Scriptie", + "bibliographies": "Bibliografieën", + "terms_of_service": "Gebruiksvoorwaarden", + "privacy_policy": "Privacybeleid", + "plans_and_pricing": "Abonnementen en Prijzen", + "university_licences": "Licenties Voor Universiteiten", + "security": "Veiligheid", + "contact_us": "Contact", + "thanks": "Bedankt", + "blog": "Blog", + "latex_editor": "LaTeX-verwerker", + "get_free_stuff": "Verkrijg gratis dingen", + "chat": "Chat", + "your_message": "Jouw Bericht", + "loading": "Aan het laden", + "connecting": "Aan het verbinden", + "recompile": "Hercompileren", + "download": "Downloaden", + "email": "E-mail", + "owner": "Eigenaar", + "read_and_write": "Lezen en Schrijven", + "read_only": "Alleen Lezen", + "publish": "Publiceren", + "view_in_template_gallery": "Bekijk het in de sjablonengalerij", + "description": "Beschrijving", + "unpublish": "Onpubliceren", + "hotkeys": "Sneltoetsen", + "saving": "Aan het opslaan", + "cancel": "Annuleren", + "project_name": "Projectnaam", + "root_document": "Hoofddocument", + "spell_check": "Spellingscontrole", + "compiler": "Compilator", + "private": "Privé", + "public": "Publiek", + "delete_forever": "Voor Altijd Verwijderen", + "support_and_feedback": "Ondersteuning en feedback", + "help": "Help", + "latex_templates": "LaTeX-sjablonen", + "info": "Info", + "latex_help_guide": "LaTeX-hulpgids", + "choose_your_plan": "Kies je abonnement", + "indvidual_plans": "Individuele Abonnementen", + "free_forever": "Voor altijd gratis", + "low_priority_compile": "Compileren met lage prioriteit", + "unlimited_projects": "Onbeperkt aantal projecten", + "unlimited_compiles": "Onbeperkt aantal compilaties", + "full_history_of_changes": "Volledige wijzigingsgeschiedenis", + "highest_priority_compiling": "Hoogste compilatieprioriteit", + "dropbox_sync": "Dropbox-synchronisatie", + "beta": "Beta", + "sign_up_now": "Nu Inschrijven", + "annual": "Jaarlijks", + "half_price_student": "Studentenabonnementen voor de halve prijs", + "about_us": "Over Ons", + "loading_recent_github_commits": "Recente toevoegingen laden", + "no_new_commits_in_github": "Geen nieuwe toevoegingen op GitHub sinds laatste samenvoeging.", + "dropbox_sync_description": "Houd je __appName__-projecten gesynchroniseerd met je Dropbox veranderingen in __appName__ worden automatisch naar Dropbox verzonden en andersom.", + "github_sync_description": "Met GitHub Sync kun je je __appName__-projecten koppelen aan GitHub repositories. Maak nieuwe toevoegingen vanuit __appName__ en voeg deze samen met toevoegingen die offline of in GitHub gemaakt zijn.", + "github_import_description": "Met GitHub Sync kun je je GitHub repositories importeren in __appName__. Maak nieuwe toevoegingen vanuit __appName__ en voeg deze samen met toevoegingen die offline of in GitHub gemaakt zijn.", + "link_to_github_description": "Je dient __appName__ te autoriseren voor toegang tot je GitHub-account om je projecten te synchroniseren.", + "unlink": "Ontkoppelen.", + "unlink_github_warning": "Projecten die je gesynchroniseerd hebt met GitHub zullen niet meer gekoppeld zijn en niet meer gesynchroniseerd worden met GitHub. Weet je zeker dat je je GitHub-account wilt ontkoppelen?", + "github_account_successfully_linked": "GitHub-account Met Succes Gekoppeld!", + "github_successfully_linked_description": "Bedankt, we hebben je GitHub-account kunnen koppelen aan __appName__. Je kunt nu je __appName__-projecten exporteren naar GitHub, of je projecten vanuit je GitHub repositories importeren.", + "import_from_github": "Uit GitHub importeren", + "github_sync_error": "Sorry, er trad een fout op tijdens het communiceren met onze GitHub-dienst. Probeer het opnieuw over een ogenblik.", + "loading_github_repositories": "Bezig met laden van jouw GitHub repositories", + "select_github_repository": "Selecteer een GitHub repository om naar __appName__ te importeren.", + "import_to_sharelatex": "Naar __appName__ importeren", + "importing": "Aan het importeren", + "github_sync": "GitHub-synchonisatie", + "checking_project_github_status": "Bezig met controleren van de projectstatus in GitHub", + "account_not_linked_to_github": "Je account is niet verbonden met GitHub", + "project_not_linked_to_github": "Dit project is niet verbonden aan het GitHub repository. Je kunt er een repository voor aanmaken in GitHub:", + "create_project_in_github": "Een GitHub repository maken", + "project_synced_with_git_repo_at": "Dit project is gesynchroniseerd met de GitHub repository op", + "recent_commits_in_github": "Recente toevoegingen in GitHub", + "sync_project_to_github": "Project synchroniseren met GitHub", + "sync_project_to_github_explanation": "Aangebrachte wijzigingen in __appName__ zullen worden toegevoegd en samengevoegd met updates in GitHub.", + "github_merge_failed": "Jouw wijzigingen in __appName__ en GitHub konden niet automatisch samengevoegd worden. Doe dit handmatig door de __sharelatex_branch__-tak met de __master_branch__-tak in git samen te voegen. Klik hieronder om door te gaan, nadat je handmatig hebt samengevoegd.", + "continue_github_merge": "Ik heb handmatig samengevoegd. Doorgaan.", + "export_project_to_github": "Project exporteren naar GitHub", + "github_validation_check": "Controleer of de naam van de repository geldig is en of je toestemming heb om de repository te maken.", + "repository_name": "Repository-naam", + "optional": "Optioneel", + "github_public_description": "Iedereen kan deze repository zien. Jij kiest wie eraan kan bijdragen.", + "github_commit_message_placeholder": "Bericht voor wijzigingen aangebracht in __appName__...", + "merge": "Samenvoegen", + "merging": "Bezig met samenvoegen", + "github_account_is_linked": "Je GitHubaccount is met succes verbonden.", + "unlink_github": "Ontkoppel je GitHubaccount", + "link_to_github": "Verbinden met je GitHubaccount", + "github_integration": "GitHubintegratie", + "github_is_premium": "GitHubsnychronisatie is een premium functie" +} \ No newline at end of file diff --git a/services/web/locales/no.json b/services/web/locales/no.json new file mode 100644 index 0000000000..8b79cbe8f8 --- /dev/null +++ b/services/web/locales/no.json @@ -0,0 +1,616 @@ +{ + "suggest_new_doc": "Foreslå nytt dokument", + "request_sent_thank_you": "Forespørsel sendt. Takk.", + "suggestion": "Forslag", + "project_url": "Prosjekt URL", + "subject": "Emne", + "confirm": "Bekreft", + "cancel_personal_subscription_first": "Du har allerede et personlig abonnement, vil du at vi skal kansellere det før du blir medlem av gruppelisensen?", + "delete_projects": "Slett prosjekter", + "leave_projects": "Forlat prosjekter", + "delete_and_leave_projects": "Slett of forlat prosjekter", + "too_recently_compiled": "Dette prosjektet ble kompilert veldig nylig, så kompilasjonen har blitt hopper over.", + "clsi_maintenance": "Kompileringsserverene er nede for vedlikehold, og vil være tilbake snart.", + "references_search_hint": "Trykk CTRL-Mellomrom for å søke", + "ask_proj_owner_to_upgrade_for_references_search": "Vennligst spør prosjekteieren om å oppgradere for å bruke Referansesøk-funksjonen", + "ask_proj_owner_to_upgrade_for_faster_compiles": "Vennligst spør prosjekteieren om å oppgradere for raskere kompileringer og for å øke pausegrensen.", + "search_bib_files": "Søk etter forfatter, tittel, år", + "leave_group": "Forlat gruppe", + "leave_now": "Forlat nå", + "sure_you_want_to_leave_group": "Er du sikker på at du vil forlate denne gruppen?", + "notification_group_invite": "Du har blitt invitert til gruppen __groupName__, Bli medlem her.", + "search_references": "Søk i .bib-filene for dette prosjektet", + "no_search_results": "Ingen søkeresultater", + "email_already_registered": "Denne eposten er allerede registrert", + "compile_mode": "Kompileringsmodus", + "normal": "Normal", + "fast": "Hurtig", + "rename_folder": "Endre mappenavn", + "delete_folder": "Slett mappe", + "about_to_delete_folder": "Du er i ferd med å slette følgende mapper (ingen prosjekter i mappene vil bli slettet):", + "to_modify_your_subscription_go_to": "For å endre abonnementet ditt gå til", + "activate_account": "Aktiver din konto", + "yes_please": "Ja takk!", + "nearly_activated": "Du er ett steg unna fra å aktivere din __appName__ konto!", + "please_set_a_password": "Vennligst velg et passord", + "maximum_files_uploaded_together": "Maksimalt __max__ filer lastet opp samtidig", + "too_many_files_uploaded_throttled_short_period": "For mange filer lastet opp, dine opplastninger har blitt begrenset i en kort periode.", + "compile_larger_projects": "Kompiler Større Prosjekter", + "upgrade_to_get_feature": "Oppgrader for å få __feature__, pluss:", + "new_group": "Ny Gruppe", + "about_to_delete_groups": "Du er på vei til å slette følgende grupper:", + "removing": "Fjerning", + "adding": "Legge til", + "groups": "Grupper", + "rename_group": "Endre gruppenavn", + "create_group": "Lag Gruppe", + "delete_group": "Slett Gruppe", + "delete_groups": "Slett Grupper", + "your_groups": "Dine Grupper", + "group_name": "Gruppenavn", + "no_groups": "Ingen Grupper", + "Subscription": "Abonnement", + "Documentation": "Dokumentasjon", + "Universities": "Universiteter", + "Account Settings": "Kontoinnstillinger", + "Projects": "Prosjekter", + "Account": "Konto", + "global": "global", + "Terms": "Vilkår", + "Security": "Sikkerhet", + "About": "Om", + "editor_disconected_click_to_reconnect": "Editor frakoblet, klikk hvor som helst for å koble til igjen.", + "word_count": "Ordtelling", + "please_compile_pdf_before_word_count": "Vennligst kompiler prosjektet ditt før du utfører en ordtelling", + "total_words": "Totalt antall ord", + "headers": "Overskrifter", + "math_inline": "Matematikk i linje", + "math_display": "Matematikk utstilt", + "connected_users": "Tilkoblede brukere", + "projects": "Prosjekter", + "upload_project": "Last opp prosjekt", + "all_projects": "Alle prosjekter", + "your_projects": "Dine prosjekter", + "shared_with_you": "Delt med deg", + "deleted_projects": "Slettede prosjekter", + "templates": "Maler", + "new_folder": "Ny mappe", + "create_your_first_project": "Opprett ditt første prosjekt", + "complete": "Ferdig", + "on_free_sl": "Du bruker gratisversjonen av __appName__", + "upgrade": "Oppgrader", + "or_unlock_features_bonus": "eller lås opp gratis bonusfunksjonalitet ved å", + "sharing_sl": "dele __appName__", + "add_to_folder": "Legg til i mappe", + "create_new_folder": "Lag ny mappe", + "more": "Mer", + "rename": "Gi nytt navn", + "make_copy": "Lag en kopi", + "restore": "Gjenopprett", + "title": "Tittel", + "last_modified": "Sist endret", + "no_projects": "Ingen prosjekter", + "welcome_to_sl": "Velkommen til __appName__!", + "new_to_latex_look_at": "Uerfaren med LaTeX? Start med å se på vår", + "or": "eller", + "or_create_project_left": "eller opprett ditt første prosjekt til venstre.", + "thanks_settings_updated": "Takk, endringene dine har blitt lagret.", + "update_account_info": "Oppdater kontoinformasjon", + "must_be_email_address": "Må være en epostadresse", + "first_name": "Fornavn", + "last_name": "Etternavn", + "update": "Oppdater", + "change_password": "Endre passord", + "current_password": "Nåværende passord", + "new_password": "Nytt passord", + "confirm_new_password": "Bekreft nytt passord", + "required": "påkrevd", + "doesnt_match": "Samsvarer ikke", + "dropbox_integration": "Dropbox-integrasjon", + "learn_more": "Lær mer", + "dropbox_is_premium": "Synkronisering med Dropbox er en premium funksjonalitet", + "account_is_linked": "Konto er koblet", + "unlink_dropbox": "Koble fra Dropbox", + "link_to_dropbox": "Koble til Dropbox", + "newsletter_info_and_unsubscribe": "Nå og da sender vi nyhetsbrev med oppsummeringer av de nye funksjonalitetene som er tilgjengelige. Om du foretrekker å ikke motta denne eposten så kan du avslutte abonnementet når som helst:", + "unsubscribed": "Abonnement avsluttet", + "unsubscribing": "Avslutter abonnement", + "unsubscribe": "Avslutt abonnement", + "need_to_leave": "Må du dra?", + "delete_your_account": "Slett kontoen din", + "delete_account": "Slett konto", + "delete_account_warning_message": "Du er på vei til å permanent slette all data tilhørende kontoen din, inkludert prosjektene og innstillingene dine. Vennligst skriv DELETE i boksen under for å fortsette.", + "deleting": "Sletter", + "delete": "Slett", + "sl_benefits_plans": "__appName__ er det LaTeX-redigeringsprogrammet i verden som er enklest å bruke. Hold deg oppdatert med dine samarbeidspartnere, hold styr på alle forandringer i arbeidet ditt, og bruk vår LaTeX-løsning fra hvor som helst i verden.", + "monthly": "Månedlig", + "personal": "Personlig", + "free": "Gratis", + "one_collaborator": "Kun én samarbeidspartner", + "collaborator": "Samarbeidspartner", + "collabs_per_proj": "__collabcount__ samarbeidspartnere per prosjekt", + "full_doc_history": "Full dokument-historikk", + "sync_to_dropbox": "Synkroniser til Dropbox", + "start_free_trial": "Start gratis prøveperiode!", + "professional": "Profesjonell", + "unlimited_collabs": "Ubegrenset antall samarbeidspartnere", + "name": "Navn", + "student": "Student", + "university": "Universitet", + "position": "Stilling", + "choose_plan_works_for_you": "Velg en løsning som fungerer for deg med vår __len__-dags gratis prøveperiode. Avslutt den når som helst.", + "interested_in_group_licence": "Interessert i å bruke __appName__ med en gruppe-, team- eller avdelings-konto?", + "get_in_touch_for_details": "Ta kontakt for detaljer!", + "group_plan_enquiry": "Forespørsel om gruppeplan", + "enjoy_these_features": "Nyt alle disse fantastiske funksjonene", + "create_unlimited_projects": "Opprett så mange prosjekter du trenger.", + "never_loose_work": "Mist aldri data, vi sikrer dine verdier.", + "access_projects_anywhere": "Ha tilgang til prosjektene dine overalt.", + "log_in": "Logg inn", + "login": "Innlogging", + "logging_in": "Logger inn", + "forgot_your_password": "Glemt passordet", + "password_reset": "Tilbakestill passord", + "password_reset_email_sent": "Vi har sendt deg en email hvor du kan tilbakestille passordet ditt.", + "please_enter_email": "Vennligst fyll inn epostadressen din", + "request_password_reset": "Be om nytt passord", + "reset_your_password": "Tilbakestill passordet ditt", + "password_has_been_reset": "Passordet ditt har blitt tilbakestilt", + "login_here": "Logg inn her", + "set_new_password": "Sett nytt passord", + "user_wants_you_to_see_project": "__username__ ønsker at du skal se __projectname__", + "join_sl_to_view_project": "Bli med i __appName__ for å se dette prosjektet", + "register_to_edit_template": "Vennligst registrer deg for å redigere __templateName__ malen", + "already_have_sl_account": "Allerede __appName__-bruker?", + "register": "Registrer", + "password": "Passord", + "registering": "Registrerer", + "planned_maintenance": "Planlagt vedlikehold", + "no_planned_maintenance": "Det er for tiden ikke planlagt noe vedlikehold", + "cant_find_page": "Beklager, vi kan ikke finne siden du leter etter.", + "take_me_home": "Ta meg hjem!", + "no_preview_available": "Beklager, ingen forhåndsvisning er tilgjengelig", + "no_messages": "Ingen meldinger", + "send_first_message": "Send din første melding", + "account_not_linked_to_dropbox": "Din konto er ikke koblet til Dropbox", + "update_dropbox_settings": "Oppdater Dropbox-innstillinger", + "refresh_page_after_starting_free_trial": "Vennligst last inn siden på nytt etter at du har startet din gratis prøveperiode.", + "checking_dropbox_status": "sjekker Dropbox-status", + "dismiss": "Avvis", + "new_file": "Ny Fil", + "upload_file": "Last opp fil", + "create": "Opprett", + "creating": "Oppretter", + "upload_files": "Last opp fil(er)", + "sure_you_want_to_delete": "Er du sikker på at du permanent vil slette {{ entity.name }}?", + "common": "Vanilige", + "navigation": "Navigasjon", + "editing": "Redigerer", + "ok": "OK", + "source": "Kilde", + "actions": "Handlinger", + "copy_project": "Kopier prosjekt", + "publish_as_template": "Publiser som mal", + "sync": "Synk", + "settings": "Innstillinger", + "main_document": "Hoveddokument", + "off": "Av", + "auto_complete": "Autofullfør", + "theme": "Tema", + "font_size": "Skriftstørrelse", + "pdf_viewer": "PDF-viser", + "built_in": "Innebygget", + "native": "integrert", + "show_hotkeys": "Vis hurtigtaster", + "new_name": "Nytt navn", + "copying": "kopierer", + "copy": "Kopier", + "compiling": "Kompilerer", + "click_here_to_preview_pdf": "Trykk her for å se arbeidet ditt som PDF", + "server_error": "Serverfeil", + "somthing_went_wrong_compiling": "Beklager, noe gikk galt og prosjektet ditt kunne ikke bli kompilert. Vennligst prøv igjen om noen få øyeblikk.", + "timedout": "Tok for lang tid", + "proj_timed_out_reason": "Beklager, din kompilering tok for lang tid. Dette kan være på grunn av et stort antall bilder med høy oppløsning, eller kompliserte diagrammer.", + "no_errors_good_job": "Ingen feilmeldinger, godt jobbet!", + "compile_error": "Kompileringsfeil", + "generic_failed_compile_message": "Beklager, din LaTeX-kode kunne ikke kompilere av en eller annen grunn. Vennligst sjekk feilmeldingene under for detaljer, eller se i råloggen", + "other_logs_and_files": "Andre logger & filer", + "view_raw_logs": "Se Rålogger", + "hide_raw_logs": "Gjem Rålogger", + "clear_cache": "Tøm cache", + "clear_cache_explanation": "Dette vil fjerne alle usynlige LaTeX-filer (.aux, .bbl, etc) fra din kompileringsserver. Generelt sett trenger du ikke gjøre dette annet enn om du har problemer med referanser.", + "clear_cache_is_safe": "Dine prosjektfiler vil ikke bli slettet eller forandret.", + "clearing": "Rydder opp", + "template_description": "Mal Beskrivelse", + "project_last_published_at": "Ditt prosjekt ble sist publisert", + "problem_talking_to_publishing_service": "Det er et problem med vår publiseringstjeneste, vennligst prøv igjen om noen få minutter", + "unpublishing": "Avpubliserer", + "republish": "Re-publiser", + "publishing": "Publiserer", + "share_project": "Del prosjekt", + "this_project_is_private": "Dette prosjektet er privat og gir bare tilgang til personene under.", + "make_public": "Offentliggjør", + "this_project_is_public": "Dette prosjektet er offentlig og kan redigeres av alle med riktig URL.", + "make_private": "Gjør privat", + "can_edit": "Kan redigere", + "share_with_your_collabs": "Del med dine samarbeidspartnere", + "share": "Del", + "need_to_upgrade_for_more_collabs": "Du må oppgradere kontoen din for å legge til flere samarbeidspartnere", + "make_project_public": "Gjør prosjekt offentlig", + "make_project_public_consequences": "Dersom du gjør prosjektet offentlig, kan alle med URL til prosjektet få tilgang til det.", + "allow_public_editing": "Tillat offentlig redigering", + "allow_public_read_only": "Tillatt offentlig 'read only' tilgang", + "make_project_private": "Gjør prosjekt privat.", + "make_project_private_consequences": "Dersom du gjør prosjektet privat, vil kun de du velger å dele det med ha tilgang.", + "need_to_upgrade_for_history": "Du må oppgradere kontoen din for å bruke Historie-funksjonaliteten.", + "ask_proj_owner_to_upgrade_for_history": "Vennligst be eieren av prosjektet om å oppgradere for å bruke Historie-funksjonaliteten.", + "anonymous": "Anonym", + "generic_something_went_wrong": "Beklager, noe gikk feil :(", + "restoring": "Gjenoppretter", + "restore_to_before_these_changes": "Gjenopprett til før disse endringene", + "profile_complete_percentage": "Profilen din er __percentval__% ferdig", + "file_has_been_deleted": "__filename__ har blitt slettet", + "sure_you_want_to_restore_before": "Er du sikker på at du vil gjenopprette __filename__ til før endringene den __date__?", + "rename_project": "Gi prosjektet nytt navn", + "about_to_delete_projects": "Du er i ferd med å slette følgende prosjekt:", + "about_to_leave_projects": "Du er i ferd med å forlate følgende prosjekter:", + "upload_zipped_project": "Last opp zippet prosjekt", + "upload_a_zipped_project": "Last opp et zippet prosjekt", + "your_profile": "Din profil", + "institution": "Institusjon", + "role": "Stilling", + "folders": "Mapper", + "disconnected": "Frakoblet", + "please_refresh": "Vennligst refresh siden for å fortsette.", + "lost_connection": "Mistet tilkobling", + "reconnecting_in_x_secs": "Kobler til om __seconds__ sekunder", + "try_now": "Prøv nå", + "reconnecting": "Kobler til", + "saving_notification_with_seconds": "Lagrer __docname__... (__seconds__ sekunder med ulagrede endringer)", + "help_us_spread_word": "Hjelp oss med å spre ordet om __appName__", + "share_sl_to_get_rewards": "Del __appName__ med dine venner og kollegaer og lås opp belønningene under", + "post_on_facebook": "Post på Facebook", + "share_us_on_googleplus": "Del oss på Google+", + "email_us_to_your_friends": "Send oss på epost til vennene dine", + "link_to_us": "Link til oss fra nettsiden din", + "direct_link": "Direktelink", + "sl_gives_you_free_stuff_see_progress_below": "Når noen begynner å bruke __appName__ etter at du har anbefalt dem, gir vi deg gratis ting som takk! Sjekk fremgangen din under.", + "spread_the_word_and_fill_bar": "Spre ordet og fyll opp fremdriftsindikatoren", + "one_free_collab": "Én gratis samarbeidspartner", + "three_free_collab": "Tre gratis samarbeidspartnere", + "free_dropbox_and_history": "Gratis Dropbox og revisjonshistorikk", + "you_not_introed_anyone_to_sl": "Du har ikke introdusert noen til __appName__ ennå. Kom i gang med å dele!", + "you_introed_small_number": " Du har introdusert __numberOfPeople__ folk til __appName__. Bra jobba, men kan du klare flere?", + "you_introed_high_number": " Du har introdusert __numberOfPeople__ folk til __appName__. Bra jobba!", + "link_to_sl": "Link til __appName__", + "can_link_to_sl_with_html": "Du kan lenke til __appName__ ved å bruke følgende HTML:", + "year": "år", + "month": "måned", + "subscribe_to_this_plan": "Abonner til denne planen", + "your_plan": "Din plan", + "your_subscription": "Ditt abonnement", + "on_free_trial_expiring_at": "Du bruker for øyeblikket en gratis prøveperiode som utgår __expiresAt__.", + "choose_a_plan_below": "Velg en plan å abonnere til.", + "currently_subscribed_to_plan": "Du har for øyeblikket et abonnement på __planName__-planen.", + "change_plan": "Forandre plan", + "next_payment_of_x_collectected_on_y": "Neste betaling av __paymentAmmount__ vil bli belastet den __collectionDate__", + "update_your_billing_details": "Oppdater dine faktureringsdetaljer", + "subscription_canceled_and_terminate_on_x": " Ditt abonnement har blitt kansellert og vil avsluttes den __terminateDate__. Ingen ytterligere belastninger vil bli foretatt.", + "your_subscription_has_expired": "Dit abonnement har utgått.", + "create_new_subscription": "Lag nytt abonnement", + "problem_with_subscription_contact_us": "Det er et problem med abonnementet ditt. Vennligst kontakt oss for mer informasjon.", + "manage_group": "Administrer gruppe", + "loading_billing_form": "Laster formular for faktureringsdetaljer", + "you_have_added_x_of_group_size_y": "Du har lagt til __addedUsersSize__ av __groupSize__ tilgjengelige deltagere", + "remove_from_group": "Fjern fra gruppe", + "group_account": "Gruppekonto", + "registered": "Registrert", + "no_members": "Ingen medlemmer", + "add_more_members": "Legg til flere medlemmer", + "add": "Legg til", + "thanks_for_subscribing": "Takk for at du abonnerer!", + "your_card_will_be_charged_soon": "Kortet ditt vil bli snart bli belastet.", + "if_you_dont_want_to_be_charged": "Hvis du ikke vil bli belastet igjen ", + "add_your_first_group_member_now": "Legg til ditt første gruppemedlem nå", + "thanks_for_subscribing_you_help_sl": "Takk for at du abonnerer til __planName__ planen. Støtte fra personer som deg gjør at __appName__ kan fortsette å vokse og forbedres.", + "back_to_your_projects": "Tilbake til prosjektene dine", + "goes_straight_to_our_inboxes": "Det går rett til begge våre innbokser", + "need_anything_contact_us_at": "Dersom det er noe du trenger, ikke nøl med å kontakte oss direkte på", + "regards": "Takk", + "about": "Om", + "comment": "Kommenter", + "restricted_no_permission": "Begrenset, beklager, du har ikke tillatelse til å laste denne siden.", + "online_latex_editor": "Online LaTeX-redigeringsprogram", + "meet_team_behind_latex_editor": "Møt teamet bak ditt favoritt LaTeX-redigeringsprogram.", + "follow_me_on_twitter": "Følg meg på Twitter", + "motivation": "Motivasjon", + "evolved": "Utviklet", + "the_easy_online_collab_latex_editor": "Det brukervennlige, online, interaktive LaTeX-redigeringsprogrammet", + "get_started_now": "Kom i gang nå", + "sl_used_over_x_people_at": "__appName__ blir brukt av __numberOfUsers__ studenter og akademikere på:", + "collaboration": "Samarbeid", + "work_on_single_version": "Jobb sammen på én enkelt versjon", + "view_collab_edits": "Vis samarbeidspartneres endringer ", + "ease_of_use": " Brukervennlighet", + "no_complicated_latex_install": "Ingen komplisert LaTeX-installasjon", + "all_packages_and_templates": "Alle pakkene og __templatesLink__ du trenger", + "document_history": "Dokumenthistorikk", + "see_what_has_been": "Se hva som har blitt ", + "added": "lagt til", + "and": "og", + "removed": "fjernet", + "restore_to_any_older_version": "Tilbakestill til hvilken som helst tidligere versjon", + "work_from_anywhere": "Arbeid hvor som helst", + "acces_work_from_anywhere": "Få tilgang til arbeidet ditt hvor hen du er i verden", + "work_offline_and_sync_with_dropbox": "Arbeid offline, og synkroniser filene dine via Dropbox og GitHub", + "over": "over", + "view_templates": "Se maler", + "nothing_to_install_ready_to_go": "Det er ingenting komplisert eller vanskelig som du trenger å installere, og du kan __start_now__, selv om du aldri har brukt det før. __appName__ kommer med et komplett, 'ready to go' LaTeX-miljø som kjører på våre servere.", + "start_using_latex_now": "begynne å bruke LaTeX nå", + "get_same_latex_setup": "Med __appName__ får du det samme LaTeX-oppsettet hvor enn du befinner deg. Ved å arbeide med kollegaer og medstudenter med __appName__, er du sikker på at du ikke kommer til å støte på problemer som versjonsinkonsistens eller pakkekonflikter.", + "support_lots_of_features": "Vi støtter nesten all LaTeX-funksjonalitet, inkludert innsetting av bilder, bibliografi, ligninger, og mye mer! Les om alle de spennende tingene du kan gjøre med __appName__ i vår __help_guides_link__", + "latex_guides": "LaTex-guider", + "reset_password": "Tilbakestill passord", + "set_password": "Sett passord", + "updating_site": "Oppdaterer side", + "bonus_please_recommend_us": "Bonus - Anbefal oss", + "admin": "admin", + "subscribe": "Abonner", + "update_billing_details": "Oppdater faktureringsdetaljer", + "thank_you": "Takk", + "group_admin": "Gruppeadministrator", + "all_templates": "Alle maler", + "your_settings": "Dine instillinger", + "maintenance": "Vedlikehold", + "to_many_login_requests_2_mins": "Denne kontoen har hatt for mange innloggingsforsøk. Vennligst vent 2 minutter før du prøver å logge inn igjen", + "email_or_password_wrong_try_again": "Epostadressen eller passordet er feil. Vennligst prøv på nytt", + "rate_limit_hit_wait": "Vennligst vent et øyeblikk før du prøver igjen.", + "problem_changing_email_address": "Det oppstod et problem med å endre epostadressen din. Prøv igjen om noen øyeblikk. Vennligst ta kontakt med oss dersom problemet vedvarer.", + "single_version_easy_collab_blurb": "__appName__ sørger for at du alltid er oppdatert på det dine samarbeidspartnere gjør. Det er én master-versjon av hvert dokument, som alle har tilgang til. Det er umulig å gjøre endringer som skaper konflikt, og du slipper å vente på at kollegaene dine skal sende siste utgave for at du skal kunne jobbe videre.", + "can_see_collabs_type_blurb": "Det er ikke et problem at flere personer ønsker å arbeide på det samme dokumentet samtidig. Du kan se hvor kollegaene dine skriver direkte i redigeringsprogrammet og endringene deres vises umiddelbart på skjermen din.", + "work_directly_with_collabs": "Jobb direkte med dine samarbeidspartnere", + "work_with_word_users": "Jobb med Word-brukere", + "work_with_word_users_blurb": "__appName__ er så enkelt å komme i gang med at du vil kunne invitere kollegaer som ikke tidligere har erfaring med LaTeX til å bidra direkte til LaTeX-dokumentene dine. De vil være produktive fra dag én og vil sakte, men sikkert ta til seg kunnskap om LaTeX.", + "view_which_changes": "Se hvilke endringer som er gjort", + "sl_included_history_of_changes_blurb": "__appName__ inkluderer funksjonalitet for å se revisjonshistorikk så du kan se nøyaktig hvem som endret hva, og når. Dette gjør det veldig enkelt å holde seg oppdatert med eventuelle endringer gjort av dine samarbeidspartnere og få et tilbakeblikk på dine nylige endringer.", + "can_revert_back_blurb": "Ved samarbeid eller når du jobber for deg selv, skjer det ofte feil. Gjenoppretting av tidligere versjoner er enkelt og eliminerer risikoen for å miste arbeid eller angre på en endring.", + "start_using_sl_now": "Begynn å bruk __appName__ nå", + "over_x_templates_easy_getting_started": "Vi har __over__ 400 __templates__ i malgalleriet vårt, så det er enkelt å komme i gang, enten du skriver en avhandling, et tidsskrift, CV eller noe annet.", + "done": "Ferdig", + "change": "Endre", + "page_not_found": "Fant ikke siden", + "please_see_help_for_more_info": "Vennligst se vår hjelp-guide for mer informasjon.", + "this_project_will_appear_in_your_dropbox_folder_at": "Dette prosjektet vil bli plassert i din Dropbox-mappe på ", + "member_of_group_subscription": "Du er medlem av et gruppeabonnement administrert av __admin_email__. Vennligst kontakt vedkommende for å administrere abonnementet ditt.\n", + "about_henry_oswald": "er en programvareingeniør bosatt i London. Han lagde den originale prototypen av ShareLaTeX og har vært ansvarlig for å lage en stabil og skalerbar plattform. Henry er en forkjemper for Test Driven Development og tar ansvar for at vi holder __appName__ koden 'clean' og enkel å vedlikeholde.", + "about_james_allen": "har en PhD i teoretisk fysikk og er lidenskapelig opptatt av LaTeX. Han lagde et av de første online LaTeX-redigeringsprogrammene, ScribTeX, og har spilt en viktig rolle i utvikling av teknologiene som gjør __appName__ mulig.", + "two_strong_principles_behind_sl": "Det er to sterke drivkrafter bak vårt arbeid med __appName__:", + "want_to_improve_workflow_of_as_many_people_as_possible": "Vi ønsker å forbedre arbeidsflyten til så mange som mulig", + "detail_on_improve_peoples_workflow": "LaTeX er beryktet for å være vanskelig å bruke, og samarbeid er alltid vanskelig å koordinere. Vi mener at vi har utviklet gode løsninger for å hjelpe folk som støter på disse problemene, og vi vil være sikre på at __appName__ er tilgjengelig for så mange som mulig. Vi har forsøkt å holde prisene lave, og har frigitt mye av __appName__ som åpen kildekode slik at hvem som helst kan hoste sin egen.", + "want_to_create_sustainable_lasting_legacy": "Ønsket vårt er å lage en bærekraftig og varig arv.", + "details_on_legacy": "Utvikling og vedlikehold av et produkt som __appName__ krever mye tid og arbeid, så det er viktig at vi kan finne en businessmodell som både vil støtte dette nå, og i det lange løp. Vi ønsker ikke at __appName__ skal være avhengig av ekstern finansiering eller forsvinne som følge av en dårlig businessmodell. Jeg er glad for å kunne si at vi for øyeblikket klarer å opprettholde __appName__ lønnsomt og bærekraftig, og forventer at vi kan opprettholde dette i det lange løp.", + "get_in_touch": "Ta kontakt", + "want_to_hear_from_you_email_us_at": "Vi vil gjerne høre fra brukere av __appName__, eller andre som ønsker å høre om hva vi driver med. Du kan komme i kontakt med oss på ", + "cant_find_email": "Epostadressen er ikke registrert, beklager.", + "plans_amper_pricing": "Planer & Priser", + "documentation": "Dokumentasjon", + "account": "Konto", + "subscription": "Abonnement", + "log_out": "Logg ut", + "en": "Engelsk", + "pt": "Portugisisk", + "es": "Spansk", + "fr": "Fransk", + "de": "Tysk", + "it": "Italiensk", + "da": "Dansk", + "sv": "Svensk", + "no": "Norsk", + "nl": "Nederlandsk", + "pl": "Polsk", + "ru": "Russisk", + "uk": "Ukrainsk", + "ro": "Rumensk", + "click_here_to_view_sl_in_lng": "Trykk her for å bruke __appName__ på __lngName__", + "language": "Språk", + "upload": "Last opp", + "menu": "Meny", + "full_screen": "Fullskjerm", + "logs_and_output_files": "Logger og output-filer", + "download_pdf": "Last ned PDF", + "split_screen": "Del skjerm", + "clear_cached_files": "Slett cache", + "go_to_code_location_in_pdf": "Gå til kodeplassering i PDF", + "please_compile_pdf_before_download": "Vennligst kompiler prosjektet før du laster ned PDF", + "remove_collaborator": "Fjern samarbeidspartner", + "add_to_folders": "Legg til i mapper", + "download_zip_file": "Last ned .zip-fil", + "price": "Pris", + "close": "Lukk", + "keybindings": "Tastatursnarveier", + "restricted": "Begrenset", + "start_x_day_trial": "Start din gratis __len__-dagers prøveperiode i dag!", + "buy_now": "Kjøp Nå!", + "cs": "Tsjekkisk", + "view_all": "Vis alle", + "terms": "Betingelser", + "privacy": "Personvern", + "contact": "Kontakt", + "change_to_this_plan": "Bytt til denne planen", + "processing": "Jobber", + "sure_you_want_to_change_plan": "Er du sikker på at du vil bytte plan til __planName__?", + "move_to_annual_billing": "Bytt til årlig fakturering", + "annual_billing_enabled": "Årlig fakturering aktivert", + "move_to_annual_billing_now": "Bytt til årlig fakturering nå", + "change_to_annual_billing_and_save": "Få __percentage__ avslag med årlig fakturering. Dersom du bytter nå vil du spare __yearlySaving__ årlig.", + "missing_template_question": "Savner du en mal?", + "tell_us_about_the_template": "Hvis du savner en mal, vennligst: Send en kopi av malen, en __appName__-url til malen eller fortell oss hvordan vi kan finne malen. Send gjerne ved litt informasjon om malen, for beskrivelse.", + "email_us": "Send epost", + "this_project_is_public_read_only": "Dette prosjektet er offentlig og kan bli vist, men ikke redigert, av alle med URLen.", + "tr": "Tyrkisk", + "select_files": "Velg fil(er)", + "drag_files": "dra fil(er)", + "upload_failed_sorry": "Opplastning feilet, beklager :(", + "inserting_files": "Setter inn fil...", + "password_reset_token_expired": "Token for tilbakestilling av passord har utløpt. Vennligst be om ny email for tilbakestilling av passord og følg lenken.", + "merge_project_with_github": "Merge prosjekt med GitHub", + "pull_github_changes_into_sharelatex": "Pull forandringer i GitHub til __appName__", + "push_sharelatex_changes_to_github": "Push forandringer i __appName__ til GitHub", + "features": "Funksjoner", + "commit": "Commit", + "commiting": "Commiting", + "importing_and_merging_changes_in_github": "Importerer og merger endringer i GitHub", + "upgrade_for_faster_compiles": "Oppgrader for raskere kompilering og for å øke timeout-grensen", + "free_accounts_have_timeout_upgrade_to_increase": "Gratiskontoer har ett minutt timeout. Oppgrader for å øke timeout-grensen.", + "learn_how_to_make_documents_compile_quickly": "Lær hvordan du kan få dokumentet ditt til å kompilere raskere", + "zh-CN": "Kinesisk", + "cn": "Kinesisk (Forenklet)", + "sync_to_github": "Synkroniser til GitHub", + "sync_to_dropbox_and_github": "Synkroniser til Dropbox og GitHub", + "project_too_large": "Prosjektet er for stort", + "project_too_large_please_reduce": "Prosjektet har for mye tekst. Vennligst reduser størrelsen.", + "please_ask_the_project_owner_to_link_to_github": "Be prosjekteieren om å lenke dette prosjektet til et GitHub repository", + "go_to_pdf_location_in_code": "Gå til PDF plassering i kode", + "ko": "Koreansk", + "ja": "Japansk", + "about_brian_gough": "er en software-utvikler og tidligere teoretisk høy-energi fysiker ved Fermilab i Los Alamos. I mange år publiserte han gratis software-manualer kommersielt ved bruk av TeX og LaTeX, og var også vedlikeholder av GNU Scientific Library.", + "first_few_days_free": "Første __trialLen__ dagene gratis", + "credit_card": "Kredittkort", + "credit_card_number": "Kredittkort nummer", + "invalid": "Ugyldig", + "expiry": "Utløpsdato", + "january": "Januar", + "february": "Februar", + "march": "Mars", + "april": "April", + "may": "Mai", + "june": "Juni", + "july": "Juli", + "august": "August", + "september": "September", + "october": "Oktober", + "november": "November", + "december": "Desember", + "zip_post_code": "Postnummer", + "city": "By", + "address": "Adresse", + "coupon_code": "kupong kode", + "country": "Land", + "billing_address": "Fakturaadresse", + "upgrade_now": "Oppgrader Nå", + "state": "Fylke", + "vat_number": "Org. nummer", + "you_have_joined": "Du har blitt med i __groupName__", + "you_are_invited_to_group": "Du er invitert til å bli med i __groupName__", + "not_now": "Ikke nå", + "verify_email_join_group": "Verifiser epost og bli med i gruppe", + "check_email_to_complete_group": "Vennligst sjekk din epost for å fullføre å bli med i gruppen", + "verify_email_address": "Verifiser Epost-adresse", + "account_settings": "Kontoinnstillinger", + "search_projects": "Søk prosjekter", + "clone_project": "Dupliser prosjekt", + "delete_project": "Slett prosjekt", + "download_zip": "Last ned Zip", + "new_project": "Nytt prosjekt", + "blank_project": "Tomt prosjekt", + "example_project": "Eksempelprosjekt", + "from_template": "Fra mal", + "cv_or_resume": "CV", + "cover_letter": "Følgebrev", + "journal_article": "Tidsskrift", + "presentation": "Presentasjon", + "thesis": "Avhandling", + "bibliographies": "Bibliografi", + "terms_of_service": "Vilkår for tjeneste", + "privacy_policy": "Erklæring om personvern", + "plans_and_pricing": "Planer og priser", + "university_licences": "Universitetslisens", + "security": "Sikkerhet", + "contact_us": "Kontakt oss", + "thanks": "Takk", + "blog": "Blogg", + "latex_editor": "LaTeX-redigeringsprogram", + "get_free_stuff": "Få gratis ting", + "chat": "Chat", + "your_message": "Din melding", + "loading": "Laster", + "connecting": "Kobler til", + "recompile": "Rekompiler", + "download": "Last ned", + "email": "Epost", + "owner": "Eier", + "read_and_write": "Les og skriv", + "read_only": "Skrivebeskyttet", + "publish": "Publiser", + "view_in_template_gallery": "Se i malgalleri", + "unpublish": "Trekk tilbake", + "hotkeys": "Hurtigtaster", + "saving": "Lagrer", + "cancel": "Avbryt", + "project_name": "Prosjektnavn", + "root_document": "Rotdokument", + "spell_check": "Stavekontroll", + "compiler": "Kompilator", + "private": "Privat", + "public": "Offentlig", + "delete_forever": "Slett for alltid", + "support_and_feedback": "Støtte og tilbakemelding", + "help": "Hjelp", + "latex_templates": "LaTex-maler", + "info": "Info", + "latex_help_guide": "LaTex hjelpeguide", + "choose_your_plan": "Velg din plan", + "indvidual_plans": "Individuelle planer", + "free_forever": "Gratis for alltid", + "low_priority_compile": "Lavprioritets kompilering", + "unlimited_projects": "Ubegrenset antall prosjekter", + "unlimited_compiles": "Ubegrenset antall kompileringer", + "full_history_of_changes": "Full revisjonshistorikk", + "highest_priority_compiling": "Topprioritert kompilering", + "dropbox_sync": "Dropbox synkronisering", + "beta": "Beta", + "sign_up_now": "Registrer deg nå", + "annual": "Årlig", + "half_price_student": "Halv pris for studenter", + "about_us": "Om oss", + "loading_recent_github_commits": "Laster nylige commits.", + "no_new_commits_in_github": "Ingen nye commits i GitHub siden siste merge.", + "dropbox_sync_description": "Synkroniser __appName__-prosjektene dine med Dropbox. Endringer i __appName__ blir automatisk sendt til din Dropbox, og motsatt.", + "github_sync_description": "Med GitHub-Sync kan du koble dine prosjekter i __appName__ til GitHub-repositories. Lag nye commits fra __appName__, og merge med commits gjort offline eller i GitHub.", + "github_import_description": "Med GitHub-synkronisering kan du importere GitHub-repositoriene dine til __appName__. Lag nye commits fra __appName__, og merge med commits gjort offline eller i GitHub.", + "link_to_github_description": "Du må autorisere __appName__ for å få tilgang til GitHub-kontoen din slik at vi kan synkronisere prosjektene dine.", + "unlink": "Koble fra", + "unlink_github_warning": "Eventuelle prosjekter du har synkronisert med GitHub vil bli koblet fra og vil ikke lenger bli holdt synkronisert med GitHub. Er du sikker på at du vil koble fra GitHub-kontoen din?", + "github_account_successfully_linked": "Kobling av GitHub-konto var vellykket!", + "github_successfully_linked_description": "Takk, kobling av GitHub-kontoen din til __appName__ var vellykket. Du kan nå eksportere __appName__-prosjektene dine til GitHub, eller importere prosjekter fra GitHub-repositoriene dine.", + "import_from_github": "Importer fra GitHub", + "github_sync_error": "Beklager, det oppstod en feil da vi forsøkte å snakke med vår GitHub-service. Prøv igjen om ett øyeblikk", + "loading_github_repositories": "Laster dine GitHub-repositories", + "select_github_repository": "Velg et GitHub-repository å importere til __appName__.", + "import_to_sharelatex": "Importer til __appName__", + "importing": "Importerer", + "github_sync": "GitHub Synk.", + "checking_project_github_status": "Sjekker prosjektstatus i GitHub", + "account_not_linked_to_github": "Din konto er ikke koblet til GitHub", + "project_not_linked_to_github": "Dette prosjektet er ikke koblet til et GitHub-repository. Du kan lage et repository for det i GitHub:", + "create_project_in_github": "Lag et GitHub-repository", + "project_synced_with_git_repo_at": "Dette prosjektet er synkronisert med GitHub-repositoriet på", + "recent_commits_in_github": "Nylige commits i GitHub", + "sync_project_to_github": "Synkroniser prosjekt til GitHub", + "sync_project_to_github_explanation": "Alle endringer du har gjort i __appName__ vil bli commited og merged med eventuelle oppdateringer i GitHub.", + "github_merge_failed": "Endringer i __appName__ og GitHub kunne ikke automatisk merges. Vennligst manuelt merge __sharelatex_branch__ branchen inn i __master_branch__ branchen i git. Klikk under for å fortsette etter du har merget manuelt.", + "continue_github_merge": "Jeg har merget manuelt. Fortsett", + "export_project_to_github": "Eksporter prosjekt til GitHub", + "github_validation_check": "Vennligst sjekk at navnet til repositoriet er gyldig, og at du har tilgang til å lage repositoriet.", + "repository_name": "Repository-navn", + "optional": "Valgfri", + "github_public_description": "Hvem som helst kan se dette repositoriet. Du velger hvem som kan gjøre commits.", + "github_commit_message_placeholder": "Commit-melding for endringer gjort i __appName__...", + "merge": "Merge", + "merging": "Merging", + "github_account_is_linked": "Linking av GitHub-kontoen din var vellykket.", + "unlink_github": "Koble fra GitHub-konto", + "link_to_github": "Koble til din GitHub-konto", + "github_integration": "Integrasjon med GitHub", + "github_is_premium": "Synkronisering med GitHub er en premium funksjonalitet" +} \ No newline at end of file diff --git a/services/web/locales/pl.json b/services/web/locales/pl.json new file mode 100644 index 0000000000..66ff479b9c --- /dev/null +++ b/services/web/locales/pl.json @@ -0,0 +1,318 @@ +{ + "error": "Błąd", + "projects": "Projekty", + "upload_project": "Wyślij projekt", + "all_projects": "Wszystkie projekty", + "your_projects": "Twoje projekty", + "shared_with_you": "Udostępnione dla Ciebie", + "deleted_projects": "Usunięte projekty", + "templates": "Szablony", + "new_folder": "Nowy folder", + "create_your_first_project": "Utwórz swój pierwszy projekt!", + "complete": "Zakończono", + "on_free_sl": "Używasz darmowej wersji __appName__", + "or_unlock_features_bonus": "lub odblokuj darmowe bonusy przez", + "sharing_sl": "udostępnianie __appName__a", + "add_to_folder": "Dodaj do folderu", + "create_new_folder": "Utwórz nowy folder", + "more": "więcej", + "rename": "Zmień nazwę", + "make_copy": "Zrób kopię", + "restore": "Przywróć", + "title": "Tytuł", + "last_modified": "Ostatnio modyfikowany", + "no_projects": "Brak projektów", + "welcome_to_sl": "Witaj w __appName__!", + "new_to_latex_look_at": "Nie wiesz co to LaTeX? Zacznij od zapoznania się z naszym", + "or": "lub", + "or_create_project_left": "lub utwórz swój pierwszy projekt (z lewej).", + "thanks_settings_updated": "Dziękuję, twoje ustawienia zostały zaktualizowane.", + "update_account_info": "Zaktualizuj informacje o koncie", + "must_be_email_address": "Musi być adresem email", + "first_name": "Imię", + "last_name": "Nazwisko", + "update": "Zakutalizuj", + "change_password": "Zmień hasło", + "current_password": "Aktualne hasło", + "new_password": "Nowe hasło", + "confirm_new_password": "Potwierdź nowe hasło", + "required": "wymagane", + "doesnt_match": "Nie zgadza się", + "dropbox_integration": "Integracja z Dropbox", + "learn_more": "Dowiedz się więcej", + "dropbox_is_premium": "Synchronizacja z Dropboxem to funkcja premium", + "account_is_linked": "Konto jest połączone", + "unlink_dropbox": "Odłącz Dropboxa", + "link_to_dropbox": "Podłącz Dropboxa", + "newsletter_info_and_unsubscribe": "Co kilka miesięcy wysyłamy newsletter, który podsumowuje świeżo dodane funkcje. Jeżeli nie chciał(a)byś otrzymywać takich emaili, możesz się zawsze wypisać:", + "unsubscribed": "Wypisano", + "unsubscribing": "Wypisywanie", + "unsubscribe": "Wypisz", + "need_to_leave": "Musisz nas opuścić?", + "delete_your_account": "Usuń konto", + "delete_account": "Usuń konto", + "deleting": "Usuwanie", + "delete": "Usuń", + "sl_benefits_plans": "__appName__ to najprostszy w użyciu edytor LaTeXa. Bądź na bieżąco z współpracownikami, śledź wszystkie zmiany w Twojej pracy i używaj środowiska LaTeX gdziekolwiek jesteś.", + "monthly": "Miesięcznie", + "personal": "Osobiste", + "free": "Darmowy", + "one_collaborator": "Tylko jeden współpracownik", + "collaborator": "Współpracownik", + "collabs_per_proj": "__collabcount__ współpracowników na projekt", + "full_doc_history": "Pełna historia dokumentu", + "sync_to_dropbox": "Synchronizuj z Dropbox", + "start_free_trial": "Rozpocznij darmowy okres próbny!", + "professional": "Profesjonalne", + "unlimited_collabs": "Bez limitu współpracowników", + "name": "Nazwa", + "student": "Student", + "university": "Uniwersytet", + "position": "Stanowisko", + "choose_plan_works_for_you": "Sprawdź za darmo przez __len__ dni i wybierz subskrypcję, która najbardziej Ci odpowiada. Możesz anulować w każdej chwili.", + "interested_in_group_licence": "Zainteresowany kontem __appName__ dla grupy, zespół albo całego departamentu?", + "get_in_touch_for_details": "Skontaktuj się z nami, aby uzyskać szczegóły!", + "group_plan_enquiry": "Zapytanie o plan grupowy", + "enjoy_these_features": "Ciesz się wszystkimi tymi wspaniałymi funkcjami", + "create_unlimited_projects": "Twórz tyle projektów, ile potrzebujesz", + "access_projects_anywhere": "Miej wszędzie dostęp do projektów.", + "log_in": "Zaloguj się", + "login": "Login", + "logging_in": "Logowanie", + "forgot_your_password": "Zapomniałeś hasła?", + "password_reset": "Resetowanie hasła", + "password_reset_email_sent": "Wysłaliśmy do Ciebie emaila, żeby dokończyć proces resetowania hasła", + "please_enter_email": "Wpisz swój adres email", + "request_password_reset": "Poproś o nowe hasło", + "reset_your_password": "Zresetuj swoje hasło", + "password_has_been_reset": "Twoje hasło zostało zresetowane", + "login_here": "Zaloguj się tutaj", + "set_new_password": "Ustaw nowe hasło", + "user_wants_you_to_see_project": "__username__ chce, żebyś zobaczył __projectname__", + "join_sl_to_view_project": "Dołącz do __appName__, aby zobaczyć ten projekt", + "register_to_edit_template": "Zarejestruj się, żeby edytować szablon __templateName__", + "already_have_sl_account": "Czy masz już konto __appName__?", + "register": "Zarejestruj się", + "password": "Hasło", + "registering": "Rejestracja", + "planned_maintenance": "Planowana konserwacja", + "no_planned_maintenance": "Nie ma obecnie żadnych zaplanowanych konserwacji", + "cant_find_page": "Przykro nam, ale nie możemy znaleźć strony której szukasz.", + "take_me_home": "Zabierz mnie do domu!", + "no_preview_available": "Przepraszamy, pogląd jest niedostępny.", + "no_messages": "Brak wiadomości", + "send_first_message": "Wyślij pierwszą wiadomość", + "account_not_linked_to_dropbox": "Twoje konto nie jest powiązane z Dropboxem", + "update_dropbox_settings": "Zaktualizuj ustawienia Dropbox", + "refresh_page_after_starting_free_trial": "Odśwież tę stronę po rozpoczęciu darmowego trialu", + "checking_dropbox_status": "sprawdzanie statusu Dropboxa", + "dismiss": "Anuluj", + "new_file": "Nowy plik", + "upload_file": "Wyślij plik", + "create": "Utwórz", + "creating": "Tworzenie", + "upload_files": "Wyślij plik(i)", + "sure_you_want_to_delete": "Czy jesteś pewny(a), że chcesz trwale usunąć {{ entity.name }}?", + "common": "Wspólne", + "navigation": "Nawigacja", + "editing": "Edytowanie", + "ok": "OK", + "source": "Pliki źródłowe", + "actions": "Akcje", + "copy_project": "Kopiuj projekt", + "publish_as_template": "Publikuj jako szablon", + "sync": "Synchronizacja", + "settings": "Ustawienia", + "main_document": "Główny plik", + "off": "Wyłączone", + "auto_complete": "automatyczne dopełnianie", + "theme": "Skórka", + "font_size": "Rozmiar czcionki", + "pdf_viewer": "Przeglądarka PDF", + "built_in": "Wbudowana", + "native": "natywna", + "show_hotkeys": "Pokaż skróty klawiszowe", + "new_name": "Nowa nazwa", + "copying": "kopiowanie", + "copy": "Kopiuj", + "compiling": "Kompilowanie", + "click_here_to_preview_pdf": "Kliknij tutaj, żeby zobaczyć podgląd pracy w PDF", + "server_error": "Błąd serwera", + "somthing_went_wrong_compiling": "Przepraszamy, coś poszło nie tak i twój projekt nie mógł zostać skompilowany. Spróbuj ponownie za kilka chwil.", + "timedout": "Koniec limitu czasu", + "proj_timed_out_reason": "Przepraszamy, ale kompilacja przekroczyła limit czasu. Może to być spowodowane dużą liczbą obrazków wysokiej rozdzielczości bądź skomplikowanymi diagramami.", + "no_errors_good_job": "Brak błędów, dobra robota!", + "compile_error": "Błąd kompilacji", + "generic_failed_compile_message": "Przepraszamy, ale Twój kod LaTeX nie mógł z jakiegoś powodu zostać skompilowany. Sprawdź proszę poniższe szczegółowe komunikaty błędów lub zobacz niefiltrowany log", + "other_logs_and_files": "Inne logi i pliki", + "view_raw_logs": "Zobacz surowe logi", + "hide_raw_logs": "Ukryj surowe logi", + "clear_cache": "Wyczyść cache", + "clear_cache_explanation": "To działanie wyczyści wszystkie ukryte pliki LaTeXa (.aux, .bbl, etc.) z naszego serwera. Nie musisz tego robić dopóki nie masz problemów z referencjami.", + "clear_cache_is_safe": "Twoje pliki projektu nie będą usunięte ani zmienione.", + "clearing": "Czyszczenie", + "template_description": "Opis szablony", + "project_last_published_at": "Twój projekt był ostatnio publikowany dnia", + "share_project": "Udostępnij projekt", + "this_project_is_private": "Ten projekt jest prywatny, dostęp do niego mają tylko osoby poniżej.", + "make_public": "Ustaw projekt jako publiczny", + "this_project_is_public": "Ten projekt jest publiczny i może być edytowany przez każdego kto posiada link.", + "make_private": "Ustaw projekt jako prywatny", + "can_edit": "Może edytować", + "share_with_your_collabs": "Udostępnij swoim współpracownikom", + "share": "Udostępnij", + "make_project_public": "Ustaw projekt jako publiczny", + "make_project_public_consequences": "Jeśli ustawisz ten projekt jako publiczny, każda osoba z linkiem będzie miała do niego dostęp.", + "allow_public_editing": "Pozwól na publiczne edycje", + "make_project_private": "Ustaw projekt jako prywatny", + "anonymous": "Anonimowy", + "generic_something_went_wrong": "Przepraszamy, coś poszło nie tak :(", + "restoring": "Przywracanie", + "profile_complete_percentage": "Twój profil jest kompletny w __percentval__%", + "file_has_been_deleted": "__filename__ został usunięty", + "rename_project": "Zmień nazwę projektu", + "about_to_delete_projects": "Zaraz usuniesz następujące projekty:", + "upload_zipped_project": "Wyślij projekt w pliku ZIP", + "upload_a_zipped_project": "Wyślij projekt w pliku ZIP", + "your_profile": "Twój profil", + "institution": "Instytucja", + "role": "Rola", + "folders": "Foldery", + "disconnected": "Rozłączony", + "please_refresh": "Proszę odśwież stronę aby kontynuować.", + "lost_connection": "Utracono połączenie", + "reconnecting_in_x_secs": "Próba połączenia za __seconds__ s", + "try_now": "Spróbuj teraz", + "reconnecting": "Ponowne łączenie", + "saving_notification_with_seconds": "Zapisywanie pliku __docname__... (__seconds__ sekund niezapisanych zmian)", + "post_on_facebook": "Opublikuj na Facebooku", + "share_us_on_googleplus": "Poleć nas na Google+", + "direct_link": "Bezpośredni link", + "one_free_collab": "Jeden darmowy współpracownik", + "free_dropbox_and_history": "Darmowy Dropbox i historia", + "year": "rok", + "month": "miesiąc", + "subscribe_to_this_plan": "Wybierz ten plan", + "your_plan": "Twój plan", + "your_subscription": "Twoja subskrypcja", + "on_free_trial_expiring_at": "Korzystasz obecnie z darmowego okresu próbnego, który wygasa __expiresAt__.", + "manage_group": "Zarządzaj grupą", + "remove_from_group": "Usuń z grupy", + "group_account": "Konto grupowe", + "registered": "Zarejestrowany", + "no_members": "Brak członków", + "add_more_members": "Dodaj członków", + "add": "Dodaj", + "back_to_your_projects": "Wróć do swoich projektów", + "regards": "Dziękujemy", + "comment": "Skomentuj", + "restricted_no_permission": "Wstęp wzbroniony - nie masz uprawnień, aby załadować tę stronę.", + "get_started_now": "Rozpocznij teraz", + "and": "i", + "done": "Zrobione", + "change": "Zmień", + "page_not_found": "Strona nie znaleziona", + "cant_find_email": "Przykro nam, ale ten adres email nie jest zarejestrowany.", + "documentation": "Dokumentacja", + "account": "Konto", + "log_out": "Wyloguj się", + "en": "Angielski", + "pt": "Portugalski", + "es": "Hiszpański", + "fr": "Francuski", + "de": "Niemiecki", + "it": "Włoski", + "da": "Duński", + "sv": "Szwedzki", + "no": "Norweski", + "nl": "Duński", + "pl": "Polski", + "ru": "Rosyjski", + "uk": "Ukraiński", + "ro": "Rumuński", + "click_here_to_view_sl_in_lng": "Kliknij tutaj, żeby używać __appName__ w __lngName__m", + "language": "Język", + "upload": "Wyślij plik", + "menu": "Menu", + "full_screen": "Pełny ekran", + "logs_and_output_files": "Logi i pliki wynikowe", + "download_pdf": "Ściągnij PDF", + "split_screen": "Podziel ekran", + "clear_cached_files": "Wyczyść pliki z cache", + "download_zip_file": "Ściągnij plik .zip", + "price": "Cena", + "cs": "Czeski", + "view_all": "Zobacz wszystko", + "terms": "Warunki", + "privacy": "Prywatność", + "contact": "Kontakt", + "processing": "przetwarzanie", + "missing_template_question": "Brakujący szablon?", + "upload_failed_sorry": "Przesyłanie nie powiodło się, przepraszamy :(", + "account_settings": "Ustawienia konta", + "search_projects": "Przeszukaj projekty", + "clone_project": "Kopiuj projekt", + "delete_project": "Usuń projekt", + "download_zip": "Pobierz jako ZIP", + "new_project": "Nowy projekt", + "blank_project": "Pusty projekt", + "example_project": "Przykładowy projekt", + "from_template": "Z szablonu", + "cv_or_resume": "CV lub życiorys", + "cover_letter": "List motywacyjny", + "journal_article": "Artykuł prasowy", + "presentation": "Prezentacja", + "thesis": "Praca dyplomowa", + "bibliographies": "Bibliografie", + "terms_of_service": "Warunki usługi", + "privacy_policy": "Polityka prywatności", + "plans_and_pricing": "Plany i cennik", + "university_licences": "Licencje akademickie", + "security": "Bezpieczeństwo", + "contact_us": "Skontaktuj się z nami", + "thanks": "Dziękuję", + "blog": "Blog", + "latex_editor": "Edytor LaTeXa", + "chat": "Czat", + "your_message": "Twoja wiadomość", + "loading": "Ładowanie", + "connecting": "Łączenie", + "recompile": "Przekompiluj", + "download": "Ściągnij", + "email": "Email", + "owner": "Właściciel", + "read_and_write": "odczyt i zapis", + "read_only": "tylko odczyt", + "publish": "Publikuj", + "view_in_template_gallery": "Zobacz w galerii szablonów", + "unpublish": "Zaprzestaj publikację", + "hotkeys": "Skróty klawiszowe", + "saving": "Zapisywanie", + "cancel": "Anuluj", + "project_name": "Nazwa projektu", + "root_document": "Główny plik", + "spell_check": "Sprawdzanie pisowni", + "compiler": "Kompilator", + "private": "Prywatny", + "public": "Publiczny", + "delete_forever": "Usuń na zawsze", + "support_and_feedback": "Pomoc i opinie", + "help": "Pomoc", + "latex_templates": "Szablony LaTeX", + "info": "Informacje", + "latex_help_guide": "Przewodnik po LaTeXu", + "choose_your_plan": "Wybierz swój plan", + "indvidual_plans": "Plany indywidualne", + "free_forever": "Za darmo na zawsze", + "low_priority_compile": "Kompilowanie niskiego priorytetu", + "unlimited_projects": "Nielimitowane projekty", + "unlimited_compiles": "Nielimitowane kompilacje", + "full_history_of_changes": "Pełna historia zmian", + "dropbox_sync": "Synchronizacja z Dropbox", + "beta": "Beta", + "sign_up_now": "Zarejestruj się teraz", + "annual": "Rocznie", + "half_price_student": "Plany dla studentów za połowę cent", + "about_us": "O nas", + "github_sync_error": "Przepraszamy, ale wystąpił błąd komunikacji z naszym kontem GitHub. Proszę spróbuj ponownie za parę chwil." +} \ No newline at end of file diff --git a/services/web/locales/pt.json b/services/web/locales/pt.json new file mode 100644 index 0000000000..bed76d4326 --- /dev/null +++ b/services/web/locales/pt.json @@ -0,0 +1,1076 @@ +{ + "linked_accounts": "contas ligadas", + "unable_to_extract_the_supplied_zip_file": "Abrir este conteúdo no Overleaf falhou porque o arquivo zip não pôde ser extraído. Por favor, certifique-se de que é um arquivo zip válido. Se isso continuar acontecendo para links em um site específico, informe isso a eles.", + "the_file_supplied_is_of_an_unsupported_type ": "O link para abrir este conteúdo no Overleaf apontou para o tipo errado de arquivo. Tipos de arquivos válidos são arquivos .tex e .zip. Se isso continuar acontecendo para links em um site específico, informe isso a eles.", + "the_requested_publisher_was_not_found": "The link to open this content on Overleaf specified a publisher that could not be found. If this keeps happening for links on a particular site, please report this to them.", + "the_supplied_uri_is_invalid": "O link para abrir este conteúdo no Overleaf incluiu um URI inválido. Se isso continuar acontecendo nos links de um site específico, informe isso a eles.", + "the_requested_conversion_job_was_not_found": "O link para abrir este conteúdo no Overleaf especificou um trabalho de conversão que não pôde ser encontrado. É possível que o trabalho tenha expirado e precise ser executado novamente. Se isso continuar acontecendo nos links de um site específico, informe isso a eles.", + "not_found_error_from_the_supplied_url": "O link para abrir este conteúdo no Overleaf apontou para um arquivo que não foi encontrado. Se isso continuar acontecendo nos links de um site específico, informe isso a eles.", + "too_many_requests": "Muitas solicitações foram recebidas em um curto espaço de tempo. Por favor, aguarde alguns instantes e tente novamente.", + "password_change_passwords_do_not_match": "Senhas não coincidem", + "github_for_link_shared_projects": "Este projeto foi acessado por meio do compartilhamento de links e não será sincronizado com o seu Github, a menos que você seja convidado por e-mail pelo proprietário do projeto.", + "browsing_project_latest_for_pseudo_label": "Navegando no estado atual do seu projeto", + "history_label_project_current_state": "Estado atual", + "download_project_at_this_version": "Download do projeto nesta versão", + "submit": "enviar", + "help_articles_matching": "Artigos de ajuda que correspondem ao seu assunto", + "dropbox_for_link_share_projs": "Este projeto foi acessado via compartilhamento de links e não será sincronizado com o seu Dropbox, a menos que você seja convidado por e-mail pelo proprietário do projeto", + "clear_search": "limpar pesquisa", + "email_registered_try_alternative": "Desculpe, não temos uma conta que confere com essas credenciais. Talvez você tenha se inscrito com um provedor diferente.", + "access_your_projects_with_git": "Acesse seus projetos com o Git", + "ask_proj_owner_to_upgrade_for_git_bridge": "Solicite ao proprietário do projeto para atualizar sua conta para usar o git", + "export_csv": "Exportar CSV", + "add_comma_separated_emails_help": "Separa múltiplos endereços de emails utilizando vírgula (,).", + "members_management": "Gerenciamento de membros", + "managers_management": "Gerenciamento de gerentes", + "institution_account": "Conta Institucional", + "git": "Git", + "clone_with_git": "Clonar com o Git", + "git_bridge_modal_description": "Você pode usar git clone no seu projeto usando o link abaixo.", + "managers_cannot_remove_admin": "Administradores não podem ser removidos", + "managers_cannot_remove_self": "Gerentes não podem remover a si mesmos", + "user_not_found": "Usuário não encontrado", + "user_already_added": "Usuário já foi adicionado", + "bonus_twitter_share_text": "Estou usando o __appName__, o editor gratuito online e colaborativo de LaTeX - é muito bom e fácil de usar!", + "bonus_email_share_header": "Editor Online de LaTeX que você deve gostar", + "bonus_email_share_body": "Oi, eu estou usando o editor online de LaTeX __appName__ e acredito que você vai ter interesse ver dar uma olhada.", + "bonus_share_link_text": "Editor Online de LaTeX __appName__", + "bonus_facebook_name": "__appName__ - Editor Online de LaTeX", + "bonus_facebook_caption": "Projetos e Compilação ilimitados e gratuitos", + "bonus_facebook_description": "__appName__ é um editor online e gratuito de LaTeX. Colaboração em tempo real como o Google Docs, com Dropbox, histórico e auto-completar", + "remove_manager": "Remover gerente", + "invalid_element_name": "Não pode copiar o seu projeto porque os arquivos contém caracteres inválidos (como asterisco, barras ou caracteres de controle). Por favor, renomeie os arquivos e tente novamente.", + "password_change_failed_attempt": "Alteração da senha falhou", + "password_change_successful": "Senha alterada", + "not_registered": "Não registrado", + "featured_latex_templates": "Templates LaTeX Destacados", + "no_featured_templates": "Sem templates destacados", + "try_again": "Por favor, tente novamente", + "email_required": "Email obrigatório", + "registration_error": "Erro de Registro", + "newsletter-accept": "Gostaria de receber e-mails sobre ofertas de produtos, notícias e eventos da empresa.", + "resending_confirmation_email": "Reenviando email de confirmação", + "please_confirm_email": "Por favor, confirme seu e-mail __emailAddress__ clicando no link no e-mail de confirmação", + "register_using_service": "Registre-se usando __service__", + "login_to_overleaf": "Faça o login no Overleaf", + "login_with_email": "Entre com seu email", + "login_with_service": "Logar com __service__", + "first_time_sl_user": "Primeira vez aqui como usuário do ShareLaTeX", + "migrate_from_sl": "Migrar do ShareLaTeX", + "dont_have_account": "Não tem uma conta?", + "sl_extra_info_tooltip": "Por favor, faça o login no ShareLaTeX para mover sua conta para o Overleaf. Levará apenas alguns segundos. Se você tiver uma assinatura do ShareLaTeX, ela será automaticamente transferida para o Overleaf.", + "register_using_email": "Registre-se usando seu email", + "login_register_or": "ou", + "to_add_more_collaborators": "Para adicionar mais colaboradores ou ativar o compartilhamento de links, pergunte ao proprietário do projeto", + "by": "por", + "emails": "E-mails", + "editor_theme": "Tema do editor", + "overall_theme": "Tema Geral", + "faq_how_does_free_trial_works_answer": "Você obtém acesso total ao plano __appName__ escolhido durante a avaliação gratuita de __len __ dias. Não há obrigação de continuar além da versão de avaliação. Seu cartão será cobrado no final da avaliação de __len__ dias, a menos que você cancele antes disso. Você pode cancelar via suas configurações de assinatura.", + "thousands_templates": "Milhares de templates", + "get_instant_access_to": "Tenha acesso instantâneo a", + "ask_proj_owner_to_upgrade_for_full_history": "Por favor, peça ao dono do projeto para atualizar para acessar o recurso de Histórico Completo.", + "currently_seeing_only_24_hrs_history": "Você está vendo as alterações das últimas 24 horas neste projeto.", + "archive_projects": "Projetos Arquivados", + "archive_and_leave_projects": "Projetos Arquivados e Deixados", + "about_to_archive_projects": "Você está prestes a arquivar os seguintes projetos:", + "please_confirm_your_email_before_making_it_default": "Por favor, confirme o seu email antes de tornar ele padrão.", + "back_to_editor": "Voltar ao editor", + "generic_history_error": "Algo deu errado ao tentar buscar o histórico do seu projeto. Se o erro persistir, entre em contato conosco via:", + "unconfirmed": "Não confirmado", + "please_check_your_inbox": "Por favor, verifique sua caixa de entrada", + "resend_confirmation_email": "Reenviar e-mail de confirmação", + "history_label_created_by": "Criado por", + "history_label_this_version": "Etiquetar esta versão", + "history_add_label": "Adicionar etiqueta", + "history_adding_label": "Adicionando marcador", + "history_new_label_name": "Novo nome do marcador", + "history_new_label_added_at": "Um novo marcador será adicionado a partir de", + "history_delete_label": "Excluir marcador", + "history_deleting_label": "Excluindo marcador", + "history_are_you_sure_delete_label": "Tem certeza de que deseja excluir o seguinte marcador", + "browsing_project_labelled": "Procurando versão do projeto com marcador", + "history_view_all": "Todo o histórico", + "history_view_labels": "Marcadores", + "history_view_a11y_description": "Mostrar todo o histórico do projeto ou apenas versões com marcadores.", + "add_another_email": "Adicionar outro e-mail", + "start_by_adding_your_email": "Comece adicionando o seu e-mail.", + "is_email_affiliated": "O seu e-mail está afiliado a uma instituição? ", + "let_us_know": "Conte para nós", + "add_new_email": "Adicionar novo e-mail", + "error_performing_request": "Um erro ocorreu enquanto sua solicitação era processada.", + "reload_emails_and_affiliations": "Recarregar e-mails e afiliações", + "emails_and_affiliations_title": "E-mails e Afiliações", + "emails_and_affiliations_explanation": "Adicionar outros e-mails à sua conta para acessar qualquer melhoria que a sua universidade ou instituição tem, para facilitar para colaboradores encontrarem vocês e para ter certeza que você consiga recuperar a sua conta.", + "institution_and_role": "Instituição e papel", + "add_role_and_department": "Adicionar perfil e departamento", + "save_or_cancel-save": "Salvar", + "save_or_cancel-or": "ou", + "save_or_cancel-cancel": "Cancelar", + "make_default": "Tornar padrão", + "remove": "remover", + "confirm_email": "Confirme o Email", + "invited_to_join_team": "Você foi convidado para participar de uma equipe", + "join_team": "Junte-se à equipe", + "accepted_invite": "Convite aceito", + "invited_to_group": "__inviterName__ lhe convidou para entrar no time no __appName__", + "join_team_explanation": "Por favor, clique no botão abaixo para entrar no time e aproveitar os benefícios de uma conta paga no __appName__.", + "accept_invitation": "Aceitar convite", + "joined_team": "Você entrou no time gerenciado por __inviterName__", + "compare_to_another_version": "Compare com outra versão", + "file_action_edited": "Editado", + "file_action_renamed": "Renomeado", + "file_action_created": "Criado", + "file_action_deleted": "Deletado", + "browsing_project_as_of": "Navegando projecto como", + "view_single_version": "Ver versão simples", + "font_family": "Família da Fonte", + "line_height": "Altura da Linha", + "compact": "Compacto", + "wide": "Largo", + "default": "Padrão", + "leave": "Sair", + "archived_projects": "Projetos Arquivados", + "archive": "Arquivar", + "student_disclaimer": "O desconto educacional se aplica à todos os estudantes de instituições secundárias e pós-secundárias (escolas e universidades). Nos poderemos entrar em contato com você para confirmar se você é elegível para o desconto.", + "billed_after_x_days": "Você não será cobrado até que os __len__ dias da experimentação expirar.", + "looking_multiple_licenses": "Procurando por lincenças múltiplas?", + "reduce_costs_group_licenses": "Você pode diminuir seu trabalho e reduzir os custos com nosso desconto para licenças para grupo.", + "find_out_more": "Descubra Mais", + "compare_plan_features": "Compare os Recursos dos Planos", + "in_good_company": "Você esta em Boa Companhia", + "unlimited": "Ilimitado", + "priority_support": "Suporte prioritário", + "dropbox_integration_lowercase": "Integração com Dropbox", + "github_integration_lowercase": "Integração com GitHub", + "discounted_group_accounts": "disconto para contas de grupo", + "referring_your_friends": "referenciando seus amigos", + "still_have_questions": "Ainda tem dúvidas?", + "quote_erdogmus": "A habilidade natural para acompanhar mudanças e colaboração em tempo real é o que diferencia o ShareLaTeX.", + "quote_henderson": "ShareLaTeX se mostrou a ferramenta mais poderosa e robusta para colaboração que é amplamente utilizada em nossa Escola.", + "best_value": "Melhor valor", + "faq_how_free_trial_works_question": "Como foi o uso da versão de experimentação?", + "faq_change_plans_question": "Eu posso alterar o plano depois?", + "faq_do_collab_need_premium_question": "Todos os meus colaboradores precisam ter uma conta premium?", + "faq_need_more_collab_question": "E se eu precisar de mais colaboradores?", + "faq_purchase_more_licenses_question": "Eu posso comprar licenças adicionais para os meus colegas?", + "faq_monthly_or_annual_question": "Eu devo escolher o pagamento mensal ou anual?", + "faq_how_to_pay_question": "Eu posso pagar online com meu cartão de débito, crédito ou Paypal?", + "faq_pay_by_invoice_question": "Eu posso pagar com boleto ou ordem de pedido?", + "reference_search": "Busca avançada de referências", + "reference_search_info": "Você sempre pode buscar pela chave da citação e a busca avançada por referências também permite que você busque por autor, título, ano e publicação.", + "reference_sync": "Gerenciador de sincronia de referências", + "reference_sync_info": "Gerencie sua biblioteca de referências no Mendeley e vincule ele diretamente com o seu arquivo .bib no Overleaf, assim você pode citar facilmente qualquer referência na biblioiteca do seu Mendeley.", + "faq_how_free_trial_works_answer": "Você escolheu ter acesso à versão de experimentação do __appName__ por __len__ dias. Não há nenhuma obrigação para você continuar além da emperimentação. Seu cartão será cobrado apenas depois do __len__º dia, a não ser que você cancele antes. Você pode cancelar nas configurações da sua inscrição.", + "faq_change_plans_answer": "Sim, você pode trocar de plano em qualquer momento pelas configurações da sua inscrição. Isso inclue opções para trocar para um plano diferente, trocar a cobrança mensal e anual, ou cancelar e migrar para o plano gratuíto.", + "faq_do_collab_need_premium_answer": "Recursos Premium, como acompanhar alterações estarão disponíveis para os seus colaboradores nos projetos que você criar, mesmo que o seu colaborador tenha conta grátis.", + "faq_need_more_collab_answer": "Você pode migrar para um dos nossos planos pagos, com suporte para mais colaboradores. Você também pode adicionar colaboradores nas nossas contas gratuítas referenciando os seus amigos pelo link __referFriendsLink__.", + "faq_purchase_more_licenses_answer": "Sim, nós oferecemos __groupLink__, que são mais fácil de administrar, ajudando a economizar no seu trabalho, ajudando a reduzir custos na compra de várias licenças.", + "faq_monthly_or_annual_answer": "Cobrança anual é um meio de reduzir seu trabalho de gerenciar sua conta. Se você preferir gerenciar apenas uma conta por ano ao invés de doze, o pagamento anual é pra você.", + "faq_how_to_pay_answer": "Sim, você pode. A maioria dos cartões de créditos, débitos e Paypal são aceitos. Selecione o seu plano e você terá a opção de pagar com cartão ou através do Paypal quando for a hora de fazer o pagamento.", + "powerful_latex_editor": "Editor Poderoso de LaTeX", + "realtime_track_changes": "Acompanhe alterações em tempo real.", + "realtime_track_changes_info": "Agora você não precisa escolher entre acompanhar as alterações e as configurações no LaTeX. Deixe comentários, acompanhe sua lista de tarefas, e aceite ou rejeite as alterações dos outros.", + "full_doc_history_info": "Volte no tempo e veja qualquer versão e quem fez as alterações. Não importa o que aconteça, nós te damos cobertura.", + "dropbox_integration_info": "Trabalhe online ou offline perfeitamente com a sincronia do Dropbox. As suas alterações locais serão enviadas automaticamente para a sua versão do Overleaf e vice-e-versa.", + "github_integration_info": "Enviar e baixe suas alterações do GitHub, assim você e seus colaboradores podem trabalhar offline com o git e online com o Overleaf.", + "latex_editor_info": "Tudo que você precisa num editar moderno de LaTeX - correção ortográfica, auto-completar inteligente, realce de sintaxe, diversas cores de temas, atalhos de vim e emacs, ajuda com mensagens de aviso e erros do LaTeX e muito mais.", + "change_plans_any_time": "Você pode mudar seu plano ou mudar sua conta em qualquer momento. ", + "number_collab": "Número de colaboradores", + "unlimited_private_info": "Todos os seus projetos serão privador por padrão. Convide colaboradores para ler ou editar por endereço de email ou envia um link secreto para eles.", + "unlimited_private": "Projetos privados ilimitados", + "realtime_collab": "Colaboração em tempo real", + "realtime_collab_info": "Quando você trabalha em conjunto, você pode ver o cursor dos seus colaboradores e as alterações em tempo real, assim todos sempre tem a última versão.", + "hundreds_templates": "Centenas de modelos", + "hundreds_templates_info": "Faça documentos lindos começando com modelos LaTeX da nossa galeria: revistas, conferências, teses, relatórios, currículos e muito mais.", + "instant_access": "Tenha acesso instantâneo ao __appName__", + "tagline_personal": "Ideal para trabalhar individualmente", + "tagline_collaborator": "Incrível para trabalhos em grupo", + "tagline_professional": "Para aqueles que trabalhos com vários", + "tagline_student_annual": "Economize ainda mais", + "tagline_student_monthly": "Incrível para um único mandato", + "all_premium_features": "Todos os recursos premium", + "sync_dropbox_github": "Sincronize com Dropbox e GitHub", + "track_changes": "Acompanhe as mudanças", + "tooltip_hide_pdf": "Clique para esconder o PDF", + "tooltip_show_pdf": "Clique para mostrar o PDF", + "tooltip_hide_filetree": "Clique para esconder a árvore de arquivos", + "tooltip_show_filetree": "Clique para mostrar a árvore de arquivos", + "cannot_verify_user_not_robot": "Desculpe, não conseguimos verificar se você não é um robô. Por favor, verifique se o Google reCAPTCHA não está sendo bloqueado por algum firewall ou bloqueador de anúncios.", + "uncompiled_changes": "Mudanças não Compiladas", + "code_check_failed": "Verificação do código falhou", + "code_check_failed_explanation": "Seu código contém erros que precisam ser corrigidos antes de rodar a auto-compilação", + "tags_slash_folders": "Rótulos/Pastas", + "file_already_exists": "Já existe um arquivo ou pasta com esse nome", + "import_project_to_v2": "Importar projeto para V2", + "open_in_v1": "Abrir em V1", + "import_to_v2": "Importar para V2", + "never_mind_open_in_v1": "Não importa, abra em V1", + "yes_im_sure": "Sim, eu tenho certeza", + "drop_files_here_to_upload": "Largar arquivos aqui para enviar", + "drag_here": "arraste aqui", + "creating_project": "Criando projeto", + "select_a_zip_file": "Selecione um arquivo .zip", + "drag_a_zip_file": "arraste um arquivo .zip", + "v1_badge": "Emblema V1", + "v1_projects": "Projetos V1", + "open_your_billing_details_page": "Abrir a Página de Detalhes da Cobrança", + "try_out_link_sharing": "Experimente o novo recurso de compartilhamento de links!", + "try_link_sharing": "Experimente o Compartilhar Link", + "try_link_sharing_description": "Dê acesso ao seu projeto simplesmente compartilhando um link.", + "learn_more_about_link_sharing": "Saiba mais sobre Compartilhamento de Link", + "link_sharing": "Compartilhamento de link", + "tc_switch_everyone_tip": "Alternar acompanhar-alterações para todos", + "tc_switch_user_tip": "Alternar acompanhar-alterações para esse usuário", + "tc_switch_guests_tip": "Alternar acompanhar-alterações para todos os convidados por links compartilhado", + "tc_guests": "Convidados", + "select_all_projects": "Selecionar todos", + "select_project": "Selecionar", + "main_file_not_found": "Arquivo principal desconhecido.", + "please_set_main_file": "Por favor, selecione o arquivo principal para esse projeto no menu do projeto. ", + "link_sharing_is_off": "Compartilhamento de Link está desligado, somente usuários convidados podem ver esse projeto.", + "turn_on_link_sharing": "Ligar compartilhamento de Link.", + "link_sharing_is_on": "Compartilhamento de Link está ligado", + "turn_off_link_sharing": "Desligar compartilhamento de Link", + "anyone_with_link_can_edit": "Qualquer um com esse link pode editar esse projeto", + "anyone_with_link_can_view": "Qualquer um com esse link pode ver esse projeto", + "turn_on_link_sharing_consequences": "Quando o compartilhamento de Link estiver habilitado, qualquer um com o link poderá acessar e editar o projeto", + "turn_off_link_sharing_consequences": "Quando o compartilhamento de Link estiver desabilitado, apenas pessoas convidadas para o projeto poderão ter acesso", + "autocompile_disabled": "Autocompilação desativada", + "autocompile_disabled_reason": "Devido à alta carga do servidor, a recompilação de fundo foi desativada temporariamente. Recompile clicando no botão acima.", + "auto_compile_onboarding_description": "Quando habilitado, seu projeto irá compilar enquanto você digita.", + "try_out_auto_compile_setting": "Experimente a nova configuração de compilação automática", + "got_it": "Entendi", + "pdf_compile_in_progress_error": "Compilador já está executando em outra janela", + "pdf_compile_try_again": "Aguarde até que sua outra compilação termine antes de tentar novamente.", + "invalid_email": "Algum email está inválido", + "auto_compile": "Compilar Automaticamente", + "on": "Ligado", + "tc_everyone": "Todos", + "per_user_tc_title": "Acompanhar Alterações por Usuário", + "you_can_use_per_user_tc": "Agora você pode acompanhar as alterações por usuário", + "turn_tc_on_individuals": "Ligar Acompanhar Alterações individualmente por usuário", + "keep_tc_on_like_before": "Ou continue verificando todas, como antes", + "auto_close_brackets": "Fechamento Automático de Delimitadores", + "auto_pair_delimiters": "Delimitadores de Pareamento Automático", + "successfull_dropbox_link": "Dropbox vinculado com sucesso, Redirecionando para página de configurações.", + "show_link": "Mostrar Link", + "hide_link": "Esconder Link", + "aggregate_changed": "Alterado", + "aggregate_to": "para", + "confirm_password_to_continue": "Confirme sua senha para continuar", + "confirm_password_footer": "Não pediremos sua senha de novo por um tempo.", + "accept_all": "Aceitar todos", + "reject_all": "Rejeitar todos", + "bulk_accept_confirm": "Vocês tem certeza que deseja aceitar as __nChanges__ alterações selecionadas?", + "bulk_reject_confirm": "Vocês tem certeza que deseja rejeitar as __nChanges__ alterações selecionadas?", + "uncategorized": "Sem Categoria", + "pdf_compile_rate_limit_hit": "Limite de taxa de compilação atingido", + "project_flagged_too_many_compiles": "Este projeto foi marcado por compilar com muita frequência. O limite vai ser restabelecido logo.", + "reauthorize_github_account": "Reautorize sua conta GitHub", + "github_credentials_expired": "Suas credenciais de autorização do GitHub expiraram", + "hit_enter_to_reply": "Pressione Enter para responder", + "add_your_comment_here": "Adicione seu comentário aqui", + "resolved_comments": "Comentários resolvidos", + "try_it_for_free": "Experimente gratuitamente", + "please_ask_the_project_owner_to_upgrade_to_track_changes": "Solicite ao proprietário do projeto que atualize para utilizar o controle de alterações", + "mark_as_resolved": "Marcar como resolvido", + "reopen": "Reabrir", + "add_comment": "Adicionar comentário", + "no_resolved_threads": "Não existem comentários resolvidos.", + "upgrade_to_track_changes": "Atualizar para acompanhar alterações", + "see_changes_in_your_documents_live": "Ver alterações nos seus documentos, ao vivo", + "track_any_change_in_real_time": "Acompanhar qualquer alteração, em tempo real", + "review_your_peers_work": "Revisar o trabalho de seus colegas", + "accept_or_reject_each_changes_individually": "Aceitar ou rejeitar cada alteração individualmente", + "accept": "Aceitar", + "reject": "Rejeitar", + "no_comments": "Sem comentários", + "edit": "Editar", + "are_you_sure": "Você tem certeza?", + "resolve": "Resolver", + "reply": "Responder", + "quoted_text_in": "Texto citado em", + "review": "Revisar", + "track_changes_is_on": "Controle de alterações está ligado", + "track_changes_is_off": "Controle de alterações está desligado", + "current_file": "Arquivo atual", + "overview": "Visão geral", + "tracked_change_added": "Adicionado", + "tracked_change_deleted": "Deletado", + "show_all": "mostrar tudo", + "show_less": "mostrar menos", + "dropbox_sync_error": "Erro de sincronização do Dropbox", + "send": "Enviar", + "sending": "Enviando", + "invalid_password": "Senha inválida", + "error": "Erro", + "other_actions": "Outras Ações", + "send_test_email": "Enviar email de teste", + "email_sent": "Email Enviado", + "create_first_admin_account": "Criar o primeira conta de Administrador", + "ldap": "LDAP", + "ldap_create_admin_instructions": "Escolha um endereço de e-mail para a primeira conta de administrador do __appName__. Isso deve corresponder a uma conta no sistema LDAP. Você será solicitado a fazer login com esta conta.", + "saml": "SAML", + "saml_create_admin_instructions": "Escolha um email para ser a conta de administrador do __appName__. Isso deve corresponder a uma conta no sistema SAML. Você deverá entrar com essa conta.", + "admin_user_created_message": "Criar um usuário admin, Entrar aqui para continuar", + "status_checks": "Verificações de Status", + "editor_resources": "Editor de Recursos", + "checking": "Verificando", + "cannot_invite_self": "Não pode enviar convite para você mesmo", + "cannot_invite_non_user": "Não foi possível enviar o convite. O destinatário deve ter uma conta no __appName__", + "log_in_with": "Entrar com __provider__", + "return_to_login_page": "Retornar à página de Login", + "login_failed": "Login falhou", + "delete_account_warning_message_3": "Você está prestes a excluir todos os dados de sua conta permanentemente, incluindo seus projetos e configurações. Digite o endereço de e-mail e sua senha da conta nas caixas abaixo para continuar.", + "delete_account_warning_message_2": "Você está prestes da deletar todos os dados de sua conta permanentemente, incluindo seus projetos e configurações. Por favor, digite o endereço de email da sua conta nas caixas de texto abaixo para prosseguir.", + "your_sessions": "Suas Sessões", + "clear_sessions_description": "Essa é a lista de outras sessões (logins) que estão ativas na sua conta, sem incluir sua sessão corrente. Clique no botão \"Limpar Sessões\" para desconectar elas.", + "no_other_sessions": "Nenhuma outra sessão ativa.", + "ip_address": "Endereço de IP", + "session_created_at": "Sessão Criada Em", + "clear_sessions": "Limpar Sessões", + "clear_sessions_success": "Sessões Limpas", + "sessions": "Sessões", + "manage_sessions": "Administrar suas sessões", + "syntax_validation": "Checar código", + "history": "Histórico", + "joining": "Participando", + "open_project": "Abrir Projeto", + "files_cannot_include_invalid_characters": "Arquivos não podem ter os caracteres '*' ou '/'", + "invalid_file_name": "Nome de Arquivo Inválido", + "autocomplete_references": "Referência Autocompletar (dentro do bloco \\cite{})", + "autocomplete": "Autocompletar", + "failed_compile_check": "Parece que o seu projeto tem erros fatais de sintaxe que você pode corrigir antes de compilar", + "failed_compile_check_try": "Tentar compilar mesmo assim", + "failed_compile_option_or": "ou", + "failed_compile_check_ignore": "desligar verificação de sintaxe", + "compile_time_checks": "Verificação de Sintaxe", + "stop_on_validation_error": "Verificar sintaxe antes de compilar", + "ignore_validation_errors": "Não verificar sintaxe", + "run_syntax_check_now": "Verificar sintaxe agora", + "your_billing_details_were_saved": "Os detalhes da sua cobrança foram salvos", + "security_code": "Código de segurança", + "paypal_upgrade": "Para aprimorar sua conta, clique no botão abaixo e entre no PayPal usando seu email e senha.", + "upgrade_cc_btn": "Aprimorar agora, pague depois de 7 dias", + "upgrade_paypal_btn": "Continuar", + "notification_project_invite": "__userName__ você gostaria de entrar em __projectName__ Entrar no Projeto", + "file_restored": "Seu arquivo (__filename__) foi recuperado.", + "file_restored_back_to_editor": "Você pode voltar para o editor e trabalhar novamente.", + "file_restored_back_to_editor_btn": "Voltar para o editor", + "view_project": "Ver Projeto", + "join_project": "Entrar no Projeto", + "invite_not_accepted": "Convite ainda não aceito", + "resend": "Reenviar", + "syntax_check": "Sintaxe verificada", + "revoke_invite": "Revogar Convite", + "pending": "Pendente", + "invite_not_valid": "Esse não é um convite válido do projeto", + "invite_not_valid_description": "Talvez o convite tenha expirado. Por favor, entre em contato com o dono do projeto.", + "accepting_invite_as": "Você está aceitando esse convite como", + "accept_invite": "Aceitar convite", + "log_hint_ask_extra_feedback": "Você pode nos ajudar a entender porque essa dica não é útil?", + "log_hint_extra_feedback_didnt_understand": "Eu não entendi a dica", + "log_hint_extra_feedback_not_applicable": "Eu não posso aplicar essa solução no meu documento", + "log_hint_extra_feedback_incorrect": "Isso não corrige o erro", + "log_hint_extra_feedback_other": "Outra:", + "log_hint_extra_feedback_submit": "Enviar", + "if_you_are_registered": "Se você já está registrado", + "stop_compile": "Parar compilação", + "terminated": "Compilação cancelada", + "compile_terminated_by_user": "O compilador foi cancelado usando o botão \"Parar Compilação\". Você pode olhar os logs e ver onde a compilação parou.", + "site_description": "Um editor de LaTeX online fácil de usar. Sem instalação, colaboração em tempo real, controle de versões, centenas de templates LaTeX e mais.", + "knowledge_base": "base de conhecimento", + "contact_message_label": "Mensagem", + "kb_suggestions_enquiry": "Você já viu nossa __kbLink__?", + "answer_yes": "Sim", + "answer_no": "Não", + "log_hint_extra_info": "Saiba mais", + "log_hint_feedback_label": "Essa dica foi útil?", + "log_hint_feedback_gratitude": "Obrigado por seu comentário!", + "recompile_pdf": "Recompilar o PDF", + "about_paulo_reis": "é desenvolvedor de software front-end e pesquisador de experiência de usuário residente em Aveiro, Portugal. Paulo tem PhD em experiência de usuário e é apaixonado por criar tecnologia adequada às necessidades do usuário — tanto em conceito ou validação/teste, quanto em idealização ou implementação.", + "login_or_password_wrong_try_again": "Seu usário ou senha estão incorretos. Tente novamente.", + "manage_beta_program_membership": "Gerenciar a participação no Programa Beta", + "beta_program_opt_out_action": "Descadastrar do Programa Beta", + "disable_beta": "Desabilitar Beta", + "beta_program_badge_description": "Enquanto usa o __appName__, você verá os recursos beta marcados com este emblema:", + "beta_program_current_beta_features_description": "Nós estamos testando os seguintes recursos beta:", + "enable_beta": "Habilitar Beta", + "user_in_beta_program": "Usuário está participando do Programa Beta", + "beta_program_already_participating": "Você está inscrito no Programa Beta.", + "sharelatex_beta_program": "Programa Beta __appName__", + "beta_program_benefits": "Nós estamos sempre melhorando o __appName__. Ingressando em nosso Programa Beta você pode ter acesso aos novos recursos e nos ajudar a entender melhor suas necessidades.", + "beta_program_opt_in_action": "Cadastrar no Programa Beta", + "conflicting_paths_found": "Conflito de Caminhos Encontrado", + "following_paths_conflict": "Os arquivos e diretórios a seguir conflitam com o mesmo caminho", + "open_a_file_on_the_left": "Abra em arquivo à esquerda", + "reference_error_relink_hint": "Se os problemas persistirem, tente revincular sua conta aqui:", + "pdf_rendering_error": "Erro ao renderizar PDF", + "something_went_wrong_rendering_pdf": "Alguma coisa deu errado ao renderizar o PDF.", + "mendeley_reference_loading_error_expired": "O token do Mendeley expirou, por favor, revincule sua conta", + "zotero_reference_loading_error_expired": "O token do Zotero expirou, por favor, revincule sua conta", + "mendeley_reference_loading_error_forbidden": "Não foi possível carregar as referências do Mendeley, por favor, revincule sua conta e tente novamente", + "zotero_reference_loading_error_forbidden": "Não foi possível carregar as referências do Zotero, por favor, revincule sua conta e tente novamente", + "mendeley_integration": "Integração Mendeley", + "mendeley_sync_description": "A integração com Mendeley permite importar suas referências do mendeley para seus projetos no __appName__", + "mendeley_is_premium": "A integração com Mendeley é um recurso premium", + "link_to_mendeley": "Vincular ao Mendeley", + "unlink_to_mendeley": "Desvincular ao Mendeley", + "mendeley_reference_loading": "Carregando referências do Mendeley", + "mendeley_reference_loading_success": "Carregado referências do Mendeley", + "mendeley_reference_loading_error": "Erro, não foi possível carregar as referências do Mendeley", + "zotero_integration": "Integração Zotero.", + "zotero_sync_description": "A integração Zotero permite você importar as referências do zotero para seus projetos no __appName__.", + "zotero_is_premium": "A integração Zotero é um recurso premium", + "link_to_zotero": "Vincular ao Zotero", + "unlink_to_zotero": "Desvincular ao Zotero", + "zotero_reference_loading": "Carregando referências do Zotero", + "zotero_reference_loading_success": "Carregado referência do Zotero", + "zotero_reference_loading_error": "Erro, não foi possível carregar as referências do Zotero", + "reference_import_button": "Importar Referências para", + "unlink_reference": "Desvincular Provedor de Referências", + "unlink_warning_reference": "Cuidado: Quando você desvincular sua conta desse provedor você não poderá mais importar as referências para os seus projetos.", + "mendeley": "Mendeley", + "zotero": "Zotero", + "suggest_new_doc": "Sugerir novo documento", + "request_sent_thank_you": "Requisição Enviada, Obrigado.", + "suggestion": "Sugestões", + "project_url": "URL do projeto afetada", + "subject": "Assunto", + "confirm": "Confirmar", + "cancel_personal_subscription_first": "Você já tem uma inscrição pessoal, você gostaria que cancelássemos a primeira antes de se juntar à licença de grupo?", + "delete_projects": "Deletar Projetos", + "leave_projects": "Deixar Projetos", + "delete_and_leave_projects": "Deletar e Deixar Projetos", + "too_recently_compiled": "Esse projeto foi compilado recentemente, então a compilação foi pulada.", + "clsi_maintenance": "O servidor de compilação está fora do ar para manutenção, logo estará de volta.", + "references_search_hint": "Pressione CTRL-Espaço para Buscar", + "ask_proj_owner_to_upgrade_for_references_search": "Peça ao proprietário do projeto para atualizar para usar o recurso de Pesquisa de Referências.\n", + "ask_proj_owner_to_upgrade_for_faster_compiles": "Por favor, peça ao dono do projeto para aprimorar para compilação mais rápida e aumentar o limite de tempo.", + "search_bib_files": "Busque por autor, título ou ano", + "leave_group": "Sair do grupo", + "leave_now": "Sair agora", + "sure_you_want_to_leave_group": "Você tem certeza que deseja sair do grupo?", + "notification_group_invite": "Você foi convidado para entrar no __groupName__, Entre Aqui.", + "search_references": "Buscar os arquivos .bib no projeto", + "no_search_results": "Sem resultados", + "email_already_registered": "Este email já está registrado", + "compile_mode": "Modo de Compilação", + "normal": "Normal", + "fast": "Rápido", + "rename_folder": "Renomear Pasta", + "delete_folder": "Excluir Pasta", + "about_to_delete_folder": "Você está prestes a excluir as seguintes pastas (qualquer projeto dentro não serão excluídos):", + "to_modify_your_subscription_go_to": "Para modificar sua inscrição, vá para", + "manage_subscription": "Administrar Inscrição", + "activate_account": "Ative sua conta", + "yes_please": "Sim, por favor!", + "nearly_activated": "Você está a um passo de ativar sua conta no __appName__!", + "please_set_a_password": "Por favor, insira sua senha", + "activation_token_expired": "Seu token de ativação expirou, você precisa que outro seja enviado para você.", + "activate": "Ativar", + "activating": "Ativando", + "ill_take_it": "Eu fico com isso!", + "cancel_your_subscription": "Parar Sua Inscrição", + "no_thanks_cancel_now": "Não, obrigado - Ainda quero Cancelar Agora", + "cancel_my_account": "Cancelar minha inscrição", + "sure_you_want_to_cancel": "Você tem certeza que deseja cancelar?", + "i_want_to_stay": "Quero ficar", + "have_more_days_to_try": "Ganhe mais __days__ dias na sua Experimentação!", + "interested_in_cheaper_plan": "Você estaria interessado em um plano de estudante com __price__ mais barato?", + "session_expired_redirecting_to_login": "Sessão Expirada. Redirecionando para a página de login em __seconds__ segundos", + "maximum_files_uploaded_together": "Máximo de __max__ arquivos enviados juntos", + "too_many_files_uploaded_throttled_short_period": "Excesso de arquivos enviados, seus envios foram suprimidos por um curto tempo.", + "compile_larger_projects": "Compile projetos maiores", + "upgrade_to_get_feature": "Aprimore para ter __feature__, mais:", + "new_group": "Novo Grupo", + "about_to_delete_groups": "Você está prestes a deletar os seguintes grupos:", + "removing": "Removendo", + "adding": "Adicionando", + "groups": "Grupos", + "rename_group": "Renomear Grupo", + "renaming": "Renomeando", + "create_group": "Criar Grupo", + "delete_group": "Deletar Grupo", + "delete_groups": "Deletar Grupos", + "your_groups": "Seus Grupos", + "group_name": "Nome do Grupo", + "no_groups": "Sem Grupos", + "Subscription": "Inscrição", + "Documentation": "Documentação", + "Universities": "Universidades", + "Account Settings": "Configurações da Conta", + "Projects": "Projetos", + "Account": "Conta", + "global": "global", + "Terms": "Termos", + "Security": "Segurança", + "About": "Sobre", + "editor_disconected_click_to_reconnect": "Editor desconectado, clique em qualquer lugar para reconectar.", + "word_count": "Contagem de Palavras", + "please_compile_pdf_before_word_count": "Por favor, compile seu projeto antes de executar a contagem de palavras", + "total_words": "Total de Palavras", + "headers": "Cabeçalhos", + "math_inline": "Matemática em Linha", + "math_display": "Exibição Matemática", + "connected_users": "Usuários Conectados", + "projects": "Projetos", + "upload_project": "Carregar Projeto", + "all_projects": "Todos Projetos", + "your_projects": "Seus Projetos", + "shared_with_you": "Compartilhado com você", + "deleted_projects": "Projetos Excluídos", + "templates": "Modelos", + "new_folder": "Nova Pasta", + "create_your_first_project": "Crie seu primeiro projeto", + "complete": "Completo", + "on_free_sl": "Você está usando a versão gratuíta do __appName__", + "upgrade": "Atualizar", + "or_unlock_features_bonus": "ou desbloqueie alguns recursos grátis por", + "sharing_sl": "compartilhando __appName__", + "add_to_folder": "Adicionar à pasta", + "create_new_folder": "Criar Nova Pasta", + "more": "Mais", + "rename": "Renomear", + "make_copy": "Fazer uma cópia", + "restore": "Restaurar", + "title": "Título", + "last_modified": "Última Modificação", + "no_projects": "Sem projetos", + "welcome_to_sl": "Bem-vindo ao __appName__!", + "new_to_latex_look_at": "Novo no LaTeX? Comece dando uma olhada nos nossos ", + "or": "ou", + "or_create_project_left": "ou crie seu primeiro projeto na esquerda", + "thanks_settings_updated": "Obrigado, suas configurações foram salvas.", + "update_account_info": "Atualizar Informações da Conta", + "must_be_email_address": "Deve ser um endereço de email", + "first_name": "Primeiro Nome", + "last_name": "Sobrenome", + "update": "Atualizar", + "change_password": "Mudar Senha", + "current_password": "Senha Atual", + "new_password": "Nova Senha", + "confirm_new_password": "Confirmar Nova Senha", + "required": "Obrigatório", + "doesnt_match": "Não corresponde", + "dropbox_integration": "Integração com Dropbox", + "learn_more": "Aprenda mais", + "dropbox_is_premium": "Sincronização com o Dropbox é um recurso premium", + "account_is_linked": "Conta está vinculada", + "unlink_dropbox": "Desvincular Dropbox", + "link_to_dropbox": "Vincular ao Dropbox", + "newsletter_info_and_unsubscribe": "Enviamos notícias de tempos em tempos resumindo os novos recursos disponíveis. Se você preferir não receber esses e-mails, poderá cancelar a inscrição a qualquer momento:", + "unsubscribed": "Não inscrito", + "unsubscribing": "Cancelando Inscrição", + "unsubscribe": "Cancelar Inscrição", + "need_to_leave": "Precisa sair?", + "delete_your_account": "Exclua sua conta", + "delete_account": "Excluir Conta", + "delete_account_warning_message": "Você está prestes a excluir todos os dados da sua conta permanentemente, inclusive seus projetos e configurações. Por favor escreva seu endereço de email dentro da caixa de texto abaixo para prosseguir.", + "deleting": "Excluindo", + "delete": "Excluir", + "sl_benefits_plans": "__appName__ é o editor LaTeX mais fácil de usar do mundo. Mantenha-se atualizado com seus colaboradores, veja todas as alterações no seu trabalho e use seu ambiente LaTeX em qualquer lugar do mundo.", + "monthly": "Mensalmente", + "personal": "Pessoal", + "free": "Grátis", + "one_collaborator": "Um colaborador apenas", + "collaborator": "Colaborador", + "collabs_per_proj": "__collabcount__ colaboradores por projeto", + "full_doc_history": "Histórico de todo o documento", + "sync_to_dropbox": "Sincronize com Dropbox", + "start_free_trial": "Comece o Teste Grátis!", + "professional": "Profissional", + "unlimited_collabs": "Colaboradores Ilimitados", + "name": "Nome", + "student": "Estudante", + "university": "Universidade", + "position": "Posição", + "choose_plan_works_for_you": "Escolha o plano que funciona para você em nosso teste de __len__ dias grátis. Cancele a qualquer momento.", + "interested_in_group_licence": "Interessado em usar o __appName__ no seu grupo, equipe ou departamento com uma conta ampla?", + "get_in_touch_for_details": "Entre em contato para saber mais detalhes!", + "group_plan_enquiry": "Consulta de Plano de Grupos", + "enjoy_these_features": "Aproveite todas nossos incríveis recursos", + "create_unlimited_projects": "Crie quantos projetos quiser.", + "never_loose_work": "Não perca nada, nós lhe damos cobertura.", + "access_projects_anywhere": "Acesse seus projetos de qualquer lugar.", + "log_in": "Entrar", + "login": "Entrar", + "logging_in": "Entrando", + "forgot_your_password": "Esqueceu sua senha", + "password_reset": "Reiniciar Senha", + "password_reset_email_sent": "Você receberá um email para terminar de reiniciar sua senha.", + "please_enter_email": "Por favor, insira seu endereço de email", + "request_password_reset": "Solicitar redefinição de senha", + "reset_your_password": "Redefinir sua senha", + "password_has_been_reset": "Sua senha foi redefinida", + "login_here": "Entre aqui", + "set_new_password": "Adicionar nova senha", + "user_wants_you_to_see_project": "__username__ gostaria que você participasse de __projectname__", + "join_sl_to_view_project": "Entre no __appName__ para ver esse projeto", + "register_to_edit_template": "Por favor, registre-se para editar o modelo __templateName__", + "already_have_sl_account": "Já possui uma conta no __appName__?", + "register": "Registrar", + "password": "Senha", + "registering": "Registrando", + "planned_maintenance": "Manutenção Planejada", + "no_planned_maintenance": "Não há nenhuma manutenção planejada", + "cant_find_page": "Desculpe, não conseguimos achar a página que você está procurando.", + "take_me_home": "Ir para o início!", + "no_preview_available": "Desculpe, não há pré-visualização disponível.", + "no_messages": "Sem mensagens", + "send_first_message": "Envie sua primeira mensagem", + "account_not_linked_to_dropbox": "Sua conta não está vinculada ao Dropbox", + "update_dropbox_settings": "Atualizar configurações do Dropbox", + "refresh_page_after_starting_free_trial": "Por favor atualize essa página depois de iniciar seu teste grátis.", + "checking_dropbox_status": "verificando estado do Dropbox", + "dismiss": "Ignorar", + "deleted_files": "Arquivos Excluídos", + "new_file": "Novo Arquivo", + "upload_file": "Atualizar Arquivo", + "create": "Criar", + "creating": "Criando", + "upload_files": "Enviar Arquivo(s)", + "sure_you_want_to_delete": "Você tem certeza que deseja excluir permanentemente os seguintes arquivos?", + "common": "Comum", + "navigation": "Navegação", + "editing": "Editando", + "ok": "OK", + "source": "Fonte", + "actions": "Ações", + "copy_project": "Copiar Projeto", + "publish_as_template": "Publicar Modelo", + "sync": "Sincronia", + "settings": "Configurações", + "main_document": "Documento principal", + "off": "Desligar", + "auto_complete": "Auto-completar", + "theme": "Tema", + "font_size": "Tamanho da Fonte", + "pdf_viewer": "Visualizador PDF", + "built_in": "Embutido", + "native": "Nativo", + "show_hotkeys": "Mostrar Atalhos", + "new_name": "Novo Nome", + "copying": "Copiando", + "copy": "Copiar", + "compiling": "Compilando", + "click_here_to_preview_pdf": "Clique aqui para pré-visualizar seu trabalho como PDF", + "server_error": "Erro no Servidor", + "somthing_went_wrong_compiling": "Desculpe, alguma coisa saiu errado e seu projeto não pode ser compilado. Por favor, tente mais tarde.", + "timedout": "Tempo Expirado", + "proj_timed_out_reason": "Desculpe, sua compilação demorou muito e o tempo expirou. Isso pode ter acontecido devido a muitas imagens em alta qualidade ou muitos diagramas complicados.", + "no_errors_good_job": "Sem erros, bom trabalho!", + "compile_error": "Erro de Compilação", + "generic_failed_compile_message": "Desculpe, seu código LaTeX não pode ser compilado por algum motivo. Por favor, verifique os erros abaixo para mais detalhes, ou veja o log original.", + "other_logs_and_files": "Outros Logs & Arquivos", + "view_raw_logs": "Ver Logs Originais", + "hide_raw_logs": "Esconder Logs Originais", + "clear_cache": "Limpar cache", + "clear_cache_explanation": "Isso irá limpar todos os arquivos LaTex (.aux, .bbl, etc) ocultos do seu servidor de compilação. Você geralmente não precisa fazer isso a menos que tenha problemas nas referências.", + "clear_cache_is_safe": "Seus arquivos de projeto não serão excluídos ou modificados.", + "clearing": "Limpando", + "template_description": "Descrição do Modelo", + "project_last_published_at": "Seu projeto foi publicado pela última vez em", + "problem_talking_to_publishing_service": "Há um problema com nosso serviço de publicação, por favor tente mais tarde", + "unpublishing": "Despublicando", + "republish": "Replublicar", + "publishing": "Publicando", + "share_project": "Compartilhar Projeto", + "this_project_is_private": "Este projeto é privado e só pode ser acessível pelas pessoas abaixo.", + "make_public": "Tornar Público", + "this_project_is_public": "Esse projeto é publico e pode ser editado por qualquer pessoa com a URL.", + "make_private": "Tornar Privado", + "can_edit": "Pode Editar", + "share_with_your_collabs": "Compartilhar com os colaboradores", + "share": "Compartilhar", + "need_to_upgrade_for_more_collabs": "Você precisa aprimorar sua conta para adicionar mais colaboradores.", + "make_project_public": "Tornar projeto público", + "make_project_public_consequences": "Se você tornar seu probjeto público, qualquer um com a URL podera ter acesso a ele.", + "allow_public_editing": "Permitir edição pública", + "allow_public_read_only": "Permitir ao público acesso somente à leitura", + "make_project_private": "Desabilitar compartilhamento de link", + "make_project_private_consequences": "Se você tornar seu projeto privado então somente as pessoas compartilhadas terão acesso.", + "need_to_upgrade_for_history": "Você precisa aprimorar sua conta para ter o recurso de Histórico.", + "ask_proj_owner_to_upgrade_for_history": "Por favor, peça ao dono do projeto para aprimorar para usar o recurso de Histórico.", + "anonymous": "Anônimo", + "generic_something_went_wrong": "Desculpe, algo saiu errado", + "restoring": "Restaurando", + "restore_to_before_these_changes": "Restaurar para antes dessas alterações", + "profile_complete_percentage": "Seu perfil está __percentval__% completo", + "file_has_been_deleted": "__filename__ foi excluído", + "sure_you_want_to_restore_before": "Você tem certeza que deseja restaurar __filenname__ para antes das alterações em __date__?", + "rename_project": "Renomear Projeto", + "about_to_delete_projects": "Você está prestes a excluir os seguintes projetos:", + "about_to_leave_projects": "Você está prestes à deixar de seguir os projetos:", + "upload_zipped_project": "Subir Projeto Zipado", + "upload_a_zipped_project": "Subir um projeto zipado", + "your_profile": "Seu Perfil", + "institution": "Instituição", + "role": "Papel", + "folders": "Pastas", + "disconnected": "Desconectado", + "please_refresh": "Por favor, atualize a página para continuar.", + "lost_connection": "Conexão perdida", + "reconnecting_in_x_secs": "Reconectando em __seconds__ segs", + "try_now": "Tente Agora", + "reconnecting": "Reconectando", + "saving_notification_with_seconds": "Salvando __docname__... (__seconds__ segundos de alterações não salvas)", + "help_us_spread_word": "Ajude-nos a divulgar o __appName__", + "share_sl_to_get_rewards": "Compartilhe o __appName__ com seus amigos e colegas e desbloqueie as recompensas abaixo", + "post_on_facebook": "Publicar no Facebook", + "share_us_on_googleplus": "Compartilhe-nos no Google+", + "email_us_to_your_friends": "Envie um email sobre nós para seus amigos", + "link_to_us": "Nos link em seu website", + "direct_link": "Link Direto", + "sl_gives_you_free_stuff_see_progress_below": "Quando alguém começar a usar __appName__ depois de você recomendar, nós iremos lhe dar recursos grátis para lhe agradecer! Veja seu progresso abaixo.", + "spread_the_word_and_fill_bar": "Nos divulgue e preencha essa barra", + "one_free_collab": "Um colaborador grátis", + "three_free_collab": "Três colaboradores grátis", + "free_dropbox_and_history": "Dropbox e Histórico Grátis", + "you_not_introed_anyone_to_sl": "Você não adicionou ninguém ao __appName__ ainda. Comece a compartilhar!", + "you_introed_small_number": " Você introduziu __numberOfPeople__ pessoas no __appName__. Parabéns, mas você pode trazer mais?", + "you_introed_high_number": " Você adicionou __numberOfPeople__ pessoas ao __appName__. Bom trabalho!", + "link_to_sl": "Link ao __appName__", + "can_link_to_sl_with_html": "Você pode vincular o __appName__ com o HTML a seguir:", + "year": "ano", + "month": "mês", + "subscribe_to_this_plan": "Inscreva-se neste plano", + "your_plan": "Seu plano", + "your_subscription": "Sua Inscrição", + "on_free_trial_expiring_at": "Você está atualmente usando o teste grátis que irá expirar em __expirasAt__.", + "choose_a_plan_below": "Escolha um plano abaixo para se inscrever.", + "currently_subscribed_to_plan": "Você está atualmente inscrito no plano __planName__", + "change_plan": "Mudar plano", + "next_payment_of_x_collectected_on_y": "O próximo pagamento de __paymentAmmount__ será coletado em __collectionDate__", + "update_your_billing_details": "Atualize Seus Detalhes de Pagamento", + "subscription_canceled_and_terminate_on_x": "Sua inscrição foi cancelada e irá terminar em __terminateDate__. Nenhum pagamento futuro será cobrado.", + "your_subscription_has_expired": "Sua inscrição expirou.", + "create_new_subscription": "Crie Nova Inscrição", + "problem_with_subscription_contact_us": "Houve um problema na sua inscrição. Por favor, entre em contato conosco para mais informações.", + "manage_group": "Gerenciar grupo", + "loading_billing_form": "Carregando formulário de detalhes de cobrança", + "you_have_added_x_of_group_size_y": "Você adicionou __addedUserSize__ de __groupSize__ membros disponíveis.", + "remove_from_group": "Remover do grupo", + "group_account": "Conta do grupo", + "registered": "Registrado", + "no_members": "Sem membros", + "add_more_members": "Adicionar mais membros", + "add": "Adicionar", + "thanks_for_subscribing": "Obrigado por se inscrever!", + "your_card_will_be_charged_soon": "Seu cartão será cobrado em breve.", + "if_you_dont_want_to_be_charged": "Se você não queiser ser cobrado novamente ", + "add_your_first_group_member_now": "Adicione seu primeiro membro no grupo agora", + "thanks_for_subscribing_you_help_sl": "Obrigado por se inscriver ao plano __planName__. É a ajuda de pessoas como você que permitem ao __appName__ continuar a crescer e melhorar.", + "back_to_your_projects": "Voltar ao seus projetos", + "goes_straight_to_our_inboxes": "Isso vai direto para ambas as nossas caixas de entrada", + "need_anything_contact_us_at": "Se houver qualquer coisa que você precisar, sinta-se à vontade para entrar em contato conosco por", + "regards": "Saudações", + "about": "Sobre", + "comment": "Comentário", + "restricted_no_permission": "Restrito, desculpe você não tem permissão para carregar essa página.", + "online_latex_editor": "Editor LaTeX Online", + "meet_team_behind_latex_editor": "Conheça o time por trás do seu editor LaTeX favorito.", + "follow_me_on_twitter": "Siga-me no Twitter", + "motivation": "Motivação", + "evolved": "Evoluído", + "the_easy_online_collab_latex_editor": "O editor LaTeX fácil de usar, online e colaborativo", + "get_started_now": "Comece agora", + "sl_used_over_x_people_at": "__appName__ é usado por mais de __numberOfUsers__ estudantes e acadêmicos de:", + "collaboration": "Colaboração", + "work_on_single_version": "Trabalhe junto em uma única versão", + "view_collab_edits": "Veja a edição dos colaboradores", + "ease_of_use": " Facilidade de Uso", + "no_complicated_latex_install": "Sem instalação complicada do LaTeX", + "all_packages_and_templates": "Todos os pacotes e __templatesLink__ que você precisa", + "document_history": "Histórico do documento", + "see_what_has_been": "Veja o que foi ", + "added": "adicionado", + "and": "e", + "removed": "removido", + "restore_to_any_older_version": "Restaurar para qualquer versão antiga", + "work_from_anywhere": "Trabalhe de qualquer lugar", + "acces_work_from_anywhere": "Acesse seu trabalho de qualquer lugar do mundo", + "work_offline_and_sync_with_dropbox": "Trabalhe offline e sincronize seus arquivos via Dropbox e GitHub", + "over": "mais de", + "view_templates": "Ver modelos", + "nothing_to_install_ready_to_go": "Não há nada complicado ou difícil para instalar, e você pode __start_now__, mesmo que nunca tenha visto isso antes. __appName__ vem com um completo, ambiente LaTex pronto para usar que roda em nossos servidores.", + "start_using_latex_now": "começar a usar LaTeX agora mesmo", + "get_same_latex_setup": "Com __appName__ você tem o mesmo aplicativo onde quer que vá. Trabalhando com seus colegas e estudantes no __appName__, você sabe que não terá problema de inconsistência ou conflito de pacotes.", + "support_lots_of_features": "Nós temos suporte para todos os recursos LaTeX, incluindo inserção de imagens, bibliografias, equações e muito mais! Leia sobre todos os recursos interessantes que você pode usar no __appName__ em nosso __help_guides_link__", + "latex_guides": "Guias LaTeX", + "reset_password": "Trocar Senha", + "set_password": "Inserir Senha", + "updating_site": "Atualizando Site", + "bonus_please_recommend_us": "Bônus - Por favor nos recomende", + "admin": "admin", + "subscribe": "Inscrever", + "update_billing_details": "Atualizar Detalhes de Cobrança", + "thank_you": "Obrigado", + "group_admin": "Administrador do Grupo", + "all_templates": "Todos os Modelos", + "your_settings": "Suas Configurações", + "maintenance": "Manutenção", + "to_many_login_requests_2_mins": "Essa conta teve muitas solicitações de entrada. Por favor, aguarde 2 minutos antes de tentar novamente.", + "email_or_password_wrong_try_again": "Seu email ou senha estão incorretos. Tente novamente.", + "rate_limit_hit_wait": "Frequência de tentativas atingida. Por favor, aguarde um pouco antes de tentar novamente.", + "problem_changing_email_address": "Houve um problema ao alterar seu endereço de email. Por favor, tente novamente em alguns minutos. Se o problema persistir, por favor, entre em contato conosco.", + "single_version_easy_collab_blurb": "__appName__ garante que você sempre esteja atualizado com seus colaboradores e o que eles estão fazendo. Existe apenas uma versão principal de cada documento que todos têm acesso. Conflitos de alteração são impossíveis e você não precisa esperar seus colegas lhe enviarem as últimas alterações antes de continuar o trabalho.", + "can_see_collabs_type_blurb": "Se várias pessoas querem trabalhar em um documento ao mesmo tempo, não tem problema. Você pode ver onde seus colegas estão digitando diretamente no editor e as alterações irão aparecer na sua tela imediatamente.", + "work_directly_with_collabs": "Trabalhe diretamente com seus colaboradores", + "work_with_word_users": "Trabalhe com usuários do Word", + "work_with_word_users_blurb": "__appName__ é tão fácil de se familiarizar que você poderá convidar seus colegas que não usam LaTeX para editar seus documentos LaTeX. Eles irão começar a produzir a partir do primeiro dia e serão capazes de aprender LaTeX aos poucos.", + "view_which_changes": "Veja quais alterações foram feitas", + "sl_included_history_of_changes_blurb": "__appName__ incluí o histórico de todas as alterações para você ver exatamente quem alterou o quê e quando. Torna-se extremamente fácil se manter atualizado acerca do progresso dos seus colaboradores e você pode revisar os trabalhos recentes.", + "can_revert_back_blurb": "Em modo colaborativo ou sozinho, alguns enganos são feitos. Reverter para versões anteriore é simples e remove o risco de perder trabalho ou se arrepender de uma alteração.", + "start_using_sl_now": "Comece a usar __appName__ agora", + "over_x_templates_easy_getting_started": "Existem milhares de __templates__ em nossa galeria de modelos, assim é fácil começar, mesmo que você esteja escrevendo um artigo de revista, tese, currículo ou outra coisa.", + "done": "Pronto", + "change": "Modificado", + "page_not_found": "Página Não Encontrada", + "please_see_help_for_more_info": "Por favor veja em nosso guia de ajuda para mais informações", + "this_project_will_appear_in_your_dropbox_folder_at": "Esse projeto irá aparecer em sua pasta Dropbox em ", + "member_of_group_subscription": "Você é membro de um grupo inscrito administrado por __admin_email__. Por favor, entre em contato com ele para administrar sua inscrição.\n", + "about_henry_oswald": "é um engenheiro de software que mora em Londres. Ele construiu o protótipo original do __appName__ e é o responsável por construir uma plataforma estável e escalável. Henry é um forte defensor do Desenvolvimento Orientado à Testes e garante que mantemos o código do __appName__ limpo e fácil de manter.", + "about_james_allen": "tem Doutorado em física teórica e é apaixonado por LaTeX. Ele criou um dos primeiros editores online de LaTeX, ScribTeX, e tem um importante papel no desenvolvimento das tecnologias que fazem o __appName__ possível.", + "two_strong_principles_behind_sl": "Existem dois fortes princípios que conduzem o nosso trabalho por trás do __appName__:", + "want_to_improve_workflow_of_as_many_people_as_possible": "Nós queremos melhorar o fluxo de trabalho do maior número de pessoas possível.", + "detail_on_improve_peoples_workflow": "LaTeX é conhecido por ser difícil de usar, e a colaboração é sempre difícil de coordenar. Nós acreditamos que desenvolvemos uma solução incrível para ajudar as pessoas que enfrentam esses problemas, e nós queremos garantir que o __appName__ seja acessível pelo máximo de pessoas possível. Nós tentamos manter nosso preço justo, e liberamos o máximo do __appName__ como código-aberto para que qualquer pessoal possa hospedar por si própria.", + "want_to_create_sustainable_lasting_legacy": "Queremos criar um legado permanente e sustentável.", + "details_on_legacy": "Desenvolver e manter um produto como o __appName__ requer muito tempo e trabalho, assim é importante que encontremos um modelo de negócio que suporte ambos os requisitos, e a longo prazo. Nós não queremos que o __appName__ dependa de fundos externos ou desapareça devido à falha do modelo de negócio. Eu me orgulho em dizer que atualmente nós podemos rodar o __appName__ lucrativo e sustentável, e esperamos fazer isso a longo prazo.", + "get_in_touch": "Entre em contato", + "want_to_hear_from_you_email_us_at": "Nós adoramos ouvir de todos que estão usando __appName__, ou querem conversar sobre o que estamos fazendo. Você pode entrar em contato conosco em ", + "cant_find_email": "Esse email não está registrado, desculpe.", + "plans_amper_pricing": "Planos & Preços", + "documentation": "Documentação", + "account": "Conta", + "subscription": "Inscrição", + "log_out": "Sair", + "en": "Inglês", + "pt": "Português", + "es": "Espanhol", + "fr": "Francês", + "de": "Alemão", + "it": "Italiano", + "da": "Dinamarquês", + "sv": "Suéco", + "no": "Noroeguês", + "nl": "Holandês", + "pl": "Polonês", + "ru": "Russo", + "uk": "Ucraniano", + "ro": "Romeno", + "click_here_to_view_sl_in_lng": "Clique aqui e veja a página __appName__ em __lngName__", + "language": "Idioma", + "upload": "Carregar", + "menu": "Menu", + "full_screen": "Tela cheia", + "logs_and_output_files": "Logs e arquivos de saída", + "download_pdf": "Baixar PDF", + "split_screen": "Dividir a tela", + "clear_cached_files": "Limpar arquivos em cache", + "go_to_code_location_in_pdf": "Vá para a localização do código no PDF", + "please_compile_pdf_before_download": "Por favor, compile seu projeto antes de baixar o PDF", + "remove_collaborator": "Remover colaborador", + "add_to_folders": "Adicionar à pasta", + "download_zip_file": "Baixar arquivo .zip", + "price": "Preço", + "close": "Fechar", + "keybindings": "Atalhos", + "restricted": "Restrito", + "start_x_day_trial": "Comece seus __len__ Dias de Teste Grátis Hoje!", + "buy_now": "Comprar agora!", + "cs": "Tcheco", + "view_all": "Ver Todos", + "terms": "Termos", + "privacy": "Privacidade", + "contact": "Contato", + "change_to_this_plan": "Alterar para esse plano", + "processing": "processando", + "sure_you_want_to_change_plan": "Você tem certeza que deseja alterar o plano para __planName__?", + "move_to_annual_billing": "Migrar para Plano Anual", + "annual_billing_enabled": "Plano anual habilitado", + "move_to_annual_billing_now": "Migrar para plano anual agora", + "change_to_annual_billing_and_save": "Ganhe __percentage__ de desconto no plano anual. Se você migrar agora você irá economizar __yearSaving__ por ano.", + "missing_template_question": "Falta algum modelo?", + "tell_us_about_the_template": "Se estiver faltando um modelo, por favor: Nos envie uma cópia do modelo, o URL do __appName__ para o modelo ou nos avise onde podemos encontrá-lo. Também, por favor, nos conte sobre o modelo para colocarmos na descrição.", + "email_us": "Nos envie email", + "this_project_is_public_read_only": "Esse projeto é público e pode ser visualizado, mas não editado, por qualquer pessoa com a URL", + "tr": "Turco", + "select_files": "Selecionar arquivo(s)", + "drag_files": "arraste arquivo(s)", + "upload_failed_sorry": "Envio falhou. Desculpe :(", + "inserting_files": "Inserindo arquivo...", + "password_reset_token_expired": "Sua ficha de reinicialização de senha expirou.Por favor, solicite um novo email de reinicialização de senha e clique no link contido nele.", + "merge_project_with_github": "Mesclar Projeto com GitHub", + "pull_github_changes_into_sharelatex": "Puxar mudanças do GitHub no __appName__", + "push_sharelatex_changes_to_github": "Empurrar mudanças do __appName__ no GitHub", + "features": "Recursos", + "commit": "Commitar", + "commiting": "Submetendo", + "importing_and_merging_changes_in_github": "Importar e mesclar mudanças no GitHub", + "upgrade_for_faster_compiles": "Aprimore sua conta para ter compilações mais rápidas e com limite de tempo maior.", + "free_accounts_have_timeout_upgrade_to_increase": "Contas gratuítas tem um minuto no limite de tempo de compilação. Aprimore sua conta para aumentar seu limite.", + "learn_how_to_make_documents_compile_quickly": "Aprenda como fazer seu documento compilar mais rápido", + "zh-CN": "Chinês", + "cn": "Chinês (Simplificado)", + "sync_to_github": "Sincronizar com GitHub", + "sync_to_dropbox_and_github": "Sincronizar com Dropbox e GitHub", + "project_too_large": "Projeto muito grande", + "project_too_large_please_reduce": "Esse projeto tem muitos textos editáveis, por favor tente e reduza. Os maiores arquivos são:", + "please_ask_the_project_owner_to_link_to_github": "Por favor, peça ao dono do projeto que vincule o projeto a um repositório no GitHub.", + "go_to_pdf_location_in_code": "Ir para a localização do PDF no código", + "ko": "Coreano", + "ja": "Japonês", + "about_brian_gough": "é um desenvolvedor de software e ex-físico teórico de energia da Fermilab e Los alamos. Por muitos anos ele publicou manuais grátis de softwares comerciais usando TeX e LaTeX e também mantém a Biblioteca Científica da GNU.", + "first_few_days_free": "Primeiros __trialLen__ dias grátis", + "every": "por", + "credit_card": "Cartão de Crédito", + "credit_card_number": "Número do Cartão de Crédito", + "invalid": "Inválido", + "expiry": "Data de Validade", + "january": "Janeiro", + "february": "Fevereiro", + "march": "Março", + "april": "Abril", + "may": "maio", + "june": "Junho", + "july": "Julho", + "august": "Agosto", + "september": "Setembro", + "october": "Outubro", + "november": "Novembro", + "december": "Dezembro", + "zip_post_code": "CEP / Código Postal", + "city": "Cidade", + "address": "Endereço", + "coupon_code": "Código de cupom", + "country": "País", + "billing_address": "Endereço de Cobrança", + "upgrade_now": "Aprimorar Agora", + "state": "Estado", + "vat_number": "Número IVA", + "you_have_joined": "Você entrou no __groupName__", + "claim_premium_account": "Você solicitou a sua conta premium fornecida por __groupName__.", + "you_are_invited_to_group": "Você foi convidado para entrar no __groupName__", + "you_can_claim_premium_account": "Você pode reivindicar sua conta premium fornecida pelo __groupName__ verificando seu email", + "not_now": "Não agora", + "verify_email_join_group": "Verifique seu email e entre no Grupo", + "check_email_to_complete_group": "Por favor, verifique seu email para completar sua entrada no grupo", + "verify_email_address": "Email de Verificação", + "group_provides_you_with_premium_account": "__groupName__ forneceu para você uma conta premium. Verifique o seu email para aprimorar sua conta.", + "check_email_to_complete_the_upgrade": "Por favor, verifique seu email para completar a aprimoração da sua conta.", + "email_link_expired": "Link do email expirou, por favor, solicite um link novo.", + "services": "Serviços", + "about_shane_kilkelly": "é um desenvolvedor de software que mora em Edinburgh. Shane é um forte defensor de Programação Funcional, Desenvolvimento Orientado a Teste e se orgulha em construir softwares de qualidade.", + "this_is_your_template": "Este é seu modelo de seu projeto", + "links": "Links", + "account_settings": "Configurações da Conta", + "search_projects": "Buscar projetos", + "clone_project": "Clonar Projeto", + "delete_project": "Deletar Projeto", + "download_zip": "Baixar Zip", + "new_project": "Novo Projeto", + "blank_project": "Projeto Em Branco", + "example_project": "Projeto Exemplo", + "from_template": "De um Modelo", + "cv_or_resume": "Currículo", + "cover_letter": "Capa de Apresentação", + "journal_article": "Artigo de Revista", + "presentation": "Apresentação", + "thesis": "Tese", + "bibliographies": "Bibliografia", + "terms_of_service": "Termos de Serviço", + "privacy_policy": "Política de Privacidade", + "plans_and_pricing": "Planos e Preços", + "university_licences": "Licenças de Universidade", + "security": "Segurança", + "contact_us": "Entre em Contato", + "thanks": "Obrigado", + "blog": "Blog", + "latex_editor": "Editor LaTeX", + "get_free_stuff": "Obter material grátis", + "chat": "Bate-papo", + "your_message": "Sua Mensagem", + "loading": "Carregando", + "connecting": "Conectando", + "recompile": "Recompilar", + "download": "Baixar", + "email": "Email", + "owner": "Dono", + "read_and_write": "Ler e Escrever", + "read_only": "Somente Ler", + "publish": "Publicar", + "view_in_template_gallery": "Ver isso na galeria de modelos", + "description": "Descrição", + "unpublish": "Despublicar", + "hotkeys": "Atalhos", + "saving": "Salvando", + "cancel": "Cancelar", + "project_name": "Nome do Projeto", + "root_document": "Diretório Raiz", + "spell_check": "Verificar ortografia", + "compiler": "Compilador", + "private": "Privado", + "public": "Público", + "delete_forever": "Deletar Permanentemente", + "support_and_feedback": "Suporte e comentários", + "help": "Ajuda", + "latex_templates": "Modelos LaTeX", + "info": "Info", + "latex_help_guide": "Guia de ajuda LaTeX", + "choose_your_plan": "Escolha seu plano", + "indvidual_plans": "Planos individuais", + "free_forever": "Grátis para sempre", + "low_priority_compile": "Baixa prioridade de compilação", + "unlimited_projects": "Projetos ilimitados", + "unlimited_compiles": "Compilação ilimitada", + "full_history_of_changes": "Histórico total de mudanças", + "highest_priority_compiling": "Alta prioridade de compilação", + "dropbox_sync": "Sincronização Dropbox", + "beta": "Beta", + "sign_up_now": "Inscreva-se agora", + "annual": "Anual", + "half_price_student": "Metade do Preço em Planos para Estudantes", + "about_us": "Sobre Nós", + "loading_recent_github_commits": "Carregando commits recentes", + "no_new_commits_in_github": "Nenhum novo commit no GitHub desde a última mesclagem.", + "dropbox_sync_description": "Mantenha seus projetos __appName__ sincronizados com o Dropbox. Mudanças no __appName__ serão enviadas automaticamente para o Dropbox, e o inverso também.", + "github_sync_description": "Com a Sincronização GitHub você pode vincular seus projetos __appName__ com os repositórios do GitHub. Crie novos commits no __appName__ e mescle com commits feitos fora ou no GitHub.", + "github_import_description": "Com a Sincronização GitHub você pode importar seus projetos __appName__ com os repositórios do GitHub. Crie novos commits no __appName__ e mescle com commits feitos fora ou no GitHub.", + "link_to_github_description": "Você precisa autorizar o __appName__ para acessar sua conta no GitHub para permitir a sincronização dos projetos.", + "unlink": "Desvincular", + "unlink_github_warning": "Qualquer projeto que você tenha sincronizado com o GitHub será desconectado e não poderão mais ser sincronizados com o GitHub. Você tem certeza que deseja desvincular sua conta do GitHub.", + "github_account_successfully_linked": "Conta do GitHub foi vinculada com sucesso!", + "github_successfully_linked_description": "Obrigado, nós vinculamos com sucesso sua conta do GitHub com o __appName__. Agora você pode exportar seus projetos do __appName__ para o GitHub e importar seus projetos de repositórios do GitHub.", + "import_from_github": "Importar do GitHub", + "github_sync_error": "Desculpe, houve um erro ao se comunicar com nosso serviço do GitHub. Por favor, tente novamente mais tarde.", + "loading_github_repositories": "Carregando seu repositório do GitHub", + "select_github_repository": "Selecione um repositório no GitHub para importar para o __appName__.", + "import_to_sharelatex": "Importar para o __appName__", + "importing": "Importando", + "github_sync": "Sincronizar com GitHub", + "checking_project_github_status": "Verificando estado do projeto no GitHub", + "account_not_linked_to_github": "Sua conta não está vinculada ao GitHub", + "project_not_linked_to_github": "Esse projeto não está vinculado a um repositório no GitHub. Você pode criar um repositório para ele no GitHub.", + "create_project_in_github": "Criar um repositório no GitHub", + "project_synced_with_git_repo_at": "Esse projeto foi sincronizado com um repositório no GitHub em", + "recent_commits_in_github": "Commits recentes no GitHub", + "sync_project_to_github": "Sincronizar projeto com GitHub", + "sync_project_to_github_explanation": "Qualquer mudança feita no __appName__ será commitada e mesclada com qualquer atualização no GitHub.", + "github_merge_failed": "Suas mudanças no __appName__ e GitHub não puderam ser mescladas automaticamente. Por favor, mescle (merge) manualmente o branch __sharelatex_branch__ no branch __master_branch__ no git. Clique abaixo para continuar, depois de você ter mesclado manualmente.", + "continue_github_merge": "Mesclei manualmente. Continuar", + "export_project_to_github": "Exportar Projeto para o GitHub", + "github_validation_check": "Por favor, verifique se o nome do projeto é válido e que você tem permissão para criar o repositório.", + "repository_name": "Nome do Repositório", + "optional": "Opcional", + "github_public_description": "Qualquer um pode ver esse repositório.", + "github_commit_message_placeholder": "Mensagem de commit para as alterações feitas no __appName__...", + "merge": "Mesclar", + "merging": "Mesclando", + "github_account_is_linked": "Sua conta do GitHub foi vinculada com sucesso.", + "unlink_github": "Desvincular conta do GitHub", + "link_to_github": "Vincule à sua conta do GitHub", + "github_integration": "Integração com o GitHub", + "github_is_premium": "Sincronizar com GitHub é um recurso premium" +} \ No newline at end of file diff --git a/services/web/locales/ru.json b/services/web/locales/ru.json new file mode 100644 index 0000000000..7d04e2052b --- /dev/null +++ b/services/web/locales/ru.json @@ -0,0 +1,701 @@ +{ + "return_to_login_page": "Вернуться на страницу входа", + "login_failed": "Вход не удался", + "delete_account_warning_message_3": "Вы собираетесь удалить все данные Вашего аккаунта, включая все Ваши проекты и настройки. Пожалуйста, введите адрес электронной почты и пароль Вашего аккаунта в форму внизу для продолжения.", + "delete_account_warning_message_2": "Вы собираетесь удалить все данные Вашего аккаунта, включая все Ваши проекты и настройки. Пожалуйста, введите адрес электронной почты Вашего аккаунта в форму внизу для продолжения.", + "your_sessions": "Ваши сессии", + "clear_sessions_description": "Это список всех активных сессий Вашего аккаунта, за исключением Вашей текущей сессии. Нажмите кнопку \"Завершить сессии\" для закрытия всех активных сеансов.", + "no_other_sessions": "Нет других активных сессий", + "ip_address": "IP адрес", + "session_created_at": "Сессия создана", + "clear_sessions": "Завершить сессии", + "clear_sessions_success": "Сессии завершены", + "sessions": "Сессии", + "manage_sessions": "Управление Вашими сессиями", + "syntax_validation": "Проверка кода", + "history": "История", + "open_project": "Открыть проект", + "files_cannot_include_invalid_characters": "Файлы не могут содержать символы '*' и '/'", + "invalid_file_name": "Неверное имя файла", + "autocomplete_references": "Автодополнение ссылок (внутри блока \\cite{})", + "autocomplete": "Автозавершение", + "failed_compile_check": "Похоже, в Вашем проекте имеются критические синтаксические ошибки, которые Вы должны исправить перед компиляцией", + "failed_compile_check_try": "Попытаться скомпилировать всё равно", + "failed_compile_option_or": "или", + "failed_compile_check_ignore": "отключить проверку синтаксиса", + "compile_time_checks": "Проверка синтаксиса", + "stop_on_validation_error": "Проверить синтаксис перед компиляцией", + "ignore_validation_errors": "Не проверять синтаксис", + "run_syntax_check_now": "Выполнить проверку синтаксиса", + "security_code": "Защитный код", + "upgrade_paypal_btn": "Продолжить", + "notification_project_invite": "__userName__ приглашает Вас принять участие в проекте __projectName__,Присоединиться", + "file_restored": "Ваш файл (__filename__) был восстановлен.", + "file_restored_back_to_editor": "Вы можете вернуться в редактор и продолжить работу", + "file_restored_back_to_editor_btn": "Назад в редактор", + "view_project": "Просмотр проекта", + "join_project": "Присоединиться к проекту", + "invite_not_accepted": "Приглашение еще не было принято", + "resend": "Отправить еще раз", + "syntax_check": "Проверка синтаксиса", + "revoke_invite": "Отозвать приглашение", + "pending": "В ожидании", + "invite_not_valid": "Приглашение недействительно", + "invite_not_valid_description": "Вышел срок приглашения. Пожалуйста, обратитесь к владельцу проекта", + "accepting_invite_as": "Вы принимаете приглашение как", + "accept_invite": "Принять приглашение", + "log_hint_ask_extra_feedback": "Не могли бы Вы уточнить, почему эта подсказка не была полезной?", + "log_hint_extra_feedback_didnt_understand": "Я не понимаю указаний", + "log_hint_extra_feedback_not_applicable": "Я не могу использовать это решение для своего документа", + "log_hint_extra_feedback_incorrect": "Это не исправляет ошибку", + "log_hint_extra_feedback_other": "Ещё:", + "log_hint_extra_feedback_submit": "Отправить", + "if_you_are_registered": "Если Вы уже зарегистрированы", + "stop_compile": "Остановить компиляцию", + "terminated": "Компиляция отменена", + "compile_terminated_by_user": "Компиляция была прервана. Вы можете просмотреть необработанную выдачу компиляции, чтобы увидеть место остановки компиляции.", + "site_description": "Простой в использовании онлайн редактор LaTeX. Не требует установки, поддерживает совместную работу в реальном времени, контроль версий, сотни шаблонов LaTeX и многое другое.", + "knowledge_base": "база знаний", + "contact_message_label": "Сообщение", + "answer_yes": "Да", + "answer_no": "Нет", + "log_hint_extra_info": "Узнать больше", + "log_hint_feedback_label": "Была ли эта информация полезной?", + "log_hint_feedback_gratitude": "Спасибо за Ваш отзыв!", + "recompile_pdf": "Перекомпилировать PDF", + "login_or_password_wrong_try_again": "Неправильное имя пользователя или пароль. Пожалуйста, попробуйте снова", + "suggest_new_doc": "Предложить новый документ", + "request_sent_thank_you": "Спасибо, Ваш запрос отправлен!", + "suggestion": "Предложения", + "project_url": "URL проекта", + "subject": "Тема", + "confirm": "Подтвердить", + "cancel_personal_subscription_first": "У Вас уже имеется личная подписка. Хотите ли вы её отменить перед переходом на групповую лицензию?", + "delete_projects": "Удалить проекты", + "leave_projects": "Оставить проекты", + "delete_and_leave_projects": "Удалить или оставить проекты", + "too_recently_compiled": "Этот проект был скомпилирован совсем недавно, поэтому компиляция была пропущена.", + "clsi_maintenance": "На сервере компиляции проводятся ремонтные работы, и он будет вскоре доступен снова.", + "references_search_hint": "Нажмите Ctrl + Пробел для поиска", + "search_bib_files": "Поиск по автору, названию, году", + "leave_group": "Покинуть группу", + "leave_now": "Покинуть", + "sure_you_want_to_leave_group": "Вы уверены, что хотите покинуть группу?", + "notification_group_invite": "Вас пригласили вступить в группу __groupName__, присоединиться.", + "search_references": "Поиск .bib файлов в проекте", + "no_search_results": "Ничего не найдено", + "email_already_registered": "Этот адрес уже зарегистрирован.", + "compile_mode": "Режим компиляции", + "normal": "нормальный", + "fast": "быстрый", + "rename_folder": "Переименовать папку", + "delete_folder": "Удалить папку", + "about_to_delete_folder": "Вы собираетесь удалить следующие папки (проекты в них будут сохранены):", + "to_modify_your_subscription_go_to": "Для изменения подписки перейдите по ссылке:", + "manage_subscription": "Управление подпиской", + "activate_account": "Активируйте Ваш аккаунт", + "yes_please": "Да, пожалуйста!", + "nearly_activated": "Вы в одном шаге от активации Вашего аккаунта для __appName__!", + "please_set_a_password": "Пожалуйста, укажите пароль", + "activation_token_expired": "Срок действия Вашего ключа истёк. Вам необходимо запросить новый ключ активации.", + "activate": "Активировать", + "activating": "Активация", + "ill_take_it": "Беру!", + "cancel_your_subscription": "Остановить подписку", + "no_thanks_cancel_now": "Нет, спасибо - я хочу удалить сейчас", + "cancel_my_account": "Отменить подписку", + "sure_you_want_to_cancel": "Вы уверены, что хотите отменить подписку?", + "i_want_to_stay": "Я хочу остаться", + "have_more_days_to_try": "Продлите тестовый период ещё на __days__ дней!", + "interested_in_cheaper_plan": "Вас интересует более дешевый студенческий тариф: __price__?", + "session_expired_redirecting_to_login": "Срок сессии истёк. Перенаправление на страницу входа через __seconds__ секунд(ы)", + "maximum_files_uploaded_together": "Совместная загрузка до максимум __max__ файлов", + "too_many_files_uploaded_throttled_short_period": "Слишком много файлов загружено за раз - на короткое время загрузка была приостановлена.", + "compile_larger_projects": "Компиляция больших проектов", + "new_group": "Новая группа", + "about_to_delete_groups": "Следующие группы будут удалены:", + "removing": "Удаление", + "adding": "Добавление", + "groups": "Группы", + "rename_group": "Переименовать группу", + "renaming": "Переименование", + "create_group": "Создать группу", + "delete_group": "Удалить группу", + "delete_groups": "Удалить группы", + "your_groups": "Ваши группы", + "group_name": "Имя группы", + "no_groups": "Нет групп", + "Subscription": "Подписка", + "Documentation": "Документация", + "Universities": "Университеты", + "Account Settings": "Параметры учётной записи", + "Projects": "Проекты", + "Account": "Учётная запись", + "global": "глобальная", + "Terms": "Условия", + "Security": "Безопасность", + "About": "О сайте", + "word_count": "Количество слов", + "please_compile_pdf_before_word_count": "Пожалуйста, скомпилируйте проект, прежде чем подсчитывать количество слов!", + "total_words": "Количество слов", + "headers": "Заголовки", + "math_inline": "Встроенные формулы", + "math_display": "Формулы", + "connected_users": "Связанные пользователи", + "projects": "Проекты", + "upload_project": "Загрузить проект", + "all_projects": "Все проекты", + "your_projects": "Созданные мной", + "shared_with_you": "Доступные мне", + "deleted_projects": "Корзина", + "templates": "Шаблоны", + "new_folder": "Новая папка", + "create_your_first_project": "Создайте свой первый проект!", + "complete": "Заполнить", + "on_free_sl": "Вы используете бесплатную версию __appName__", + "upgrade": "Сменить тариф", + "or_unlock_features_bonus": "или получить бонусы,", + "sharing_sl": "рассказать о __appName__", + "add_to_folder": "Переместить в папку", + "create_new_folder": "Создать папку", + "more": "еще", + "rename": "Переименовать", + "make_copy": "Копировать", + "restore": "Восстановить", + "title": "Название", + "last_modified": "Последнее изменение", + "no_projects": "Нет проектов", + "welcome_to_sl": "Добро пожаловать в __appName__!", + "new_to_latex_look_at": "Новичок в LaTeX? Начните с нашего", + "or": "или", + "or_create_project_left": "или создайте свой первый проект слева.", + "thanks_settings_updated": "Спасибо, изменения сохранены", + "update_account_info": "Редактировать профиль", + "must_be_email_address": "Введите правильный адрес электронной почты", + "first_name": "Имя", + "last_name": "Фамилия", + "update": "Сохранить", + "change_password": "Изменение пароля", + "current_password": "Текущий пароль", + "new_password": "Новый пароль", + "confirm_new_password": "Подтверждение нового пароля", + "required": "обязательно", + "doesnt_match": "Не совпадает", + "dropbox_integration": "Синхронизация с Dropbox", + "learn_more": "Узнать больше", + "dropbox_is_premium": "Синхронизация с Dropbox доступна только в премиум аккаунте", + "account_is_linked": "Аккаунт подключен", + "unlink_dropbox": "Отключить Dropbox", + "link_to_dropbox": "Подключить Dropbox", + "newsletter_info_and_unsubscribe": "Мы будем уведомлять вас о новых возможностях каждые 2-3 месяца. Вы можете отписаться от рассылки в любое время:", + "unsubscribed": "Не подписан", + "unsubscribing": "Отмена подписки", + "unsubscribe": "Отменить подписку", + "need_to_leave": "Удалить аккаунт?", + "delete_your_account": "Удалить аккаунт", + "delete_account": "Удалить аккаунт", + "delete_account_warning_message": "Вы собирается безвозвратно удалить все Ваши данные, включая Ваши проекты и настройки. Пожалуйста, введите слово \"DELETE\" для того, чтобы продолжить", + "deleting": "Удаление", + "delete": "Удалить", + "sl_benefits_plans": "__appName__ - самый удобный редактор LaTeX в мире: история изменений, совместная работа в реальном времени, доступность из любого уголка мира, где есть Интернет и многое другое.", + "monthly": "Цена за месяц", + "personal": "Личный", + "free": "Бесплатно", + "one_collaborator": "Только один автор на проект", + "collaborator": "Совместная работа", + "collabs_per_proj": "Максимальное число соавторов на проект: __collabcount__", + "full_doc_history": "Полная история изменений", + "sync_to_dropbox": "Синхронизация с Dropbox", + "start_free_trial": "Попробовать бесплатно!", + "professional": "Профессионал", + "unlimited_collabs": "Неограниченно число соавторов", + "name": "Имя", + "student": "Студент", + "university": "Университет", + "position": "Должность", + "choose_plan_works_for_you": "Выберите понравившийся тариф для __len__-дневного бесплатного периода. Вы в любой момент сможете отменить подписку.", + "interested_in_group_licence": "Хотите использовать __appName__ в команде или организации?", + "get_in_touch_for_details": "Свяжитесь с нами!", + "group_plan_enquiry": "Запрос индивидуального тарифа", + "enjoy_these_features": "Используйте все возможности системы", + "create_unlimited_projects": "Создавай столько проектов, сколько хочешь", + "never_loose_work": "Ни одно изменение не потеряется", + "access_projects_anywhere": "Работай над проектами откуда угодно", + "log_in": "Войти", + "login": "Войти", + "logging_in": "Авторизация", + "forgot_your_password": "Забыли пароль?", + "password_reset": "Сбросить пароль", + "password_reset_email_sent": "На ваш электронный адрес было отправлено письмо с инструкцией по восстановлению пароля", + "please_enter_email": "Пожалуйста, введите адрес электронной почты", + "request_password_reset": "Сбросить пароль", + "reset_your_password": "Сбросить пароль", + "password_has_been_reset": "Ваш пароль был сброшен", + "login_here": "Войти", + "set_new_password": "Введите новый пароль", + "user_wants_you_to_see_project": "__username__ приглашает вас к просмотру проекта __projectname__", + "join_sl_to_view_project": "Для доступа к проекту необходимо авторизоваться в __appName__", + "register_to_edit_template": "Пожалуйста, зарегистрируйтесь, чтобы редактировать шаблон __templateName__", + "already_have_sl_account": "Есть аккаунт __appName__?", + "register": "Регистрация", + "password": "Пароль", + "registering": "Создание аккаунта", + "planned_maintenance": "Плановые работы", + "no_planned_maintenance": "В настоящее время плановые работы не осуществляются", + "cant_find_page": "К сожалению, страница не найдена", + "take_me_home": "Вернуться в начало", + "no_preview_available": "К сожалению, предпросмотр не доступен", + "no_messages": "Нет сообщений", + "send_first_message": "Отправьте сообщение", + "account_not_linked_to_dropbox": "Ваш аккаунт не синхронизирован с Dropbox", + "update_dropbox_settings": "Обновить настройки Dropbox", + "refresh_page_after_starting_free_trial": "Пожалуйста, обновите страницу", + "checking_dropbox_status": "проверка состояния Dropbox", + "dismiss": "Отклонить", + "new_file": "Новый файл", + "upload_file": "Загрузить файл", + "create": "Создать", + "creating": "Создание", + "upload_files": "Загрузить файл(ы)", + "sure_you_want_to_delete": "Вы уверены, что хотите перманентно удалить следующие файлы?", + "common": "Общие", + "navigation": "Навигация", + "editing": "Редактор", + "ok": "OK", + "source": "Исходный код", + "actions": "Действия", + "copy_project": "Копировать проект", + "publish_as_template": "Создать шаблон", + "sync": "Синхронизация", + "settings": "Настройки", + "main_document": "Основной документ", + "off": "Откл.", + "auto_complete": "Автодополнение", + "theme": "Тема", + "font_size": "Размер шрифта", + "pdf_viewer": "Просмотрщик PDF", + "built_in": "встроенный", + "native": "браузер", + "show_hotkeys": "Показать горячие клавиши", + "new_name": "Введите название", + "copying": "копирование", + "copy": "Копировать", + "compiling": "Компиляция", + "click_here_to_preview_pdf": "Кликните, чтобы открыть предпросмотр PDF", + "server_error": "Ошибка сервера", + "somthing_went_wrong_compiling": "К сожалению, что-то пошло не так и мы не смогли скомпИлировать Ваш проект. Попробуйте еще раз через пару минут.", + "timedout": "Время ожидания истекло", + "proj_timed_out_reason": "К сожалению, компиляция Вашего документа заняла слишком много времени и была прервана. Возможные причины: документ содержит большое количество изображений в высоком разрешении, или сложные графики", + "no_errors_good_job": "Ошибок нет - отличная работа!", + "compile_error": "Ошибка компиляции", + "generic_failed_compile_message": "К сожалению Ваш LaTeX документ не может быть скомпилирован. Пожалуйста, проверьте сообщения об ошибках внизу, или просмотрите лог-файл", + "other_logs_and_files": "Другие логи и файлы", + "view_raw_logs": "Просмотреть логи", + "hide_raw_logs": "Скрыть логи", + "clear_cache": "Очистить кэш", + "clear_cache_explanation": "Это приведет к удалению всех скрытых файлов LaTeX (.aux, .bbl и др.) с нашего сервера компиляции. Обычно этого делать не требуется, если только у Вас не возникло проблем с перекрёстными ссылками", + "clear_cache_is_safe": "Файлы Вашего проекта не будут удалены или изменены", + "clearing": "Очистка", + "template_description": "Описание шаблона", + "project_last_published_at": "В последний раз проект был опубликован", + "problem_talking_to_publishing_service": "Проблема с сервером публикации. Пожалуйста, попробуйте через некоторое время ещё раз", + "unpublishing": "Отмена публикации", + "republish": "Переопубликовать", + "publishing": "Публикация", + "share_project": "Открыть доступ к проекту", + "this_project_is_private": "Это закрытый проект. К нему имеют доступ только следующие люди:", + "make_public": "Сделать открытым", + "this_project_is_public": "Это открытый проект. Он может быть изменен любым человеком, знающим адрес (URL)", + "make_private": "Сделать закрытым", + "can_edit": "Могут править", + "share_with_your_collabs": "Открыть для соавторов", + "share": "Открыть доступ", + "need_to_upgrade_for_more_collabs": "Для приглашения большего числа соавторов необходимо сменить тариф", + "make_project_public": "Открыть доступ для всех", + "make_project_public_consequences": "Если Вы откроете доступ с своему проекту, то он станет доступным всем пользователям, знающим адрес (URL)", + "allow_public_editing": "Разрешить публичное редактирование", + "allow_public_read_only": "Сделать доступным только для чтения", + "make_project_private": "Сделать проект закрытым", + "make_project_private_consequences": "Если Вы сделаете Ваш проект закрытым, то к небу будут иметь доступ только те люди, которых Вы выбрали.", + "need_to_upgrade_for_history": "Для активации \"Истории изменений\" необходимо сменить тариф", + "ask_proj_owner_to_upgrade_for_history": "Обратитесь к владельцу проекта с просьбой сменить тариф для активации \"Истории изменений\"", + "anonymous": "Аноним", + "generic_something_went_wrong": "Извините, что-то пошло не так... :(", + "restoring": "Восстановление", + "restore_to_before_these_changes": "Отменить последние изменения", + "profile_complete_percentage": "Ваш профиль заполнен на __percentval__%", + "file_has_been_deleted": "Файл __filename__ был удалён", + "sure_you_want_to_restore_before": "Вы уверены, что хотите вернуть файл __filename__ к состоянию на __date__?", + "rename_project": "Переименовать проект", + "about_to_delete_projects": "Следующие проекты будут удалены:", + "about_to_leave_projects": "Вы собираетесь оставить следующие проекты:", + "upload_zipped_project": "Загрузить архив проекта (*.zip)", + "upload_a_zipped_project": "Загрузить архив проекта (*.zip)", + "your_profile": "Ваш профиль", + "institution": "Организация", + "role": "Роль", + "folders": "Папки", + "disconnected": "Разъединен", + "please_refresh": "Пожалуйста, обновите страницу для продолжения", + "lost_connection": "Соединение потеряно", + "reconnecting_in_x_secs": "Повторное соединение через __seconds__ секунд", + "try_now": "Попробуйте", + "reconnecting": "Пересоединение", + "saving_notification_with_seconds": "Сохранение __docname__... (__seconds__ секунд с последнего сохранения)", + "help_us_spread_word": "Помогите нам распространить информацию о __appName__", + "share_sl_to_get_rewards": "Поделитесь __appName__ с друзьями и коллегами и разблокируйте награды", + "post_on_facebook": "Опубликовать на Facebook", + "share_us_on_googleplus": "Поделиться на Gooogle+", + "email_us_to_your_friends": "Отправить email друзьям", + "link_to_us": "Ссылка на нас на Вашем веб-сайте", + "direct_link": "Прямая ссылка", + "sl_gives_you_free_stuff_see_progress_below": "Когда кто-либо по вашей рекомендации начнет пользоваться __appName__, вы получите кое-что бесплатно в знак благодарности! Узнайте о своем прогрессе ниже.", + "spread_the_word_and_fill_bar": "Распространяйте информацию и заполняйте эту полосу", + "one_free_collab": "Один бесплатный соавтор", + "three_free_collab": "Три бесплатных соавтора", + "free_dropbox_and_history": "Бесплатные Dropbox и История", + "you_not_introed_anyone_to_sl": "Вы пока ещё никого не пригласили в __appName__. Пригласите!", + "you_introed_small_number": " Вы уже пригласили __numberOfPeople__ человек в __appName__. Отличная работа, но, возможно, Вы можете пригласить больше?", + "you_introed_high_number": " Вы уже пригласили __numberOfPeople__ человек в __appName__. Отличная работа!", + "link_to_sl": "Ссылка на __appName__", + "can_link_to_sl_with_html": "Вы можете вставить ссылку на __appName__ с помощью кода:", + "year": "год", + "month": "месяц", + "subscribe_to_this_plan": "Подписаться на этот тариф", + "your_plan": "Ваш тариф", + "your_subscription": "Ваша подписка", + "on_free_trial_expiring_at": "У вас сейчас бесплатный пробный период, заканчивающийся __expiresAt__.", + "choose_a_plan_below": "Выберите план подписки.", + "currently_subscribed_to_plan": "Вы подписаны на тарифный план __planName__.", + "change_plan": "Сменить тарифный план", + "next_payment_of_x_collectected_on_y": "Следующий платёж в размере __paymentAmmount__ будет списан __collectionDate__", + "update_your_billing_details": "Обновить детали счёта", + "subscription_canceled_and_terminate_on_x": " Ваша подписка была отменена и закончится __terminateDate__. Дальнейшие платежи взиматься не будут.", + "your_subscription_has_expired": "Срок Вашей подписки истёк.", + "create_new_subscription": "Создать новую подписку", + "problem_with_subscription_contact_us": "Возникли проблемы с Вашей подпиской. Пожалуйста, свяжитесь с нами, чтобы узнать подробности.", + "manage_group": "Управление группой", + "loading_billing_form": "Загрузка страницы с деталями оплаты", + "you_have_added_x_of_group_size_y": "Вы добавили __addedUsersSize__ из __groupSize__ доступных участников", + "remove_from_group": "Удалить из группы", + "group_account": "Групповая учетная запись", + "registered": "Зарeгистрирован", + "no_members": "Нет участников", + "add_more_members": "Добавить участников", + "add": "Добавить", + "thanks_for_subscribing": "Благодарим за подписку!", + "your_card_will_be_charged_soon": "В ближайшее время будет проведено списание с карты.", + "if_you_dont_want_to_be_charged": "Если вы не хотите дальнейших списаний ", + "add_your_first_group_member_now": "Добавьте первых участников группы сейчас", + "thanks_for_subscribing_you_help_sl": "Благодарим за подписку по тарифному плану __planName__. Благодаря Вам проект __appName__ может продолжать развиваться и улучшаться.", + "back_to_your_projects": "Назад к списку проектов", + "goes_straight_to_our_inboxes": "Письмо придет на оба наших ящика", + "need_anything_contact_us_at": "Если у Вас есть какие-либо вопросы и пожелания, пожалуйста, пишите нам по адресу", + "regards": "С уважением", + "about": "О проекте", + "comment": "Комментарии", + "restricted_no_permission": "Извините, у Вас недостаточно прав для просмотра данной страницы.", + "online_latex_editor": "Онлайн редактор LaTeX", + "meet_team_behind_latex_editor": "Познакомьтесь с командой, работающей над Вашим любимым онлайн редактором LaTeX.", + "follow_me_on_twitter": "Следовать на Twitter", + "motivation": "Мотивация", + "evolved": "преобразован", + "the_easy_online_collab_latex_editor": "Простой онлайн редактор LaTeX, с возможностью совместной работы", + "get_started_now": "Начать прямо сейчас", + "sl_used_over_x_people_at": "__appName__ используется более чем __numberOfUsers__ студентами и преподавателями в:", + "collaboration": "Совместная разработка", + "work_on_single_version": "Совместная работа над одной версией", + "view_collab_edits": "Смотреть правки других участников ", + "ease_of_use": " Легко использовать", + "no_complicated_latex_install": "Не требуется сложной установки LaTeX", + "all_packages_and_templates": "Все нужные пакеты и __templatesLink__", + "document_history": "История изменений документа", + "see_what_has_been": "Просмотреть, что было ", + "added": "добавлены", + "and": "и", + "removed": "удалено", + "restore_to_any_older_version": "Восстановление любой предыдущей версии", + "work_from_anywhere": "Работа отовсюду", + "acces_work_from_anywhere": "Доступ к Вашей работе по всему миру", + "work_offline_and_sync_with_dropbox": "Работа оффлайн и синхронизация Ваших файлов с Dropbox и GitHub", + "over": "свыше", + "view_templates": "Просмотр шаблонов", + "nothing_to_install_ready_to_go": "Нет никаких трудностей с установкой, поэтому вы можете __start_now__, даже если никогда ранее не пробовали. __appName__ доступен с полным и готовым к работе окружением LaTeX, работающим на наших серверах.", + "start_using_latex_now": "начните использовать LaTeX сейчас", + "get_same_latex_setup": "С __appName__ Вы получаете одинаковые настройки LaTeX в любом месте. Работая с коллегами или учениками в __appName__, Вы никогда не столкнетесь с конфликтом версий или пакетов.", + "support_lots_of_features": "Мы поддерживаем большинство возможностей LaTeX, включая вставку изображений, библиографии, формулы и многое другое! Почитайте обо всем том, что вы можете сделать с помощью __appName__ в нашей __help_guides_link__", + "latex_guides": "Справочники LaTeX", + "reset_password": "Сбросить пароль", + "set_password": "Установить пароль", + "updating_site": "Сайт обновляется", + "bonus_please_recommend_us": "Бонус - пожалуйста, рекомендуйте нас", + "admin": "администратор", + "subscribe": "Подписаться", + "update_billing_details": "Обновить детали счёта", + "thank_you": "Спасибо!", + "group_admin": "Администратор группы", + "all_templates": "Все шаблоны", + "your_settings": "Ваши настройки", + "maintenance": "Ремонтные работы", + "to_many_login_requests_2_mins": "Было предпринято слишком много попыток входа. Пожалуйста, подождите 2 минуты, прежде чем пробовать снова", + "email_or_password_wrong_try_again": "Неверный адрес электронной почты или пароль. Пожалуйста, попробуйте снова", + "rate_limit_hit_wait": "Достигнут лимит попыток входа. Пожалуйста, повторите позднее", + "problem_changing_email_address": "Возникла проблема при обновлении Вашего адреса электронной почты. Пожалуйста, попробуйте через некоторое время снова. Если проблема повторится, пожалуйста свяжитесь с нами.", + "single_version_easy_collab_blurb": "__appName__ гарантирует, что вы всегда работаете над актуальной версией проекта вместе со своими соавторами. Существует только одна основная версия каждого документа, которая доступна для всех. Конфликты изменений невозможны, и Вам нет необходимости ждать своих коллег, пока они пришлют Вам свои последние наработки, чтобы продолжить работу.", + "can_see_collabs_type_blurb": "Несколько человек может без проблем одновременно работать над одним документом. Вы можете видеть, в каком месте печатают Ваши коллеги, прямо в редакторе, и вносимые ими изменения сразу отображаются на Вашем экране.", + "work_directly_with_collabs": "Работа напрямую с Вашими соавторами", + "work_with_word_users": "Работа с пользователями Word", + "work_with_word_users_blurb": "__appName__ настолько прост в использовании, что вы сможете пригласить Ваших коллег, незнакомых с LaTeX, принять участие в работе над Вашими LaTeX документами. Они будут продуктивными с первого дня и смогут немного познакомиться с LaTeX по ходу работы.", + "view_which_changes": "Посмотреть изменения, которые были", + "sl_included_history_of_changes_blurb": "__appName__ сохраняет полную историю всех изменений, так что Вы всегда можете отследить, кем было внесено изменение и когда. Благодаря этому Вы всегда будете в курсе работы, проделанной Вашими соавторами.", + "can_revert_back_blurb": "Ошибки случаются вне зависимости от того, работаете ли Вы один или вместе с соавторами. Вы всегда можете легко вернуться к предыдущей версии, что устраняет риск потери работы или внесения нежелательных изменений.", + "start_using_sl_now": "Начните использовать __appName__ прямо сейчас", + "over_x_templates_easy_getting_started": "В нашей галереи содержится __более__ 400 __шаблонов__, так что Вы можете легко начать работу над Вашей статьёй для журнала, диссертацией, резюме или любым другим документом.", + "done": "Готово", + "change": "Изменить", + "page_not_found": "Страница не найдена", + "please_see_help_for_more_info": "Пожалуйста, воспользуйтесь справкой для более полной информации", + "this_project_will_appear_in_your_dropbox_folder_at": "Этот проект появится в вашей папке Dropbox в ", + "member_of_group_subscription": "Вы являетесь членом группы подписчиков, управляемой __admin_email__. Пожалуйста, свяжитесь с администратором группы для настройки Вашей подписки. \n", + "about_henry_oswald": "программист, живущий в Лондоне. Он создал оригинальный прототип __appName__ и был ответственен за создание стабильной и масштабируемой платформы. Генри - строгий приверженец методики разработки через тестирование (TDD), и следит за тем, чтобы код __appName__ оставался чистым и лёгким в поддержке.", + "about_james_allen": "имеет докторскую степень по теоретической физике и увлечён LaTeX. Он создал один из первых онлайн редакторов LaTeX - ScribTeX, и сыграл огромную роль в разработке технологий, сделавших возможным __appName__.", + "two_strong_principles_behind_sl": "В нашей работы над __appName__ мы строго придерживаемся двух основополагающих принципов:", + "want_to_improve_workflow_of_as_many_people_as_possible": "Мы хотим улучшить рабочий процесс для максимально возможного числа людей.", + "detail_on_improve_peoples_workflow": "LaTeX по своей природе сложен в использовании, и совместная работа всегда требует сложной координации. Мы верим, что смогли разработать отличное решение, которое поможет людям столкнувшимся с этими проблемами, и мы хотим быть уверенными, что __appName__ доступен как можно большему числу людей. Мы старались сохранять наши цены доступными, а также опубликовали значительную часть исходного кода __appName__, так что любой желающий может установить его на собственном хостинге.", + "want_to_create_sustainable_lasting_legacy": "Мы хотим создать стабильное и долгосрочное решение.", + "details_on_legacy": "Разработка и поддержание такого продукта, как __appName__, всегда требует много времени и усилий, поэтому нам очень важно найти такую бизнес-модель, которая будет обеспечивать это сейчас и в будущем. Мы бы не хотели, чтобы __appName__ зависел от внешних инвесторов, или исчез из-за несостоятельной бизнес-модели. Я рад сообщить, что в настоящее время __appName__ стабилен и приносит доход, и надеюсь, что так будет и дальше.", + "get_in_touch": "Связаться с нами", + "want_to_hear_from_you_email_us_at": "Мы рады услышать каждого, кто использует __appName__, или хочет пообщаться о том, что мы делаем. Вы можете связаться с нами по ", + "cant_find_email": "Извините, данный адрес не зарегистрирован.", + "plans_amper_pricing": "Тарифы", + "documentation": "Документация", + "account": "Аккаунт", + "subscription": "Подписка", + "log_out": "Выйти", + "en": "Английский", + "pt": "Португальский", + "es": "Испанский", + "fr": "Французский", + "de": "Немецкий", + "it": "Итальянский", + "da": "Датский", + "sv": "Шведский", + "no": "Норвежский", + "nl": "Голландский", + "pl": "Польский", + "ru": "Русский", + "uk": "Украинский", + "ro": "Румынский", + "click_here_to_view_sl_in_lng": "Кликните здесь, для использования __appName__ на __lngName__", + "language": "Язык", + "upload": "Загрузить", + "menu": "Меню", + "full_screen": "Полный экран", + "logs_and_output_files": "Логи и выводные файлы", + "download_pdf": "Скачать PDF", + "split_screen": "Разделить экран", + "clear_cached_files": "Очистить кэшированные файлы", + "go_to_code_location_in_pdf": "Перейти к местоположению кода в PDF", + "please_compile_pdf_before_download": "Пожалуйста, скомпилируйте проект перед загрузкой PDF", + "remove_collaborator": "Удалить соавтора", + "add_to_folders": "Добавить в папки", + "download_zip_file": "Скачать архив (.zip)", + "price": "Цена", + "close": "Закрыть", + "keybindings": "Горячие клавиши", + "restricted": "Доступ ограничен", + "start_x_day_trial": "Начните свой __len__-дневный пробный период сегодня!", + "buy_now": "Купить!", + "cs": "Чешский", + "view_all": "Показать все", + "terms": "Условия", + "privacy": "Конфиденциальность", + "contact": "Контакт", + "change_to_this_plan": "Перейти на этот тариф", + "processing": "обработка", + "sure_you_want_to_change_plan": "Вы уверены, что хотите сменить тарифный план на __planName__?", + "move_to_annual_billing": "Переход к ежегодной оплате", + "annual_billing_enabled": "Ежегодная оплата подключена", + "move_to_annual_billing_now": "Перейти к ежегодной оплате сейчас", + "change_to_annual_billing_and_save": "Получите __percentage__ скидки при ежегодной оплате. Перейдя сейчас, вы сэкономите __yearlySaving__ в год.", + "missing_template_question": "Отсутствует нужный шаблон?", + "tell_us_about_the_template": "Если у нас отсутствует какой-либо шаблон, пожалуйста, пришлите нам его копию, либо сообщите нам адрес шаблона (URL) в __appName__, либо укажите, где мы можем его найти. Также, пожалуйста, предоставьте нам краткое описание шаблона.", + "email_us": "Написать нам", + "this_project_is_public_read_only": "Этот проект открыт для всех, у кого есть ссылка (но без возможности редактирования)", + "tr": "Турецкий", + "select_files": "Выбрать файл(-ы)", + "drag_files": "перетащить файл(-ы)", + "upload_failed_sorry": "Загрузка не удалась. Извините! :(", + "inserting_files": "Вставка файла...", + "password_reset_token_expired": "Ваш код восстановления пароля истёк. Пожалуйста, запросите восстановление пароля по почте ещё раз и перейдите по ссылке в письме.", + "merge_project_with_github": "Объединить проект с GitHub", + "pull_github_changes_into_sharelatex": "Скачать изменения с GitHub в __appName__", + "push_sharelatex_changes_to_github": "Загрузить изменения из __appName__ на GitHub", + "features": "Возможности", + "commit": "Фиксировать", + "commiting": "Фиксирование", + "importing_and_merging_changes_in_github": "Импорт и слияние изменений в GitHub", + "upgrade_for_faster_compiles": "Улучшить для более быстрой компиляции и уменьшения задержки", + "free_accounts_have_timeout_upgrade_to_increase": "В бесплатных аккаунтах есть задержка в одну минуту. Перейдите на другой тариф для уменьшения задержки.", + "learn_how_to_make_documents_compile_quickly": "Узнать, как ускорить компиляцию Вашего документа", + "zh-CN": "Китайский", + "cn": "Китайский (упрощённый)", + "sync_to_github": "Синхронизация с GitHub", + "sync_to_dropbox_and_github": "Синхронизировать с Dropbox и GitHub", + "project_too_large": "Проект слишком большой", + "project_too_large_please_reduce": "В этом проекте слишком много текста. Пожалуйста, попробуйте уменьшить количество.", + "please_ask_the_project_owner_to_link_to_github": "Пожалуйста, попросите владельца привязать данный проект к репозиторию на Github", + "go_to_pdf_location_in_code": "Перейти к коду в редакторе", + "ko": "Корейский", + "ja": "Японский", + "about_brian_gough": "программист, бывший физик-теоретик в области физики высоких энергий в Ферми-лаб и в Лос Аламосе. На протяжение долгих лет занимался публикацией бесплатных инструкций по коммерческому использованию TeX и LaTeX, а также осуществлял поддержку проекта GNU Scientific Library.", + "first_few_days_free": "Первые __trialLen__ дней бесплатно", + "every": "каждый", + "credit_card": "банковская карта", + "credit_card_number": "Номер банковской карты", + "invalid": "Недействительный", + "expiry": "Срок действия", + "january": "Январь", + "february": "Февраль", + "march": "Март", + "april": "Апрель", + "may": "Май", + "june": "Июнь", + "july": "Июль", + "august": "Август", + "september": "Сентябрь", + "october": "Октябрь", + "november": "Ноябрь", + "december": "Декабрь", + "zip_post_code": "Индекс", + "city": "Город", + "address": "Адрес", + "coupon_code": "код купона", + "country": "Страна", + "billing_address": "Адрес для счёта", + "upgrade_now": "Сменить тариф", + "state": "Состояние", + "vat_number": "Номер плательщика НДС", + "you_have_joined": "Вы вступили в группу __groupName__", + "claim_premium_account": "Вы запросили премиум аккаунт от __groupName__.", + "you_are_invited_to_group": " Вы приглашены для участия в группе __groupName__", + "you_can_claim_premium_account": "Для получения премиум аккаунта от __groupName__ подтвердите свой адрес электронной почты", + "not_now": "Не сейчас", + "verify_email_join_group": "Подтвердить адрес и вступить в группу", + "check_email_to_complete_group": "Пожалуйста, проверьте Вашу почту для завершения процесса вступления в группу!", + "verify_email_address": "Подтвердить адрес электронной почты", + "group_provides_you_with_premium_account": "__groupName__ предоставляет Вам премиум-доступ. Проверьте свой адрес электронной почты для обновления Вашего аккаунта.", + "check_email_to_complete_the_upgrade": "Пожалуйста, проверьте Вашу почту для завершения", + "email_link_expired": "Срок действия ссылки истёк. Пожалуйста, повторите запрос!", + "services": "Сервисы", + "about_shane_kilkelly": "разработчик ПО из Эдинбурга. Shane - приверженец функционального программирования, разработки через тестирования и гордится созданием качественного ПО.", + "this_is_your_template": "Это шаблон из Вашего проекта", + "links": "Ссылки", + "account_settings": "Настройки профиля", + "search_projects": "Поиск по проектам", + "clone_project": "Копировать проект", + "delete_project": "Удалить проект", + "download_zip": "Скачать архивом (zip)", + "new_project": "Создать проект", + "blank_project": "Новый проект", + "example_project": "Использовать пример", + "from_template": "Использовать шаблон", + "cv_or_resume": "Резюме", + "cover_letter": "Сопроводительное письмо", + "journal_article": "Статья", + "presentation": "Презентация", + "thesis": "Диссертация", + "bibliographies": "Библиография", + "terms_of_service": "Условия использования", + "privacy_policy": "Конфиденциальность", + "plans_and_pricing": "Тарифные планы", + "university_licences": "Академические лицензии", + "security": "Безопасность", + "contact_us": "Связаться с нами", + "thanks": "Спасибо", + "blog": "Блог", + "latex_editor": "Редактор LaTeX", + "get_free_stuff": "Получите бесплатное", + "chat": "Чат", + "your_message": "Введите сообщение", + "loading": "Загрузка", + "connecting": "Подключение", + "recompile": "Компилировать", + "download": "Скачать", + "email": "Email", + "owner": "Владелец", + "read_and_write": "Чтение и запись", + "read_only": "Только чтение", + "publish": "Опубликовать", + "view_in_template_gallery": "Посмотреть в галерее шаблонов", + "unpublish": "Отменить публикацию", + "hotkeys": "Горячие клавиши", + "saving": "Сохранение", + "cancel": "Отмена", + "project_name": "Название проекта", + "root_document": "Корневой документ", + "spell_check": "Проверка правописания", + "compiler": "Компилятор", + "private": "Закрытый", + "public": "Открытый", + "delete_forever": "Удалить навсегда", + "support_and_feedback": "Обратная связь и поддержка", + "help": "Помощь", + "latex_templates": "Шаблоны", + "info": "Информация", + "latex_help_guide": "Помощь по LaTeX", + "choose_your_plan": "Выберите тариф", + "indvidual_plans": "Индивидуальные тарифы", + "free_forever": "Бесплатно навсегда", + "low_priority_compile": "Низкий приоритет компиляции", + "unlimited_projects": "Неограниченное число проектов", + "unlimited_compiles": "Неограниченное число компиляций", + "full_history_of_changes": "Полная история изменений", + "highest_priority_compiling": "Высокий приоритет компиляции", + "dropbox_sync": "Синхронизация с Dropbox", + "beta": "Beta", + "sign_up_now": "Зарегистрироваться", + "annual": "Цена за год", + "half_price_student": "Тарифы для студентов", + "about_us": "О нас", + "loading_recent_github_commits": "Загрузка последний изменений", + "no_new_commits_in_github": "Нет новых коммитов на GitHub с момента последнего слияния.", + "dropbox_sync_description": "Синхронизируйте Ваши __appName__ проекты с Вашим Dropbox. Изменения в __appName__ автоматически сохраняются в Вашем Dropbox, и наоборот.", + "github_sync_description": "Вы можете связать ваши проекты __appName__ с репозиториями на GitHub. Создавайте коммиты в __appName__ и объединяйте их с коммитами, сделанными оффлайн или на GitHub.", + "github_import_description": "Вы можете импортировать Ваши репозитории на GitHub в __appName__. Создавайте коммиты в __appName__ и объединяйте их с коммитами, сделанными оффлайн или на GitHub.", + "link_to_github_description": "Вам необходимо авторизовать __appName__ для доступа к Вашему GitHub аккаунту, чтобы разрешить нам синхронизацию Ваших проектов.", + "unlink": "Отсоединить", + "unlink_github_warning": "Все проекты, которые Вы синхронизировали с GitHub, будут отсоединены и больше не будут синхронизироваться с GitHub. Вы уверены, что хотите отсоединить Ваш GitHub аккаунт?", + "github_account_successfully_linked": "Аккаунт GitHub успешно присоединён!", + "github_successfully_linked_description": "Спасибо, мы успешно связали ваш аккаунт на GitHub с __appName__. Теперь вы можете экспортировать проекты с __appName__ в GitHub или импортировать в обратном направлении.", + "import_from_github": "Импорт с GitHub", + "github_sync_error": "Извините, произошла ошибка в общении с сервисом GitHub. Пожалуйста, попробуйте ещё раз позднее.", + "loading_github_repositories": "Загрузка ваших проектов с GitHub", + "select_github_repository": "Выберите проект на GitHub для импорта в __appName__", + "import_to_sharelatex": "Импортировать в __appName__", + "importing": "Импорт", + "github_sync": "Синхронизация с GitHub", + "checking_project_github_status": "Проверка статуса проекта на GitHub", + "account_not_linked_to_github": "Ваш аккаунт не привязан к GitHub", + "project_not_linked_to_github": "Этот проект не связан ни с одним проектом на GitHub. Вы можете создать для него проект на GitHub:", + "create_project_in_github": "Создать проект на GitHub", + "project_synced_with_git_repo_at": "Проект синхронизирован с GitHub в", + "recent_commits_in_github": "Последние коммиты на GitHub", + "sync_project_to_github": "Синхронизация с GitHub", + "sync_project_to_github_explanation": "Все изменения, сделанные Вами в __appName__ будут интегрированы (commit и merge) со всеми обновлениями на GitHub.", + "github_merge_failed": "Ваши изменения в __appName__ и GitHub не могут быть интегрированы автоматически. Пожалуйста, интегрируйте (merge) ветвь __sharelatex_branch__ branch в __master_branch__ в git вручную. Нажмите внизу для продолжения, когда будете готовы.", + "continue_github_merge": "Я провел(-а) слияние вручную. Продолжить", + "export_project_to_github": "Экспорт проекта на GitHub", + "github_validation_check": "Пожалуйста, проверьте правильность имени хранилища и права доступа на создание хранилища", + "repository_name": "Наименование репозитория", + "optional": "Необязательный", + "github_public_description": "Этот репозиторий может просмотреть каждый. Вы выбираете, кто может править.", + "github_commit_message_placeholder": "Сообщение о фиксации изменений в __appName__...", + "merge": "Соединить", + "merging": "Соединение", + "github_account_is_linked": "Ваш аккаунт на GitHub успешно привязан.", + "unlink_github": "Отвязать аккаунт на GitHub", + "link_to_github": "Привязать аккаунт на GitHub", + "github_integration": "Интеграция с GitHub", + "github_is_premium": "Синхронизация с GitHub доступна только в премиум аккаунте" +} \ No newline at end of file diff --git a/services/web/locales/sv.json b/services/web/locales/sv.json new file mode 100644 index 0000000000..21e09dffcd --- /dev/null +++ b/services/web/locales/sv.json @@ -0,0 +1,975 @@ +{ + "unconfirmed": "Obekräftad", + "please_check_your_inbox": "Vänligen kontrollera din inkorg", + "resend_confirmation_email": "Skicka om e-postbekräftelse", + "history_label_created_by": "Skapad av", + "add_another_email": "Lägg till en annan e-post", + "start_by_adding_your_email": "Börja med att lägga till din e-postadress.", + "add_new_email": "Lägg till ny e-postadress", + "save_or_cancel-save": "Spara", + "save_or_cancel-or": "eller", + "save_or_cancel-cancel": "Avbryt", + "remove": "ta bort", + "confirm_email": "Bekräfta e-postadress", + "invited_to_join_team": "Du har blivit inbjuden till att gå med i ett team", + "join_team": "Gå med i ett team", + "accepted_invite": "Accepterat inbjudan", + "invited_to_group": "__inviterName__ har bjudit in dig till ett team på __appName__", + "join_team_explanation": "Klicka på knappen nedan för att gå med i teamet och njut av fördelarna med ett uppgraderat __appName__ konto", + "accept_invitation": "Acceptera inbjudan", + "joined_team": "Du har gått med i ett team som hanteras av __inviterName__", + "compare_to_another_version": "Jämför med en annan version", + "file_action_edited": "Redigerade", + "file_action_renamed": "Döpte om", + "file_action_created": "Skapade", + "file_action_deleted": "Tog bort", + "browsing_project_as_of": "Bläddrar projekt från och med", + "view_single_version": "Visa enkel version", + "font_family": "Typsnittsfamilj", + "line_height": "Radavstånd", + "compact": "Kompakt", + "wide": "Bred", + "default": "Standard", + "leave": "Lämna", + "archived_projects": "Arkiverade Projekt", + "archive": "Arkiv", + "student_disclaimer": "Studentrabatten gäller för alla studenter på gymnasienivå eller högre. Vi kan komma att kontakta dig för att bekräfta din behörighet för rabatten.", + "billed_after_x_days": "Du kommer inte att betala förrän efter din __len__ dagars prövoperiod löper ut.", + "looking_multiple_licenses": "Letar du efter flera licenser?", + "reduce_costs_group_licenses": "Du kan dra ner på pappersarbete och minska kostnader med våra rabatterade grupplicenser.", + "find_out_more": "Få reda på mer", + "compare_plan_features": "Jämför abonnemangsfunktioner", + "in_good_company": "Du är i gott sällskap", + "unlimited": "Obegränsat", + "priority_support": "Prioriterad support", + "dropbox_integration_lowercase": "Dropbox integration", + "github_integration_lowercase": "GitHub integration", + "discounted_group_accounts": "rabatterade gruppkonto", + "referring_your_friends": "värva dina vänner", + "still_have_questions": "Har du fortfarande frågor?", + "quote_erdogmus": "Möjligheten att spåra ändringar och realtids samarbete är det som skiljer ShareLaTeX från andra.", + "quote_henderson": "ShareLaTeX har visat sig vara ett kraftfullt och robust samarbetsverktyg som används av många i vår skola.", + "best_value": "Bästa värde", + "faq_how_free_trial_works_question": "Hur fungerar din gratis prövoperiod?", + "faq_change_plans_question": "Kan jag byta abonnemang senare?", + "faq_do_collab_need_premium_question": "Behöver mina samarbetspartners också premium konto?", + "faq_need_more_collab_question": "Om jag behöver fler samarbetspartners?", + "faq_purchase_more_licenses_question": "Kan jag köpa ytterligare licenser för mina kollegor?", + "faq_monthly_or_annual_question": "Ska jag använda månatlig eller årlig betalning?", + "faq_how_to_pay_question": "Kan jag betala online med kredit-/betalkort eller PayPal?", + "faq_pay_by_invoice_question": "Kan jag betala med faktura?", + "reference_search": "Avancerad referenssökning", + "reference_search_info": "Du kan alltid söka efter citationsnycklar, och avancerad referenssök låter dig söka efter författare, titel, år eller tidsskrift.", + "reference_sync": "Referenshanterare synk", + "reference_sync_info": "Hantera ditt referensebibliotek i Mendeley och länka det direkt till en .bib fil i __appName__, så att du enkelt kan citera något från ditt Mendeley bibliotek.", + "faq_how_free_trial_works_answer": "Du får full tillgång till din valda ShareLaTeX plan under din __len__-dagars gratis prövoperiod. Det finns inget skyldighet att fortsätta efter din prövoperiod. Ditt kort kommer att belastas vid slutet av din __len__ dagars prövoperiod om du inte avbryter innan dess. Du avbryter ditt abonnemang under abonnemangsinställningar.", + "faq_change_plans_answer": "Ja, du kan när som helst byta din abonnemangsplan under abonnemangsinställningar. Detta inkluderar möjligheten att byta till en annan plan, växla mellan månatlig eller årsbetalning, eller säga upp och nedgradera ditt konto.", + "faq_do_collab_need_premium_answer": "Premiumfunktioner, som t.ex. ändringsspårning, kommer att vara tillgängliga på projekt du skapat, även om eventuella samarbetspartners har gratiskonton.", + "faq_need_more_collab_answer": "Du kan uppgradera till ett av våra betalda konto, vilket stödjer fler samarbetspartners. Du kan också tjäna fler samarbetspartners med våra gratiskonto genom __referFriendsLink__.", + "faq_purchase_more_licenses_answer": "Ja, vi erbjuder __groupLink__, vilket är enkelt att hantera, sparar in på pappersarbetet och reducerar kostnaderna vid köp av flera licenser.", + "faq_monthly_or_annual_answer": "Årlig betalning gör det möjligt att minska administration och pappersarbete. Om du heller vill betala med en betalning om året, istället för tolv, är årlig betalning för dig.", + "faq_how_to_pay_answer": "Ja det kan du. Alla stora kredit- och betalkort samt Paypal stöds. Välj vilken plan du vill använda ovan, du kommer sedan att få välja att betala med kort eller via Paypal när det att dax att ställa in betalningsinställningarna.", + "powerful_latex_editor": "Kraftfull LaTeX editor", + "realtime_track_changes": "Realtidsspåra ändringar", + "realtime_track_changes_info": "Nu behöver du inte välja mellan att spåra ändringar och typsättning i LaTeX. Lämna kommentarer, håll koll på Att Göra markeringar och acceptera eller neka andras förändringar.", + "full_doc_history_info": "Åk tillbaka i tiden för att se vilken version som helst och vem som har gjort ändringar. Oavsett vad som händer så har vi din rygg.", + "dropbox_integration_info": "Arbeta smidigt både online och offline med två-vägs Dropbox synk. Ändringar du gör lokalt kommer automatiskt skickas till din __appName__ version och vice versa.", + "github_integration_info": "Hämta och tryck upp ändringar till och från GitHub, så att dina samarbetspartners kan jobba offline med git och online med __appName__.", + "latex_editor_info": "All du behöver i en modern LaTeX editor --- stavningskontroll, intelligent autocomplete, syntaxmarkering, massor av färgteman, vim och emacs kortkommandon, hjälp med LaTeX varningar och felmeddelanden, och mycket mer.", + "change_plans_any_time": "Du kan byta abbonemang eller ändra ditt konto när som helst. ", + "number_collab": "Antal samarbetspartners", + "unlimited_private_info": "Alla dina projekt är privata som standard. Bjud in samarbetspartners för att läsa eller redigera med e-postadress eller genom en hemlig länk.", + "unlimited_private": "Obegränsat med privata projekt", + "realtime_collab": "Samarbete i realtid", + "realtime_collab_info": "När ni jobbar tillsammans kan du se dina samarbetpartners markörer och ändringar i realtid, så alla har alltid den senaste versionen.", + "hundreds_templates": "Hundratals med mallar", + "hundreds_templates_info": "Producera vackra dokument med hjälp av vårt gallery av LaTeX mallar för tidsskrifter, konferenser, uppsatser, rapporter, CV och mycket mer.", + "instant_access": "Få direkt tillgång till __appName__", + "tagline_personal": "Perfekt när du jobbar ensam", + "tagline_collaborator": "Bäst för delade projekt", + "tagline_professional": "För de som jobbar med många", + "tagline_student_annual": "Spara ännu mer", + "tagline_student_monthly": "Perfekt för en termin", + "all_premium_features": "Alla premiumfunktioner", + "sync_dropbox_github": "Synka med Dropbox och GitHub", + "track_changes": "Spåra ändringar", + "tooltip_hide_pdf": "Klicka för att gömma PDF:en", + "tooltip_show_pdf": "Klicka för att visa PDF:en", + "tooltip_hide_filetree": "Klicka för att gömma filträdet", + "tooltip_show_filetree": "Klicka för att visa filträdet", + "cannot_verify_user_not_robot": "Tyvärr kunde vi inte verifiera att du inte är en robot. Vänligen kontrollera så att Google reCAPTCHA inte blockeras av en ad blocker eller brandvägg.", + "uncompiled_changes": "Okompilerade ändringar", + "code_check_failed": "Kodkontroll misslyckades", + "code_check_failed_explanation": "Din kod har fel som behöver åtgärdas innan auto-kompileringen kan köras", + "tags_slash_folders": "Taggar/Mappar", + "file_already_exists": "En fil eller mapp med det namnet finns redan", + "import_project_to_v2": "Importera Projekt till V2", + "open_in_v1": "Öppna i V1", + "import_to_v2": "Importera till V2", + "never_mind_open_in_v1": "Glöm det, öppna i V1", + "yes_im_sure": "Ja, jag är säker", + "drop_files_here_to_upload": "Släpp filer här för att ladda upp", + "drag_here": "dra här", + "creating_project": "Skapa projekt", + "select_a_zip_file": "Välj en .zip fil", + "drag_a_zip_file": "dra en .zip fil", + "v1_badge": "V1 Bricka", + "v1_projects": "V1 Projekt", + "open_your_billing_details_page": "Öppna sidan för dina Betalningsdetaljer", + "try_out_link_sharing": "Testa den nya länkdelningen!", + "try_link_sharing": "Testa Länkdelning", + "try_link_sharing_description": "Ge tillgång till ditt projekt genom att dela en länk.", + "learn_more_about_link_sharing": "Läs mer om Länkdelning", + "link_sharing": "Länkdelning", + "tc_switch_everyone_tip": "Aktivera spårningsändringar för alla", + "tc_switch_user_tip": "Aktivera spårningsändringar för denna användare", + "tc_switch_guests_tip": "Aktivera spårningsändringar för alla länkdelade gäster", + "tc_guests": "Gäster", + "select_all_projects": "Välj alla", + "select_project": "Välj", + "main_file_not_found": "Okänt huvuddokument.", + "please_set_main_file": "Välj en huvudfil för detta projekt i projektmenyn. ", + "link_sharing_is_off": "Länkdelning är inaktiverat, endast inbjudna användare kan se detta projekt.", + "turn_on_link_sharing": "Aktivera länkdelning", + "link_sharing_is_on": "Länkdelning är aktiverat", + "turn_off_link_sharing": "Inaktivera länkdelning", + "anyone_with_link_can_edit": "Vem som helst med denna länk kan redigera detta projekt", + "anyone_with_link_can_view": "Vem som helst med denna länk kan se detta projekt", + "turn_on_link_sharing_consequences": "När länkdelning är aktiverat, kan vem som helst med länken komma åt eller redigera projektet", + "turn_off_link_sharing_consequences": "När länkdelning är inaktiverat, har endast användare som är inbjudna tillgång till projektet", + "autocompile_disabled": "Autokompilering inaktiverat", + "autocompile_disabled_reason": "På grund av hög serverbelastning har bakgrundskompilering tillfälligt inaktiverats. Vänligen kompilera genom att klicka på knappen ovan.", + "auto_compile_onboarding_description": "När aktiverad, kommer ditt projekt att kompilera efterhand som du skriver.", + "try_out_auto_compile_setting": "Testa den nya inställningen för autokompilering!", + "got_it": "Jag förstår", + "pdf_compile_in_progress_error": "Kompilering körs redan i ett annat fönster", + "pdf_compile_try_again": "Vänligen vänta tills din andra kompilering är klar innan du försöker igen.", + "invalid_email": "En e-postadress är inte giltig", + "auto_compile": "Kompilera automatiskt", + "on": "På", + "tc_everyone": "Alla", + "per_user_tc_title": "Ändringshistorik per användare", + "you_can_use_per_user_tc": "Nu kan du se ändringshistorik per användare", + "turn_tc_on_individuals": "Aktivera ändringshistorik för individuella användare", + "keep_tc_on_like_before": "Eller behåll det aktivt för alla, som tidigare", + "auto_close_brackets": "Auto stäng paranteser", + "auto_pair_delimiters": "Auto para avgränsare", + "successfull_dropbox_link": "Dropbox har länkats, omdirigerar till inställningssidan.", + "show_link": "Visa länk", + "hide_link": "Göm länk", + "aggregate_changed": "Ändrade", + "aggregate_to": "till", + "confirm_password_to_continue": "Bekräfta lösenord för att fortsätta", + "confirm_password_footer": "Vi kommer inte att fråga efter ditt lösenord igen på ett tag.", + "accept_all": "Acceptera alla", + "reject_all": "Avvisa alla", + "bulk_accept_confirm": "Är du säker på att du vill acceptera de __nChanges__ valda ändringarna?", + "bulk_reject_confirm": "Är du säker på att du vill avvisa de __nChanges__ valda ändringarna?", + "uncategorized": "Okategoriserad", + "pdf_compile_rate_limit_hit": "Kompilerings gräns nådd", + "project_flagged_too_many_compiles": "Detta projekt har kompilerats för ofta. Begränsningen kommer snart tas bort igen.", + "reauthorize_github_account": "Återauktorisera ditt GitHub konto", + "github_credentials_expired": "Din auktorisering för GitHub har löpt ut", + "hit_enter_to_reply": "Tryck Enter för att svara", + "add_your_comment_here": "Skriv din kommentar här", + "resolved_comments": "Åtgärdade kommentarer", + "try_it_for_free": "Prova gratis", + "please_ask_the_project_owner_to_upgrade_to_track_changes": "Vänligen be projektägaren att uppgradera för att kunna spåra ändringar", + "mark_as_resolved": "Markera som löst", + "reopen": "Återöppna", + "add_comment": "Lägg till kommentar", + "no_resolved_threads": "Inga lösta trådar", + "upgrade_to_track_changes": "Uppgradera för att spåra ändringar", + "see_changes_in_your_documents_live": "Se ändringar i dina dokument, i realtid", + "track_any_change_in_real_time": "Spåra alla ändringar, i realtid", + "review_your_peers_work": "Granska dina medarbetares bidrag", + "accept_or_reject_each_changes_individually": "Acceptera eller neka varje förändring för sig", + "accept": "Acceptera", + "reject": "Neka", + "no_comments": "Inga kommentarer", + "edit": "Redigera", + "are_you_sure": "Är du säker?", + "resolve": "Lös", + "reply": "Svara", + "quoted_text_in": "Citerad text i", + "review": "Granska", + "track_changes_is_on": "Spåra ändringar är ", + "track_changes_is_off": "Spåra ändringar är av", + "current_file": "Nuvarande fil", + "overview": "Översikt", + "tracked_change_added": "Tillagd", + "tracked_change_deleted": "Raderad", + "show_all": "visa alla", + "show_less": "visa mindre", + "dropbox_sync_error": "Fel vid Dropbox-synkning", + "send": "Skicka", + "sending": "Skickar", + "invalid_password": "Felaktigt lösenord", + "error": "Fel", + "other_actions": "Andra åtgärder", + "send_test_email": "Skicka ett test-mail", + "email_sent": "E-mail skickat", + "create_first_admin_account": "Skapa ett första Admin-konto", + "ldap": "LDAP", + "ldap_create_admin_instructions": "Välj en e-mailadress för ditt första admin-konto på __appName__. Den bör matcha ett konto i LDAP-systemet. När du valt kommer du ombes logga in med detta konto.", + "saml": "SAML", + "saml_create_admin_instructions": "Välj en e-mailadress för ditt första admin-konto på __appName__. Den bör matcha ett konto i SAML-systemet. När du valt kommer du ombes logga in med detta konto.", + "admin_user_created_message": "Admin-konto skapat, Logga in här för att fortsätta", + "status_checks": "Rutinkontroller", + "editor_resources": "Editor-resurser", + "checking": "Kontrollerar", + "cannot_invite_self": "Du kan inte skicka en inbjudan till dig själv", + "cannot_invite_non_user": "Kunde inte skicka inbjudan. Mottagaren har redan ett __appName__-konto", + "log_in_with": "Logga in med __provider__", + "return_to_login_page": "Tillbaka till inloggningssidan", + "login_failed": "Inloggning misslyckades", + "delete_account_warning_message_3": "Du håller på att permanent ta bort all din konto data, inklusive dina projekt och inställningar. Vänligen skriv in e-postadressen ditt konto använder samt ditt lösenord i fälten nedan för att fortsätta.", + "delete_account_warning_message_2": "Du håller på att permanent ta bort all din konto data, inklusive dina projekt och inställningar. Vänligen skriv in e-postadressen ditt konto använder i fältet nedan för att fortsätta.", + "your_sessions": "Dina sessioner", + "clear_sessions_description": "Detta är en lista med sessioner (inloggningar) som är aktiva på ditt konto, inte medräknat din nuvarande session. Klick på \"Töm sessioner\" knappen nedan för att logga ut dem.", + "no_other_sessions": "Inga andra aktiva sessioner", + "ip_address": "IP-adress", + "session_created_at": "Session skapad den", + "clear_sessions": "Töm sessioner", + "clear_sessions_success": "Sessioner tömda", + "sessions": "Sessioner", + "manage_sessions": "Hantera dina sessioner", + "syntax_validation": "Kodkontroll", + "history": "Historik", + "joining": "Går med", + "open_project": "Öppna projekt", + "files_cannot_include_invalid_characters": "Filer kan inte innehålla '*' eller '/' tecken", + "invalid_file_name": "Ogiltigt filnamn", + "autocomplete_references": "Autokomplettering av referenser (inuti \\cite{})", + "autocomplete": "Autokomplettering", + "failed_compile_check": "Det verkar som att ditt projekt har allvarliga syntaxfel som du måste åtgärda innan vi kan kompilera det", + "failed_compile_check_try": "Försök att kompilera ändå", + "failed_compile_option_or": "eller", + "failed_compile_check_ignore": "stäng av syntaxkontroll", + "compile_time_checks": "Syntaxkontroll", + "stop_on_validation_error": "Kontrollera syntax innan kompilering", + "ignore_validation_errors": "Kontrollera inte syntax", + "run_syntax_check_now": "Kör syntaxkontroll nu", + "your_billing_details_were_saved": "Dina betalningsuppgifter har sparats", + "security_code": "Säkerhetskod", + "paypal_upgrade": "För att uppgradera, klicka på knappen nedanför och logga in på PayPal med e-post och lösenord.", + "upgrade_cc_btn": "Uppgradera nu, betala efter 7 dagar", + "upgrade_paypal_btn": "Fortsätt", + "notification_project_invite": "__userName__ vill att du går med i __projectName__, Gå med i projektet", + "file_restored": "Din fil (__filename__) har återställts.", + "file_restored_back_to_editor": "Du kan gå tillbaka till editorn och jobba vidare med det igen.", + "file_restored_back_to_editor_btn": "Tillbaka till editorn", + "view_project": "Visa projekt", + "join_project": "Gå med i projekt", + "invite_not_accepted": "Inbjudan ännu inte accepterad", + "resend": "Skicka igen", + "syntax_check": "Syntaxkontroll", + "revoke_invite": "Återkalla inbjudan", + "pending": "Inväntar", + "invite_not_valid": "Detta är inte en giltig inbjudan till ett projekt", + "invite_not_valid_description": "Inbjudan kan ha utgått. Vänligen kontakta ägaren till projektet", + "accepting_invite_as": "Du accepterar inbjudan som", + "accept_invite": "Acceptera inbjudan", + "log_hint_ask_extra_feedback": "Kan du hjälpa oss att förstå varför tipset inte var till någon nytta?", + "log_hint_extra_feedback_didnt_understand": "Jag förstod inte tipset", + "log_hint_extra_feedback_not_applicable": "Jag kan inte genomföra detta i mitt dokument", + "log_hint_extra_feedback_incorrect": "Det löste inte problemet", + "log_hint_extra_feedback_other": "Annat:", + "log_hint_extra_feedback_submit": "Skicka", + "if_you_are_registered": "Om du redan är registrerad", + "stop_compile": "Stoppa kompilering", + "terminated": "Kompilering avbruten", + "compile_terminated_by_user": "Kompileringen avbröts med 'Stoppa kompilering'-knappen. Du kan titta i råloggarna för att se var kompileringen avbröts.", + "site_description": "En online-LaTeX-editor som är enkel att använda. Samarbeta i realtid, utan installation, med versionshantering, hundratals LaTeX-mallar, med mera.", + "knowledge_base": "kunskapsbank", + "contact_message_label": "Meddelande", + "kb_suggestions_enquiry": "Har du kollat i vår __kbLink__?", + "answer_yes": "Ja", + "answer_no": "Nej", + "log_hint_extra_info": "Läs mer", + "log_hint_feedback_label": "Var det här tipset till hjälp?", + "log_hint_feedback_gratitude": "Tack för din feedback!", + "recompile_pdf": "Kompilera om PDF:en", + "about_paulo_reis": "är en front-end mjukvaruutvecklare och user experience-forskare som bor i Aveiro, Portugal. Paulo har en doktorsgrad i user experience och brinner för att forma teknologi utefter människor - oavsett om det gäller koncept eller testning/validering, design eller implementation.", + "login_or_password_wrong_try_again": "Ditt inlogg eller lösenord är felaktigt. Vänligen försök igen", + "manage_beta_program_membership": "Hantera beta-medlemskap", + "beta_program_opt_out_action": "Hoppa av beta-programmet", + "disable_beta": "Avaktivera beta", + "beta_program_badge_description": "När du använder __appName__ kommer du att se beta-funktioner markerade med denna ikon:", + "beta_program_current_beta_features_description": "Just nu testar vi följande funktioner i beta:", + "enable_beta": "Aktivera beta", + "user_in_beta_program": "Användaren deltar i beta-programmet", + "beta_program_already_participating": "Du är nu med i beta-programmet.", + "sharelatex_beta_program": "__appName__ Beta-program", + "beta_program_benefits": "Vi förbättrar ständigt __appName__. Genom att gå med i vårt beta-program får du tidig tillgång till nya funktioner och kan hjälpa oss att förstå dina behov bättre.", + "beta_program_opt_in_action": "Gå med i beta-programmet", + "conflicting_paths_found": "Motstridiga sökvägar hittade", + "following_paths_conflict": "Följande filer & mappar har samma sökvägar", + "open_a_file_on_the_left": "Öppna en fil till vänster", + "reference_error_relink_hint": "Om felet kvarstår, testa att återkoppla ditt konto här:", + "pdf_rendering_error": "PDF renderingsfel", + "something_went_wrong_rendering_pdf": "Något gick fel under renderingen av denna PDF:en.", + "mendeley_reference_loading_error_expired": "Medeley token har utgått, vänligen återkoppla ditt konto", + "zotero_reference_loading_error_expired": "Zotero token har utgått, vänligen återkoppla ditt konto", + "mendeley_reference_loading_error_forbidden": "Kunde inte ladda referenser från Mendeley, vänligen återkoppla ditt konto och försök igen", + "zotero_reference_loading_error_forbidden": "Kunde inte ladda referenser från Zotero, vänligen återkoppla ditt konto och försök igen", + "mendeley_integration": "Mendeley integrering", + "mendeley_sync_description": "Med Mendeley integrering kan du importera dina referenser direkt från Mendeley till ditt __appName__ projekt", + "mendeley_is_premium": "Mendeley integrering är en premium funktion", + "link_to_mendeley": "Koppla till Mendeley", + "unlink_to_mendeley": "Koppla bort från Mendeley", + "mendeley_reference_loading": "Laddar referenser från Mendeley", + "mendeley_reference_loading_success": "Laddade references från Mendeley", + "mendeley_reference_loading_error": "Fel, kunde inte ladda referenser från Mendeley", + "zotero_integration": "Zotero integrering", + "zotero_sync_description": "Med Zotero integrering kan du importera dina referenser direkt från Zotero till ditt __appName__ projekt.", + "zotero_is_premium": "Zotero integrering är en premium funktion", + "link_to_zotero": "Koppla till Zotero", + "unlink_to_zotero": "Koppla bort från Zotero", + "zotero_reference_loading": "Ladda referenser från Zotero", + "zotero_reference_loading_success": "Laddade referenser från Zotero", + "zotero_reference_loading_error": "Fel, kunde inte ladda referenser från Zotero", + "reference_import_button": "Importera referenser till", + "unlink_reference": "Ta bort referens koppling", + "unlink_warning_reference": "Varning: När du tar bort kopplingen från ditt konto kommer du inte längre att kunna importera referenser till ditt projekt.", + "mendeley": "Mendeley", + "zotero": "Zotero", + "suggest_new_doc": "Föreslå nytt dokument", + "request_sent_thank_you": "Begäran skickad, tack.", + "suggestion": "Förslag", + "project_url": "Påverkad projekt URL", + "subject": "Ämne", + "confirm": "Bekräfta", + "cancel_personal_subscription_first": "Du har redan en personlig prenumeration, vill du avbryta denna innan du går med i grupp licensen?", + "delete_projects": "Ta bort projekt", + "leave_projects": "Lämna projekt", + "delete_and_leave_projects": "Ta bort och lämna projekt", + "too_recently_compiled": "Det här projektet har nyligen kompilerats, en ny kompilering har därför inte gjorts.", + "clsi_maintenance": "Kompileringsservrarna är nere för underhåll och kommer snart upp igen.", + "references_search_hint": "Tryck CTRL+mellanslag för att söka", + "ask_proj_owner_to_upgrade_for_references_search": "Vänligen be projekt ägaren att uppgradera för att använda Referens sök funktionen.", + "ask_proj_owner_to_upgrade_for_faster_compiles": "Vänligen be projekt ägaren att uppgradera för få snabbare kompilering och utökade timeout begränsning.", + "search_bib_files": "Sök efter författare, titel, år", + "leave_group": "Lämna grupp", + "leave_now": "Lämna nu", + "sure_you_want_to_leave_group": "Är du säker på att du vill lämna denna gruppen?", + "notification_group_invite": "Du har blivit inbjuden till __groupName__, Gå med här.", + "search_references": "Sök i .bib filerna för det här projektet", + "no_search_results": "Inga sök resultat", + "email_already_registered": "Den här e-postadressen är redan registrerad", + "compile_mode": "Kompileringsläge", + "normal": "Normal", + "fast": "Snabb", + "rename_folder": "Döp om mappen", + "delete_folder": "Ta bort mappen", + "about_to_delete_folder": "Du håller på att ta bort följande mappar (eventuella projekt i mapparna kommer att tas bort):", + "to_modify_your_subscription_go_to": "För att förändra din prenumeration gå till", + "manage_subscription": "Hantera prenumeration", + "activate_account": "Aktivera ditt konto", + "yes_please": "Ja tack!", + "nearly_activated": "Du är ett steg från att aktivera ditt __appName__ konto!", + "please_set_a_password": "Vänligen välj ett lösenord", + "activation_token_expired": "Din aktiveringstoken har utgått, du behöver få en ny skickad till dig.", + "activate": "Aktivera", + "activating": "Aktiverar", + "ill_take_it": "Jag tar det!", + "cancel_your_subscription": "Avsluta din prenumeration", + "no_thanks_cancel_now": "Nej tack - Jag vill fortfarande avsluta nu", + "cancel_my_account": "Avsluta min prenumeration", + "sure_you_want_to_cancel": "Är du säker på att du vill avsluta?", + "i_want_to_stay": "Jag vill stanna", + "have_more_days_to_try": "Få ytterligare __days__ dagar till dit test konto!", + "interested_in_cheaper_plan": "Är du intresserad av den billigare __price__ student prenumerationen?", + "session_expired_redirecting_to_login": "Sessionen har utgått. Dirigerar om till login sidan om __seconds__ sekunder", + "maximum_files_uploaded_together": "Högst __max__ filer laddas upp samtidigt", + "too_many_files_uploaded_throttled_short_period": "För många filer har laddats upp, dina uppladdningar har tillfälligt begränsats.", + "compile_larger_projects": "Kompilera större projekt", + "upgrade_to_get_feature": "Uppgradera för att få __feature__, plus:", + "new_group": "Ny grupp", + "about_to_delete_groups": "Du håller på att ta bort följande grupper:", + "removing": "Tar bort", + "adding": "Lägger till", + "groups": "Grupper", + "rename_group": "Döp om grupp", + "renaming": "Döper om", + "create_group": "Skapa grupp", + "delete_group": "Ta bort grupp", + "delete_groups": "Ta bort grupper", + "your_groups": "Dina grupper", + "group_name": "Grupp namn", + "no_groups": "Inga grupper", + "Subscription": "Prenumeration", + "Documentation": "Dokumentation", + "Universities": "Universitet", + "Account Settings": "Kontoinställningar", + "Projects": "Projekt", + "Account": "Konto", + "global": "global", + "Terms": "Villkor", + "Security": "Säkerhet", + "About": "Om", + "editor_disconected_click_to_reconnect": "Editorn tappade anslutningen, klicka varsomhelst för att återansluta.", + "word_count": "Ordräknare", + "please_compile_pdf_before_word_count": "Vänligen kompilera ditt projekt innan du gör en ord räkning", + "total_words": "Totalt antal ord", + "headers": "Rubriker", + "math_inline": "Inline matteformler", + "math_display": "Display matteformler", + "connected_users": "Anslutna användare", + "projects": "Projekt", + "upload_project": "Ladda upp Projekt", + "all_projects": "Alla Projekt", + "your_projects": "Dina Projekt", + "shared_with_you": "Delade med dig", + "deleted_projects": "Raderade Projekt", + "templates": "Mallar", + "new_folder": "Ny Mapp", + "create_your_first_project": "Skapa ditt första projekt!", + "complete": "Färdigt", + "on_free_sl": "Du använder gratisversionen av __appName__", + "upgrade": "Uppgradera", + "or_unlock_features_bonus": "eller lås upp bonusfunktioner genom att", + "sharing_sl": "dela __appName__", + "add_to_folder": "Lägg till i mapp", + "create_new_folder": "Skapa ny mapp", + "more": "Mer", + "rename": "Ändra namn", + "make_copy": "Gör en kopia", + "restore": "Återställ", + "title": "Titel", + "last_modified": "Senast ändrad", + "no_projects": "Inga projekt", + "welcome_to_sl": "Välkommen till __appName__!", + "new_to_latex_look_at": "Nybörjare på LaTeX? Börja med att titta på", + "or": "eller", + "or_create_project_left": "eller skapa ditt första projekt till vänster.", + "thanks_settings_updated": "Tack, dina inställningar har uppdateras.", + "update_account_info": "Uppdatera kontoinformation", + "must_be_email_address": "Måste vara en e-postadress", + "first_name": "Förnamn", + "last_name": "Efternamn", + "update": "Uppdatera", + "change_password": "Byt lösenord", + "current_password": "Nuvarande lösenord", + "new_password": "Nytt lösenord", + "confirm_new_password": "Bekräfta nytt lösenord", + "required": "Obligatorisk", + "doesnt_match": "Matchar inte", + "dropbox_integration": "Dropbox integrering", + "learn_more": "Läs mer", + "dropbox_is_premium": "Dropbox synkronisering är en premium funktion", + "account_is_linked": "Konton är länkat", + "unlink_dropbox": "Avlänka Dropbox", + "link_to_dropbox": "Länka till Dropbox", + "newsletter_info_and_unsubscribe": "Med några månaders mellanrum skickar vi ut ett nyhetsbrev med en summering av de nyaste funktionerna. Om du inte vill ta emot dessa nyhetsbrev kan du välja avprenumerera från dessa när som helst:", + "unsubscribed": "Prenumeration avslutad", + "unsubscribing": "Avslutar prenumeration", + "unsubscribe": "Avsluta prenumeration", + "need_to_leave": "Vill du lämna?", + "delete_your_account": "Ta bort ditt konto", + "delete_account": "Ta bort konto", + "delete_account_warning_message": "Du håller på att permanent ta bort ditt konto och all din data, inklusive dina projekt och inställningar. Vänligen skriv in ditt konto e-postadress i rutan nedan för att fortsätta.", + "deleting": "Tar bort", + "delete": "Radera", + "sl_benefits_plans": "__appName__ är världens enklaste LaTeX-editor. Samarbeta direkt med dina medarbetare, håll koll på alla förändringar i dokumenten, och använd vår LaTeX-miljö från varsomhelst världen.", + "monthly": "Månatlig", + "personal": "Privat", + "free": "Gratis", + "one_collaborator": "Endast en samarbetare", + "collaborator": "Samarbetare", + "collabs_per_proj": "__collabcount__ samarbetare per projekt", + "full_doc_history": "Full dokumenthistorik", + "sync_to_dropbox": "Synka till Dropbox", + "start_free_trial": "Starta utvärderingsperiod!", + "professional": "Professionell", + "unlimited_collabs": "Obegränsat med samarbetare", + "name": "Namn", + "student": "Student", + "university": "Universitet", + "position": "Position", + "choose_plan_works_for_you": "Välj en kontotyp som fungerar för dig, testa med vår __len__-dagars gratisperiod. Avbryt när som helst.", + "interested_in_group_licence": "Intresserad av att använda __appName__ i ett grupp-, team- eller avdelningskonto?", + "get_in_touch_for_details": "Hör av dig för mer information!", + "group_plan_enquiry": "Grupplansförfrågan", + "enjoy_these_features": "Njut av alla dessa underbara funktioner", + "create_unlimited_projects": "Skapa så många projekt som du behöver.", + "never_loose_work": "Tappa aldrig bort något, we've got your back.", + "access_projects_anywhere": "Få åtkomst till din projekt överallt.", + "log_in": "Logga in", + "login": "Logga in", + "logging_in": "Loggar in", + "forgot_your_password": "Glömt ditt lösenord", + "password_reset": "Återställ lösenord", + "password_reset_email_sent": "Ett e-postmeddelande har skickats till dig för att slutföra lösenordsåterställningen.", + "please_enter_email": "Vänligen ange din e-postadress", + "request_password_reset": "Begär lösenordsåterställning", + "reset_your_password": "Återställ ditt lösenord", + "password_has_been_reset": "Ditt lösenord har återställts", + "login_here": "Logga in här", + "set_new_password": "Ange nytt lösenord", + "user_wants_you_to_see_project": "__username__ vill att du ska gå med i __projectname__", + "join_sl_to_view_project": "Gå med i __appName__ för att se detta projekt", + "register_to_edit_template": "Vänligen registrera dig för att redigera __templateName__ mallen", + "already_have_sl_account": "Har du redan ett __appName__ konto?", + "register": "Registrera", + "password": "Lösenord", + "registering": "Registrerar", + "planned_maintenance": "Planerat underhåll", + "no_planned_maintenance": "Det finns för närvarande inget planerat underhållsarbete", + "cant_find_page": "Tyvärr kan vi inte hitta sidan du letar efter.", + "take_me_home": "Ta mig härifrån!", + "no_preview_available": "Tyvärr, det finns inte någon förhandsvisning tillgänglig.", + "no_messages": "Inga meddelanden", + "send_first_message": "Skicka ditt första meddelande", + "account_not_linked_to_dropbox": "Ditt konto är inte länkat till Dropbox", + "update_dropbox_settings": "Uppdatera Dropbox inställningar", + "refresh_page_after_starting_free_trial": "Vänligen uppdatera denna sida efter att du startat din gratis provapå period.", + "checking_dropbox_status": "kontrollerar Dropbox status", + "dismiss": "Avfärda", + "new_file": "Ny fil", + "upload_file": "Ladda upp fil", + "create": "Skapa", + "creating": "Skapar", + "upload_files": "Uppladdade fil(er)", + "sure_you_want_to_delete": "Är du säker på att du vill permanent radera följande filer?", + "common": "Vanliga", + "navigation": "Navigation", + "editing": "Redigering", + "ok": "OK", + "source": "Källfiler", + "actions": "Åtgärder", + "copy_project": "Klona projekt", + "publish_as_template": "Publicera som mall", + "sync": "Synka", + "settings": "Inställningar", + "main_document": "Huvuddokument", + "off": "Av", + "auto_complete": "Komplettera automatisk", + "theme": "Tema", + "font_size": "Teckenstorlek", + "pdf_viewer": "PDF läsare", + "built_in": "Inbyggd", + "native": "native", + "show_hotkeys": "Visa tangentbordsgenvägar", + "new_name": "Nytt namn", + "copying": "kopierar", + "copy": "Kopiera", + "compiling": "Kompilerar", + "click_here_to_preview_pdf": "Klicka här för att förhandsvis ditt arbete som PDF.", + "server_error": "Serverfel", + "somthing_went_wrong_compiling": "Ursäkta, något blev fel och ditt projekt kunde inte kompileras. Vänligen försök igen om en liten stund.", + "timedout": "Timed out", + "proj_timed_out_reason": "Ursäkta, din kompilering tog för lång tid och avbröts. Detta kan bero på för många högupplösta bilder eller komplicerade diagram.", + "no_errors_good_job": "Inga fel, bra jobbat!", + "compile_error": "Kompileringsfel", + "generic_failed_compile_message": "Ursäkta, din LaTexkod kunde inte kompileras av någon anledning. Vänligen kontrollera felen nedan, du kan också kontrollera loggen för fler detaljer.", + "other_logs_and_files": "Andra loggar & filer", + "view_raw_logs": "Visa loggen", + "hide_raw_logs": "Göm loggen", + "clear_cache": "Töm cache", + "clear_cache_explanation": "Detta kommer att radera alla dina dolda LaTeX filer (.aux, .bbl, etc) från vår kompileringsserver. Normalt behöver du inte göra detta såvida du inte har problem med referenser.", + "clear_cache_is_safe": "Dina projektfiler kommer inte att tas bort eller förändras.", + "clearing": "Tömmer", + "template_description": "Mallbeskrivning", + "project_last_published_at": "Ditt projekt blev publicerat senast den", + "problem_talking_to_publishing_service": "Det har uppstått ett problem på vår publiceringsserver, vänligen försök igen om några minuter", + "unpublishing": "Avpublicera", + "republish": "Återpublicera", + "publishing": "Publicerar", + "share_project": "Dela projekt", + "this_project_is_private": "Detta projekt är privat och endast personerna nedan har åtkomst.", + "make_public": "Gör publikt", + "this_project_is_public": "Detta projekt är publikt och kan redigeras av vem som helst med länken.", + "make_private": "Gör privat", + "can_edit": "Kan redigera", + "share_with_your_collabs": "Dela med dina samarbetspartners", + "share": "Dela", + "need_to_upgrade_for_more_collabs": "Du måste uppgradera ditt konto för att lägga till fler samarbetspartners", + "make_project_public": "Gör projekt publikt", + "make_project_public_consequences": "Om du gör ditt projekt publikt kan vem som helst med länken få åtkomst till det.", + "allow_public_editing": "Tillåt publik redigering", + "allow_public_read_only": "Tillåt endast publik läsåtkomst", + "make_project_private": "Inaktivera länkdelning", + "make_project_private_consequences": "Om du gör ditt projekt privat har endast de du väljer att dela projektet med åtkomst.", + "need_to_upgrade_for_history": "Du måste uppgradera ditt konto för att använda historikfunktionen.", + "ask_proj_owner_to_upgrade_for_history": "Vänligen be projektets ägare att uppgradera för att använda historikfunktionen.", + "anonymous": "Anonym", + "generic_something_went_wrong": "Ursäkta, något gick snett", + "restoring": "Återställer", + "restore_to_before_these_changes": "Återställ till innan dessa förändringar", + "profile_complete_percentage": "Din profil är __percentval__% färdig", + "file_has_been_deleted": "__filename__ har raderats", + "sure_you_want_to_restore_before": "Är du säker på att du vill återställa __filename__ till innan den __date__?", + "rename_project": "Ändra namn på projekt", + "about_to_delete_projects": "Du håller på att ta bort följande projekt:", + "about_to_leave_projects": "Du håller på att lämna följande projekt:", + "upload_zipped_project": "Ladda upp zippat projekt", + "upload_a_zipped_project": "Ladda upp ett zippat projekt", + "your_profile": "Din profil", + "institution": "Instution", + "role": "Roll", + "folders": "Mappar", + "disconnected": "Frånkopplad", + "please_refresh": "Vänligen uppdatera sidan för att fortsätta.", + "lost_connection": "Förlorat anslutningen", + "reconnecting_in_x_secs": "Återansluter om __seconds__ sekunder", + "try_now": "Testa Nu", + "reconnecting": "Återansluter", + "saving_notification_with_seconds": "Sparar __docname__... (__seconds__ sekunder av osparade ändringar)", + "help_us_spread_word": "Hjälp oss sprida __appName__", + "share_sl_to_get_rewards": "Dela __appName__ med dina vänner och kollegor för att låsa upp belöningarna nedan", + "post_on_facebook": "Posta på Facebook", + "share_us_on_googleplus": "Dela oss på Google+", + "email_us_to_your_friends": "E-posta oss till dina vänner", + "link_to_us": "Länka till oss från din hemsida", + "direct_link": "Direktlänk", + "sl_gives_you_free_stuff_see_progress_below": "När någon börjar använda __appName__ från din rekommendation kommer vi att ge dig några gratis funktioner som tack! Spana in din utveckling nedan.", + "spread_the_word_and_fill_bar": "Sprid ordet och fyll upp denna mätaren", + "one_free_collab": "En gratis samarbetsparnter", + "three_free_collab": "Tre gratis samarbetspartners", + "free_dropbox_and_history": "Gratis Dropbox och förändringshistorik", + "you_not_introed_anyone_to_sl": "Du har inte introducerat någon till __appName__ ännu. Börja dela!", + "you_introed_small_number": " Du har introducerat __numberOfPeople__ personer till __appName__. Bra jobbat, men kan du fixa fler?", + "you_introed_high_number": " Du har introducerat __numberOfPeople__ personer till __appName__. Bra jobbat!", + "link_to_sl": "Länk till __appName__", + "can_link_to_sl_with_html": "Du kan länka till __appName__ med följande HTML:", + "year": "år", + "month": "månad", + "subscribe_to_this_plan": "Prenumerera på denna betalningsplan", + "your_plan": "Din betalningsplan", + "your_subscription": "Din prenumeration", + "on_free_trial_expiring_at": "Du använder för nuvarande en gratis provapå period som kommer att löpa ut den __expiresAt__.", + "choose_a_plan_below": "Välj en betalningsplan nedan.", + "currently_subscribed_to_plan": "Du använder för närvarande en __planName__ betalningsplan.", + "change_plan": "Byta betalningsplan", + "next_payment_of_x_collectected_on_y": "Nästa betalning på __paymentAmmount__ kommer att genomföras den __collectionDate__", + "update_your_billing_details": "Uppdatera din betalningsinformation", + "subscription_canceled_and_terminate_on_x": " Din prenumeration har avbrutits och kommer att upphöra den __terminateDate__. Inga framtida betalningar kommer att genomföras.", + "your_subscription_has_expired": "Din prenumeration har gått ut.", + "create_new_subscription": "Skapa en ny prenumeration", + "problem_with_subscription_contact_us": "Det har uppstått ett problem med din prenumeration. Vänligen kontakta oss för mer information.", + "manage_group": "Hantera grupp", + "loading_billing_form": "Ladda betalningsinformationsformulär", + "you_have_added_x_of_group_size_y": "Du har lagt till __addedUsersSize__ av __groupSize__ tillgängliga medlemmar.", + "remove_from_group": "Ta bort från grupp", + "group_account": "Gruppkonto", + "registered": "Registrerad", + "no_members": "Inga medlemmar", + "add_more_members": "Lägg till fler medlemmar", + "add": "Lägg till", + "thanks_for_subscribing": "Tack för din prenumeration!", + "your_card_will_be_charged_soon": "En dragning på ditt kort kommer att genomföras snart.", + "if_you_dont_want_to_be_charged": "Om du inte vill att en betalning ska genomföras igen ", + "add_your_first_group_member_now": "Lägg till dina första gruppmedlemmar nu", + "thanks_for_subscribing_you_help_sl": "Tack för att du prenumererar på en __planName__ betalningsplan. Det är stöd från personer som dig som gör att __appName__ kan fortsätta växa och förbättras.", + "back_to_your_projects": "Tillbaka till dina projekt", + "goes_straight_to_our_inboxes": "Det går direkt till båda våra inkorgar.", + "need_anything_contact_us_at": "Om det är något du undrar över kan du alltid höra av dig till oss på", + "regards": "Vänliga Hälsningar", + "about": "Om", + "comment": "Kommentar", + "restricted_no_permission": "Ursäkta, du har inte tillåtelse att visa denna sida.", + "online_latex_editor": "Online-LaTeX-editor", + "meet_team_behind_latex_editor": "Möt teamet bakom din favorit-online-LaTeX-editor.", + "follow_me_on_twitter": "Följ mig på Twitter", + "motivation": "Motivation", + "evolved": "har utvecklats", + "the_easy_online_collab_latex_editor": "Den enkla, samarbetsvänliga LaTeX-editorn på nätet", + "get_started_now": "Börja redan nu", + "sl_used_over_x_people_at": "__appName__ används av över __numberOfUsers__ studenter och akademiker på:", + "collaboration": "Samarbete", + "work_on_single_version": "Arbeta tillsammans på en enda version", + "view_collab_edits": "Visa samarbetspartners förändringar ", + "ease_of_use": " Användbarhet", + "no_complicated_latex_install": "Ingen komplicerad LaTeX installation", + "all_packages_and_templates": "Alla paket och __templatesLink__ du behöver", + "document_history": "Dokumenthistorik", + "see_what_has_been": "Se vad som har ", + "added": "lagst till", + "and": "och", + "removed": "tagits bort", + "restore_to_any_older_version": "Återställ till en äldre version", + "work_from_anywhere": "Arbeta var som helst", + "acces_work_from_anywhere": "Få tillgång till ditt arbete var som helst i världen", + "work_offline_and_sync_with_dropbox": "Arbeta offline och synka dina filer via Dropbox och GitHub", + "over": "över", + "view_templates": "Visa mallar", + "nothing_to_install_ready_to_go": "Det finns inget komplicerat eller svårt för dig att installera, och du kan __start_now__, även om du aldrig sett det förrut. __appName__ kommer med en komplett, färdig att använda LaTeX miljö som körs direkt på våra servrar.", + "start_using_latex_now": "börja använda LaTeX redan nu", + "get_same_latex_setup": "Med __appName__ får du samma LaTeX uppsättning oavsett var du befinner dig. Genom att direkt samarbeta med kollegor eller studenter via __appName__ vet du att ni inte kommer att stöta på några versions inkonsekvenser eller paketkonflikter.", + "support_lots_of_features": "Vi stödjer nästan alla LaTeX funktioner, inklusive lägga till bilder, bibliografi, ekvationer, och mycket mer! Läs om alla intressanta finesser på __appName__ i vår __help_guides_link__", + "latex_guides": "LaTeX guider", + "reset_password": "Återställ lösenord", + "set_password": "Ange lösenord", + "updating_site": "Uppdaterar webbsidan", + "bonus_please_recommend_us": "Bonus - Rekommendera oss", + "admin": "admin", + "subscribe": "Prenumerera", + "update_billing_details": "Uppdatera betalningsinformation", + "thank_you": "Tack", + "group_admin": "Gruppadministratör", + "all_templates": "Alla mallar", + "your_settings": "Dina inställningar", + "maintenance": "Underhållning", + "to_many_login_requests_2_mins": "Detta konto har haft för många inloggningsförsök. Vänligen vänta 2 minuter innan nästa försök.", + "email_or_password_wrong_try_again": "E-postadressen eller lösenordet är felaktigt.", + "rate_limit_hit_wait": "För många försök. Vänligen vänta en liten stund innan du försöker igen", + "problem_changing_email_address": "Det gick inte att byta din e-postadress. Vänligen försök igen om en liten stund. Kvarstår problemet så får du gärna kontakta oss.", + "single_version_easy_collab_blurb": "__appName__ ser till att du alltid är uppdaterad med vad dina samarbetspartners har gjort. Det finns endast en huvudversion av varje dokument som alla har tillgång till. Det är omöjligt att göra ändringar som skapar konflikter och du behöver inte vänta på att dina kollegor ska skicka den senaste kopian innan du kan påbörja ditt arbete.", + "can_see_collabs_type_blurb": "Om flera personer vill jobba på samma dokument samtidigt är det inget problem. Du kan direkt se var dina kollegor skriver och deras ändringar dyker direkt upp på din skärm.", + "work_directly_with_collabs": "Arbeta direkt med dina samarbetspartners", + "work_with_word_users": "Arbeta med Word användare", + "work_with_word_users_blurb": "__appName__ är enkelt att börja med, du kan direkt bjuda in dina icke-LaTeX kollegor att börja medverka i dina LaTeX dokument. De kommer att vara produktiva redan från första dagen och kommer att lära sig en del LaTeX under tiden som de skriver.", + "view_which_changes": "Visa vilka förändringar som har", + "sl_included_history_of_changes_blurb": "__appName__ inkluderar förändringshistorik av alla ändringar som gjorts. Du kan se exakt vem som ändrat vad och när. Detta gör det extremt lätt att hålla sig uppdaterad med alla framsteg i arbetet, oavsett om de är gjorda av dig eller någon av dina samarbetspartners.", + "can_revert_back_blurb": "Oavsett samarbetspartners eller ej så sker ibland misstag. Att återställa till en äldre version är enkelt och risken att förlora arbete eller ångra en förändring tas helt bort.", + "start_using_sl_now": "Börja använda __appName__ nu", + "over_x_templates_easy_getting_started": "Det finns __over__ 400 __templates__ i vårt mallgalleri, så det är verkligen enkelt att komma igång. Oavsett om du skriver en vetenskaplig artikel, uppsats, cv eller något annat.", + "done": "Färdigt", + "change": "Ändra", + "page_not_found": "Sidan kunde inte hittas", + "please_see_help_for_more_info": "Vänligen läs våra hjälp guider för mer information", + "this_project_will_appear_in_your_dropbox_folder_at": "Detta projekt kommer att synas i din Dropbox mapp på ", + "member_of_group_subscription": "Du är medlem i en grupprenumeration som hanteras av __admin_email__. Vänligen kontakta denne för att hantera din prenumeration.\n", + "about_henry_oswald": "är en mjukvaruingenjör bosatt i London. Han byggde den första prototypen av __appName__ och har haft ansvaret för att bygga en stabil och skalbar plattform. Henry är en stor förespråkare av testdriven utveckling och ser till att vi håller __appName__ koden ren och enkel att underhålla.", + "about_james_allen": "har en Doktorsexamen i teoretisk fysik och är en passionerad LaTeX användare. Han skapade en av de första online LaTeX-editorerna, ScribTeX, och har spelat en stor roll i utvecklingen av de teknologier som gör __appName__ möjligt.", + "two_strong_principles_behind_sl": "Det finns två starka drivande principer bakom vårt arbete på __appName__:", + "want_to_improve_workflow_of_as_many_people_as_possible": "Vi vill förbättra arbetsflödet för så många som möjligt.", + "detail_on_improve_peoples_workflow": "LaTeX är väldigt svårt att använda och samarbete är alltid svårt att koordinera. Vi tror att vi har utvecklat bra verktyg för att hjälpa andra med dessa problem och vi vill se till så att __appName__ är tillgängligt för så många andra som möjligt. Vi har försökt att hålla våra prenumerationspriser på en rimlig nivå, och vi har också släppt mycket av __appName__ som open source så att vem som helst kan sätta upp sin egen server.", + "want_to_create_sustainable_lasting_legacy": "Vi vill skapa ett hållbart och varaktigt arv.", + "details_on_legacy": "Utvecklingen och underhållet av en produkt som __appName__ tar upp väldigt mycket tid och arbete, så det är viktigt att vi kan hitta en affärsmodell som stödjer det både nu och i framtiden. Vi vill inte att __appName__ ska vara beroende av extern finansiering eller försvinna på grund av en havererad affärsmodell. Jag är stolt över att kunna säga att vi i nuläget kan köra __appName__ både lönsamt och hållbart, vi förväntar oss också att kunna göra detta på längre sikt.", + "get_in_touch": "Kom i kontakt", + "want_to_hear_from_you_email_us_at": "Vi vill gärna få feedback från er som använder __appName__, eller om du bara vill snacka lite om vad som är på gång. Kontakta oss gärna på ", + "cant_find_email": "Den e-postadressen är tyvärr inte registrerad.", + "plans_amper_pricing": "Betalningsplaner och avgifter", + "documentation": "Dokumentation", + "account": "Konto", + "subscription": "Prenumeration", + "log_out": "Logga ut", + "en": "Engelska", + "pt": "Portugisiska", + "es": "Spanska", + "fr": "Franska", + "de": "Tyska", + "it": "Italienska", + "da": "Danska", + "sv": "Svenska", + "no": "Norska", + "nl": "Holländska", + "pl": "Polska", + "ru": "Ryska", + "uk": "Ukrainska", + "ro": "Rumänska", + "click_here_to_view_sl_in_lng": "Klicka här för att använda __appName__ på __lngName__", + "language": "Språk", + "upload": "Ladda upp", + "menu": "Meny", + "full_screen": "Helskärm", + "logs_and_output_files": "Loggar och output filer", + "download_pdf": "Ladda ner PDF", + "split_screen": "Delad skärm", + "clear_cached_files": "Rensa cachade filer", + "go_to_code_location_in_pdf": "Gå till kodplats i PDF", + "please_compile_pdf_before_download": "Vänligen kompilera ditt projekt innan du laddar ner PDF filen", + "remove_collaborator": "Ta bort samarbetspartner", + "add_to_folders": "Lägg till i mappar", + "download_zip_file": "Ladda ner .zip fil", + "price": "Pris", + "close": "Stäng", + "keybindings": "Tangentbordsgenvägar", + "restricted": "Begränsad", + "start_x_day_trial": "Påbörjar din __len__-dagars gratis provapå period idag!", + "buy_now": "Köp nu!", + "cs": "Tjeckiska", + "view_all": "Visa alla", + "terms": "Villkor", + "privacy": "Integritet", + "contact": "Kontakt", + "change_to_this_plan": "Ändra till denna betalningsplan", + "processing": "behandlar", + "sure_you_want_to_change_plan": "Är du säker på att du vill ändra till betalningsplan __planName__?", + "move_to_annual_billing": "Ändra till Årlig betalning", + "annual_billing_enabled": "Årlig betalning aktiverat", + "move_to_annual_billing_now": "Ändra till årlig betalning nu", + "change_to_annual_billing_and_save": "Tjäna __percentage__ med årlig betalning. Om du byter nu sparar du __yearlySaving__ per år.", + "missing_template_question": "Saknas en mall?", + "tell_us_about_the_template": "Om du saknar en mall vänligen: Skicka oss en kopia av mallen antingen via en __appName__ länk eller tala om för oss var vi kan hitta den. Skicka också med en kort beskrivning av mallen.", + "email_us": "E-posta oss", + "this_project_is_public_read_only": "Det här projektet är publikt och kan visas, men inte redigeras, av vem som helst med länken.", + "tr": "Turkiska", + "select_files": "Välj fil(er)", + "drag_files": "dra fil(er)", + "upload_failed_sorry": "Uppladdningen misslyckades :(", + "inserting_files": "Importerar fil...", + "password_reset_token_expired": "Lösenordsåterställningen är för gammal. Vänligen begär en ny lösenordsåterställning och följ länken i e-postmeddelandet.", + "merge_project_with_github": "Sammanfoga projekt med GitHub", + "pull_github_changes_into_sharelatex": "Dra GitHub ändringar till __appName__", + "push_sharelatex_changes_to_github": "Tryck __appName__ ändringar till GitHub", + "features": "Funktioner", + "commit": "Commita", + "commiting": "Commitar", + "importing_and_merging_changes_in_github": "Importerar och slår samman ändringar i GitHub", + "upgrade_for_faster_compiles": "Uppgradera för att få snabbare kompileringar och utöka din timeout gräns", + "free_accounts_have_timeout_upgrade_to_increase": "Gratiskonton har en minuts timeoutgräns. Uppgradera för att utöka din timeoutgräns.", + "learn_how_to_make_documents_compile_quickly": "Lär dig göra dokument som kompileras snabbare", + "zh-CN": "Kinesiska", + "cn": "Kinesiska (Förenklad)", + "sync_to_github": "Synka till GitHub", + "sync_to_dropbox_and_github": "Synka till Dropbox och GitHub", + "project_too_large": "Projektet är för stort", + "project_too_large_please_reduce": "Detta projekt har för mycket redigerbar text, försök att minska ner det. De största filerna är:", + "please_ask_the_project_owner_to_link_to_github": "Vänligen be projektägaren att länka detta projekt till GitHub", + "go_to_pdf_location_in_code": "Gå till PDF platsen i koden", + "ko": "Koreanska", + "ja": "Japanska", + "about_brian_gough": "är mjukvarutvecklare och före detta teoretisk hög energi fysiker på Fermilab och Los Alamos. Under flera år har han publicerat gratis mjukvarumanualer kommerciellt med hjälp av TeX och LaTeX och var också ansvarig för GNU Scientific Library.", + "first_few_days_free": "Första __trialLen__ dagarna gratis", + "every": "varje", + "credit_card": "Kreditkort", + "credit_card_number": "Kreditkortsnummer", + "invalid": "Ogiltigt", + "expiry": "Utgångsdatum", + "january": "Januari", + "february": "Februari", + "march": "Mars", + "april": "April", + "may": "Maj", + "june": "Juni", + "july": "Juli", + "august": "Augusti", + "september": "September", + "october": "Oktober", + "november": "November", + "december": "December", + "zip_post_code": "Postnummer", + "city": "Stad", + "address": "Adress", + "coupon_code": "Kupongkod", + "country": "Land", + "billing_address": "Fakturaadress", + "upgrade_now": "Uppgradera Nu", + "state": "Status", + "vat_number": "Moms nummer", + "you_have_joined": "Du har gått med i __groupName__", + "claim_premium_account": "Du har aktiverat din premium prenumeration via __groupName__.", + "you_are_invited_to_group": "Du har blivit inbjuden till __groupName__", + "you_can_claim_premium_account": "Du kan aktivera en premium prenumeration via __groupName__ genom att verfiera dina e-postadress", + "not_now": "Inte nu", + "verify_email_join_group": "Verfiera e-postadress och gå med i grupp", + "check_email_to_complete_group": "Vänligen kontrollera din e-post för att gå med i gruppen", + "verify_email_address": "Verfiera e-postadress", + "group_provides_you_with_premium_account": "__groupName__ ger dig ett premium konto. Verfiera din e-postadress för att uppgradera ditt konto.", + "check_email_to_complete_the_upgrade": "Vänligen kontrollera din e-post för att uppgradera", + "email_link_expired": "E-post länk har utgått, vänligen begär en ny.", + "services": "Tjänster", + "about_shane_kilkelly": "är en mjukvaruutvecklare som bor i Edinburgh. Shane är en stark förespråkare av Funktionell Programmering, Testdriven utveckling och tar stolthet vid att bygga kvalitativ mjukvara.", + "this_is_your_template": "Detta är din mall från ditt projekt", + "links": "Länkar", + "account_settings": "Kontoinställningar", + "search_projects": "Sök projekt", + "clone_project": "Klona projekt", + "delete_project": "Radera projekt", + "download_zip": "Ladda ner Zip", + "new_project": "Nytt projekt", + "blank_project": "Tomt projekt", + "example_project": "Exempelprojekt", + "from_template": "Från mall", + "cv_or_resume": "CV eller Resume", + "cover_letter": "Personligt brev", + "journal_article": "Vetenskaplig artikel", + "presentation": "Presentation", + "thesis": "Uppsats", + "bibliographies": "Bibliografi", + "terms_of_service": "Användarvillkor", + "privacy_policy": "Användarvillkor", + "plans_and_pricing": "Betalningsplaner och Priser", + "university_licences": "Universitetslicens", + "security": "Säkerhet", + "contact_us": "Kontakta oss", + "thanks": "Tack", + "blog": "Blogg", + "latex_editor": "LaTex-editor", + "get_free_stuff": "Få gratis funktioner", + "chat": "Chatt", + "your_message": "Ditt meddelande", + "loading": "Laddar", + "connecting": "Ansluter", + "recompile": "Kompilera", + "download": "Ladda ner", + "email": "E-post", + "owner": "Ägare", + "read_and_write": "Läs och Skriv", + "read_only": "Endast läs", + "publish": "Publicera", + "view_in_template_gallery": "Visa i mallgalleri", + "unpublish": "Avpublicera", + "hotkeys": "Snabbkommandon", + "saving": "Spara", + "cancel": "Avbryt", + "project_name": "Projekt namn", + "root_document": "Huvud dokument", + "spell_check": "Stavningskontroll", + "compiler": "Kompilator", + "private": "Privat", + "public": "Publik", + "delete_forever": "Radera för evigt", + "support_and_feedback": "Support och feedback", + "help": "Hjälp", + "latex_templates": "LaTeX mallar", + "info": "Info", + "latex_help_guide": "LaTeX hjälpguide", + "choose_your_plan": "Välj din betalningsplan", + "indvidual_plans": "Individuella betalningsplaner", + "free_forever": "Gratis för alltid", + "low_priority_compile": "Låg prioritering vid kompilering", + "unlimited_projects": "Obegränsat med projekt", + "unlimited_compiles": "Obegränsat med kompileringar", + "full_history_of_changes": "Full ändringshistorik", + "highest_priority_compiling": "Högsta kompileringsprioritet", + "dropbox_sync": "Dropbox synkronisering", + "beta": "Beta", + "sign_up_now": "Registrera dig nu", + "annual": "Årlig", + "half_price_student": "Halva priset för studenter", + "about_us": "Om oss", + "loading_recent_github_commits": "Laddar senaste commits", + "no_new_commits_in_github": "Inga nya commits i GitHub sedan senaste sammanslagning.", + "dropbox_sync_description": "Håll dina __appName__ projekt i synk med Dropbox. Ändringar du gör i __appName__ skickas automatiskt till din Dropbox, och vice versa.", + "github_sync_description": "Med GitHub synk kan du koppla dina __appName__ projekt till GitHub repon. Skapa nya commits från __appName__ och slå samman commits som har gjorts i offlineläge eller i GitHub.", + "github_import_description": "Med GitHub synk kan du importera dina GitHub repon till __appName__. Skapa nya commits från __appName__ och slå samman dessa med commits som gjorts offline eller i GitHub.", + "link_to_github_description": "Du måste ge __appName__ åtkomst till ditt GitHub konto för att kunna synka dina projekt.", + "unlink": "Koppla bort", + "unlink_github_warning": "Projekt som du har synkat med GitHub kommer att kopplas bort och inte längre synkroniseras med GitHub. Är du säker på att du vill koppla bort ditt GitHub konto?", + "github_account_successfully_linked": "GitHub konto har kopplats!", + "github_successfully_linked_description": "Tack, vi har länkat ditt GitHub konto till __appName__. Du kan du exportera dina __appName__ projekt till GitHub, eller importera projekt från dina GitHub repon.", + "import_from_github": "Importera från GitHub", + "github_sync_error": "Ett fel uppstod vid kommunikationen med GitHub. Vänligen försök igen om en stund.", + "loading_github_repositories": "Laddar dina GitHub repon", + "select_github_repository": "Välj ett GitHub repo att importera till __appName__.", + "import_to_sharelatex": "Importera till __appName__", + "importing": "Importerar", + "github_sync": "GitHub Synk", + "checking_project_github_status": "Kontrollerar projektstatus på GitHub", + "account_not_linked_to_github": "Ditt konto är inte länkat till GitHub", + "project_not_linked_to_github": "Detta projekt är inte länkat till ett GitHub repo. Du kan skapa ett repo för det på GitHub:", + "create_project_in_github": "Skapa ett GitHub repo", + "project_synced_with_git_repo_at": "Detta projekt är synkat med GitHub repot på", + "recent_commits_in_github": "Senaste commits på GitHub", + "sync_project_to_github": "Synka projekt till GitHub", + "sync_project_to_github_explanation": "Alla ändringar du gör i __appName__ kommer att commitas och slås samman med uppdateringar i GitHub.", + "github_merge_failed": "Dina ändringar i __appName__ och GitHub kunde inte automatiskt slås samman. Vänligen gör en manuell sammanslagning av __sharelatex_branch__branch och __master_branch__branch i git. Klicka sedan nedan för att fortsätta.", + "continue_github_merge": "Jag har gjort en manuell sammanslagning. Fortsätt", + "export_project_to_github": "Exportera Projekt till GitHub", + "github_validation_check": "Vänligen kontrollera att repots namn är giltigt samt att du har tillåtelse att skapa nya repon.", + "repository_name": "Namn på Repo", + "optional": "Valfritt", + "github_public_description": "Alla kan se detta repo. Du bestämmer vem som kan commita.", + "github_commit_message_placeholder": "Commit meddelande för ändringar gjorda i __appName__...", + "merge": "Slå samman", + "merging": "Slår samman", + "github_account_is_linked": "Ditt GitHub konto är länkat.", + "unlink_github": "Koppla bort ditt GitHub konto", + "link_to_github": "Länk till ditt GitHub konto", + "github_integration": "GitHub Integration", + "github_is_premium": "GitHub synk är en premium funktion" +} \ No newline at end of file diff --git a/services/web/locales/tr.json b/services/web/locales/tr.json new file mode 100644 index 0000000000..556058f51d --- /dev/null +++ b/services/web/locales/tr.json @@ -0,0 +1,594 @@ +{ + "to_modify_your_subscription_go_to": "Aboneliğinizi değiştirmek için:", + "manage_subscription": "Abonelik", + "activate_account": "Hesap etkinleştir", + "yes_please": "Evet Lütfen!", + "nearly_activated": "__appName__ isimli hesabınızı etkinleştirmenize bir adım kaldı!", + "please_set_a_password": "Lütfen bir şifre belirleyin", + "activation_token_expired": "Aktivasyon kodunuzun süresi geçmiş, size tekrar yollayacağımız kodu kullanın.", + "activate": "Aktifleştir", + "activating": "Aktifleştiriliyor", + "ill_take_it": "Alıyorum!", + "cancel_your_subscription": "Hesabınızı iptal edin", + "no_thanks_cancel_now": "Hayır teşekkürler, hesabı iptal etmek istiyorum", + "cancel_my_account": "Hesabımı iptal et", + "sure_you_want_to_cancel": "İptal etmek istediğinizden emin misiniz?", + "i_want_to_stay": "Kalmak istiyorum", + "have_more_days_to_try": "Deneme sürenize __days__ gün daha ekleyin!", + "interested_in_cheaper_plan": "Öğrenci planı ile daha ucuz, __price__, bir teklifle ilgilenir misiniz?", + "new_group": "Yeni Grup", + "about_to_delete_groups": "Şu projeleri silmek üzeresiniz:", + "removing": "Kaldırılıyor", + "adding": "Ekleniyor", + "groups": "Gruplar", + "rename_group": "Grubu Yeniden Adlandır", + "renaming": "Değiştiriliyor", + "create_group": "Grup Oluştur", + "delete_group": "Grup Sil", + "delete_groups": "Grupları Sil", + "your_groups": "Gruplarınız", + "group_name": "Grup Adı", + "no_groups": "Grup Yok", + "Subscription": "Abonelik", + "Documentation": "Dökümantasyon", + "Universities": "Üniversiteler", + "Account Settings": "Hesap Ayarları", + "Projects": "Projeler", + "Account": "Hesap", + "global": "global", + "Terms": "Şartlar", + "Security": "Güvenlik", + "About": "Hakkında", + "editor_disconected_click_to_reconnect": "Editör bağlantısı koptu, yeniden bağlanmak için herhangi bir yere tıklayın.", + "word_count": "Kelime Sayısı", + "please_compile_pdf_before_word_count": "Kelime sayısını hesaplamadan önce lütfen projenizi derleyin", + "total_words": "Toplam Kelime", + "headers": "Başlıklar", + "math_inline": "Matematik İçerikleri", + "math_display": "Matematik Görselleri", + "connected_users": "Bağlı Kullanıcılar", + "projects": "Projeler", + "upload_project": "Proje Yükleyin", + "all_projects": "Tüm Projeler", + "your_projects": "Sizin Projeleriniz", + "shared_with_you": "Sizinle Paylaşılanlar", + "deleted_projects": "Silinen Projeler", + "templates": "Şablonlar", + "new_folder": "Yeni Klasör", + "create_your_first_project": "İlk projenizi oluşturun!", + "complete": "Tamamla", + "on_free_sl": "__appName__'in ücretsiz sürümünü kullanmaktasınız", + "upgrade": "Yükselt", + "or_unlock_features_bonus": "ya da ücretsiz olarak bazı özelliklere erişmenin bir yolu da", + "sharing_sl": "__appName__'i paylaşmaktır", + "add_to_folder": "Klasöre ekle", + "create_new_folder": "Yeni Klasör Oluştur", + "more": "Daha fazla", + "rename": "Adlandır", + "make_copy": "Kopyasını oluştur", + "restore": "Geri taşı", + "title": "Başlık", + "last_modified": "Son Değişiklik", + "no_projects": "Proje bulunmamakta", + "welcome_to_sl": "__appName__'e hoş geldiniz!", + "new_to_latex_look_at": "LaTeX'te yeni misiniz? İsterseniz başlangıç olarak", + "or": " ya da", + "or_create_project_left": "ya da ilk projenizi sol taraftan oluşturabilirsiniz.", + "thanks_settings_updated": "Teşekkürler, ayarlarınız güncellendi.", + "update_account_info": "Hesap Bilgilerini Güncelle", + "must_be_email_address": "E-posta adresi olmak zorundadır", + "first_name": "Ad", + "last_name": "Soyad", + "update": "Güncelle", + "change_password": "Şifre Değiştir", + "current_password": "Mevcut Şifreniz", + "new_password": "Yeni Şifre", + "confirm_new_password": "Yeni Şifreyi Doğrula", + "required": "gerekli", + "doesnt_match": "Uyuşmuyor", + "dropbox_integration": "Dropbox entegrasyonu", + "learn_more": "Daha fazla bilgi", + "dropbox_is_premium": "Dropbox senkronizasyonu premium bir özelliktir", + "account_is_linked": "Hesap bağlandı", + "unlink_dropbox": "Dropbox ile bağlantıyı kopar", + "link_to_dropbox": "Dropbox'a bağla", + "newsletter_info_and_unsubscribe": "Yeni özelliklerimizi tanıtmak için çoğu ay tanıtım bültenleri gönderiyoruz. Eğer bu e-postaları almak istemezseniz, dilediğiniz zaman abonelikten ayrılabilirsiniz:", + "unsubscribed": "Abonelik sonlandırıldı", + "unsubscribing": "Abonelik sonlandırılıyor", + "unsubscribe": "Aboneliği sonlandır", + "need_to_leave": "Bizden ayrılıyor musunuz?", + "delete_your_account": "Hesabınızı silin", + "delete_account": "Hesabı Sil", + "delete_account_warning_message": "Hesabınızı kalıcı olarak silmek üzeresiniz, hesabınızdaki tüm veriler, projeleriniz ve ayarlarınız da dahil olmak üzere kalıcı olarak silinecektir. Eğer silme işlemine devam etmek istiyorsanız, lütfen aşağıdaki kutuya DELETE yazınız.", + "deleting": "Siliniyor", + "delete": "Sil", + "sl_benefits_plans": "__appName__, dünyanın en kolay kullanımına sahip LaTeX editörüdür. İş arkadaşlarınızla olan çalışmalarınızı en güncel hali ile görebilir, tüm değişikliklerin kayıtlarını tutabilir ve sunduğumuz LaTeX ortamına da dünyanın her yerinden erişebilirsiniz.", + "monthly": "Aylık", + "personal": "Kişisel", + "free": "Ücretsiz", + "one_collaborator": "Yalnızca bir iş ortağı", + "collaborator": "İş ortağı", + "collabs_per_proj": "her bir proje için __collabcount__ iş ortağı", + "full_doc_history": "Tüm değişiklikler geçmişi", + "sync_to_dropbox": "Dropbox senkronizasyonu", + "start_free_trial": "Hemen Ücretsiz Deneyin!", + "professional": "Profesyonel", + "unlimited_collabs": "Sınırsız iş ortağı", + "name": "İsim", + "student": "Öğrenci", + "university": "Üniversite", + "position": "Pozisyon", + "choose_plan_works_for_you": "Lütfen size uygun __len__-günlük ücretsiz deneme planını seçin. Dilediğiniz zaman iptal edebilirsiniz.", + "interested_in_group_licence": "__appName__'i bir grup, takım ya da bölüm ile beraber kullanmayı düşünür müsünüz?", + "get_in_touch_for_details": "Ayrıntılı bilgi için iletişime geçin!", + "group_plan_enquiry": "Grup Planı Sorgulama", + "enjoy_these_features": "Tüm bu güzel özelliklerin keyfini çıkarın", + "create_unlimited_projects": "İstediğiniz kadar proje oluşturun.", + "never_loose_work": "Asla geride kalmayın, her zaman arkanızdayız.", + "access_projects_anywhere": "Projelerinize her yerden erişin.", + "log_in": "Giriş yap", + "login": "Giriş yap", + "logging_in": "Giriş yapılıyor", + "forgot_your_password": "Şifrenizi mi unuttunuz", + "password_reset": "Yeniden Şifre Tanımlama", + "password_reset_email_sent": "Şifrenizi yeniden tanımlamanız için size bir e-posta gönderildi.", + "please_enter_email": "Lütfen e-posta adresinizi giriniz", + "request_password_reset": "Yeniden şifre tanımla", + "reset_your_password": "Şifrenizi yeniden tanımlayın", + "password_has_been_reset": "Şifreniz yeniden tanımlandı", + "login_here": "Buradan giriş yapın", + "set_new_password": "Yeni şifre tanımla", + "user_wants_you_to_see_project": "__username__ adlı kullanıcı __projectname__ isimli projeyi görmenizi istiyor", + "join_sl_to_view_project": "Bu projeyi görmek için __appName__'e katılın", + "register_to_edit_template": "__templateName__ şablonunu düzenlemek için lütfen kayıt olunuz", + "already_have_sl_account": "Zaten bir __appName__ hesabınız mı var?", + "register": "Kayıt ol", + "password": "Şifre", + "registering": "Kayıt olunuyor", + "planned_maintenance": "Planlanmış Bakım", + "no_planned_maintenance": "Şu anda herhangi bir planlanmış bakım bulunmamaktadır", + "cant_find_page": "Özür dileriz, aradığınız sayfayı bulamıyoruz", + "take_me_home": "Çıkar beni buradan!", + "no_preview_available": "Özür dileriz, herhangi bir önizleme bulunmamaktadır.", + "no_messages": "Herhangi bir mesaj yok", + "send_first_message": "İlk mesajınızı gönderin", + "account_not_linked_to_dropbox": "Hesabınız, Dropbox'a bağlı değildir", + "update_dropbox_settings": "Dropbox ayarlarını güncelle", + "refresh_page_after_starting_free_trial": "Ücretsiz denemenize başladıktan sonra lütfen sayfayı yenileyin", + "checking_dropbox_status": "Dropbox'un durumu kontrol ediliyor", + "dismiss": "Reddet", + "new_file": "Yeni Dosya", + "upload_file": "Dosya Yükle", + "create": "Oluştur", + "creating": "Oluşturuluyor", + "upload_files": "Dosya(lar) Yükle", + "sure_you_want_to_delete": "{{ entity.name }} kalıcı olarak silinecektir. Silmek istediğinizden emin misiniz?", + "common": "Belirli", + "navigation": "Yol gösterici", + "editing": "Düzenleme", + "ok": "Tamam", + "source": "Kaynak", + "actions": "İşlemler", + "copy_project": "Projeyi Kopyala", + "publish_as_template": "Şablon Olarak Yayınla", + "sync": "Senkronizasyon", + "settings": "Ayarlar", + "main_document": "Ana döküman", + "off": "Kapalı", + "auto_complete": "Otomatik-Tamamlama", + "theme": "Tema", + "font_size": "Yazı Boyutu", + "pdf_viewer": "PDF Görüntüleyici", + "built_in": "Yerleşik", + "native": "yerel", + "show_hotkeys": "Kısayolları Göster", + "new_name": "Yeni Ad", + "copying": "kopyalama", + "copy": "Kopyala", + "compiling": "Derleniyor", + "click_here_to_preview_pdf": "PDF olarak önizlemek için buraya tıklayın.", + "server_error": "Sunucu Hatası", + "somthing_went_wrong_compiling": "Özür dileriz, bir şeyler ters gitti ve projeniz derlenemiyor. Lütfen bir kaç dakika sonra tekrar deneyin.", + "timedout": "Zaman aşımı", + "proj_timed_out_reason": "Özür dileriz, derleme işleminiz çok uzun sürdü ve süre aşımına uğradı. Bu sorun, yüksek çözünürlüklü görüntülerin ya da aşırı karmaşık diyagramlardan fazlalığından kaynaklanıyor olabilir.", + "no_errors_good_job": "Hiç bir hata bulunmamakta, tebrikler!", + "compile_error": "Derleme Hatası", + "generic_failed_compile_message": "Özür dileriz, LaTeX kodunuz bazı sorunlardan dolayı derlenememektedir. Daha ayrıntılı bilgi için aşağıdaki hataları kontrol edebilir ya da sonuç dökümüne bakabilirsiniz.", + "other_logs_and_files": "Diğer sonuç dökümleri & dosyalar", + "view_raw_logs": "Sonuç Dökümünü Gör", + "hide_raw_logs": "Sonuç Dökümünü Gizle", + "clear_cache": "Önbelleği temizle", + "clear_cache_explanation": "Bu, bütün gizli LaTeX dosyalarını (.aux, .bbl, etc) derleyici sunucumuzdan temizleyecektir. Referanslar ile ilgili sorun yaşamadığınız sürece genellikle bunu yapmanıza gerek yoktur.", + "clear_cache_is_safe": "Proje dosyalarınız değiştirilmeyecek ya da silinmeyecektir.", + "clearing": "Temizleniyor", + "template_description": "Şablon Bilgisi", + "project_last_published_at": "Projenizin en son yayınlandığı tarih", + "problem_talking_to_publishing_service": "Yayın hizmetimizde bir sorun oluştu, lütfen bir kaç dakika sonra tekrar deneyin", + "unpublishing": "Yayından kaldırılıyor", + "republish": "Yeniden yayınla", + "publishing": "Yayınlanıyor", + "share_project": "Projeyi Paylaş", + "this_project_is_private": "Bu, özel erişimli bir projedir ve yalnızca aşağıdaki kişiler tarafından erişilebilir.", + "make_public": "Halka Açık Hale Getir", + "this_project_is_public": "Bu, halka açık bir projedir ve URL sayesinde herkes tarafından düzenlenebilir.", + "make_private": "Özel Erişimli Hale Getir", + "can_edit": "Değişiklik Yapabilir", + "share_with_your_collabs": "İş ortaklarınızla paylaşın", + "share": "Paylaş", + "need_to_upgrade_for_more_collabs": "Daha fazla iş ortağı ekleyebilmeniz için hesabınızı yükseltmeniz gerekmektedir", + "make_project_public": "Projeyi halka açık hale getir", + "make_project_public_consequences": "Eğer projeyi halka açık hale getirirseniz, herkes projeye URL adresi sayesinde erişebilecektir.", + "allow_public_editing": "Düzenlemeyi halka açık hale getir", + "allow_public_read_only": "Sadece okuma hakkını halka açık hale getir", + "make_project_private": "Projeyi özel erişimli hale getir", + "make_project_private_consequences": "Eğer bu projeyi özel erişimli olarak tanımlarsanız sadece sizin belirlediğiniz kişiler tarafından erişilebilecektir.", + "need_to_upgrade_for_history": "Geçmiş kaydetme özelliğini kullanabilmeniz için hesabınızı yükseltmeniz gerekmektedir.", + "ask_proj_owner_to_upgrade_for_history": "Geçmiş kaydetme özelliğini kullanmak için lütfen proje sahibini bilgilendiriniz.", + "anonymous": "Anonim", + "generic_something_went_wrong": "Özür dileriz, bir şeyler ters gitti :(", + "restoring": "Onarma", + "restore_to_before_these_changes": "Değişikliklerden önceki haline geri çevir", + "profile_complete_percentage": "Profilinizin tamamlanan kısmı: %__percentval__", + "file_has_been_deleted": "__filename__ silindi", + "sure_you_want_to_restore_before": "__filename__ adlı dosyanın __date__ tarihinden önceki haline geri çevirmek istediğinizden emin misiniz?", + "rename_project": "Projeyi Yeniden Adlandır", + "about_to_delete_projects": "Şu projeleri silmek üzeresiniz:", + "about_to_leave_projects": "Şu projeleri terk etmek üzeresiniz:", + "upload_zipped_project": "Sıkıştırılmış Proje Yükle", + "upload_a_zipped_project": "Sıkıştırılmış bir proje yükle", + "your_profile": "Profiliniz", + "institution": "Enstitü", + "role": "Pozisyon", + "folders": "Klasörler", + "disconnected": "Bağlantı koptu", + "please_refresh": "Devam etmek için lütfen sayfayı yenileyin", + "lost_connection": "Bağlantı Yok", + "reconnecting_in_x_secs": "__seconds__ saniye içinde tekrar bağlanılmaya çalışılacak", + "try_now": "Şimdi Dene", + "reconnecting": "Yeniden bağlanıyor", + "saving_notification_with_seconds": "__docname__ kaydediliyor... (Değişikliklerin kaydedilmemesinin üzerinden __seconds__ geçti)", + "help_us_spread_word": "__appName__'i etrafa duyurmamıza yardım edin", + "share_sl_to_get_rewards": "__appName__'i iş arkadaşlarınız ve dostlarınız ile paylaşarak aşağıdaki özellikleri ödül olarak kazabilirsiniz", + "post_on_facebook": "Facebook'ta duyur", + "share_us_on_googleplus": "Google+ aracılığı ile paylaş", + "email_us_to_your_friends": "Dostlarınıza bizi e-posta yolu ile tanıt", + "link_to_us": "İnternet sayfanızda bizim bağlantımızı paylaş", + "direct_link": "Direk bağlantı adresi", + "sl_gives_you_free_stuff_see_progress_below": "Eğer herhangi bir kişi sizin tavsiyeniz doğrultusunda __appName__'i kullanmaya başlarsa, size teşekkür etmek için birkaç özelliği ücretsiz olarak hediye edeceğiz! Bu süreci aşağıdan takip edebilirsiniz.", + "spread_the_word_and_fill_bar": "Bizi başkalarına da tanıtarak bu çubuğu doldurabilirsiniz", + "one_free_collab": "Fazladan bir iş ortağı", + "three_free_collab": "Fazladan üç iş ortağı", + "free_dropbox_and_history": "Ücretsiz Dropbox ve Geçmiş", + "you_not_introed_anyone_to_sl": "Şuana kadar __appName__'i kimseye tanıtmadınız. Bizi paylaşın!", + "you_introed_small_number": " Şuana kadar __appName__'i __numberOfPeople__ kişiye tanıttınız. Tebrikler, acaba daha fazlası olacak mı?", + "you_introed_high_number": " Şuana kadar __appName__'i __numberOfPeople__ kişiye tanıttınız. Tebrikler!", + "link_to_sl": "__appName__ için bağlantı adresi", + "can_link_to_sl_with_html": "__appName__ bağlantısını, HTML ile, şu şekilde paylaşabilirsiniz", + "year": "yıl", + "month": "ay", + "subscribe_to_this_plan": "Bu plana kaydol", + "your_plan": "Planınız", + "your_subscription": "Aboneliğiniz", + "on_free_trial_expiring_at": "__expiresAt__ tarihinde bitecek olan deneme sürümünü kullanmaktasınız.", + "choose_a_plan_below": "Abone olmak istediğiniz planı seçin.", + "currently_subscribed_to_plan": "Şuan için__planName__ planına aboneliğiniz devam etmektedir.", + "change_plan": "Plan değiştir", + "next_payment_of_x_collectected_on_y": "Bir sonraki __paymentAmmount__ olan ödemeniz __collectionDate__ tarihinde alınacaktır", + "update_your_billing_details": "Ödeme Bilgilerini Güncelle", + "subscription_canceled_and_terminate_on_x": " Aboneliğiniz iptal edildi ve __terminateDate__ tarihinde sonlandırılacaktır. Başka herhangi bir ücret alınmayacaktır.", + "your_subscription_has_expired": "Aboneliğinizin süresi doldu.", + "create_new_subscription": "Yeni Abonelik Oluştur", + "problem_with_subscription_contact_us": "Aboneliğiniz ile ilgili bir sorun bulunmaktadır. Lütfen ayrıntılı bilgi için bizimle iletişime geçin.", + "manage_group": "Grupları Yönet", + "loading_billing_form": "Ödeme bilgileri formu yükleniyor", + "you_have_added_x_of_group_size_y": "__groupSize__ kişilik grup kontenjanınıza, __addedUsersSize__ kişi eklediniz", + "remove_from_group": "Gruptan çıkar", + "group_account": "Grup Hesabı", + "registered": "Kayıtlı", + "no_members": "Üye bulunmamaktadır", + "add_more_members": "Daha fazla üye ekleyin", + "add": "Ekle", + "thanks_for_subscribing": "Aboneliğiniz için teşekkürler!", + "your_card_will_be_charged_soon": "Kartınızdan yakında ücret tahsil edilecektir.", + "if_you_dont_want_to_be_charged": "Eğer bir daha ücret tahsil edilmesini istemiyorsanız ", + "add_your_first_group_member_now": "Grubunuza ilk üyeleri ekleyin", + "thanks_for_subscribing_you_help_sl": "__planName__ planına abone olduğunuz için teşekkürler. Sizlerin bu destekleri sayesinde __appName__ büyümeye ve gelişmeye devam etmektedir.", + "back_to_your_projects": "Projelerinize geri dönün", + "goes_straight_to_our_inboxes": "Hem bizim hem de sizin gelen kutunuza yollanır", + "need_anything_contact_us_at": "Eğer herhangi bir konuda bize ihtiyacınız olursa ve bize ulaşmak isterseniz e-posta adresimiz", + "regards": "Saygılarımızla", + "about": "Hakkında", + "comment": "Yorumlar", + "restricted_no_permission": "Üzgünüz, bu sayfaya erişmek için gerekli izniniz bulunmamaktadır.", + "online_latex_editor": "Çevrimiçi LaTeX Editörü", + "meet_team_behind_latex_editor": "En sevdiğiniz çevrimiçi LaTeX editörünün arkasındaki kişiler.", + "follow_me_on_twitter": "Beni Twitter'da takip edin", + "motivation": "Motivasyon", + "evolved": "Evrim geçirdi", + "the_easy_online_collab_latex_editor": "Kullanımı kolay, çevrimiçi, ortak çalışmaya uygun LaTeX editörü", + "get_started_now": "Hemen kullanmaya başla", + "sl_used_over_x_people_at": "__appName__'in __numberOfUsers__ kişiyi aşkın öğrenci ve akademisyen tarafından kullanıldığı yerlerden bazıları:", + "collaboration": "İş birliği", + "work_on_single_version": "Tek bir versiyon üzerinde ortaklaşa çalışın", + "view_collab_edits": "Değişiklikleri anlık olarak görün: ", + "ease_of_use": " Kullanım kolaylığı", + "no_complicated_latex_install": "Karmaşık bir LaTeX kurulumuna gerek yok", + "all_packages_and_templates": "İhtiyacınız olan tüm Paketler ve __templatesLink__ kullanıma hazır", + "document_history": "Döküman geçmişi", + "see_what_has_been": "Tüm değişiklikleri görün, ne ", + "added": "eklenmiş", + "and": "ya da ne", + "removed": "silinmiş", + "restore_to_any_older_version": "Eski bir versiyona geri çevirin", + "work_from_anywhere": "Her yerden çalışma imkanı", + "acces_work_from_anywhere": "İşlerinize dünyanın her yerinden erişin", + "work_offline_and_sync_with_dropbox": "Çevrimdışı çalışma imkanı ve dosyalarınızı Dropbox ve GitHub ile senkronize edebilme", + "over": "fazla", + "view_templates": "Şablonları görüntüleyin", + "nothing_to_install_ready_to_go": "Hiçbir karmaşık ve zor bir kuruluma ihtiyacınız yok, daha önce hiç kullanmamış olsanız bile, __start_now__. __appName__, sunucularımızda bütün bir sistem olarak çalışır ve kullanıma her an hazır olacak bir şekilde hizmet vermektedir.", + "start_using_latex_now": "hemen LaTeX'i kullanmaya başlayın", + "get_same_latex_setup": "__appName__ sayesinde LaTeX kurulumunuzu gittiğiniz her yere taşımız olacaksınız. İş arkadaşlarınız ve öğrencileriniz ile __appName__ üzerinden çalışarak, paket çakışmaları yaşamayacak ve versiyon uyumsuzluklarıyla karşılaşmayacaksınız.", + "support_lots_of_features": "Neredeyse tüm LaTeX özelliklerini destekliyoruz, görüntü ekleme, kaynakçalar, denklemler ve çok daha fazlası! __appName__ kullanarak yapabileceğiniz ilginç şeyler hakkında daha fazla bilgi almak için: __help_guides_link__", + "latex_guides": "LaTeX kılavuzları", + "reset_password": "Şifre Sıfırla", + "set_password": "Şifre Belirle", + "updating_site": "Sayfa Güncelleme", + "bonus_please_recommend_us": "Ekstra özellik - Bizi tavsiye edin", + "admin": "yönetici", + "subscribe": "Abone Ol", + "update_billing_details": "Ödeme Bilgilerini Güncelle", + "thank_you": "Teşekkürler", + "group_admin": "Grup Yöneticisi", + "all_templates": "Tüm Şablonlar", + "your_settings": "Ayarlarınız", + "maintenance": "Bakım", + "to_many_login_requests_2_mins": "Bu hesap çok fazla giriş talebinde bulundu. Lütfen tekrar giriş yapabilmek için 2 dakika bekleyin.", + "email_or_password_wrong_try_again": "E-posta adresiniz ya da şifreniz yanlış. Lütfen tekrar deneyin", + "rate_limit_hit_wait": "Limiti aşıldı. Lütfen bir süre bekledikten sonra tekrar deneyin", + "problem_changing_email_address": "E-posta adresinizi değiştirirken bir hata ile karşılaşıldı. Lütfen bir kaç dakika sonra tekrar deneyin. Eğer bu problem devam ederse bizimle iletişime geçebilirsiniz.", + "single_version_easy_collab_blurb": "__appName__, sizi iş ortaklarınız ile sürekli güncel tutar. Bu sayede onların neler yaptıklarını takip edebilirsiniz. Her dökümanın sadece bir güncel versiyonu vardır ve herkes buna erişir. Çakışma yaşamanız imkansızdır, ve çalışmalarınıza devam etmeniz için iş arkadaşlarınızın yaptığı değişiklikleri taslak olarak göndermelerini beklemenize de gerek kalmadı.", + "can_see_collabs_type_blurb": "Tek bir dökümanda birden fazla kişinin aynı anda çalışması sorun değildir. İş arkadaşlarınız neler yazdığı anlık olarak görebilir ve editörden takip edebilirsiniz.", + "work_directly_with_collabs": "İş arkadaşlarınızla beraber çalışın", + "work_with_word_users": "Word kullanıcıları ile beraber çalışın", + "work_with_word_users_blurb": "__appName__, LaTeX kullanıcısı olmayan iş arkadaşlarınızın da dökümana katkıda bulunmalarını kolaylaştırır. İlk günden katkıda bulunabilirler ve çok az LaTeX bilgisi ile devam edebilirler.", + "view_which_changes": "Hangi değişiklikler yapılmış görün", + "sl_included_history_of_changes_blurb": "__appName__, yapılan tüm değişikliklerin kimin tarafından ve ne zaman yapıldığının kaydını tutar. Bu sayede süreç ile ilgili kolay değerlendirmeler yapabilir ve iş ortaklarınızın yaptığı çalışmaları takip edebilirsiniz.", + "can_revert_back_blurb": "İş arkadaşlarınız ile yaptığınız çalışmalarda ya da kendi çalışmalarınızda bazen hatalar yapabilirsiniz. Projenin eski versiyonlarını geri getirmek oldukça basittir bu sayede yapılan değişiklikler için pişmanlık duymazsınız ve işin bozulma riski ortadan kalkmış olur.", + "start_using_sl_now": "Hemen __appName__'i kullanmaya başlayın", + "over_x_templates_easy_getting_started": "Şablon galerimizde sayısı 400'den __over__ olan __templates__ işe başlamanızı kolaylaştırabilir. Şablonlar arasında dergi makalesi, tez, CV ve daha fazlası bulunmaktadır.", + "done": "Tamam", + "change": "Değiştir", + "page_not_found": "Sayfa Bulunamadı", + "please_see_help_for_more_info": "Lütfen daha fazla bilgi için yardım rehberimize göz atın", + "this_project_will_appear_in_your_dropbox_folder_at": "Bu projenin gözükeceği Dropbox klasörü: ", + "member_of_group_subscription": "__admin_email__ tarafından yönetilen grubun bir üyesisiniz. Lütfen aboneliğinizi yönetmek için onlarla iletişime geçin.\n", + "about_henry_oswald": "Londra'da yaşayan bir yazılım mühendisidir. __appName__'in prototipini yapmıştır ve bu platformun ölçeklenebilirliğinden ve devamlılığından sorumludur. Henry, geliştirme sürecinin sürekli olarak test edilerek yenilenmesini ve __appName__kodlarının okunabilir ve kolay onarılabilir bir halde tutabilmemizi sağlar.", + "about_james_allen": "teorik fizik alanında doktora yapmaktadır ve bir LaTeX tutkunudur. İlk çevrimiçi editör olan ScribTex'i yaratmış ve __appName__'in büyümesinde büyük rol oynamıştır.", + "two_strong_principles_behind_sl": "__appName__ üzerinde yaptığımız çalışmaların arkasında iki temel prensip vardır:", + "want_to_improve_workflow_of_as_many_people_as_possible": "İş akışını daha fazla kişiye uygun hale getirecek şekilde geliştirmek istiyoruz.", + "detail_on_improve_peoples_workflow": "LaTeX, bilindiği üzere kullanımı zor ve başkalarıyla ortak çalışması güç olan bir ortamdır. Bu sorunlara çözüm getmeyi ve __appName__'in daha fazla kişi tarafından kullanılabilmesini amaçladık. Fiyatlandırmamızı her zaman makul seviyelerde tutmaya çalıştık ve __appName__'in çoğu kısmını açık kaynak kodlu bir yazılım olarak sunduk. Bu sayede herkesin, __appName__'i, kendi sunucularına da kurabilmelerine olanak sağladık.", + "want_to_create_sustainable_lasting_legacy": "Sürdürülebilir ve kalıcı bir miras haline getirmek istiyoruz.", + "details_on_legacy": "__appName__gibi ürünlerin geliştirilmesi ve bakımları çok büyük iş yükü ve zaman almaktadır, bu yüzden bunu uzun süre destekleyecek bir iş modeli bulmamız bizim için çok önemli. __appName__'in harici bir yatırıma bağlı kalmasını ve bundan kaynaklı sebeplerden de sonlanmasını istemeyiz. Bu yüzden şuan __appName__'in hem kârlı hem de sürdürülebilir bir durumda olduğunu söylemekten mutluluk duyuyoruz, ve bu şekilde de uzun süre devam etmesini ümit ediyoruz.", + "get_in_touch": "İrtibata geçin", + "want_to_hear_from_you_email_us_at": "__appName__'i kullananların her zaman fikirlerini duymak isteriz, ayrıca yaptıklarımız hakkında bilgi almak ve bizimle iletişime geçmek için: ", + "cant_find_email": "Üzgünüz ama bu kayıtlı bir e-posta adresi değildir.", + "plans_amper_pricing": "Planlar ve Fiyatlandırma", + "documentation": "Dökümantasyon", + "account": "Hesap", + "subscription": "Abonelik", + "log_out": "Çıkış Yap", + "en": "İngilizce", + "pt": "Portekizce", + "es": "İspanyolca", + "fr": "Fransızca", + "de": "Almanca", + "it": "İtalyanca", + "da": "Danca", + "sv": "İsveççe", + "no": "Norveççe", + "nl": "Flemenkçe", + "pl": "Lehçe", + "ru": "Rusça", + "uk": "Ukraynaca", + "ro": "Romence", + "click_here_to_view_sl_in_lng": "__appName__'i __lngName__ dilinde kullanmak için", + "language": "Dil", + "upload": "Yükle", + "menu": "Menü", + "full_screen": "Tam ekran", + "logs_and_output_files": "Sonuç dökümleri ve çıktılar", + "download_pdf": "PDF halini indir", + "split_screen": "Ekranı ayır", + "clear_cached_files": "Önbellek dosyalarını temizle", + "go_to_code_location_in_pdf": "PDF'deki yerin koddaki karşılığına git", + "please_compile_pdf_before_download": "Dökümanınızın PDF halini indirmeden önce lütfen derleyin", + "remove_collaborator": "İş ortağını çıkar", + "add_to_folders": "Klasörlere ekle", + "download_zip_file": "Zip Dosyasını İndir", + "price": "Fiyat", + "close": "Kapat", + "keybindings": "Tuş Yönlendirmeleri", + "restricted": "Yasaklı", + "start_x_day_trial": "__len__-günlük deneme sürümüne bugün başlayın!", + "buy_now": "Şimdi satın al!", + "cs": "Çekçe", + "view_all": "Hepsini Gör", + "terms": "Şartlar", + "privacy": "Gizlilik", + "contact": "İletişim", + "change_to_this_plan": "Bu plana geç", + "processing": "işlem yapılıyor", + "sure_you_want_to_change_plan": "Planınızı __planName__ olarak değiştirmek istediğinizden emin misiniz?", + "move_to_annual_billing": "Yıllık ödemeye geç", + "annual_billing_enabled": "Yıllık ödeme aktif", + "move_to_annual_billing_now": "Şimdi yıllık ödemeye geç", + "change_to_annual_billing_and_save": "Yıllık ödeme planın geçerek __percentage__ oranında bir kazanç sağlayabilirsiniz. Eğer şimdi bu plana geçerseniz yılda __yearlySaving__ kâr edeceksiniz.", + "missing_template_question": "Eksik şablon mu var?", + "tell_us_about_the_template": "Eğer şablon eksiğimiz olduğunu düşünüyorsanız: Şablonun bir kopyasını, şablonun __appName__ URL adresini ya da o şablonu nereden bulacağımız ile ilgili bizi bilgilendirebilirsiniz. Ayrıca lütfen, şablon hakkında ufak bir açıklama da yazınız.", + "email_us": "E-Posta atın", + "this_project_is_public_read_only": "Bu, halka açık bir projedir ve URL sayesinde herkes tarafından görülebilir ancak değiştirilemez.", + "tr": "Türkçe", + "select_files": "Dosya(ları) seçin", + "drag_files": "dosya(ları) sürükleyin", + "upload_failed_sorry": "Yükleme başarısız, özür dileriz :(", + "inserting_files": "Dosya yükleniyor...", + "password_reset_token_expired": "Şifrenizi yeniden tanımlamanız için sağlanan iznin süresi geçti. Lütfen tekrar şifre sıfırlama talep edin ve e-posta ile gelen bağlantıdan şifrenizi yeniden tanımlayın.", + "merge_project_with_github": "Projeleri GitHub ile birleştir", + "pull_github_changes_into_sharelatex": "GitHub'daki değişiklikleri __appName__'e aktar", + "push_sharelatex_changes_to_github": "__appName__'deki değişiklikleri GitHub'a aktar", + "features": "Özellikler", + "commit": "İşle", + "commiting": "İşleniyor", + "importing_and_merging_changes_in_github": "Değişiklikler GitHub'a aktarılıyor", + "upgrade_for_faster_compiles": "Daha hızlı derlemek ve derlemedeki süre aşımı limitini arttırmak için hesabınızı yükseltin", + "free_accounts_have_timeout_upgrade_to_increase": "Ücretsiz hesaplar sadece bir dakikalık süre aşımı limitine sahiptir. Bunu arttırmak için hesabınızı yükseltin.", + "learn_how_to_make_documents_compile_quickly": "Dökümanınızın nasıl daha hızlı derlenebileceği hakkında bilgi edinin", + "zh-CN": "Çince", + "cn": "Çince (Basitleştirilmiş)", + "sync_to_github": "GitHub ile senkronize et", + "sync_to_dropbox_and_github": "Dropbox ve GitHub ile senkronize et", + "project_too_large": "Proje aşırı büyük", + "project_too_large_please_reduce": "Projede çok fazla yazı bulunmaktadır, lütfen azaltmayı deneyin.", + "please_ask_the_project_owner_to_link_to_github": "Bu projenin GitHub deposu ile bağlanması için proje sahibi ile iletişime geçin", + "go_to_pdf_location_in_code": "Koddaki yerin PDF'deki karşılığına git", + "ko": "Korece", + "ja": "Japonca", + "about_brian_gough": "bir yazılım geliştiricisi ve Fermilab ve Los Alamos'ta çalışan eski bir teorik yüksek enerji fizikçisidir. Uzun yıllar boyunca TeX ve LaTeX üzerine ücretsiz yazılım dökümanları yayınlamış ve ayrıca GNU Bilimsel Kütüphanenin bakımında görev almıştır.", + "first_few_days_free": "İlk__trialLen__ gün bedava", + "every": "her", + "credit_card": "Kredi Kartı", + "credit_card_number": "Kredi Kartı numarası", + "invalid": "Hatalı", + "expiry": "Son kullanma tarihi", + "january": "Ocak", + "february": "Şubat", + "march": "Mart", + "april": "Nisan", + "may": "Mayıs", + "june": "Haziran", + "july": "Temmuz", + "august": "Ağustos", + "september": "Eylül", + "october": "Ekim", + "november": "Kasım", + "december": "Aralık", + "zip_post_code": "Posta Kodu", + "city": "Şehir", + "address": "Adres", + "coupon_code": "kupon kodu", + "country": "Ülke", + "billing_address": "Fatura Adresi", + "upgrade_now": "Şimdi Yükselt", + "state": "Eyalet", + "vat_number": "KDV (VAT) Numarası", + "you_have_joined": "__groupName__ grubuna katıldınız.", + "claim_premium_account": "__groupName__ grubundan premium hesap hakkı kazandınız.", + "you_are_invited_to_group": " __groupName__ grubuna davet edildiniz", + "account_settings": "Hesap Ayarları", + "search_projects": "Projelerde Ara", + "clone_project": "Projenin Kopyasını Oluştur", + "delete_project": "Projeyi Sil", + "download_zip": "Zip Dosyasını İndir", + "new_project": "Yeni Proje", + "blank_project": "Boş Proje", + "example_project": "Örnek Proje", + "from_template": "Şablondan", + "cv_or_resume": "CV ya da Özgeçmiş", + "cover_letter": "Ön Yazı", + "journal_article": "Dergi Makalesi", + "presentation": "Sunum", + "thesis": "Tez", + "bibliographies": "Kaynakça", + "terms_of_service": "Hizmet Şartları", + "privacy_policy": "Gizlilik Politikası", + "plans_and_pricing": "Planlar ve Fiyatlandırma", + "university_licences": "Üniversite Lisansları", + "security": "Güvenlik", + "contact_us": "İletişime geçin", + "thanks": "Teşekkürler", + "blog": "Blog", + "latex_editor": "LaTeX Editörü", + "get_free_stuff": "Ücretsiz özellikler edinin", + "chat": "Sohbet", + "your_message": "Mesajınız", + "loading": "Yükleniyor", + "connecting": "Bağlanıyor", + "recompile": "Tekrar Derle", + "download": "İndir", + "email": "E-posta", + "owner": "Sahibi", + "read_and_write": "Okuma ve Yazma", + "read_only": "Yalnızca Görüntüleyebilir", + "publish": "Yayınla", + "view_in_template_gallery": "Şablon galerisinde görüntüle", + "unpublish": "Yayından Kaldır", + "hotkeys": "Kısayollar", + "saving": "Kaydediliyor", + "cancel": "İptal", + "project_name": "Proje Adı", + "root_document": "Kök Döküman", + "spell_check": "İmla Denetimi", + "compiler": "Derleyici", + "private": "Özel", + "public": "Halka Açık", + "delete_forever": "Kalıcı Olarak Sil", + "support_and_feedback": "Destek ve Geribildirim", + "help": "Yardım", + "latex_templates": "LaTeX Şablonları", + "info": "Bilgi", + "latex_help_guide": "LaTeX yardım kılavuzu", + "choose_your_plan": "Planınızı seçin", + "indvidual_plans": "Kişisel Planlar", + "free_forever": "Her zaman ücretsiz", + "low_priority_compile": "Düşük öncelikli derleme", + "unlimited_projects": "Sınırsız Proje Sayısı", + "unlimited_compiles": "Sınırsız Derleme", + "full_history_of_changes": "Tüm yapılan değişikliklerin geçmişi", + "highest_priority_compiling": "Yüksek öncelikli derleme", + "dropbox_sync": "Dropbox Senkronizasyonu", + "beta": "Beta", + "sign_up_now": "Hemen Kaydolun", + "annual": "Yıllık", + "half_price_student": "Yarı Ücretli Öğrenci Planları", + "about_us": "Hakkımızda", + "loading_recent_github_commits": "Yapılan son işlemler yükleniyor", + "no_new_commits_in_github": "En sonki birleşmeden itibaren GitHub'da yapılmış herhangi yeni bir işlem bulunmuyor.", + "dropbox_sync_description": "__appName__ projelerinizi, Dropbox ile senkronize edin. Bu sayede __appName__ üzerinden yaptığınız değişiklikler otomatik olarak Dropbox üzerinde ve Dropbox üzerinde yapılan değişiklikler de __appName__ üzerinde işlenecektir.", + "github_sync_description": "GitHub senkronizasyonu sayesinde __appName__ projeleriniz ile GitHub depolarınız arasında bağlantı kurabilirsiniz. Bu sayede __appName__ üzerinden çevrimdışı olarak işlem yapabilir ya da bu işlemleri GitHub üzerine işleyebilirsiniz.", + "github_import_description": "GitHub senkronizasyonu sayesinde GitHub depolarınızı __appName__'e yükleyebilirsiniz. Bu sayede __appName__ üzerinden çevrimdışı olarak işlem yapabilir ya da bu işlemleri GitHub üzerine işleyebilirsiniz.", + "link_to_github_description": "GitHub'daki hesabınız ile projelerinizin senkronize olabilmesi için __appName__'e yetki vermeniz gerekmektedir.", + "unlink": "Bağlantıyı kopar", + "unlink_github_warning": "GitHub ile senkronize etmiş olduğunuz tüm projeler arasındaki bağlantı koparılacaktır ve senkronizasyon iptal edilecektir. GitHub ile olan bu bağlantıyı koparmak istediğinizden emin misiniz?", + "github_account_successfully_linked": "GitHub hesabınız ile bağlantı, başarıyla oluşturuldu.", + "github_successfully_linked_description": "Teşekkürler, GitHub hesabınız ile __appName__ arasındaki bağlantı, başarıyla oluşturuldu. Artık __appName__ projelerinizi GitHub üzerine yükleyebilir ya da GitHub depolarınızı __appName__'e yükleyebilirsiniz.", + "import_from_github": "GitHub'dan yükle", + "github_sync_error": "Üzgünüz, GitHub servisine bağlanırken bir sorunla karşılaştık. Lütfen, birkaç dakika sonra tekrar deneyin.", + "loading_github_repositories": "GitHub depolarınız yükleniyor", + "select_github_repository": "__appName__'e yüklemek istediğiniz GitHub deponuzu seçiniz", + "import_to_sharelatex": "__appName__'e yükle", + "importing": "Yükleniyor", + "github_sync": "GitHub Senkronizasyonu", + "checking_project_github_status": "Projenin GitHub'daki durumu kontrol ediliyor", + "account_not_linked_to_github": "Hesabınız ile GitHub arasında bir bağlantı oluşturulmamış", + "project_not_linked_to_github": "Bu projenin herhangi bir GitHub deposu ile bağlantısı bulunmamaktadır. GitHub'da bunun için bir depo oluşturabilirsiniz:", + "create_project_in_github": "GitHub deposu oluştur", + "project_synced_with_git_repo_at": "Bu projenin senkronizasyon halinde olduğu GitHub deposu", + "recent_commits_in_github": "GitHub'da yapılan güncel işlemler", + "sync_project_to_github": "Projeyi GitHub ile senkronize et", + "sync_project_to_github_explanation": "__appName__ üzerinden yaptığınız tüm değişiklikler GitHub üzerine işlenecek ve birleştirilecektir.", + "github_merge_failed": "__appName__ üzerinden yaptığınız değişiklikler otomatik olarak GitHub üzerinde birleştirilemedi. Lütfen, __sharelatex_branch__ dalının __master_branch__ dalı ile olan birleşimini kendiniz yapınız. Birleşimi tamamladıktan sonra devam etmek için aşağıya tıklayın.", + "continue_github_merge": "Kendim birleştirdim. Devam et", + "export_project_to_github": "Projeyi GitHub'a yükle", + "github_validation_check": "Lütfen, depo adının doğru yazıldığından ve yeni bir depo oluşturma yetkinizin olduğundan emin olunuz.", + "repository_name": "Depo Adı", + "optional": "İsteğe bağlı", + "github_public_description": "Herkes bu depoyu görüntüleyebilir. Kimlerin işlem yapabileceğini siz seçersiniz.", + "github_commit_message_placeholder": "__appName__ üzerinden yaptığınız değişiklikler için yorum giriniz...", + "merge": "Birleştir", + "merging": "Birleştiriliyor", + "github_account_is_linked": "GitHub hesabınız ile bağlantı, başarıyla oluşturuldu.", + "unlink_github": "GitHub hesabınız ile bağlantıyı koparın", + "link_to_github": "GitHub hesabınız ile bağlantı oluşturun", + "github_integration": "GitHub Entegrasyonu", + "github_is_premium": "GitHub senkronizasyonu premium bir özelliktir" +} \ No newline at end of file diff --git a/services/web/locales/zh-CN.json b/services/web/locales/zh-CN.json new file mode 100644 index 0000000000..3792d83c53 --- /dev/null +++ b/services/web/locales/zh-CN.json @@ -0,0 +1,905 @@ +{ + "trashed_projects": "已删除项目", + "archived_projects": "已归档项目", + "archive": "归档", + "best_value": "最佳性价比", + "faq_how_free_trial_works_question": "如何体验免费使用?", + "faq_change_plans_question": "之后可以更改付款方案吗?", + "faq_do_collab_need_premium_question": "我的合作者也需要高级账户吗?", + "faq_need_more_collab_question": "如果我需要更多合作者该怎么办?", + "faq_purchase_more_licenses_question": "可以为我的同事购买许可吗?", + "faq_monthly_or_annual_question": "应当选择月付还是年付方案?", + "faq_how_to_pay_question": "可以在线使用信用卡、储蓄卡、或者paypal支付吗?", + "faq_pay_by_invoice_question": "可以稍后支付吗", + "reference_search": "高级搜索", + "reference_search_info": "可以通过引用关键词搜索,高级搜索还可以用作者、题目、年份、期刊名称等搜索", + "reference_sync": "同步参考文献", + "instant_access": "马上使用__appName__", + "tagline_personal": "理想的个人项目实现", + "tagline_collaborator": "非常适合共同合作的项目", + "tagline_professional": "对多人合作多项目来说", + "tagline_student_annual": "节省更多", + "tagline_student_monthly": "对单次使用来说简直完美", + "all_premium_features": "所有高级付费功能", + "sync_dropbox_github": "与dropbox或Github同步", + "track_changes": "修订", + "tooltip_hide_pdf": "单击隐藏PDF", + "tooltip_show_pdf": "单击显示PDF", + "tooltip_hide_filetree": "单击隐藏文件树", + "tooltip_show_filetree": "单击显示文件树", + "cannot_verify_user_not_robot": "抱歉,您没有通过“我不是个机器人”验证,请检查您的防火墙或网页插件是否阻碍了您的验证。", + "uncompiled_changes": "未编译的改动", + "code_check_failed": "代码检查失败", + "code_check_failed_explanation": "您的代码有问题,无法自动编译", + "tags_slash_folders": "标签/文件夹", + "file_already_exists": "同名文件或文件夹已存在", + "import_project_to_v2": "打开项目到V2", + "open_in_v1": "在V1中打开", + "import_to_v2": "倒入到V2", + "never_mind_open_in_v1": "忽略,用V1打开", + "yes_im_sure": "我确定", + "drop_files_here_to_upload": "拖动文件到这里以上传", + "drag_here": "拖到这里", + "creating_project": "创立项目", + "select_a_zip_file": "选择一个.zip文件", + "drag_a_zip_file": "拖动.zip文件", + "v1_badge": "V1 徽章", + "v1_projects": "V1 项目列表", + "open_your_billing_details_page": "打开付款信息页面", + "try_out_link_sharing": "试用链接分享功能!", + "try_link_sharing": "试用链接分享", + "try_link_sharing_description": "通过分享链接进入项目", + "learn_more_about_link_sharing": "了解分享链接", + "link_sharing": "分享链接", + "tc_switch_everyone_tip": "为所有用户切换记录模式", + "tc_switch_user_tip": "为当前用户切换记录模式", + "tc_switch_guests_tip": "为所有分享链接用户切换记录模式", + "tc_guests": "受邀用户", + "select_all_projects": "全选", + "select_project": "选择", + "main_file_not_found": "未知主文件。", + "please_set_main_file": "请在项目菜单中选择此项目的主文件。", + "link_sharing_is_off": "链接分享已关闭,只有被邀请的用户才能浏览此项目。", + "turn_on_link_sharing": "开启通过链接分享功能。", + "link_sharing_is_on": "通过链接分享功能已开启。", + "turn_off_link_sharing": "关闭通过链接分享功能。", + "anyone_with_link_can_edit": "任何人可以通过此链接编辑此项目。", + "anyone_with_link_can_view": "任何人可以通过此链接浏览此项目。", + "turn_on_link_sharing_consequences": "当“通过链接分享”功能开启时,任何人都可以通过链接浏览或编辑此项目。", + "turn_off_link_sharing_consequences": "当“通过链接分享”功能关闭时,只有被邀请的用户可以通过链接浏览或编辑此项目。", + "autocompile_disabled": "自动编译已关闭", + "autocompile_disabled_reason": "由于服务器过载,暂时无法自动实时编译,请点击上方按钮进行编译", + "auto_compile_onboarding_description": "开启后将会进行实时编译", + "try_out_auto_compile_setting": "试用新的自动编译功能!", + "got_it": "了解", + "pdf_compile_in_progress_error": "已在另一窗口编译", + "pdf_compile_try_again": "请等待其他项目编译完成后再试", + "invalid_email": "有未验证的邮箱", + "auto_compile": "自动编译", + "on": "开", + "tc_everyone": "所有人", + "per_user_tc_title": "个人用户记录更改历史", + "you_can_use_per_user_tc": "现在您可以记录每个用户的更改记录", + "turn_tc_on_individuals": "为个人用户开启更改记录", + "keep_tc_on_like_before": "或者向全体保留", + "auto_close_brackets": "自动补全括号", + "auto_pair_delimiters": "自动补全分隔符", + "successfull_dropbox_link": "已成功链接 Dropbox,正在跳转到设置页", + "show_link": "显示链接", + "hide_link": "隐藏链接", + "aggregate_changed": "替换", + "aggregate_to": "为", + "confirm_password_to_continue": "确认密码以继续", + "confirm_password_footer": "短时间内我们将不会再要求输入密码", + "accept_all": "采纳全部", + "reject_all": "拒绝全部", + "bulk_accept_confirm": "您确认采纳__nChanges__ 个变动吗?", + "bulk_reject_confirm": "您确认拒绝__nChanges__ 个变动吗?", + "uncategorized": "未分类", + "pdf_compile_rate_limit_hit": "编译率达到限制", + "project_flagged_too_many_compiles": "因频繁编译,项目被标旗。编译上限会稍后解除。", + "reauthorize_github_account": "重新授权 GitHub 帐号", + "github_credentials_expired": "您的 Github 授权凭证已过期", + "hit_enter_to_reply": "点击确认键重试", + "add_your_comment_here": "在此添加评论", + "resolved_comments": "已折叠的评论", + "try_it_for_free": "免费体验", + "please_ask_the_project_owner_to_upgrade_to_track_changes": "请要求项目所有者升级以使用历史查询功能。", + "mark_as_resolved": "标记为已解决", + "reopen": "重新打开", + "add_comment": "添加评论", + "no_resolved_threads": "没有未解决线程", + "upgrade_to_track_changes": "升级以记录文档修改历史", + "see_changes_in_your_documents_live": "实时查看文档修改情况", + "track_any_change_in_real_time": "实时记录文档的任何修改情况", + "review_your_peers_work": "同行评议", + "accept_or_reject_each_changes_individually": "接受或拒绝修改意见", + "accept": "采纳", + "reject": "不要", + "no_comments": "没有评论", + "edit": "编辑", + "are_you_sure": "您确认吗?", + "resolve": "解决", + "reply": "回复", + "quoted_text_in": "引文内容", + "review": "审阅", + "track_changes_is_on": "修改追踪功能 开启", + "track_changes_is_off": "修改追踪功能 关闭", + "current_file": "当前文件", + "overview": "概览", + "tracked_change_added": "已添加", + "tracked_change_deleted": "已删除", + "show_all": "显示全部", + "show_less": "折叠", + "dropbox_sync_error": "Dropbox 同步错误", + "send": "发送", + "sending": "发送中", + "invalid_password": "密码错误", + "error": "错误", + "other_actions": "其他", + "send_test_email": "发送测试邮件", + "email_sent": "邮件已发送", + "create_first_admin_account": "创建首个管理员账户", + "ldap": "LDAP", + "ldap_create_admin_instructions": "输入邮箱,创建您的第一个__appName__管理员账户。这个账户对应您在LDAP系统中的账户,请使用此账户登陆系统。", + "saml": "SAML", + "saml_create_admin_instructions": "输入邮箱,创建您的第一个__appName__管理员账户。这个账户对应您在SAML系统中的账户,请使用此账户登陆系统。", + "admin_user_created_message": "管理员账户已创建, 登陆 以继续", + "status_checks": "状态检查", + "editor_resources": "编辑资源", + "checking": "检查中", + "cannot_invite_self": "不能向自己发送邀请", + "cannot_invite_non_user": "邀请发送失败。被邀人可能已有__appName__账户。", + "log_in_with": "用 __provider__ 账户登陆", + "return_to_login_page": "回到登录页", + "login_failed": "登陆失败", + "delete_account_warning_message_3": "您即将永久删除您的所有账户数据,包括您的项目和设置。请输入账户邮箱地址和密码以继续。", + "delete_account_warning_message_2": "您即将永久删除您的所有账户数据,包括您的项目和设置。请输入账户邮件地主以继续", + "your_sessions": "我的会话", + "clear_sessions_description": "这是您的账户中当前活跃的会话信息(不包含当前会话)。点击“清理会话”按钮可以退出这些会话。", + "no_other_sessions": "暂无其他活跃对话", + "ip_address": "IP地址", + "session_created_at": "会话创建于", + "clear_sessions": "清理会话", + "clear_sessions_success": "会话已清理", + "sessions": "会话", + "manage_sessions": "管理会话", + "syntax_validation": "代码检查", + "history": "历史记录", + "joining": "加入", + "open_project": "打开项目", + "files_cannot_include_invalid_characters": "文件中不能包含 * 或 /", + "invalid_file_name": "文件名无效", + "autocomplete_references": "参考文献自动补全(在 \\cite{} 中)", + "autocomplete": "自动补全", + "failed_compile_check": "您的项目中似乎含有关键性语法错误,请修改后重试", + "failed_compile_check_try": "强制编译", + "failed_compile_option_or": "或者", + "failed_compile_check_ignore": "关闭语法检查", + "compile_time_checks": "语法检查", + "stop_on_validation_error": "编译前检查语法", + "ignore_validation_errors": "忽略语法检查", + "run_syntax_check_now": "运行语法检查", + "your_billing_details_were_saved": "您的账单细节已保存", + "security_code": "安全码", + "paypal_upgrade": "如要升级,请点击下面链接按钮,用你的邮箱和密码登录到PayPal。", + "upgrade_cc_btn": "现在升级,7天后付款", + "upgrade_paypal_btn": "继续", + "notification_project_invite": "__userName__ 您是否愿意加入 __projectName__ 加入项目", + "file_restored": "您的文档 (__filename__) 已恢复。", + "file_restored_back_to_editor": "您可以返回进行修改并继续编辑。", + "file_restored_back_to_editor_btn": "返回编辑器", + "view_project": "查看项目", + "join_project": "加入项目", + "invite_not_accepted": "邀请尚未接受", + "resend": "重发", + "syntax_check": "语法检查", + "revoke_invite": "撤销邀请", + "pending": "待定", + "invite_not_valid": "项目邀请无效", + "invite_not_valid_description": "邀请已经过期。请联系项目所有者", + "accepting_invite_as": "接受邀请", + "accept_invite": "接受邀请", + "log_hint_ask_extra_feedback": "您能帮我们理解为什么该提示没有帮助吗?", + "log_hint_extra_feedback_didnt_understand": "我不理解该提示", + "log_hint_extra_feedback_not_applicable": "该解决办法对我的文档无效", + "log_hint_extra_feedback_incorrect": "无法纠正错误", + "log_hint_extra_feedback_other": "其它:", + "log_hint_extra_feedback_submit": "提交", + "if_you_are_registered": "您已经注册", + "stop_compile": "停止编译", + "terminated": "编译取消", + "compile_terminated_by_user": "“停止编译”按钮终止了这次编译,您可以在原始日志中查看关于编译停止的信息。", + "site_description": "一个简洁的在线 LaTeX 编辑器。无需安装,实时共享,版本控制,数百免费模板……", + "knowledge_base": "知识库", + "contact_message_label": "信息", + "kb_suggestions_enquiry": "是否已检查 __kbLink__ ?", + "answer_yes": "确认", + "answer_no": "否", + "log_hint_extra_info": "了解更多", + "log_hint_feedback_label": "该提示有帮助吗?", + "log_hint_feedback_gratitude": "感谢您的反馈!", + "recompile_pdf": "重新编译该PDF", + "about_paulo_reis": "是一个前端软件开发员和用户体验设计师,目前居住在葡萄牙阿威罗。Paulo有一个用户体验专业的博士学位,他致力于让人们在方方面面更便捷地掌握和实用技术:概念、测试、设计乃至实施。", + "login_or_password_wrong_try_again": "注册名或密码错误,请重试", + "manage_beta_program_membership": "管理 Beta 计划账户", + "beta_program_opt_out_action": "退出 Beta 计划", + "disable_beta": "禁用Beta版本", + "beta_program_badge_description": "在使用 __appName__ 过程中,测试功能会被这样标记:", + "beta_program_current_beta_features_description": "在Beta版本中,我们正在测试以下新功能:", + "enable_beta": "开启Beta版本", + "user_in_beta_program": "用户在参加Beta版测试", + "beta_program_already_participating": "您加入了Beta版测试", + "sharelatex_beta_program": "__appName__ Beta版项目", + "beta_program_benefits": "我们一直致力于改进 __appName__。通过加入 Beta 计划,您可以更早体验新功能,并帮助我们更好地满足您的需求。", + "beta_program_opt_in_action": "退出Beta版测试", + "conflicting_paths_found": "发现冲突路径", + "following_paths_conflict": "下面的文档和文件夹拥有冲突的相同路径", + "open_a_file_on_the_left": "打开左侧的一个文件", + "reference_error_relink_hint": "如果仍出现此错误,请尝试在此重新关联您的账户:", + "pdf_rendering_error": "PDF渲染错误", + "something_went_wrong_rendering_pdf": "渲染此PDF时出错了。", + "mendeley_reference_loading_error_expired": "Mendeley令牌过期,请重新关联您的账户", + "zotero_reference_loading_error_expired": "Zotero令牌过期,请重新关联您的账户", + "mendeley_reference_loading_error_forbidden": "无法加载Mendeley的参考文献,请重新关联您的账户后重试", + "zotero_reference_loading_error_forbidden": "无法加载Zotero的参考文献,请重新关联您的账户后重试", + "mendeley_integration": "Mendeley集成", + "mendeley_sync_description": "集成Mendeley后,您可以将mendeley的参考文献导入__appName__项目。", + "mendeley_is_premium": "Mendeley集成是一个高级功能", + "link_to_mendeley": "关联至Mendeley", + "unlink_to_mendeley": "取消关联Mendeley", + "mendeley_reference_loading": "加载Mendeley的参考文献", + "mendeley_reference_loading_success": "已加载Mendeley的参考文献", + "mendeley_reference_loading_error": "错误,无法加载Mendeley的参考文献", + "zotero_integration": "Zotero集成。", + "zotero_sync_description": "集成__appName__后,您可以将Zotero的参考文献导入__appName__项目。", + "zotero_is_premium": "Zotero集成是一个高级功能", + "link_to_zotero": "关联至Zotero", + "unlink_to_zotero": "取消关联Zotero", + "zotero_reference_loading": "加载Zotero的参考文献", + "zotero_reference_loading_success": "已加载Zotero的参考文献", + "zotero_reference_loading_error": "错误,无法加载Mendeley的参考文献", + "reference_import_button": "导入参考文献至", + "unlink_reference": "取消关联参考文献提供者", + "unlink_warning_reference": "警告:如果将账户与此提供者取消关联,您将无法把参考文献导入到项目中。", + "mendeley": "Mendeley", + "zotero": "Zotero", + "suggest_new_doc": "建议新文件", + "request_sent_thank_you": "请求已发送,谢谢。", + "suggestion": "建议", + "project_url": "受影响的项目URL", + "subject": "主题", + "confirm": "确认", + "cancel_personal_subscription_first": "您已有个人订阅。是否要取消此订阅,然后再加入群组许可?", + "delete_projects": "删除项目", + "leave_projects": "离开项目", + "delete_and_leave_projects": "删除并离开项目", + "too_recently_compiled": "此项目是最近编译的,所以已跳过此编译。", + "clsi_maintenance": "编译服务器停机维护,将很快恢复正常。", + "references_search_hint": "按CTRL-空格以搜索", + "ask_proj_owner_to_upgrade_for_references_search": "请要求项目所有者升级以使用参考文献搜索功能。", + "ask_proj_owner_to_upgrade_for_faster_compiles": "请要求项目所有者升级以取得更快的编译速度,并增加您的超时限制。", + "search_bib_files": "按作者、标题、年份搜索", + "leave_group": "退出群", + "leave_now": "现在退出", + "sure_you_want_to_leave_group": "您确定要退出该群吗?", + "notification_group_invite": "您被邀请加入 __groupName__, 点击加入。", + "search_references": "搜索此项目中的.bib文件", + "no_search_results": "没有搜索到结果", + "email_already_registered": "改邮箱已被注册", + "compile_mode": "编译模式", + "normal": "常规", + "fast": "快速", + "rename_folder": "重命名文件夹", + "delete_folder": "删除文件夹", + "about_to_delete_folder": "您即将删除下列文件夹 (里面的所有项目也会被删除)", + "to_modify_your_subscription_go_to": "如需修改您的订阅,请到", + "manage_subscription": "管理订购", + "activate_account": "激活账户", + "yes_please": "是", + "nearly_activated": "还有一步您的账户 your __appName__ account 就会被激活了!", + "please_set_a_password": "请设置密码", + "activation_token_expired": "您的激活码已经过期,您需要另外一个", + "activate": "激活", + "activating": "激活中", + "ill_take_it": "我要它!", + "cancel_your_subscription": "取消订购", + "no_thanks_cancel_now": "谢谢 - 我要现在取消", + "cancel_my_account": "取消我的订购", + "sure_you_want_to_cancel": "您确认要取消订购吗?", + "i_want_to_stay": "我要留下", + "have_more_days_to_try": "试用期增加__days__ days!", + "interested_in_cheaper_plan": "您是否对便宜点的__price__学生方案感兴趣?", + "session_expired_redirecting_to_login": "会话过期。将在__seconds__秒后重定向至登录页面", + "maximum_files_uploaded_together": "最多可同时上传__max__个文件", + "too_many_files_uploaded_throttled_short_period": "上传的文件太多,您的上传将暂停一会儿。", + "compile_larger_projects": "编译更大项目", + "upgrade_to_get_feature": "升级以获得__feature__,以及:", + "new_group": "新群", + "about_to_delete_groups": "您将删除下面的群:", + "removing": "删除", + "adding": "添加", + "groups": "群", + "rename_group": "重命名群", + "renaming": "重命名中", + "create_group": "建立群", + "delete_group": "删除群", + "delete_groups": "删除群", + "your_groups": "你的群", + "group_name": "群名", + "no_groups": "没有群", + "Subscription": "订购", + "Documentation": "文档", + "Universities": "大学", + "Account Settings": "账户设置", + "Projects": "项目", + "Account": "账户", + "global": "整体的", + "Terms": "条款", + "Security": "安全性", + "About": "关于", + "editor_disconected_click_to_reconnect": "编辑器与网络的连接已经断开,重新连接请点击任何位置。", + "word_count": "字数统计", + "please_compile_pdf_before_word_count": "请您在统计字数之前先编译您的的项目", + "total_words": "总字数", + "headers": "标题", + "math_inline": "行内数学符号", + "math_display": "数学表达式", + "connected_users": "已连接的用户", + "projects": "项目", + "upload_project": "上传项目", + "all_projects": "所有项目", + "your_projects": "您的项目", + "shared_with_you": "与您共享的", + "deleted_projects": "已删除的项目", + "templates": "模板", + "new_folder": "新建目录", + "create_your_first_project": "创建您的第一个项目!", + "complete": "完成", + "on_free_sl": "您正在使用的是免费版的 __appName__", + "upgrade": "升级", + "or_unlock_features_bonus": "或者通过以下方式解除对一些免费赠送额外功能的锁定", + "sharing_sl": "分享 __appName__", + "add_to_folder": "添加到目录", + "create_new_folder": "创建新目录", + "more": "更多的", + "rename": "重命名", + "make_copy": "制作一份拷贝", + "restore": "恢复", + "title": "标题", + "last_modified": "最近一次修改", + "no_projects": "没有任何项目", + "welcome_to_sl": "欢迎使用 __appName__!", + "new_to_latex_look_at": "刚刚接触LaTeX?看看我们的", + "or": "或者", + "or_create_project_left": "或者在左边创建您的第一个项目", + "thanks_settings_updated": "谢谢,您的设置已更新", + "update_account_info": "更新账户信息", + "must_be_email_address": "必须是电邮地址", + "first_name": "名", + "last_name": "姓", + "update": "更新", + "change_password": "更换密码", + "current_password": "正在使用的密码", + "new_password": "新密码", + "confirm_new_password": "确认新密码", + "required": "必填", + "doesnt_match": "不一致", + "dropbox_integration": "Dropbox整合", + "learn_more": "学习更多", + "dropbox_is_premium": "Dropbox同步是一个高级功能", + "account_is_linked": "账户已链接", + "unlink_dropbox": "解除与Dropbox的链接", + "link_to_dropbox": "链接到Dropbox", + "newsletter_info_and_unsubscribe": "我们会每隔几个月会发送有关可用的新功能的讯息,如果您不想接收邮件您可以随时取消订阅。", + "unsubscribed": "订阅被取消", + "unsubscribing": "正在取消订阅", + "unsubscribe": "取消订阅", + "need_to_leave": "确定要放弃?", + "delete_your_account": "删除您的账户", + "delete_account": "删除账户", + "delete_account_warning_message": "您即将永久删除您的所有账户数据,包括您的项目和设置。请输入账户邮箱以继续。", + "deleting": "正在删除", + "delete": "删除", + "sl_benefits_plans": "__appName__是世界上最易用的LaTeX编辑器。协同工作,版本跟踪,从世界上任何一个角落您都可以使用我们的LaTeX环境。", + "monthly": "每个月", + "personal": "个人", + "free": "免费", + "one_collaborator": "仅一个合作者", + "collaborator": "合作者", + "collabs_per_proj": "每个项目的__collabcount__ 个合作者", + "full_doc_history": "完整的文档历史", + "sync_to_dropbox": "同步到Dropbox", + "start_free_trial": "开始免费试用", + "professional": "专业", + "unlimited_collabs": "无限制的合作者数", + "name": "名字", + "student": "学生", + "university": "大学", + "position": "职位", + "choose_plan_works_for_you": "选择适合您的 __len__-天免费试用版。可以随时取消。", + "interested_in_group_licence": "对在群组、团队或部门中使用 __appName__ 感兴趣吗?", + "get_in_touch_for_details": "联系我们以获取更多资讯", + "group_plan_enquiry": "询问群组使用方案", + "enjoy_these_features": "享受以下这些美妙的付费功能吧!", + "create_unlimited_projects": "随心所欲的创建项目", + "never_loose_work": "有了您的支持,我们将做得更好!", + "access_projects_anywhere": "在任何地方访问您的项目", + "log_in": "登录", + "login": "登录", + "logging_in": "正在登录", + "forgot_your_password": "忘记密码", + "password_reset": "重置密码", + "password_reset_email_sent": "已给您发送邮件以完成密码重置", + "please_enter_email": "请输入您的电邮地址", + "request_password_reset": "请求重置密码", + "reset_your_password": "重置您的密码", + "password_has_been_reset": "您的密码已重置", + "login_here": "在此登录", + "set_new_password": "设置新密码", + "user_wants_you_to_see_project": "__username__ 邀请您查看 __projectname__", + "join_sl_to_view_project": "加入 __appName__ 来查看此项目", + "register_to_edit_template": "请注册以编辑 __templateName__ 模板", + "already_have_sl_account": "已经拥有 __appName__ 账户了吗?", + "register": "注册", + "password": "密码", + "registering": "正在注册", + "planned_maintenance": "计划中的维护", + "no_planned_maintenance": "目前没有维护计划", + "cant_find_page": "抱歉,没有找到您查找的页面", + "take_me_home": "我要返回!", + "no_preview_available": "抱歉,无法预览。", + "no_messages": "无消息", + "send_first_message": "发送您的第一个消息", + "account_not_linked_to_dropbox": "您的账户没有链接到Dropbox", + "update_dropbox_settings": "更新Dropbox设置", + "refresh_page_after_starting_free_trial": "请在您开始免费试用之后刷新此页面", + "checking_dropbox_status": "检查Dropbox状态", + "dismiss": "离开", + "new_file": "新建文件", + "upload_file": "上传文件", + "create": "创建", + "creating": "正在创建", + "upload_files": "上传文件", + "sure_you_want_to_delete": "您确定要永久删除以下文件吗?", + "common": "通用", + "navigation": "导航", + "editing": "正在编辑", + "ok": "好的", + "source": "源码", + "actions": "执行", + "copy_project": "复制项目", + "publish_as_template": "发布为模板", + "sync": "同步", + "settings": "设置", + "main_document": "主目录", + "off": "关闭", + "auto_complete": "自动补全", + "theme": "主题", + "font_size": "字号", + "pdf_viewer": "PDF阅读器", + "built_in": "内嵌", + "native": "本机", + "show_hotkeys": "显示快捷键", + "new_name": "新名字", + "copying": "正在复制", + "copy": "复制", + "compiling": "正在编译", + "click_here_to_preview_pdf": "点击预览PDF", + "server_error": "服务器错误", + "somthing_went_wrong_compiling": "抱歉,出错了,您的项目无法编译。请在几分钟后再试。", + "timedout": "超时", + "proj_timed_out_reason": "抱歉,您的编译超时。原因可能是存在大量高分辨率的图像,或者程序过于复杂。", + "no_errors_good_job": "没有错误,好样的!", + "compile_error": "编译错误", + "generic_failed_compile_message": "抱歉,由于一些原因,您的LaTeX代码无法编译。更多细节请检查下面报出的错误信息,或查看原始日志", + "other_logs_and_files": "其他日志或文件", + "view_raw_logs": "查看原始日志", + "hide_raw_logs": "隐藏原始日志", + "clear_cache": "清空缓存", + "clear_cache_explanation": "将从我们的编译服务器中清除所有隐藏的LaTeX文件(.aux .bbl等)。通常情况下您不需要这么做,除非您遇到了与其相关的麻烦。", + "clear_cache_is_safe": "您的项目文件不会被删除或修改", + "clearing": "正在清除", + "template_description": "模板描述", + "project_last_published_at": "您的项目最近一次被发布在", + "problem_talking_to_publishing_service": "我们的发布服务出现故障,请在几分钟后再试", + "unpublishing": "取消发布", + "republish": "重新发布", + "publishing": "正在发表", + "share_project": "共享该项目", + "this_project_is_private": "此项目是私有的,只能被下面的人访问", + "make_public": "允许公共访问", + "this_project_is_public": "此项目是公共的,可以被任何人通过URL编辑", + "make_private": "允许私有访问", + "can_edit": "可以编辑", + "share_with_your_collabs": "和您的合作者共享", + "share": "共享", + "need_to_upgrade_for_more_collabs": "您的账户需要升级方可添加更多的合作者", + "make_project_public": "允许公共访问该项目", + "make_project_public_consequences": "如果允许公共访问您的项目,任何人将可以通过URL访问它", + "allow_public_editing": "允许公共编辑", + "allow_public_read_only": "允许公共只读访问", + "make_project_private": "试该项目成为私有", + "make_project_private_consequences": "如果设定您的项目为私有,它只可以被您选定共享的人所访问。", + "need_to_upgrade_for_history": "需要升级您的账户方可使用历史功能", + "ask_proj_owner_to_upgrade_for_history": "请要求项目所有者升级账户以使用历史功能", + "anonymous": "匿名", + "generic_something_went_wrong": "抱歉,出错了:(", + "restoring": "正在恢复", + "restore_to_before_these_changes": "恢复到未更改时的版本", + "profile_complete_percentage": "您的资料完成了 __percentval__%", + "file_has_been_deleted": "__filename__ 已被删除", + "sure_you_want_to_restore_before": "您确定要恢复 __filename__ 到 __date__ 的版本?", + "rename_project": "重命名项目", + "about_to_delete_projects": "您将删除下面的项目:", + "about_to_leave_projects": "您将离开下面的项目", + "upload_zipped_project": "上传项目的压缩包", + "upload_a_zipped_project": "上传一个项目的压缩包", + "your_profile": "您的资料", + "institution": "机构", + "role": "角色", + "folders": "目录", + "disconnected": "连接已断开", + "please_refresh": "请刷新页面以继续", + "lost_connection": "丢失连接", + "reconnecting_in_x_secs": "__seconds__ 秒后重新连接", + "try_now": "立刻尝试", + "reconnecting": "正在重新连接", + "saving_notification_with_seconds": "保存 __docname__... (剩余 __seconds__ 秒)", + "help_us_spread_word": "帮助我们推广 __appName__", + "share_sl_to_get_rewards": "和您的朋友和同事分享 __appName__ 以解锁下面的奖励", + "post_on_facebook": "发布到Facebook", + "share_us_on_googleplus": "通过Google+分享", + "email_us_to_your_friends": "通过邮件分享给朋友", + "link_to_us": "从您的站点上链接到我们", + "direct_link": "直接的链接", + "sl_gives_you_free_stuff_see_progress_below": "当有人利用您的推荐开始使用 __appName__ 后,我们会给您一些 免费奖励 以表示感谢! 检查您的下面的进度。", + "spread_the_word_and_fill_bar": "传播并填入此栏", + "one_free_collab": "1个免费的合作者", + "three_free_collab": "3个免费的合作者", + "free_dropbox_and_history": "免费的Dropbox和历史功能", + "you_not_introed_anyone_to_sl": "您还没有把 __appName__ 介绍给其它人。开始吧!", + "you_introed_small_number": " 您已经把 __appName__ 介绍给了 __numberOfPeople__ 个人。太棒了,能介绍给更多人吗?", + "you_introed_high_number": " 您已经把 __appName__ 介绍给了 __numberOfPeople__ 个人。太棒了。", + "link_to_sl": "链接到 __appName__", + "can_link_to_sl_with_html": "您可以用下面的HTML链接到 __appName__:", + "year": "年", + "month": "月", + "subscribe_to_this_plan": "订购此项", + "your_plan": "您的订购", + "your_subscription": "您的提交", + "on_free_trial_expiring_at": "您正在使用免费试用版,将在 __expiresAt__.到期", + "choose_a_plan_below": "选择一个套餐", + "currently_subscribed_to_plan": "您正在选择订购 __planName__套餐。", + "change_plan": "改变套餐", + "next_payment_of_x_collectected_on_y": "__paymentAmmount__ 的下次支付时间为__collectionDate__", + "update_your_billing_details": "更新您的帐单细节", + "subscription_canceled_and_terminate_on_x": " 您的订购已被取消,将于__terminateDate__ 过期。不必支付其他费用。", + "your_subscription_has_expired": "您的订购已过期", + "create_new_subscription": "新建订购", + "problem_with_subscription_contact_us": "您的订购出现了问题。请联系我们以获得更多信息。", + "manage_group": "管理群组", + "loading_billing_form": "正在加载帐单细节表格", + "you_have_added_x_of_group_size_y": "您已经添加 __addedUsersSize__ / __groupSize__ 个可用成员", + "remove_from_group": "从群组中移除", + "group_account": "群组账户", + "registered": "已注册", + "no_members": "没有成员", + "add_more_members": "添加更多成员", + "add": "添加", + "thanks_for_subscribing": "感谢订购!", + "your_card_will_be_charged_soon": "您的银行卡不久将被扣款", + "if_you_dont_want_to_be_charged": "如果您不想再被扣款 ", + "add_your_first_group_member_now": "现在添加您的第一个组成员", + "thanks_for_subscribing_you_help_sl": "感谢您订购套餐 __planName__ 。正是由于您的支持使得 __appName__ 继续成长和进步。", + "back_to_your_projects": "返回您的项目", + "goes_straight_to_our_inboxes": "直接发送到我们的电邮收件箱", + "need_anything_contact_us_at": "您有任何需要,请直接联系我们", + "regards": "感谢", + "about": "关于", + "comment": "评论", + "restricted_no_permission": "受限,抱歉您没有权限访问此页面", + "online_latex_editor": "在线LaTeX编辑器", + "meet_team_behind_latex_editor": "和您最喜欢的在线LaTeX编辑器的团队接触", + "follow_me_on_twitter": "加我的Twitter", + "motivation": "动机", + "evolved": "衍生产品", + "the_easy_online_collab_latex_editor": "易用、在线、协同合作的LaTeX编辑器", + "get_started_now": "立即开始", + "sl_used_over_x_people_at": "已有来自以下学校的超过 __numberOfUsers__ 学生和学者在使用 __appName__", + "collaboration": "合作", + "work_on_single_version": "在单一版本上合作", + "view_collab_edits": "查看合作者的编辑 ", + "ease_of_use": " 易于使用", + "no_complicated_latex_install": "不需要复杂的LaTeX安装", + "all_packages_and_templates": "包含所有您所需要的包和__templatesLink__", + "document_history": "文档历史", + "see_what_has_been": "看到了什么 ", + "added": "已添加", + "and": "和", + "removed": "已被移除", + "restore_to_any_older_version": "回滚到任意历史版本", + "work_from_anywhere": "在任何地点使用", + "acces_work_from_anywhere": "从世界上任何地点使用", + "work_offline_and_sync_with_dropbox": "离线使用通过Dropbox和GitHub同步您的文件", + "over": "超过", + "view_templates": "预览模板", + "nothing_to_install_ready_to_go": "您的安装不会有任何的复杂和困难,并且您可以__start_now__,即使您从来没见过它。 __appName__ 运行在我们的服务器上,提供了一个完整的、随时可以使用的LaTeX环境。", + "start_using_latex_now": "立即使用LaTex", + "get_same_latex_setup": "您到任何地方都可以用 __appName__ 实现LaTeX的功能。由于您和您的同事和学生可以在 __appName__ 上共同工作,不会出现版本不一致和包冲突的情况。", + "support_lots_of_features": "我们支持了几乎所有的LaTeX功能,包括插入图片、参考文献、公式以及更多!在__help_guides_link__中查看所有目前所有 __appName__ 可以做的事情", + "latex_guides": "LaTex手册", + "reset_password": "重置密码", + "set_password": "设置密码", + "updating_site": "升级站点", + "bonus_please_recommend_us": "奖励 - 请推荐我们", + "admin": "管理员", + "subscribe": "提交", + "update_billing_details": "更新帐单细节", + "thank_you": "谢谢您", + "group_admin": "群组管理员", + "all_templates": "所有模板", + "your_settings": "您的设置", + "maintenance": "维护", + "to_many_login_requests_2_mins": "您的账户尝试登录次数过多。请等待2分钟后再试", + "email_or_password_wrong_try_again": "您的邮件地址或密码不正确。请重试", + "rate_limit_hit_wait": "速度限制。请等会再试", + "problem_changing_email_address": "无法更改您的email地址。请您过一会儿重试。如果问题持续,请联系我们。", + "single_version_easy_collab_blurb": "__appName__ 确保您和您的合作者是同步的,并且知道他们在做什么。每个文档只有一个单一的主版本,每个人都可以访问。因改变而出现冲突是不可能的,并且您可以继续工作而不必等待您的合作者发送的最新版本。", + "can_see_collabs_type_blurb": "如果多个人想要同时一起完成一份文档是没有问题的。您可以在编辑器中直接看到您的合作者在哪打字,并且对文档的改变会直接立即显示在您的屏幕上。", + "work_directly_with_collabs": "和您的合作者直接合作", + "work_with_word_users": "和Word使用者一起工作", + "work_with_word_users_blurb": "__appName__ 是如此易于上手以至于您可以邀请非LaTeX的合作者来直接对您的LaTeX文档做出贡献。他们一开始就可以工作,并且随着接下来的使用能够不费力地学会少量的LaTeX知识。", + "view_which_changes": "查看哪些被更改了", + "sl_included_history_of_changes_blurb": "__appName__能够保存您做过的所有更改,从而你可以看到有谁在何时做过何种修改。 这使得您可以非常容易的和您的合作者保持同一进度,并且可以允许您回顾最近的工作。", + "can_revert_back_blurb": "无论是合作项目或者个人项目,有时候出现错误是难免的。 在__appName__中恢复早期版本很简单,这样就降低了失误的风险。", + "start_using_sl_now": "立即开始使用 __appName__", + "over_x_templates_easy_getting_started": "我们有 __over__ 400 __templates__供您使用,因此无论您要写期刊论文,毕业论文,简历或者其它的,都非常容易。", + "done": "完成", + "change": "改变", + "page_not_found": "找不到页面", + "please_see_help_for_more_info": "了解更多信息请参看我们的帮助手册", + "this_project_will_appear_in_your_dropbox_folder_at": "此项目将显示在您的Dropbox的目录 ", + "member_of_group_subscription": "您是由__admin_email__管理下的团体认购中的一员。请联系他们来管理您的认购。\n", + "about_henry_oswald": "是居住在伦敦的一名软件工程师。他构建了 __appName__ 的原型,并且一直负责构建一个稳定并具有上升空间到平台。Henry是测试驱动开发的强烈拥护者,并且督促我们保持 __appName__ 代码始终整洁且易于维护。", + "about_james_allen": "拥有理论物理学博士学位并且对LaTeX充满热情。他开发了最早的在线LaTeX编辑器中的一个,ScribTeX,并且在新技术开发中起了很大作用。正是有了这些新技术, __appName__ 才得以面世。", + "two_strong_principles_behind_sl": "我们关于 __appName__ 的工作背后有两个非常强烈的推动原则:", + "want_to_improve_workflow_of_as_many_people_as_possible": "我们想要完善尽可能多的人的工作流程", + "detail_on_improve_peoples_workflow": "LaTeX一向以极其难用著称,且非常难以合作使用。 我们相信我们已经研发了一些非常有效的方案来帮助人们解决困难,并且我们保证__appName__会对尽可能多的人开放。 我们一直尝试保持公道的价格,并且公布了 __appName__ 的大部分的代码做为开源代码。", + "want_to_create_sustainable_lasting_legacy": "我们想要创造一个可持续的和持久的传统", + "details_on_legacy": "发展和维护像 __appName__ 一样的产品需要大量的时间和工作,所以我们能找到一个商业模式以得到长期的支持是十分重要的。我们不想 __appName__ 依赖于外来的基金或者由于商业模式的失败而消失。我们很高兴得告诉大家,现在 __appName__ 是可持续的、盈利的,并且预期能够长期盈利。", + "get_in_touch": "联系", + "want_to_hear_from_you_email_us_at": "我们喜欢倾听任何使用 __appName__ 以及想知道我们在做什么的人。您可以和我们联系 ", + "cant_find_email": "邮箱尚未注册,抱歉。", + "plans_amper_pricing": "套餐 & 价格", + "documentation": "文档", + "account": "账户", + "subscription": "订购", + "log_out": "退出", + "en": "英语", + "pt": "葡萄牙语", + "es": "西班牙语", + "fr": "法语", + "de": "德语", + "it": "意大利语", + "da": "丹麦语", + "sv": "瑞典语", + "no": "挪威语", + "nl": "荷兰语", + "pl": "波兰语", + "ru": "俄罗斯语", + "uk": "乌克兰语", + "ro": "罗马尼亚语", + "click_here_to_view_sl_in_lng": "点此以__lngName__ 使用 __appName__", + "language": "语言", + "upload": "上传", + "menu": "菜单", + "full_screen": "全屏", + "logs_and_output_files": "日志和生成的文件", + "download_pdf": "下载PDF", + "split_screen": "分屏", + "clear_cached_files": "清除缓存文件", + "go_to_code_location_in_pdf": "转到PDF中的位置", + "please_compile_pdf_before_download": "请在下载PDF之前编译您的项目", + "remove_collaborator": "移除合作者", + "add_to_folders": "添加到目录", + "download_zip_file": "下载ZIP格式文件", + "price": "价格", + "close": "关闭", + "keybindings": "组合键", + "restricted": "受限的", + "start_x_day_trial": "开始您的__len__天免费试用之旅", + "buy_now": "现在购买!", + "cs": "捷克语", + "view_all": "预览所有", + "terms": "条款", + "privacy": "隐私", + "contact": "联系", + "change_to_this_plan": "该为这个订购项", + "processing": "处理中", + "sure_you_want_to_change_plan": "您确定想要改变套餐为 __planName__?", + "move_to_annual_billing": "转为包年套餐", + "annual_billing_enabled": "包年套餐已启用", + "move_to_annual_billing_now": "立即转为包年套餐", + "change_to_annual_billing_and_save": "包年套餐立省 __percentage__ . 现在选择每年立省 __yearlySaving__ 。", + "missing_template_question": "模板不全?", + "tell_us_about_the_template": "如果我们模板中没有您要找的,请您发给我们您的模版,该模版的 __appName__ 网址,或者告诉我们哪里可以找到您要的模版。此外,请您简单描述一下该模版的用处。", + "email_us": "电邮我们", + "this_project_is_public_read_only": "该项目是公开的,任何人都可以通过该URL查看,但是不能编辑。", + "tr": "土耳其语", + "select_files": "选取文件", + "drag_files": "拖动文件", + "upload_failed_sorry": "抱歉,上传失败。", + "inserting_files": "正在插入文件", + "password_reset_token_expired": "您的密码重置链接已过期。请申请新的密码重置email,并按照email中的链接操作。", + "merge_project_with_github": "将项目与GitHub合并", + "pull_github_changes_into_sharelatex": "将GitHub中的更改调入 __appName__", + "push_sharelatex_changes_to_github": "将 __appName__ 中的更改推送到GitHub", + "features": "功能", + "commit": "交付", + "commiting": "交付中", + "importing_and_merging_changes_in_github": "正在导入合并GitHub中的更改", + "upgrade_for_faster_compiles": "升级以取得更快的编译速度,并增加您的超时限制。", + "free_accounts_have_timeout_upgrade_to_increase": "免费账户有一分钟的超时限制。升级以增加超时限制。", + "learn_how_to_make_documents_compile_quickly": "了解如何更快的编译您的文档", + "zh-CN": "中文", + "cn": "中文 (简体)", + "sync_to_github": "同步到 GitHub", + "sync_to_dropbox_and_github": "同步到 Dropbox 和 GitHub", + "project_too_large": "项目太大", + "project_too_large_please_reduce": "这个项目文本过多,请减少后再试。", + "please_ask_the_project_owner_to_link_to_github": "请让项目的拥有者将该项目链接到一个GitHub存储库", + "go_to_pdf_location_in_code": "转到PDF中对应的位置", + "ko": "韩语", + "ja": "日语", + "about_brian_gough": "是一名软件工程师及 Fermilab 和 Los Alamos的前任理论高能物理学家。多年来,他用TeX和LaTeX出版了很多自由软件的使用手册,并且是GNU科学图书馆的一名维护人员。", + "first_few_days_free": "前__trialLen__ 天免费", + "every": "每个", + "credit_card": "信用卡", + "credit_card_number": "信用卡号码", + "invalid": "无效的", + "expiry": "过期日期", + "january": "一月", + "february": "二月", + "march": "三月", + "april": "四月", + "may": "五月", + "june": "六月", + "july": "七月", + "august": "八月", + "september": "九月", + "october": "十月", + "november": "十一月", + "december": "十二月", + "zip_post_code": "邮编", + "city": "城市", + "address": "地址", + "coupon_code": "优惠券号码", + "country": "国家", + "billing_address": "账单地址", + "upgrade_now": "现在升级", + "state": "州", + "vat_number": "增值税号", + "you_have_joined": "你已经加入 __groupName__", + "claim_premium_account": "你已经获得由__groupName__提供的高级账户权限", + "you_are_invited_to_group": "您被邀请加入__groupName__", + "you_can_claim_premium_account": "你可以通过验证你的电子邮箱来获得由 __groupName__ 提供的高级账户权限", + "not_now": "稍后", + "verify_email_join_group": "验证电子邮箱并加入群", + "check_email_to_complete_group": "请查看您的电子邮件以便成功加入该群", + "verify_email_address": "验证电子邮箱", + "group_provides_you_with_premium_account": "__groupName__ 为你提供了一个高级账户。验证你的电子邮箱来升级你的账户。", + "check_email_to_complete_the_upgrade": "请查看您的电子邮件以完成升级", + "email_link_expired": "电子邮件链接已过期,请申请一个新的链接。", + "services": "服务", + "about_shane_kilkelly": "是居住在爱丁堡的软件开发员。 Shane 积极主张函数式编程和测试驱动开发,且以设计高质量软件而引以为豪。", + "this_is_your_template": "这是从你的项目提取的模版", + "links": "链接", + "account_settings": "账户设置", + "search_projects": "搜索项目", + "clone_project": "克隆项目", + "delete_project": "删除项目", + "download_zip": "下载Zip压缩包", + "new_project": "创建新项目", + "blank_project": "空白项目", + "example_project": "样例项目", + "from_template": "从模板导入", + "cv_or_resume": "简历", + "cover_letter": "附信", + "journal_article": "期刊文章", + "presentation": "幻灯片", + "thesis": "论文", + "bibliographies": "参考文献", + "terms_of_service": "服务条款", + "privacy_policy": "隐私政策", + "plans_and_pricing": "套餐及价格", + "university_licences": "大学许可证", + "security": "安全性", + "contact_us": "联系我们", + "thanks": "谢谢", + "blog": "博客", + "latex_editor": "LeTeX编辑器", + "get_free_stuff": "免费获取", + "chat": "聊天", + "your_message": "您的信息", + "loading": "正在加载", + "connecting": "正在连接", + "recompile": "重新编译", + "download": "下载", + "email": "电邮", + "owner": "拥有者", + "read_and_write": "读/写", + "read_only": "只读", + "publish": "发布", + "view_in_template_gallery": "在模板区预览", + "unpublish": "未出版", + "hotkeys": "快捷键", + "saving": "正在保存", + "cancel": "取消", + "project_name": "项目名称", + "root_document": "根目录", + "spell_check": "拼写检查", + "compiler": "编译器", + "private": "私有", + "public": "公共", + "delete_forever": "永远删除", + "support_and_feedback": "支持和反馈", + "help": "帮助", + "latex_templates": "LeTeX模板", + "info": "信息", + "latex_help_guide": "LeTeX帮助指南", + "choose_your_plan": "选择您的支付方案", + "indvidual_plans": "个人方案", + "free_forever": "永久免费", + "low_priority_compile": "低的编译优先级", + "unlimited_projects": "项目无限制", + "unlimited_compiles": "编译无限制", + "full_history_of_changes": "改动的所有历史记录", + "highest_priority_compiling": "最高编译优先级", + "dropbox_sync": "Dropbox同步", + "beta": "试用版", + "sign_up_now": "现在注册", + "annual": "每年", + "half_price_student": "学生半价", + "about_us": "关于我们", + "loading_recent_github_commits": "正在装载最近的提交", + "no_new_commits_in_github": "自上次合并后GitHub未收到新的提交", + "dropbox_sync_description": "保持您的 __appName__ 项目与您的Dropbox同步。SharaLaTeX中的更改将被自动发送到Dropbox,反之亦然。", + "github_sync_description": "通过与GitHub同步,你可以将您的__appName__项目关联到GitHub的存储库,从 __appName__ 创建新的提交,并与线下或者GitHub中的提交合并。", + "github_import_description": "通过与GitHub同步,你可以将GitHub的存储库导入 __appName__,从 __appName__ 创建新的提交,并与线下或者GitHub中的提交合并。", + "link_to_github_description": "您需要授权 __appName__ 访问您的GitHub账户,从而允许我们同步您的项目。", + "unlink": "取消关联", + "unlink_github_warning": "任何您已经同步到GitHub的项目将被切断联系,并且不再保持与GitHub同步。您确定要取消与您的GitHub账户的关联吗?", + "github_account_successfully_linked": "GitHub账户已经成功关联。", + "github_successfully_linked_description": "谢谢,您已成功建立了您的GitHub账户与 __appName__ 的关联。您现在可以导出您的 __appName__ 项目到GitHub,或者从您的GitHub存储困导入项目。", + "import_from_github": "从GitHub导入", + "github_sync_error": "抱歉,与我们的GitHub服务器连接出错。请稍后重试。", + "loading_github_repositories": "正在读取您的GitHub存储库", + "select_github_repository": "选取要导入 __appName__ 的GitHub存储库", + "import_to_sharelatex": "导入 __appName__", + "importing": "正在倒入", + "github_sync": "GitHub同步", + "checking_project_github_status": "正在检查GitHub中的项目状态", + "account_not_linked_to_github": "您的帐号未与GitHub关联", + "project_not_linked_to_github": "该项目未与GitHub任一存储库关联。您可以在GitHub中为该项目创建一个存储库:", + "create_project_in_github": "创建一个GitHub存储库", + "project_synced_with_git_repo_at": "该项目已与GitHub存储库同步,时间为", + "recent_commits_in_github": "GitHub中最近的提交", + "sync_project_to_github": "同步项目到GitHub", + "sync_project_to_github_explanation": "您在 __appName__ 中所做的任何更改将被交付并与GitHub中任何升级合并。", + "github_merge_failed": "您在 __appName__ 和GitHub中的更改未能自动合并。请您手动将the __sharelatex_branch__ branch合并到git中的the __master_branch__ branch。当您手动合并完成后,点击下面继续。", + "continue_github_merge": "我已经手动合并。继续", + "export_project_to_github": "将项目导出到GitHub", + "github_validation_check": "请检查存储库的名字是否已被占用,且您有权限创建存储库。", + "repository_name": "存储库名称", + "optional": "可选的", + "github_public_description": "任何人都可以看到该存储库。您可以选择谁有权提交。", + "github_commit_message_placeholder": "为 __appName__ 中的更改提交信息", + "merge": "合并", + "merging": "正在合并", + "github_account_is_linked": "您的GitHub账户已经成功关联。", + "unlink_github": "取消与您的GitHub账户的关联", + "link_to_github": "建立与您的GitHub账户的关联", + "github_integration": "GitHub 整合", + "github_is_premium": "与GitHub同步是一项付费功能" +} \ No newline at end of file diff --git a/services/web/package-lock.json b/services/web/package-lock.json index 902c0e1f1b..303ed436ca 100644 --- a/services/web/package-lock.json +++ b/services/web/package-lock.json @@ -7441,24 +7441,6 @@ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, - "cookies": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/cookies/-/cookies-0.8.0.tgz", - "integrity": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==", - "dev": true, - "requires": { - "depd": "~2.0.0", - "keygrip": "~1.1.0" - }, - "dependencies": { - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true - } - } - }, "copy-concurrently": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", @@ -12801,29 +12783,37 @@ } }, "i18next": { - "version": "1.10.6", - "resolved": "https://registry.npmjs.org/i18next/-/i18next-1.10.6.tgz", - "integrity": "sha512-dWqoNEjzG+Dxgm0gxJlSsNu/PUn6d8wXmCEsY1mJgwCsTE/5hac29krq92IPpj59dKypD59bMJyNAd0VYvvIXw==", - "dev": true, + "version": "19.6.3", + "resolved": "https://registry.npmjs.org/i18next/-/i18next-19.6.3.tgz", + "integrity": "sha512-eYr98kw/C5z6kY21ti745p4IvbOJwY8F2T9tf/Lvy5lFnYRqE45+bppSgMPmcZZqYNT+xO0N0x6rexVR2wtZZQ==", "requires": { - "cookies": ">= 0.2.2", - "i18next-client": "1.10.3", - "json5": "^0.2.0" + "@babel/runtime": "^7.10.1" }, "dependencies": { - "json5": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/json5/-/json5-0.2.0.tgz", - "integrity": "sha512-jzu3hxGhztAzldgKTbsW240mtPIgR6foddu9HqQgpv0ML2RcjE0mjyLro0XE92YAQYpTpcByY80vVzlKOM64xA==", - "dev": true + "@babel/runtime": { + "version": "7.11.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.11.2.tgz", + "integrity": "sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "regenerator-runtime": { + "version": "0.13.7", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", + "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" } } }, - "i18next-client": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/i18next-client/-/i18next-client-1.10.3.tgz", - "integrity": "sha512-f0Hmy8ES4B5+PolvMbu9TyATA8Sc9klHW9QwDGNTwqoN8A090BECCz3/e6yePF/HNDvAQgwTxpGQgA3+qfWTeA==", - "dev": true + "i18next-fs-backend": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/i18next-fs-backend/-/i18next-fs-backend-1.0.7.tgz", + "integrity": "sha512-aAZ3rvshe1Zbl6JSCWrWWqbZS5JpmVNG+84YqLcgdYcm9uAxzw4xWxnA/a3044Nm2PKXE62CT+pIZjk7OEYtTw==" + }, + "i18next-http-middleware": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/i18next-http-middleware/-/i18next-http-middleware-3.0.2.tgz", + "integrity": "sha512-h6n6+4k6EbYjtACPSslEkpf3Qf404QpENGb87auMSA77QBna9dUBWNAzG3jmqzK9cV4p8ZjsQTrwMzu+xyYaXw==" }, "iconv-lite": { "version": "0.4.24", @@ -14527,15 +14517,6 @@ "resolved": "https://registry.npmjs.org/keycode/-/keycode-2.2.0.tgz", "integrity": "sha1-PQr1bce4uOXLqNCpfxByBO7CKwQ=" }, - "keygrip": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/keygrip/-/keygrip-1.1.0.tgz", - "integrity": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==", - "dev": true, - "requires": { - "tsscmp": "1.0.6" - } - }, "killable": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", @@ -16102,7 +16083,7 @@ "mongojs": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/mongojs/-/mongojs-2.4.0.tgz", - "integrity": "sha512-QqqJ06x5EBBG121dxXbm0kQ8mNVAOGMeG3RKbNvtbiFez5EhCTMDUikYcsa0V9tphlvsheO5riMHcXHxW0q3lw==", + "integrity": "sha1-8of7/UV/7fWItakBHmhRPZ3TK/s=", "requires": { "each-series": "^1.0.0", "mongodb": "^2.0.45", @@ -16117,7 +16098,7 @@ "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, "readable-stream": { "version": "2.3.3", @@ -24310,35 +24291,11 @@ } } }, - "translations-sharelatex": { - "version": "git+https://github.com/sharelatex/translations-sharelatex.git#8f54a92ba9fbdef2ba6cfc530cc6d7110cd18b52", - "from": "git+https://github.com/sharelatex/translations-sharelatex.git#master", - "dev": true, - "requires": { - "i18next": "^19.6.3" - }, - "dependencies": { - "async": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", - "requires": { - "lodash": "^4.17.14" - } - } - } - }, "tslib": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==" }, - "tsscmp": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", - "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==", - "dev": true - }, "tty-browserify": { "version": "0.0.0", "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", diff --git a/services/web/package.json b/services/web/package.json index 0d956c9dc1..f2950fc6fa 100644 --- a/services/web/package.json +++ b/services/web/package.json @@ -78,6 +78,9 @@ "handlebars": "^4.7.6", "helmet": "^3.22.0", "http-proxy": "^1.18.0", + "i18next": "^19.6.3", + "i18next-fs-backend": "^1.0.7", + "i18next-http-middleware": "^3.0.2", "isomorphic-unfetch": "^3.0.0", "jquery": "^2.2.4", "json2csv": "^4.3.3", @@ -206,7 +209,6 @@ "sinon-mongoose": "^2.3.0", "terser-webpack-plugin": "^2.3.6", "timekeeper": "^2.2.0", - "translations-sharelatex": "git+https://github.com/sharelatex/translations-sharelatex.git#master", "val-loader": "^1.1.1", "webpack": "^4.43.0", "webpack-cli": "^3.3.11", diff --git a/services/web/scripts/translations/download.js b/services/web/scripts/translations/download.js new file mode 100644 index 0000000000..af0951f6fd --- /dev/null +++ b/services/web/scripts/translations/download.js @@ -0,0 +1,59 @@ +const { promises: fs } = require('fs') +const oneSky = require('@brainly/onesky-utils') +const sanitizeHtml = require('sanitize-html') + +async function run() { + try { + // The recommended OneSky set-up appears to require an API request to + // generate files on their side, which you could then request and use. We + // only have 1 such file that appears to be misnamed (en-US, despite our + // translations being marked as GB) and very out-of-date. + // However by requesting the "multilingual file" for this file, we get all + // of the translations + const content = await oneSky.getMultilingualFile({ + apiKey: process.env.ONE_SKY_PUBLIC_KEY, + secret: process.env.ONE_SKY_PRIVATE_KEY, + projectId: '25049', + fileName: 'en-US.json' + }) + const json = JSON.parse(content) + + for (const [code, lang] of Object.entries(json)) { + for (let [key, value] of Object.entries(lang.translation)) { + // Handle multi-line strings as arrays by joining on newline + if (Array.isArray(value)) { + value = value.join('\n') + } + lang.translation[key] = sanitize(value) + } + + await fs.writeFile( + `../../locales/${code}.json`, + JSON.stringify(lang.translation, null, 2) + ) + } + + // Copy files, so we have appropriate dialects + await fs.copyFile('../../locales/en-GB.json', '../../locales/en-US.json') + await fs.copyFile('../../locales/en-GB.json', '../../locales/en.json') + await fs.copyFile('../../locales/zh-CN.json', '../../locales/cn.json') + } catch (error) { + console.error(error) + process.exit(1) + } +} +run() + +function sanitize(input) { + return sanitizeHtml(input, { + allowedTags: ['b', 'strong', 'a', 'code'], + allowedAttributes: { + a: ['href', 'class'] + }, + textFilter(text) { + return text + .replace(/\{\{/, '{{') + .replace(/\}\}/, '}}') + } + }) +} diff --git a/services/web/scripts/translations/package-lock.json b/services/web/scripts/translations/package-lock.json new file mode 100644 index 0000000000..95e988dc86 --- /dev/null +++ b/services/web/scripts/translations/package-lock.json @@ -0,0 +1,544 @@ +{ + "requires": true, + "lockfileVersion": 1, + "dependencies": { + "@brainly/onesky-utils": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@brainly/onesky-utils/-/onesky-utils-1.4.1.tgz", + "integrity": "sha512-Vi4u1xGUxS0IKqNZkHsgrd9z53/6P3oqdCV6Ao7O9itScnYjXfy00tZoagmAbrLtqbwsI4O08HjVQ2aYwW5vSg==", + "requires": { + "md5": "^2.0.0", + "request": "^2.88.0", + "request-promise": "^4.2.2" + } + }, + "ajv": { + "version": "6.12.3", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.3.tgz", + "integrity": "sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.1.tgz", + "integrity": "sha512-zg7Hz2k5lI8kb7U32998pRRFin7zJlkfezGJjUc2heaD4Pw2wObakCDVzkKztTm/Ln7eiVvYsjqak0Ed4LkMDA==" + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=" + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=" + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "domelementtype": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.1.tgz", + "integrity": "sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ==" + }, + "domhandler": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.0.0.tgz", + "integrity": "sha512-eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw==", + "requires": { + "domelementtype": "^2.0.1" + } + }, + "domutils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.1.0.tgz", + "integrity": "sha512-CD9M0Dm1iaHfQ1R/TI+z3/JWp/pgub0j4jIQKH89ARR4ATAV2nbaOQS5XxU9maJP5jHaPdDDQSEHuE2UmpUTKg==", + "requires": { + "dom-serializer": "^0.2.1", + "domelementtype": "^2.0.1", + "domhandler": "^3.0.0" + } + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "entities": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz", + "integrity": "sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "htmlparser2": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-4.1.0.tgz", + "integrity": "sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^3.0.0", + "domutils": "^2.0.0", + "entities": "^2.0.0" + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "lodash": { + "version": "4.17.20", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", + "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==" + }, + "md5": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "requires": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, + "mime-db": { + "version": "1.44.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", + "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==" + }, + "mime-types": { + "version": "2.1.27", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz", + "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", + "requires": { + "mime-db": "1.44.0" + } + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, + "parse-srcset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-srcset/-/parse-srcset-1.0.2.tgz", + "integrity": "sha1-8r0iH2zJcKk42IVWq8WJyqqiveE=" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "postcss": { + "version": "7.0.32", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz", + "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + } + }, + "request-promise": { + "version": "4.2.6", + "resolved": "https://registry.npmjs.org/request-promise/-/request-promise-4.2.6.tgz", + "integrity": "sha512-HCHI3DJJUakkOr8fNoCc73E5nU5bqITjOYFMDrKHYOXWXrgD/SBaC7LjwuPymUprRyuF06UK7hd/lMHkmUXglQ==", + "requires": { + "bluebird": "^3.5.0", + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + } + }, + "request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", + "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", + "requires": { + "lodash": "^4.17.19" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "sanitize-html": { + "version": "1.27.3", + "resolved": "https://registry.npmjs.org/sanitize-html/-/sanitize-html-1.27.3.tgz", + "integrity": "sha512-79tcPlgJ3fuK0/TtUCIBdPeQSvktTSTJP9O/dzrteaO98qw5UV6CATh3ZyPjUzv1LtNjHDlhbq9XOXiKf0zA1w==", + "requires": { + "htmlparser2": "^4.1.0", + "lodash": "^4.17.15", + "parse-srcset": "^1.0.2", + "postcss": "^7.0.27" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, + "uri-js": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", + "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", + "requires": { + "punycode": "^2.1.0" + } + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + } + } +} diff --git a/services/web/scripts/translations/package.json b/services/web/scripts/translations/package.json new file mode 100644 index 0000000000..20d0d31693 --- /dev/null +++ b/services/web/scripts/translations/package.json @@ -0,0 +1,6 @@ +{ + "dependencies": { + "@brainly/onesky-utils": "^1.4.0", + "sanitize-html": "^1.27.1" + } +} diff --git a/services/web/test/unit/src/infrastructure/TranslationsTests.js b/services/web/test/unit/src/infrastructure/TranslationsTests.js new file mode 100644 index 0000000000..e0deeafc7a --- /dev/null +++ b/services/web/test/unit/src/infrastructure/TranslationsTests.js @@ -0,0 +1,175 @@ +const { expect } = require('chai') +const SandboxedModule = require('sandboxed-module') + +const MODULE_PATH = '../../../../app/src/infrastructure/Translations.js' + +describe('Translations', function() { + beforeEach(function() { + this.translations = SandboxedModule.require(MODULE_PATH, { + requires: { + 'settings-sharelatex': { + i18n: { + subdomainLang: { + www: { lngCode: 'en', url: 'www.sharelatex.com' }, + fr: { lngCode: 'fr', url: 'fr.sharelatex.com' }, + da: { lngCode: 'da', url: 'da.sharelatex.com' } + } + } + } + } + }) + + this.req = { + originalUrl: "doesn'tmatter.sharelatex.com/login", + headers: { + 'accept-language': '' + } + } + this.res = { + getHeader: () => {}, + setHeader: () => {} + } + }) + + describe('translate', function() { + beforeEach(function(done) { + this.req.url = 'www.sharelatex.com/login' + this.translations.expressMiddleware(this.req, this.res, done) + }) + + it('works', function() { + expect(this.req.i18n.t('give_feedback')).to.equal('Give feedback') + }) + + it('has translate alias', function() { + expect(this.req.i18n.translate('give_feedback')).to.equal('Give feedback') + }) + }) + + describe('interpolation', function() { + beforeEach(function(done) { + this.req.url = 'www.sharelatex.com/login' + this.translations.expressMiddleware(this.req, this.res, done) + }) + + it('works', function() { + expect( + this.req.i18n.t('please_confirm_email', { + emailAddress: 'foo@example.com' + }) + ).to.equal( + 'Please confirm your email foo@example.com by clicking on the link in the confirmation email ' + ) + }) + + it('handles dashes after interpolation', function() { + // This translation string has a problematic interpolation followed by a + // dash: `__len__-day` + expect( + this.req.i18n.t('faq_how_does_free_trial_works_answer', { + appName: 'Overleaf', + len: '5' + }) + ).to.equal( + 'You get full access to your chosen Overleaf plan during your 5-day free trial. There is no obligation to continue beyond the trial. Your card will be charged at the end of your 5 day trial unless you cancel before then. You can cancel via your subscription settings.' + ) + }) + + it('disables escaping', function() { + expect( + this.req.i18n.t('admin_user_created_message', { + link: 'http://google.com' + }) + ).to.equal( + 'Created admin user, Log in here to continue' + ) + }) + }) + + describe('query string detection', function() { + it('sets the language to french if the setLng query string is fr', function(done) { + this.req.originalUrl = 'www.sharelatex.com/login?setLng=fr' + this.req.url = 'www.sharelatex.com/login' + this.req.query = { setLng: 'fr' } + this.req.headers.host = 'www.sharelatex.com' + this.translations.expressMiddleware(this.req, this.res, () => { + this.translations.setLangBasedOnDomainMiddleware( + this.req, + this.res, + () => { + expect(this.req.lng).to.equal('fr') + done() + } + ) + }) + }) + }) + + describe('setLangBasedOnDomainMiddleware', function() { + it('should set the lang to french if the domain is fr', function(done) { + this.req.url = 'fr.sharelatex.com/login' + this.req.headers.host = 'fr.sharelatex.com' + this.translations.expressMiddleware(this.req, this.res, () => { + this.translations.setLangBasedOnDomainMiddleware( + this.req, + this.res, + () => { + expect(this.req.lng).to.equal('fr') + done() + } + ) + }) + }) + + it('ignores domain if setLng query param is set', function(done) { + this.req.originalUrl = 'fr.sharelatex.com/login?setLng=en' + this.req.url = 'fr.sharelatex.com/login' + this.req.query = { setLng: 'en' } + this.req.headers.host = 'fr.sharelatex.com' + this.translations.expressMiddleware(this.req, this.res, () => { + this.translations.setLangBasedOnDomainMiddleware( + this.req, + this.res, + () => { + expect(this.req.lng).to.equal('en') + done() + } + ) + }) + }) + + describe('showUserOtherLng', function() { + it('should set showUserOtherLng=true if the detected lang is different to subdomain lang', function(done) { + this.req.headers['accept-language'] = 'da, en-gb;q=0.8, en;q=0.7' + this.req.url = 'fr.sharelatex.com/login' + this.req.headers.host = 'fr.sharelatex.com' + this.translations.expressMiddleware(this.req, this.res, () => { + this.translations.setLangBasedOnDomainMiddleware( + this.req, + this.res, + () => { + expect(this.req.showUserOtherLng).to.equal('da') + done() + } + ) + }) + }) + + it('should not set showUserOtherLng if the detected lang is the same as subdomain lang', function(done) { + this.req.headers['accept-language'] = 'da, en-gb;q=0.8, en;q=0.7' + this.req.url = 'da.sharelatex.com/login' + this.req.headers.host = 'da.sharelatex.com' + this.translations.expressMiddleware(this.req, this.res, () => { + this.translations.setLangBasedOnDomainMiddleware( + this.req, + this.res, + () => { + expect(this.req.showUserOtherLng).to.not.exist + done() + } + ) + }) + }) + }) + }) +})