diff --git a/app/controllers/auth/setup_controller.rb b/app/controllers/auth/setup_controller.rb index 46c5f2958174c3b853c7c5886f27ff0e6c6c406e..40916d2887702c7d6e5681e018a210bf05ece947 100644 --- a/app/controllers/auth/setup_controller.rb +++ b/app/controllers/auth/setup_controller.rb @@ -10,15 +10,7 @@ class Auth::SetupController < ApplicationController skip_before_action :require_functional! - def show - flash.now[:notice] = begin - if @user.pending? - I18n.t('devise.registrations.signed_up_but_pending') - else - I18n.t('devise.registrations.signed_up_but_unconfirmed') - end - end - end + def show; end def update # This allows updating the e-mail without entering a password as is required @@ -26,14 +18,13 @@ class Auth::SetupController < ApplicationController # that were not confirmed yet if @user.update(user_params) - redirect_to auth_setup_path, notice: I18n.t('devise.confirmations.send_instructions') + @user.resend_confirmation_instructions unless @user.confirmed? + redirect_to auth_setup_path, notice: I18n.t('auth.setup.new_confirmation_instructions_sent') else render :show end end - helper_method :missing_email? - private def require_unconfirmed_or_pending! @@ -51,8 +42,4 @@ class Auth::SetupController < ApplicationController def user_params params.require(:user).permit(:email) end - - def missing_email? - truthy_param?(:missing_email) - end end diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 9dc8bba2d7ee02ef22567b09e164a0498f1474db..828688b04d5efd786bb0282a2653f7b9186a9c33 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -117,6 +117,10 @@ module ApplicationHelper content_tag(:i, nil, attributes.merge(class: class_names.join(' '))) end + def check_icon + content_tag(:svg, tag(:path, 'fill-rule': 'evenodd', 'clip-rule': 'evenodd', d: 'M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z'), xmlns: 'http://www.w3.org/2000/svg', viewBox: '0 0 20 20', fill: 'currentColor') + end + def visibility_icon(status) if status.public_visibility? fa_icon('globe', title: I18n.t('statuses.visibilities.public')) diff --git a/app/javascript/styles/mastodon/forms.scss b/app/javascript/styles/mastodon/forms.scss index 7d4bde5e92aafc0f73ac47c6d6527deb4f9c3a47..dc52bcd87d88888d3c70499910190ad44c92c3da 100644 --- a/app/javascript/styles/mastodon/forms.scss +++ b/app/javascript/styles/mastodon/forms.scss @@ -1112,3 +1112,89 @@ code { white-space: nowrap; } } + +.progress-tracker { + display: flex; + align-items: center; + padding-bottom: 30px; + margin-bottom: 30px; + + li { + flex: 0 0 auto; + position: relative; + } + + .separator { + height: 2px; + background: $ui-base-lighter-color; + flex: 1 1 auto; + + &.completed { + background: $highlight-text-color; + } + } + + .circle { + box-sizing: border-box; + position: relative; + width: 30px; + height: 30px; + border-radius: 50%; + border: 2px solid $ui-base-lighter-color; + flex: 0 0 auto; + display: flex; + align-items: center; + justify-content: center; + + svg { + width: 16px; + } + } + + .label { + position: absolute; + font-size: 14px; + font-weight: 500; + color: $secondary-text-color; + padding-top: 10px; + text-align: center; + width: 100px; + left: 50%; + transform: translateX(-50%); + } + + li:first-child .label { + left: auto; + inset-inline-start: 0; + text-align: start; + transform: none; + } + + li:last-child .label { + left: auto; + inset-inline-end: 0; + text-align: end; + transform: none; + } + + .active .circle { + border-color: $highlight-text-color; + + &::before { + content: ''; + width: 10px; + height: 10px; + border-radius: 50%; + background: $highlight-text-color; + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + } + } + + .completed .circle { + border-color: $highlight-text-color; + background: $highlight-text-color; + } +} diff --git a/app/views/auth/registrations/new.html.haml b/app/views/auth/registrations/new.html.haml index 0d8fd800f96bb9bbc3bc4e4591ab5596843a25a4..4df0f95d51977e4c66471ebb4bbe28280b9d4e4e 100644 --- a/app/views/auth/registrations/new.html.haml +++ b/app/views/auth/registrations/new.html.haml @@ -5,6 +5,8 @@ = render partial: 'shared/og', locals: { description: description_for_sign_up } = simple_form_for(resource, as: resource_name, url: registration_path(resource_name), html: { novalidate: false }) do |f| + = render 'auth/shared/progress', stage: 'details' + %h1.title= t('auth.sign_up.title', domain: site_hostname) %p.lead= t('auth.sign_up.preamble') @@ -18,7 +20,7 @@ .fields-group = f.simple_fields_for :account do |ff| = ff.input :display_name, wrapper: :with_label, label: false, required: false, input_html: { 'aria-label': t('simple_form.labels.defaults.display_name'), autocomplete: 'off', placeholder: t('simple_form.labels.defaults.display_name') } - = ff.input :username, wrapper: :with_label, label: false, required: true, input_html: { 'aria-label': t('simple_form.labels.defaults.username'), autocomplete: 'off', placeholder: t('simple_form.labels.defaults.username'), pattern: '[a-zA-Z0-9_]+', maxlength: 30 }, append: "@#{site_hostname}", hint: false + = ff.input :username, wrapper: :with_label, label: false, required: true, input_html: { 'aria-label': t('simple_form.labels.defaults.username'), autocomplete: 'off', placeholder: t('simple_form.labels.defaults.username'), pattern: '[a-zA-Z0-9_]+', maxlength: 30 }, append: "@#{site_hostname}" = f.input :email, placeholder: t('simple_form.labels.defaults.email'), required: true, input_html: { 'aria-label': t('simple_form.labels.defaults.email'), autocomplete: 'username' }, hint: false = f.input :password, placeholder: t('simple_form.labels.defaults.password'), required: true, input_html: { 'aria-label': t('simple_form.labels.defaults.password'), autocomplete: 'new-password', minlength: User.password_length.first, maxlength: User.password_length.last }, hint: false = f.input :password_confirmation, placeholder: t('simple_form.labels.defaults.confirm_password'), required: true, input_html: { 'aria-label': t('simple_form.labels.defaults.confirm_password'), autocomplete: 'new-password' }, hint: false @@ -26,9 +28,11 @@ = f.input :website, as: :url, wrapper: :with_label, label: t('simple_form.labels.defaults.honeypot', label: 'Website'), required: false, input_html: { 'aria-label': t('simple_form.labels.defaults.honeypot', label: 'Website'), autocomplete: 'off' } - if approved_registrations? && !@invite.present? + %p.lead= t('auth.sign_up.manual_review', domain: site_hostname) + .fields-group = f.simple_fields_for :invite_request, resource.invite_request || resource.build_invite_request do |invite_request_fields| - = invite_request_fields.input :text, as: :text, wrapper: :with_block_label, required: Setting.require_invite_text + = invite_request_fields.input :text, as: :text, wrapper: :with_block_label, required: Setting.require_invite_text, label: false, hint: false = hidden_field_tag :accept, params[:accept] diff --git a/app/views/auth/registrations/rules.html.haml b/app/views/auth/registrations/rules.html.haml index 8e7a90cbeb9eafbd605ce1ac3789c7af1414accf..aa16ab957360e533d267b9379e6fabe7347bab55 100644 --- a/app/views/auth/registrations/rules.html.haml +++ b/app/views/auth/registrations/rules.html.haml @@ -5,6 +5,8 @@ = render partial: 'shared/og', locals: { description: description_for_sign_up } .simple_form + = render 'auth/shared/progress', stage: 'rules' + %h1.title= t('auth.rules.title') %p.lead= t('auth.rules.preamble', domain: site_hostname) diff --git a/app/views/auth/setup/show.html.haml b/app/views/auth/setup/show.html.haml index 1a6611ceb6853f2bb9b9a9ad7b1062704095b6fd..913b0c9132934b7500bea9501ffb215e6d988d86 100644 --- a/app/views/auth/setup/show.html.haml +++ b/app/views/auth/setup/show.html.haml @@ -1,20 +1,22 @@ - content_for :page_title do = t('auth.setup.title') -- if missing_email? - = simple_form_for(@user, url: auth_setup_path) do |f| - = render 'shared/error_messages', object: @user += simple_form_for(@user, url: auth_setup_path) do |f| + = render 'auth/shared/progress', stage: 'confirm' - .fields-group - %p.hint= t('auth.setup.email_below_hint_html') + %h1.title= t('auth.setup.title') + %p.lead= t('auth.setup.email_settings_hint_html', email: content_tag(:strong, @user.email)) - .fields-group - = f.input :email, required: true, hint: false, input_html: { 'aria-label': t('simple_form.labels.defaults.email'), autocomplete: 'off' } + = render 'shared/error_messages', object: @user - .actions - = f.submit t('admin.accounts.change_email.label'), class: 'button' -- else - .simple_form - %p.hint= t('auth.setup.email_settings_hint_html', email: content_tag(:strong, @user.email)) + %p.lead + %strong= t('auth.setup.link_not_received') + %p.lead= t('auth.setup.email_below_hint_html') + + .fields-group + = f.input :email, required: true, hint: false, input_html: { 'aria-label': t('simple_form.labels.defaults.email'), autocomplete: 'off' } + + .actions + = f.submit t('auth.resend_confirmation'), class: 'button' .form-footer= render 'auth/shared/links' diff --git a/app/views/auth/shared/_links.html.haml b/app/views/auth/shared/_links.html.haml index f078e2f7ece318953d1df5f0a31e013213f9d609..757ef0a0907edae692986db3d50e7defe329408b 100644 --- a/app/views/auth/shared/_links.html.haml +++ b/app/views/auth/shared/_links.html.haml @@ -14,5 +14,5 @@ - if controller_name != 'confirmations' && (!user_signed_in? || !current_user.confirmed? || current_user.unconfirmed_email.present?) %li= link_to t('auth.didnt_get_confirmation'), new_user_confirmation_path - - if user_signed_in? && controller_name != 'setup' + - if user_signed_in? %li= link_to t('auth.logout'), destroy_user_session_path, data: { method: :delete } diff --git a/app/views/auth/shared/_progress.html.haml b/app/views/auth/shared/_progress.html.haml new file mode 100644 index 0000000000000000000000000000000000000000..578f62fa9c77f2f0beefa9fc860f485775f960c0 --- /dev/null +++ b/app/views/auth/shared/_progress.html.haml @@ -0,0 +1,25 @@ +- progress_index = { rules: 0, details: 1, confirm: 2 }[stage.to_sym] + +%ol.progress-tracker + %li{ class: progress_index.positive? ? 'completed' : 'active' } + .circle + - if progress_index.positive? + = check_icon + .label= t('auth.progress.rules') + %li.separator{ class: progress_index.positive? ? 'completed' : nil } + %li{ class: [progress_index > 1 && 'completed', progress_index == 1 && 'active'] } + .circle + - if progress_index > 1 + = check_icon + .label= t('auth.progress.details') + %li.separator{ class: progress_index > 1 ? 'completed' : nil } + %li{ class: [progress_index > 2 && 'completed', progress_index == 2 && 'active'] } + .circle + - if progress_index > 2 + = check_icon + .label= t('auth.progress.confirm') + - if approved_registrations? + %li.separator{ class: progress_index > 2 ? 'completed' : nil } + %li + .circle + .label= t('auth.progress.review') diff --git a/config/locales/en.yml b/config/locales/en.yml index fa7fb6be083b323b4a6e32ff14df34ae0d7aec1c..e5b30d7e3868def52cb5cd84a014f13fbe76dbeb 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -125,8 +125,8 @@ en: removed_header_msg: Successfully removed %{username}'s header image resend_confirmation: already_confirmed: This user is already confirmed - send: Resend confirmation email - success: Confirmation email successfully sent! + send: Resend confirmation link + success: Confirmation link successfully sent! reset: Reset reset_password: Reset password resubscribe: Resubscribe @@ -988,7 +988,7 @@ en: prefix_invited_by_user: "@%{name} invites you to join this server of Mastodon!" prefix_sign_up: Sign up on Mastodon today! suffix: With an account, you will be able to follow people, post updates and exchange messages with users from any Mastodon server and more! - didnt_get_confirmation: Didn't receive confirmation instructions? + didnt_get_confirmation: Didn't receive a confirmation link? dont_have_your_security_key: Don't have your security key? forgot_password: Forgot your password? invalid_reset_password_token: Password reset token is invalid or expired. Please request a new one. @@ -1001,12 +1001,17 @@ en: migrate_account_html: If you wish to redirect this account to a different one, you can <a href="%{path}">configure it here</a>. or_log_in_with: Or log in with privacy_policy_agreement_html: I have read and agree to the <a href="%{privacy_policy_path}" target="_blank">privacy policy</a> + progress: + confirm: Confirm e-mail + details: Your details + review: Our review + rules: Accept rules providers: cas: CAS saml: SAML register: Sign up registration_closed: "%{instance} is not accepting new members" - resend_confirmation: Resend confirmation instructions + resend_confirmation: Resend confirmation link reset_password: Reset password rules: accept: Accept @@ -1016,13 +1021,16 @@ en: security: Security set_new_password: Set new password setup: - email_below_hint_html: If the below e-mail address is incorrect, you can change it here and receive a new confirmation e-mail. - email_settings_hint_html: The confirmation e-mail was sent to %{email}. If that e-mail address is not correct, you can change it in account settings. - title: Setup + email_below_hint_html: Check your spam folder, or request another one. You can correct your e-mail address if it's wrong. + email_settings_hint_html: Click the link we sent you to verify %{email}. We'll wait right here. + link_not_received: Didn't get a link? + new_confirmation_instructions_sent: You will receive a new e-mail with the confirmation link in a few minutes! + title: Check your inbox sign_in: preamble_html: Sign in with your <strong>%{domain}</strong> credentials. If your account is hosted on a different server, you will not be able to log in here. title: Sign in to %{domain} sign_up: + manual_review: Sign-ups on %{domain} go through manual review by our moderators. To help us process your registration, write a bit about yourself and why you want an account on %{domain}. preamble: With an account on this Mastodon server, you'll be able to follow any other person on the network, regardless of where their account is hosted. title: Let's get you set up on %{domain}. status: diff --git a/config/locales/simple_form.an.yml b/config/locales/simple_form.an.yml index 10671134d418b3a5211a9ff60ede7ecb7df530db..4d008fa42a3f5db8e2973881bac7f21b75d88d66 100644 --- a/config/locales/simple_form.an.yml +++ b/config/locales/simple_form.an.yml @@ -59,7 +59,6 @@ an: setting_show_application: L'aplicación que utiliza vusté pa publicar publicacions s'amostrará en a vista detallada d'as suyas publicacions setting_use_blurhash: Los gradientes se basan en as colors d'as imachens amagadas pero fendo borrosos los detalles setting_use_pending_items: Amagar nuevos estaus dezaga d'un clic en cuenta de desplazar automaticament lo feed - username: Lo tuyo nombre d'usuario será solo en %{domain} whole_word: Quan la parola clau u frase ye nomás alfanumerica, nomás será aplicau si concuerda con tota la parola domain_allow: domain: Este dominio podrá obtener datos d'este servidor y los datos dentrants serán procesaus y archivados diff --git a/config/locales/simple_form.ar.yml b/config/locales/simple_form.ar.yml index 61befb9e64d89af839b2ebaae8ad34aeb129c7b8..449af0f0a68404668bde7a37e1f19d45848aa365 100644 --- a/config/locales/simple_form.ar.yml +++ b/config/locales/simple_form.ar.yml @@ -59,7 +59,6 @@ ar: setting_show_application: سيÙعرَض اسم التطبيق الذي تستخدمه عند النشر ÙÙŠ العرض المÙصّل لمنشوراتك setting_use_blurhash: الألوان التدرّجية مبنية على ألوان المرئيات المخÙية ولكنها تØجب كاÙØ© التÙاصيل setting_use_pending_items: إخÙاء تØديثات الخط وراء نقرة بدلًا Ù…ÙÙ† التمرير التلقائي للتدÙÙ‚ - username: اسم المستخدم الخاص بك سو٠يكون Ùريدا Ù…ÙÙ† نوعه على %{domain} whole_word: إذا كانت الكلمة أو العبارة مكونة من أرقام ÙˆØرو٠Ùقط سو٠يتم تطبيقها Ùقط عند مطابقة الكلمة ككل domain_allow: domain: سيكون بإمكان هذا النطاق جلب البيانات من هذا الخادم ومعالجة وتخزين البيانات الواردة منه diff --git a/config/locales/simple_form.ast.yml b/config/locales/simple_form.ast.yml index 9e97d51f243f54f61693da0e57f8716d51c381f6..1b159e2dc460f6123023b4d12e6b248bed435bdf 100644 --- a/config/locales/simple_form.ast.yml +++ b/config/locales/simple_form.ast.yml @@ -35,7 +35,6 @@ ast: setting_noindex: Afeuta al perfil públicu ya a les páxines de los artÃculos setting_show_application: L'aplicación qu'uses pa espublizar apaez na vista detallada de los tos artÃculos setting_use_blurhash: Los dilÃos básense nos colores del contenÃu multimedia anubrÃu mas desenfonca los detalles - username: 'El nome d''usuariu va ser únicu en: %{domain}' featured_tag: name: 'Equà tán dalgunes de les etiquetes qu''usesti apocayá:' form_admin_settings: diff --git a/config/locales/simple_form.be.yml b/config/locales/simple_form.be.yml index 4a2c532ce6773635eb230280c5a078c9640afdf7..f4e46fa0f6f62caa59312c9e1d42a793f2bc88e5 100644 --- a/config/locales/simple_form.be.yml +++ b/config/locales/simple_form.be.yml @@ -59,7 +59,6 @@ be: setting_show_application: Праграма, праз Ñкую вы Ñтвараеце допіÑÑ‹, будзе паказвацца Ñž падрабÑзнаÑцÑÑ… пра допіÑÑ‹ setting_use_blurhash: Градыенты заÑнаваны на колерах Ñхаваных выÑÑž, але размываюць дÑталі setting_use_pending_items: Схаваць абнаўленні Ñтужкі за клікам замеÑÑ‚ аўтаматычнага Ð¿Ñ€Ð°ÐºÑ€ÑƒÑ‡Ð²Ð°Ð½Ð½Ñ Ñтужкі - username: Ваша Ñ–Ð¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальніка будзе ўнікальным на %{domain} whole_word: Калі ключавое Ñлова ці фраза Ñкладаецца толькі з літар Ñ– лічбаў, Ñно будзе ўжытае толькі калі Ñупадае з уÑім Ñловам domain_allow: domain: ГÑÑ‚Ñ‹ дамен зможа атрымліваць Ð´Ð°Ð½Ñ‹Ñ Ð· гÑтага Ñервера. Ð”Ð°Ð½Ñ‹Ñ Ð· гÑтага дамену будуць Ð°Ð¿Ñ€Ð°Ñ†Ð°Ð²Ð°Ð½Ñ‹Ñ Ð´Ñ‹ Ð·Ð°Ñ…Ð°Ð²Ð°Ð½Ñ‹Ñ diff --git a/config/locales/simple_form.bg.yml b/config/locales/simple_form.bg.yml index e84edc50da54e6f8f50f34eb8862dcad0241d746..b611d65fd0c2a0574b0cc6680d1e771536a2d2c0 100644 --- a/config/locales/simple_form.bg.yml +++ b/config/locales/simple_form.bg.yml @@ -59,7 +59,6 @@ bg: setting_show_application: Приложението, което ползвате за публикуване, ще Ñе показва в подробноÑтите на публикациÑта ви setting_use_blurhash: Преливането е въз оÑнова на цветовете на Ñкритите визуализации, но Ñе замъглÑват подробноÑтите setting_use_pending_items: Да Ñе показват обновÑÐ²Ð°Ð½Ð¸Ñ Ð½Ð° чаÑовата Ð¾Ñ Ñамо Ñлед щракване вмеÑто автоматично превъртане на инфоканала - username: Вашето потребителÑко име ще е неповторимо в %{domain} whole_word: Ðко ключовата дума или фраза е Ñамо буквеноцифрена, то ще Ñе приложи Ñамо, ако Ñъвпадне Ñ Ñ†Ñлата дума domain_allow: domain: Домейнът ще може да извлича данни от този Ñървър и входÑщите данни от него ще Ñе обработÑÑ‚ и ÑъхранÑÑ‚ diff --git a/config/locales/simple_form.ca.yml b/config/locales/simple_form.ca.yml index bcabca0344e6c8c59246713ee4d1d6fea36f7b6a..821600f5d256931728a296e5c6a6371e1a80d74c 100644 --- a/config/locales/simple_form.ca.yml +++ b/config/locales/simple_form.ca.yml @@ -59,7 +59,6 @@ ca: setting_show_application: L'aplicació que fas servir per a publicar es mostrarà a la vista detallada dels teus tuts setting_use_blurhash: Els degradats es basen en els colors de les imatges ocultes, però n'enfosqueixen els detalls setting_use_pending_items: Amaga les actualitzacions de la lÃnia de temps després de fer un clic, en lloc de desplaçar-les automà ticament - username: El teu nom d'usuari serà únic a %{domain} whole_word: Quan la paraula clau o la frase sigui només alfanumèrica, s'aplicarà si coincideix amb la paraula sencera domain_allow: domain: Aquest domini podrà obtenir dades d’aquest servidor i les dades entrants d’aquests seran processades i emmagatzemades diff --git a/config/locales/simple_form.ckb.yml b/config/locales/simple_form.ckb.yml index 9ce9ac065545ad3a7c1b6fef7cef650fb607d6a4..e523450201b37d1b79c95358f52ed22ca9592034 100644 --- a/config/locales/simple_form.ckb.yml +++ b/config/locales/simple_form.ckb.yml @@ -51,7 +51,6 @@ ckb: setting_show_application: بەرنامەیەک Ú©Û• بە یارمەتیت توت دەکەیت، Ù„Û• دیمەنی وردی توتەکان پیشان دەدرێت setting_use_blurhash: سێبەرەکان Ù„Û• سەر بنەمای ڕەنگەکانی بەکارهاتوو Ù„Û• ÙˆÛŽÙ†Û• داشاراوەکان دروست دەبن بەڵام وردەزانیاری ÙˆÛŽÙ†Û• تێیدا ڕوون نییە setting_use_pending_items: لەجیاتی ئەوەی بە خۆکارانە کێشان هەبێت Ù„Û• نووسراوەکان بە کرتەیەک بەڕۆژبوونی پێرستی نووسراوەکان بشارەوە - username: ناوی بەکارهێنەری ئێوە لەسەر %{domain} یەکتا دەبێت whole_word: کاتێک کلیل‌وشە بریتییە Ù„Û• ژمارە Ùˆ پیت، تنەها کاتێک پەیدا دەبێت Ú©Û• Ù„Û•Ú¯Û•Úµ گشتی وشە Ù„Û• Ù†ÛŽÙˆ دەقەکە هاوئاهەنگ بێت، Ù†Û• تەنها Ù„Û•Ú¯Û•Úµ بەشێک Ù„Û• وشە domain_allow: domain: ئەم دۆمەینە دەتوانێت دراوە Ù„Û• ئەم ڕاژە وەربگرێت Ùˆ دراوەی ئەم دۆمەینە لێرە ڕێکدەخرین Ùˆ پاشکەوت دەکرێن diff --git a/config/locales/simple_form.co.yml b/config/locales/simple_form.co.yml index 79e5837d4b89885f9558f8d8945ea93f5cca2c69..b03ff4a092b44890aff513aa0643d845ab62b52a 100644 --- a/config/locales/simple_form.co.yml +++ b/config/locales/simple_form.co.yml @@ -49,7 +49,6 @@ co: setting_show_application: L'applicazione chì voi utilizate per mandà statuti sarà affissata indè a vista ditagliata di quelli setting_use_blurhash: I digradati blurhash sò basati nant'à i culori di u ritrattu piattatu ma senza i ditagli setting_use_pending_items: Clicchi per messe à ghjornu i statuti invece di fà sfilà a linea autumaticamente - username: U vostru cugnome sarà unicu nant'à %{domain} whole_word: Quandu a parolla o a frasa sana hè alfanumerica, sarà applicata solu s'ella currisponde à a parolla sana domain_allow: domain: Stu duminiu puderà ricuperà i dati di stu servore è i dati ch'affaccanu da quallà saranu trattati è cunservati diff --git a/config/locales/simple_form.cs.yml b/config/locales/simple_form.cs.yml index 7025c638569577f974965a5031b8d3f4412b7897..f253c82b911a2c94358892fc52fc53f04c28ed82 100644 --- a/config/locales/simple_form.cs.yml +++ b/config/locales/simple_form.cs.yml @@ -59,7 +59,6 @@ cs: setting_show_application: Aplikace, kterou použÃváte k odeslánà pÅ™ÃspÄ›vků, bude zobrazena jejich detailnÃm zobrazenà setting_use_blurhash: Gradienty jsou založeny na barvách skryté grafiky, ale zakrývajà jakékoliv detaily setting_use_pending_items: Aktualizovat Äasovou osu až po kliknutà namÃsto automatického rolovánà kanálu - username: VaÅ¡e uživatelské jméno bude na serveru %{domain} unikátnà whole_word: Je-li klÃÄové slovo Äi fráze pouze alfanumerická, bude aplikován pouze, pokud se shoduje s celým slovem domain_allow: domain: Tato doména bude moci stahovat data z tohoto serveru a pÅ™Ãchozà data z nà budou zpracována a uložena diff --git a/config/locales/simple_form.cy.yml b/config/locales/simple_form.cy.yml index d965f6b7148c678f1b4848384b5c92e72b95d895..f482e6ea9327aff79b61c9af42060563f4fc1f99 100644 --- a/config/locales/simple_form.cy.yml +++ b/config/locales/simple_form.cy.yml @@ -59,7 +59,6 @@ cy: setting_show_application: Bydd y cymhwysiad a ddefnyddiwch i bostio yn cael ei arddangos yng ngolwg fanwl eich postiadau setting_use_blurhash: Mae graddiannau wedi'u seilio ar liwiau'r delweddau cudd ond maen nhw'n cuddio unrhyw fanylion setting_use_pending_items: Cuddio diweddariadau llinell amser y tu ôl i glic yn lle sgrolio'n awtomatig - username: Bydd eich enw defnyddiwr yn unigryw ar %{domain} whole_word: Os yw'r allweddair neu'r ymadrodd yn alffaniwmerig yn unig, mi fydd ond yn cael ei osod os yw'n cyfateb a'r gair cyfan domain_allow: domain: Bydd y parth hwn yn gallu nôl data o'r gweinydd hwn a bydd data sy'n dod i mewn ohono yn cael ei brosesu a'i storio diff --git a/config/locales/simple_form.da.yml b/config/locales/simple_form.da.yml index af294274206cc7b54c666866d4edc4b43dcfd810..501c33b1cbd438b565a147a8d851eb0e94d00e24 100644 --- a/config/locales/simple_form.da.yml +++ b/config/locales/simple_form.da.yml @@ -59,7 +59,6 @@ da: setting_show_application: Applikationen, hvormed der postes, vil fremgÃ¥ af detailvisningen af dine indlæg setting_use_blurhash: Gradienter er baseret pÃ¥ de skjulte grafikelementers farver, men slører alle detaljer setting_use_pending_items: Skjul tidslinjeopdateringer bag et klik i stedet for brug af auto-feedrulning - username: Dit brugernavn vil være unikt pÃ¥ %{domain} whole_word: Ved rent alfanumeriske nøgleord/-sætning, forudsætter brugen matchning af hele ordet domain_allow: domain: Dette domæne vil kunne hente data, som efterfølgende behandles og gemmes, fra denne server diff --git a/config/locales/simple_form.de.yml b/config/locales/simple_form.de.yml index 4a13cea7c425174e2369e75e3d90500d11df1002..2b84def3dde5f47ec858afc5a4ad427680b19c85 100644 --- a/config/locales/simple_form.de.yml +++ b/config/locales/simple_form.de.yml @@ -59,7 +59,6 @@ de: setting_show_application: Die Anwendung die du nutzt wird in der detaillierten Ansicht deiner Beiträge angezeigt setting_use_blurhash: Die Farbverläufe basieren auf den Farben der verborgenen Medien, verschleiern aber jegliche Details setting_use_pending_items: Neue Beiträge hinter einem Klick verstecken, anstatt des automatischen Bildlaufs - username: Dein Profilname wird auf %{domain} einmalig sein whole_word: Wenn das Wort oder die Formulierung nur aus Buchstaben oder Zahlen besteht, tritt der Filter nur dann in Kraft, wenn er exakt dieser Zeichenfolge entspricht domain_allow: domain: Diese Domain kann Daten von diesem Server abrufen, und eingehende Daten werden verarbeitet und gespeichert diff --git a/config/locales/simple_form.el.yml b/config/locales/simple_form.el.yml index 2788fd9b5d6ddacfd68166d4897e5dccba6a50b6..88a9840da3e300ad09e41d099cfa30e4e7c22b46 100644 --- a/config/locales/simple_form.el.yml +++ b/config/locales/simple_form.el.yml @@ -59,7 +59,6 @@ el: setting_show_application: Η εφαÏμογή που χÏησιμοποιείς για να στÎλνεις τα τουτ σου θα εμφανίζεται στις αναλυτικÎÏ‚ λεπτομÎÏειες τους setting_use_blurhash: Οι χÏωματισμοί βασίζονται στα χÏώματα του κÏυμμÎνου πολυμÎσου αλλά θολώνουν τις λεπτομÎÏειες setting_use_pending_items: Εμφάνιση ενημεÏώσεων Ïοής μετά από κλικ αντί για αυτόματη κÏλισή τους - username: Το όνομα χÏήστη σου θα είναι μοναδικό στο %{domain} whole_word: Όταν η λÎξη ή η φÏάση κλειδί είναι μόνο αλφαÏιθμητική, θα εφαÏμοστεί μόνο αν ταιÏιάζει με ολόκληÏη τη λÎξη domain_allow: domain: Ο τομÎας αυτός θα επιτÏÎπεται να ανακτά δεδομÎνα από αυτό τον διακομιστή και τα εισεÏχόμενα δεδομÎνα θα επεξεÏγάζονται και θα αποθηκεÏονται diff --git a/config/locales/simple_form.en-GB.yml b/config/locales/simple_form.en-GB.yml index 27aa80c42618fdcbd8323804cd256c88be72be27..35b80fd0723d744bc927eecd2439d130c87fbdc0 100644 --- a/config/locales/simple_form.en-GB.yml +++ b/config/locales/simple_form.en-GB.yml @@ -59,7 +59,6 @@ en-GB: setting_show_application: The application you use to post will be displayed in the detailed view of your posts setting_use_blurhash: Gradients are based on the colors of the hidden visuals but obfuscate any details setting_use_pending_items: Hide timeline updates behind a click instead of automatically scrolling the feed - username: Your username will be unique on %{domain} whole_word: When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word domain_allow: domain: This domain will be able to fetch data from this server and incoming data from it will be processed and stored diff --git a/config/locales/simple_form.en.yml b/config/locales/simple_form.en.yml index 96b0131efe1eb9dd439ee0c4b77e043fd05d6fa7..b646a15e26e38762b4ef18136846354ca157c1c1 100644 --- a/config/locales/simple_form.en.yml +++ b/config/locales/simple_form.en.yml @@ -59,7 +59,7 @@ en: setting_show_application: The application you use to post will be displayed in the detailed view of your posts setting_use_blurhash: Gradients are based on the colors of the hidden visuals but obfuscate any details setting_use_pending_items: Hide timeline updates behind a click instead of automatically scrolling the feed - username: Your username will be unique on %{domain} + username: You can use letters, numbers, and underscores whole_word: When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word domain_allow: domain: This domain will be able to fetch data from this server and incoming data from it will be processed and stored diff --git a/config/locales/simple_form.eo.yml b/config/locales/simple_form.eo.yml index d54248de08272e9514cc5af7fd1a80919ad06c14..0e0123af7b68c5a4361893330109a7e3238723b3 100644 --- a/config/locales/simple_form.eo.yml +++ b/config/locales/simple_form.eo.yml @@ -59,7 +59,6 @@ eo: setting_show_application: La aplikaĵo, kiun vi uzas por afiÅi, estos montrita en la detala vido de viaj afiÅoj setting_use_blurhash: Transirojn estas bazita sur la koloroj de la kaÅitaj aÅdovidaĵoj sed ne montri iun ajn detalon setting_use_pending_items: KaÅi tempoliniajn Äisdatigojn malantaÅ klako anstataÅ aÅtomate rulumi la fluon - username: Via uzantnomo estos unika en %{domain} whole_word: Kiam la vorto aÅ frazo estas nur litera aÅ cifera, Äi estos uzata nur se Äi kongruas kun la tuta vorto domain_allow: domain: Ĉi tiu domajno povos akiri datumon de ĉi tiu servilo kaj envenanta datumo estos prilaborita kaj konservita diff --git a/config/locales/simple_form.es-AR.yml b/config/locales/simple_form.es-AR.yml index bcceccfb1887dfda52e8bf8bf7c81502049ca807..0d29d66127e986c8a16a899168c2d05a4d8f02db 100644 --- a/config/locales/simple_form.es-AR.yml +++ b/config/locales/simple_form.es-AR.yml @@ -59,7 +59,6 @@ es-AR: setting_show_application: La aplicación que usás para enviar mensajes se mostrará en la vista detallada de tus mensajes setting_use_blurhash: Los gradientes se basan en los colores de las imágenes ocultas pero haciendo borrosos los detalles setting_use_pending_items: Ocultar actualizaciones de la lÃnea temporal detrás de un clic en lugar de desplazar automáticamente el flujo - username: Tu nombre de usuario será único en %{domain} whole_word: Cuando la palabra clave o frase es sólo alfanumérica, sólo será aplicado si coincide con toda la palabra domain_allow: domain: Este dominio podrá recolectar datos de este servidor, y los datos entrantes serán procesados y archivados diff --git a/config/locales/simple_form.es-MX.yml b/config/locales/simple_form.es-MX.yml index 52d8974f2ee7362957ca9adffae1e7329ae9a8bd..efc4f0d80e507e92a4ef37982b4bb2943bb749b4 100644 --- a/config/locales/simple_form.es-MX.yml +++ b/config/locales/simple_form.es-MX.yml @@ -59,7 +59,6 @@ es-MX: setting_show_application: La aplicación que utiliza usted para publicar toots se mostrará en la vista detallada de sus toots setting_use_blurhash: Los gradientes se basan en los colores de las imágenes ocultas pero haciendo borrosos los detalles setting_use_pending_items: Ocultar nuevos estados detrás de un clic en lugar de desplazar automáticamente el feed - username: Tu nombre de usuario será único en %{domain} whole_word: Cuando la palabra clave o frase es solo alfanumérica, solo será aplicado si concuerda con toda la palabra domain_allow: domain: Este dominio podrá obtener datos de este servidor y los datos entrantes serán procesados y archivados diff --git a/config/locales/simple_form.es.yml b/config/locales/simple_form.es.yml index 593416aca20fd219271c0f7f771c27c8c4ad358c..a2eafe6175e21be1fdf92c5b3b92a261731e23fe 100644 --- a/config/locales/simple_form.es.yml +++ b/config/locales/simple_form.es.yml @@ -59,7 +59,6 @@ es: setting_show_application: La aplicación que utiliza usted para publicar publicaciones se mostrará en la vista detallada de sus publicaciones setting_use_blurhash: Los gradientes se basan en los colores de las imágenes ocultas pero haciendo borrosos los detalles setting_use_pending_items: Ocultar nuevos estados detrás de un clic en lugar de desplazar automáticamente el feed - username: Tu nombre de usuario será único en %{domain} whole_word: Cuando la palabra clave o frase es solo alfanumérica, solo será aplicado si concuerda con toda la palabra domain_allow: domain: Este dominio podrá obtener datos de este servidor y los datos entrantes serán procesados y archivados diff --git a/config/locales/simple_form.et.yml b/config/locales/simple_form.et.yml index 83aa4159d8852c921cf35e99908c6eaa9d815488..ce3bc8b967b7c0453caedfed507dc86b19199be5 100644 --- a/config/locales/simple_form.et.yml +++ b/config/locales/simple_form.et.yml @@ -59,7 +59,6 @@ et: setting_show_application: Postitamiseks kasutatud rakenduse infot kuvatakse postituse üksikasjavaates setting_use_blurhash: Värvid põhinevad peidetud visuaalidel, kuid hägustavad igasuguseid detaile setting_use_pending_items: Voo automaatse kerimise asemel peida ajajoone uuendused kliki taha - username: Sinu kasutajanimi on %{domain}-il unikaalne whole_word: Kui võtmesõna või fraas on ainult tähtnumbriline, rakendub see ainult siis, kui see kattub terve sõnaga domain_allow: domain: See domeen saab tõmmata andmeid sellelt serverilt ning sissetulevad andmed sellelt domeenilt töödeldakse ning salvestatakse diff --git a/config/locales/simple_form.eu.yml b/config/locales/simple_form.eu.yml index 175e0c96d73d831c55d4dd6b053a7ed9cf817a5f..3030114475b4837e54b9d9e7e76fb6043b2446c7 100644 --- a/config/locales/simple_form.eu.yml +++ b/config/locales/simple_form.eu.yml @@ -59,7 +59,6 @@ eu: setting_show_application: Tootak bidaltzeko erabiltzen duzun aplikazioa zure tooten ikuspegi xehetsuan bistaratuko da setting_use_blurhash: Gradienteak ezkutatutakoaren koloreetan oinarritzen dira, baina xehetasunak ezkutatzen dituzte setting_use_pending_items: Ezkutatu denbora-lerroko eguneraketak klik baten atzean jarioa automatikoki korritu ordez - username: Zure erabiltzaile-izena bakana izango da %{domain} domeinuan whole_word: Hitz eta esaldi gakoa alfanumerikoa denean, hitz osoarekin bat datorrenean besterik ez da aplikatuko domain_allow: domain: Domeinu honek zerbitzari honetatik datuak hartu ahal izango ditu eta bertatik jasotako informazioa prozesatu eta gordeko da diff --git a/config/locales/simple_form.fa.yml b/config/locales/simple_form.fa.yml index 18dd8279066c814850aeecd08f3f8166c5619d6d..d9db0c69773325b41a318b8f3aab6cda2a470e7a 100644 --- a/config/locales/simple_form.fa.yml +++ b/config/locales/simple_form.fa.yml @@ -59,7 +59,6 @@ fa: setting_show_application: برنامه‌ای Ú©Ù‡ به Ú©Ù…Ú© آن Ùرسته می‌زنید، در جزئیات Ùرسته شما نمایش خواهد یاÙت setting_use_blurhash: سایه‌ها بر اساس رنگ‌های به‌کاررÙته در تصویر پنهان‌شده ساخته می‌شوند ولی جزئیات تصویر در آن‌ها آشکار نیست setting_use_pending_items: به جای پیش‌رÙتن خودکار در Ùهرست، به‌روزرسانی Ùهرست نوشته‌ها را پشت یک کلیک پنهان Ú©Ù† - username: نام کاربری شما روی %{domain} یکتا خواهد بود whole_word: اگر کلیدواژه Ùقط دارای Øرو٠و اعداد باشد، تنها وقتی پیدا می‌شود Ú©Ù‡ با Ú©Ù„ یک واژه در متن منطبق باشد، نه با بخشی از یک واژه domain_allow: domain: این دامین خواهد توانست داده‌ها از این سرور را دریاÙت کند Ùˆ داده‌های از این دامین در این‌جا پردازش Ùˆ ذخیره خواهند شد diff --git a/config/locales/simple_form.fi.yml b/config/locales/simple_form.fi.yml index b96cf0cd7516902e171ce6e138f811fb09fc7a2e..118054855705b5830585dff3546a6a2a84acf54c 100644 --- a/config/locales/simple_form.fi.yml +++ b/config/locales/simple_form.fi.yml @@ -59,7 +59,6 @@ fi: setting_show_application: Viestittelyyn käyttämäsi sovellus näkyy viestiesi yksityiskohtaisessa näkymässä setting_use_blurhash: Liukuvärit perustuvat piilotettujen kuvien väreihin, mutta sumentavat yksityiskohdat setting_use_pending_items: Piilota aikajanan päivitykset napsautuksen taakse sen sijaan, että vierittäisi syötettä automaattisesti - username: Käyttäjänimesi tulee olemaan yksilöllinen %{domain} whole_word: Kun avainsana tai lause on vain aakkosnumeerinen, se otetaan käyttöön, jos se vastaa koko sanaa domain_allow: domain: Tämä verkkotunnus voi noutaa tietoja tältä palvelimelta ja sieltä saapuvat tiedot käsitellään ja tallennetaan diff --git a/config/locales/simple_form.fo.yml b/config/locales/simple_form.fo.yml index 2713d1f89a1ec0cb4b00269ed69a90218ea59447..d228516826562d02728edc608e55a770eb3b28e5 100644 --- a/config/locales/simple_form.fo.yml +++ b/config/locales/simple_form.fo.yml @@ -59,7 +59,6 @@ fo: setting_show_application: Nýtsluskipanin, sum tú brúkar at posta við, verður vÃst à nágreinligu vÃsingini av postum tÃnum setting_use_blurhash: Gradientar eru grundaðir á litirnar av fjaldu myndunum, men grugga allar smálutir setting_use_pending_items: Fjal tÃðarlinjudagføringar aftan fyri eitt klikk heldur enn at skrulla tilføringina sjálvvirkandi - username: Brúkaranavnið hjá tær verður eindømi á %{domain} whole_word: Tá lyklaorðið ella frasan einans hevur bókstavir og tøl, so verður hon einans nýtt, um tú samsvarar við alt orðið domain_allow: domain: Økisnavnið kann heinta dátur frá hesum ambætaranum og inngangandi dátur frá honum verða viðgjørdar og goymdar diff --git a/config/locales/simple_form.fr-QC.yml b/config/locales/simple_form.fr-QC.yml index 541bc8be6a8d104d8329b20466ad13c8bb9bdfca..6517d3d8d486f9df4e7f9a903952795384be7afe 100644 --- a/config/locales/simple_form.fr-QC.yml +++ b/config/locales/simple_form.fr-QC.yml @@ -59,7 +59,6 @@ fr-QC: setting_show_application: Le nom de l’application que vous utilisez pour publier sera affichée dans la vue détaillée de vos messages setting_use_blurhash: Les dégradés sont basés sur les couleurs des images cachées mais n’en montrent pas les détails setting_use_pending_items: Cacher les mises à jour des fils d’actualités derrière un clic, au lieu de les afficher automatiquement - username: Votre nom d’utilisateur sera unique sur %{domain} whole_word: Si le mot-clé ou la phrase est alphanumérique, alors le filtre ne sera appliqué que s’il correspond au mot entier domain_allow: domain: Ce domaine pourra récupérer des données de ce serveur et les données entrantes seront traitées et stockées diff --git a/config/locales/simple_form.fr.yml b/config/locales/simple_form.fr.yml index d395b8517e599c36e4a5d06d9b5650c1ab61c211..d4697fa1e906da27e5bcd48710b2911505603b20 100644 --- a/config/locales/simple_form.fr.yml +++ b/config/locales/simple_form.fr.yml @@ -59,7 +59,6 @@ fr: setting_show_application: Le nom de l’application que vous utilisez pour publier sera affichée dans la vue détaillée de vos messages setting_use_blurhash: Les dégradés sont basés sur les couleurs des images cachées mais n’en montrent pas les détails setting_use_pending_items: Cacher les mises à jour des fils d’actualités derrière un clic, au lieu de les afficher automatiquement - username: Votre identifiant sera unique sur %{domain} whole_word: Si le mot-clé ou la phrase est alphanumérique, alors le filtre ne sera appliqué que s’il correspond au mot entier domain_allow: domain: Ce domaine pourra récupérer des données de ce serveur et les données entrantes seront traitées et stockées diff --git a/config/locales/simple_form.fy.yml b/config/locales/simple_form.fy.yml index be950189b2f06f12c9e4e9f1937c71a2998a2805..547a2a5ed8778483246dc1c5f52cfb57462f9a2a 100644 --- a/config/locales/simple_form.fy.yml +++ b/config/locales/simple_form.fy.yml @@ -59,7 +59,6 @@ fy: setting_show_application: De tapassing dy’t jo brûke om berjochten te pleatsen, wurdt yn de detaillearre werjefte fan it berjocht toand setting_use_blurhash: Dizige kleuroergongen binne basearre op de kleuren fan de ferstoppe media, wêrmei elk detail ferdwynt setting_use_pending_items: De tiidline wurdt bywurke troch op it oantal nije items te klikken, yn stee fan dat dizze automatysk bywurke wurdt - username: Jo brûkersnamme is unyk op %{domain} whole_word: Wannear it trefwurd of part fan de sin alfanumeryk is, wurdt it allinnich filtere wannear’t it hiele wurd oerienkomt domain_allow: domain: Dit domein is yn steat om gegevens fan dizze server op te heljen, en ynkommende gegevens wurde ferwurke en bewarre diff --git a/config/locales/simple_form.gd.yml b/config/locales/simple_form.gd.yml index c86fc5a0c40875914941454f7e3e96a701c2d1e4..a34865ff710db2b9e84137398ed43956004a376d 100644 --- a/config/locales/simple_form.gd.yml +++ b/config/locales/simple_form.gd.yml @@ -59,7 +59,6 @@ gd: setting_show_application: Chithear cò an aplacaid a chleachd thu airson post a sgrìobhadh ann an seallaidhean mionaideach nam postaichean agad setting_use_blurhash: Tha caiseadan stèidhichte air dathan nan nithean lèirsinneach a chaidh fhalach ach chan fhaicear am mion-fhiosrachadh setting_use_pending_items: Falaich ùrachaidhean na loidhne-ama air cùlaibh briogaidh seach a bhith a’ sgroladh nam postaichean gu fèin-obrachail - username: Bidh ainm-cleachdaiche à raidh agad air %{domain} whole_word: Mur eil ach litrichean is à ireamhan san fhacal-luirg, cha dèid a chur an sà s ach ma bhios e a’ maidseadh an fhacail shlà in domain_allow: domain: "’S urrainn dhan à rainn seo dà ta fhaighinn on fhrithealaiche seo agus thèid an dà ta a thig a-steach uaithe a phròiseasadh ’s a stòradh" diff --git a/config/locales/simple_form.gl.yml b/config/locales/simple_form.gl.yml index c4a6da5669d491e4346fe689db9acb60da25bab2..ec038f9b6dabea3f241d15a8e84dfcc2b09eff49 100644 --- a/config/locales/simple_form.gl.yml +++ b/config/locales/simple_form.gl.yml @@ -59,7 +59,6 @@ gl: setting_show_application: A aplicación que estás a utilizar para enviar publicacións mostrarase na vista detallada da publicación setting_use_blurhash: Os gradientes toman as cores da imaxe oculta pero esvaecendo tódolos detalles setting_use_pending_items: Agochar actualizacións da cronoloxÃa tras un click no lugar de desprazar automáticamente os comentarios - username: O teu nome de usuaria será único en %{domain} whole_word: Se a chave ou frase de paso é só alfanumérica, só se aplicará se concorda a palabra completa domain_allow: domain: Este dominio estará en disposición de obter datos desde este servidor e datos de entrada a el poderán ser procesados e gardados diff --git a/config/locales/simple_form.he.yml b/config/locales/simple_form.he.yml index 8e6631e36a450fbfdbfaa529183a7e3253b6e6ce..e540c34731d64271551b0e74ac15feece8bb9ec9 100644 --- a/config/locales/simple_form.he.yml +++ b/config/locales/simple_form.he.yml @@ -59,7 +59,6 @@ he: setting_show_application: ×”×™×™×©×•× ×‘×• × ×¢×©×” שימוש כדי לחצרץ יופיע בתצוגה המפורטת של החצרוץ setting_use_blurhash: הגר××“×™×™× ×˜×™× ×ž×‘×•×¡×¡×™× ×¢×œ תוכן ×”×ª×ž×•× ×” המוסתרת, ×בל ×ž×¡×ª×™×¨×™× ×ת כל ×”×¤×¨×˜×™× setting_use_pending_items: הסתר ×¢×“×›×•× ×™ פיד מ×חורי קליק ×‘×ž×§×•× ×œ×’×œ×•×œ ×ת הפיד ×וטומטית - username: ×©× ×”×ž×©×ª×ž×© שלך ×™×”×™×” ייחודי ב- %{domain} whole_word: ×× ×ž×™×œ×ª מפתח ×ו ביטוי ×”× ×לפ×× ×•×ž×¨×™×™× ×‘×œ×‘×“, ×”× ×™×•×¤×¢×œ×• רק ×× × ×ž×¦××” הת×מה למילה שלמה domain_allow: domain: דומיין ×–×” יוכל ×œ×™×™×‘× ×ž×™×“×¢ משרת ×–×” והמידע המגיע ×ž×ž× ×• יעובד וי×ופסן diff --git a/config/locales/simple_form.hu.yml b/config/locales/simple_form.hu.yml index 81d74cebeede6f2741fd88c345f5edf7e8c11d29..ebc07f0d0e3ce14625195f3a48df91aeee484f29 100644 --- a/config/locales/simple_form.hu.yml +++ b/config/locales/simple_form.hu.yml @@ -59,7 +59,6 @@ hu: setting_show_application: A bejegyzések részletes nézetében látszani fog, milyen alkalmazást használtál a bejegyzés közzétételéhez setting_use_blurhash: A kihomályosÃtás az eredeti képbÅ‘l történik, de minden részletet elrejt setting_use_pending_items: IdÅ‘vonal frissÃtése csak kattintásra automatikus görgetés helyett - username: A felhasználói neved egyedi lesz a %{domain} domainen whole_word: Ha a kulcsszó alfanumerikus, csak akkor minÅ‘sül majd találatnak, ha teljes szóra illeszkedik domain_allow: domain: Ez a domain adatokat kérhet le errÅ‘l a kiszolgálóról, és a bejövÅ‘ adatok fel lesznek dolgozva és tárolva lesznek diff --git a/config/locales/simple_form.hy.yml b/config/locales/simple_form.hy.yml index b9550215502c4a692b29c1046b0fc3cffa16c7bd..2bc72ecdb3b8b388ed3f061fdeac1332296b0083 100644 --- a/config/locales/simple_form.hy.yml +++ b/config/locales/simple_form.hy.yml @@ -49,7 +49,6 @@ hy: setting_show_application: Ô³Ö€Õ¡Õ¼Õ´Õ¡Õ¶ Õ´Õ¡Õ¶Ö€Õ¡Õ´Õ¡Õ½Õ¶Õ¥Ö€Õ¸Ö‚Õ´ Õ¯Õ¥Ö€Õ¥Ö‚Õ¡Õµ Õ©Õ§ Õ¸Ö€ Õ®Ö€Õ¡Õ£Ö€Õ¸Õ¾ Õ¥Õ½ Õ°Ö€Õ¡ÕºÕ¡Ö€Õ¡Õ¯Õ¥Õ¬ Õ¡ÕµÕ¶ setting_use_blurhash: Ô¿Õ¿Õ¸Ö€Õ¶Õ¥Ö€Õ¨ Õ°Õ«Õ´Õ¶Õ¸Ö‚Õ¸Ö‚Õ´ Õ¥Õ¶ Õ©Õ¡Ö„ÖÕ¸Ö‚Õ¡Õ® Õ¾Õ«Õ¦Õ¸Ö‚Õ¡Õ¬Õ« Õ¾Ö€Õ¡ÕµÕ ÕÕ¡Õ´Ö€Õ¥ÖÕ¶Õ¥Õ¬Õ¸Õ¾ Õ¤Õ¥Õ¿Õ¡Õ¬Õ¶Õ¥Ö€Õ¨ setting_use_pending_items: Ô¹Õ¡Ö„ÖÕ¶Õ¥Õ¬ Õ°Õ¸Õ½Ö„Õ« Õ©Õ¡Ö€Õ´Õ¡ÖÕ¸Ö‚Õ´Õ¶Õ¥Ö€Õ¨ Õ¯Õ¿Õ¿Õ¸Õ« Õ¥Õ¿Õ¥Ö‚Õ¸Ö‚Õ´Õ Õ¡Ö‚Õ¿Ö…Õ´Õ¡Õ¿ Õ©Õ¡Ö€Õ´Õ¡ÖÕ¸Ö‚Õ¸Õ² Õ°Õ¸Õ½Ö„Õ« ÖƒÕ¸ÕÕ¡Ö€Õ§Õ¶ - username: Õ”Õ¸ Ö…Õ£Õ¿Õ¡Õ¶Õ¸Ö‚Õ¶Õ¨ ÕºÕ§Õ¿Ö„ Õ§ Õ¥Õ¦Õ¡Õ¯Õ« Õ¬Õ«Õ¶Õ« %{domain}-Õ¸Ö‚Õ´Ö‰ whole_word: ÔµÕ©Õ§ Õ¢Õ¡Õ¶Õ¡Õ¬Õ« Õ¢Õ¡Õ¼Õ¨ Õ¯Õ¡Õ´ Õ¡Ö€Õ¿Õ¡ÕµÕ¡ÕµÕ¿Õ¸Ö‚Õ©Õ«Ö‚Õ¶Õ¨ ÕºÕ¡Ö€Õ¸Ö‚Õ¶Õ¡Õ¯Õ¸Ö‚Õ´ Õ§ Õ´Õ«Õ¡ÕµÕ¶ Õ¡ÕµÕ¢Õ¢Õ¥Õ¶Õ¡Õ¯Õ¡Õ¶ Õ¶Õ«Õ·Õ¥Ö€ Õ¥Ö‚ Õ©Õ¸Ö‚Õ¥Ö€, Õ¡ÕºÕ¡ Õ¡ÕµÕ¶ Õ¯Õ«Ö€Õ¡Õ¼Õ¸Ö‚Õ¥Õ¬Õ¸Ö‚ Õ§ Õ¡Õ´Õ¢Õ¸Õ²Õ» Õ¢Õ¡Õ¼Õ« Õ°Õ¥Õ¿ Õ°Õ¡Õ´Õ¨Õ¶Õ¯Õ¶Õ¥Õ¬Õ¸Ö‚ Õ¤Õ§ÕºÖ„Õ¸Ö‚Õ´ Õ´Õ«Õ¡ÕµÕ¶ domain_allow: domain: Ô±ÕµÕ½ Õ¿Õ«Ö€Õ¸ÕµÕ©Õ¨ Õ¯Õ¡Ö€Õ¸Õ² Õ§ Õ½Õ¿Õ¡Õ¶Õ¡Õ¬ Õ¿Õ¸Ö‚Õ¥Õ¡Õ¬Õ¶Õ¥Ö€ Õ¡ÕµÕ½ Õ½ÕºÕ¡Õ½Õ¡Ö€Õ¯Õ¹Õ«Ö Õ¥Ö‚ Õ½Õ¿Õ¡ÖÕ¸Ö‚Õ¸Õ² Õ¿Õ¸Ö‚Õ¥Õ¡Õ¬Õ¶Õ¥Ö€Õ¨ Õ¯Õ¡Ö€Õ¸Õ² Õ¥Õ¶ Ö…Õ£Õ¿Õ¡Õ£Õ¸Ö€Õ®Õ¸Ö‚Õ¥Õ¬ Õ¥Ö‚ ÕºÕ¡Õ°Õ¸Ö‚Õ¥Õ¬ diff --git a/config/locales/simple_form.id.yml b/config/locales/simple_form.id.yml index 43f27826426d30b3b0051d0a7837e2f57a3ae5ee..2892b13629eef55303fcfe93df5a1c8904ea2f5d 100644 --- a/config/locales/simple_form.id.yml +++ b/config/locales/simple_form.id.yml @@ -57,7 +57,6 @@ id: setting_show_application: Aplikasi yang Anda pakai untuk men-toot akan ditampilkan di tampilan detail toot setting_use_blurhash: Gradien didasarkan pada warna visual yang tersembunyi tetapi mengaburkan setiap detail setting_use_pending_items: Sembunyikan pembaruan linimasa di balik klik alih-alih bergulir secara otomatis - username: Nama pengguna Anda unik di %{domain} whole_word: Ketika kata kunci/frasa hanya alfanumerik, maka itu hanya akan diterapkan jika cocok dengan semua kata domain_allow: domain: Domain ini dapat mengambil data dari server ini dan data yang diterima akan diproses dan disimpan diff --git a/config/locales/simple_form.io.yml b/config/locales/simple_form.io.yml index d6aff6afd7d4a0b8fec22a54000ea51df6614b85..d1f4ccf974ad07caf9505c91489ed6eb7697be1f 100644 --- a/config/locales/simple_form.io.yml +++ b/config/locales/simple_form.io.yml @@ -57,7 +57,6 @@ io: setting_show_application: Softwaro quon vu uzar por postigar montresos che detala vidajo di vua posti setting_use_blurhash: Inklini esas segun kolori di celesis vidaji ma kovras irga detali setting_use_pending_items: Celez tempolineonovi dop kliktar e ne automatike movigar niuzeto - username: Vua uzantonomo esos nura che %{domain} whole_word: Kande klefvorto o fraz esas nur litera e nombra, ol nur aplikesos se ol parigesas la tota vorto domain_allow: domain: Ca domeno povas ganar informi de ca servilo e venanta informo de ol procedagesos e sparesos diff --git a/config/locales/simple_form.is.yml b/config/locales/simple_form.is.yml index ed17c97536e303d33df48cf5499b19508ee27a65..6246099ffd5bac63f9458bfeaaa6aa43322de7e3 100644 --- a/config/locales/simple_form.is.yml +++ b/config/locales/simple_form.is.yml @@ -59,7 +59,6 @@ is: setting_show_application: Nafnið á forritinu sem þú notar til að senda færslur mun birtast à Ãtarlegri sýn á færslunum þÃnum setting_use_blurhash: Litstiglarnir byggja á litunum à földu myndunum, en gera öll smáatriði óskýr setting_use_pending_items: Fela uppfærslur tÃmalÃnu þar til smellt er, à stað þess að hún skruni streyminu sjálfvirkt - username: Notandanafnið þitt verður einstakt á %{domain} whole_word: Þegar stikkorð eða setning er einungis tölur og bókstafir, verður það aðeins notað ef það samsvarar heilu orði domain_allow: domain: Þetta lén mun geta sótt gögn af þessum vefþjóni og tekið verður á móti innsendum gögnum frá léninu til vinnslu og geymslu diff --git a/config/locales/simple_form.it.yml b/config/locales/simple_form.it.yml index 189b9bfc50a1f3e7fc3d906c65a7f7ec3d722d44..8e31de783d74c90cab996f912733348163e0c84f 100644 --- a/config/locales/simple_form.it.yml +++ b/config/locales/simple_form.it.yml @@ -59,7 +59,6 @@ it: setting_show_application: L'applicazione che usi per pubblicare i toot sarà mostrata nella vista di dettaglio dei tuoi toot setting_use_blurhash: I gradienti sono basati sui colori delle immagini nascoste ma offuscano tutti i dettagli setting_use_pending_items: Fare clic per mostrare i nuovi messaggi invece di aggiornare la timeline automaticamente - username: Il tuo nome utente sarà unico su %{domain} whole_word: Quando la parola chiave o la frase è solo alfanumerica, si applica solo se corrisponde alla parola intera domain_allow: domain: Questo dominio potrà recuperare i dati da questo server e i dati in arrivo da esso verranno elaborati e memorizzati diff --git a/config/locales/simple_form.ja.yml b/config/locales/simple_form.ja.yml index f7e2cb9545e3a60d3d59157582a1afb741c5503e..1e52f77c370ccb507f585bd69f2467a1b13154ce 100644 --- a/config/locales/simple_form.ja.yml +++ b/config/locales/simple_form.ja.yml @@ -59,7 +59,6 @@ ja: setting_show_application: 投稿ã™ã‚‹ã®ã«ä½¿ç”¨ã—ãŸã‚¢ãƒ—リãŒæŠ•ç¨¿ã®è©³ç´°ãƒ“ューã«è¡¨ç¤ºã•ã‚Œã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™ setting_use_blurhash: ã¼ã‹ã—ã¯ãƒ¡ãƒ‡ã‚£ã‚¢ã®è‰²ã‚’å…ƒã«ç”Ÿæˆã•ã‚Œã¾ã™ãŒã€ç´°éƒ¨ã¯è¦‹ãˆã«ãããªã£ã¦ã„ã¾ã™ setting_use_pending_items: æ–°ç€ãŒã‚ã£ã¦ã‚‚タイムラインを自動的ã«ã‚¹ã‚¯ãƒãƒ¼ãƒ«ã—ãªã„よã†ã«ã—ã¾ã™ - username: ã‚ãªãŸã®ãƒ¦ãƒ¼ã‚¶ãƒ¼åã¯%{domain}ã®ä¸ã§é‡è¤‡ã—ã¦ã„ãªã„å¿…è¦ãŒã‚ã‚Šã¾ã™ whole_word: ã‚ーワードã¾ãŸã¯ãƒ•ãƒ¬ãƒ¼ã‚ºãŒè‹±æ•°å—ã®ã¿ã®å ´åˆã€å˜èªžå…¨ä½“ã¨ä¸€è‡´ã™ã‚‹å ´åˆã®ã¿é©ç”¨ã•ã‚Œã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™ domain_allow: domain: 登録ã™ã‚‹ã¨ã“ã®ã‚µãƒ¼ãƒãƒ¼ã‹ã‚‰ãƒ‡ãƒ¼ã‚¿ã‚’å—ä¿¡ã—ãŸã‚Šã€ã“ã®ãƒ‰ãƒ¡ã‚¤ãƒ³ã‹ã‚‰å—ä¿¡ã™ã‚‹ãƒ‡ãƒ¼ã‚¿ã‚’処ç†ã—ã¦ä¿å˜ã§ãるよã†ã«ãªã‚Šã¾ã™ diff --git a/config/locales/simple_form.kab.yml b/config/locales/simple_form.kab.yml index 2f8a9261e32f06fc082dd373e146327fa52fac01..b55a3406dbe97368a09268ee17f95e985c2d40c0 100644 --- a/config/locales/simple_form.kab.yml +++ b/config/locales/simple_form.kab.yml @@ -20,7 +20,6 @@ kab: setting_display_media_hide_all: Ffer yal tikkelt akk taywalt setting_display_media_show_all: Ffer yal tikkelt teywalt yettwacreḠd tanafrit setting_hide_network: Wid i teá¹á¹afaá¹›eḠd wid i k-yeá¹á¹afaá¹›en ur d-ttwaseknen ara deg umaγnu-inek - username: Isem-ik n umseqdac ad yili d ayiwen, ulac am netta deg %{domain} imports: data: Afaylu CSV id yusan seg uqeddac-nniá¸en n Maá¹£á¹udun ip_block: diff --git a/config/locales/simple_form.ko.yml b/config/locales/simple_form.ko.yml index 1d63fb631ce6f019b701c404a982f86dfd000653..cb17838805079cdd79247144d7ffca856f7af490 100644 --- a/config/locales/simple_form.ko.yml +++ b/config/locales/simple_form.ko.yml @@ -59,7 +59,6 @@ ko: setting_show_application: ë‹¹ì‹ ì´ ê²Œì‹œë¬¼ì„ ìž‘ì„±í•˜ëŠ”ë°ì— 사용한 ì•±ì´ ê²Œì‹œë¬¼ì˜ ìƒì„¸ì •ë³´ì— 표시 ë©ë‹ˆë‹¤ setting_use_blurhash: ê·¸ë¼ë””언트는 숨겨진 ë‚´ìš©ì˜ ìƒ‰ìƒì„ 기반으로 하지만 ìƒì„¸ ë‚´ìš©ì€ ë³´ì´ì§€ 않게 합니다 setting_use_pending_items: 타임ë¼ì¸ì˜ 새 ê²Œì‹œë¬¼ì„ ìžë™ìœ¼ë¡œ ë³´ì—¬ 주는 ëŒ€ì‹ , í´ë¦í•´ì„œ 나타내ë„ë¡ í•©ë‹ˆë‹¤ - username: ë‹¹ì‹ ì˜ ì‚¬ìš©ìžëª…ì€ %{domain} 안ì—ì„œ ìœ ì¼í•´ì•¼ 합니다 whole_word: 키워드가 ì˜ë¬¸ê³¼ 숫ìžë¡œë§Œ ì´ë£¨ì–´ 진 경우, 단어 ì „ì²´ì— ë§¤ì¹ ë˜ì—ˆì„ ë•Œì—만 ìž‘ë™í•˜ê²Œ 합니다 domain_allow: domain: ì´ ë„ë©”ì¸ì€ ì´ ì„œë²„ì—ì„œ ë°ì´í„°ë¥¼ ê°€ì ¸ê°ˆ 수 ìžˆê³ ì´ ë„ë©”ì¸ì—ì„œ 보내진 ë°ì´í„°ëŠ” 처리ë˜ê³ ì €ìž¥ ë©ë‹ˆë‹¤ diff --git a/config/locales/simple_form.ku.yml b/config/locales/simple_form.ku.yml index f7188152d6ec63fde15652ff002ae6ee284f721a..bd0529772bd73bcb1fbf851714eb036a277f6cab 100644 --- a/config/locales/simple_form.ku.yml +++ b/config/locales/simple_form.ku.yml @@ -59,7 +59,6 @@ ku: setting_show_application: Navê sepana ku tu ji bo ÅŸandinê wê bi kar tîne dê di dîtinê berferh ên di ÅŸandiyên te de were xuyakirin setting_use_blurhash: Gradyen xwe bi rengên dîtbarîyên veÅŸartî ve radigire, lê belê hûrgilîyan diveşêre setting_use_pending_items: Li şûna ku herkê wek bixweber bizivirînî nûvekirina demnameyê li paÅŸ tikandinekî veşêre - username: Navê te yê bikarhênerî li ser %{domain} de bêhempa be whole_word: Dema peyvkilîd an jî hevok bi tenê alfahejmarî çêbe, bi tenê hemû bêjeyê re li hev bike wê pêk bê domain_allow: domain: Ev navê navperê, ji vê rajekarê wê daneyan bistîne û daneyên ku jê bê wê were sazkirin û veÅŸartin diff --git a/config/locales/simple_form.lv.yml b/config/locales/simple_form.lv.yml index ff727235edda180ddf8ec089eef967a6b5cf45ef..22ea7c6a931e1e556c86bdda59e8cbedeceb0977 100644 --- a/config/locales/simple_form.lv.yml +++ b/config/locales/simple_form.lv.yml @@ -59,7 +59,6 @@ lv: setting_show_application: Lietojumprogramma, ko tu izmanto publicÄ“Å¡anai, tiks parÄdÄ«ta tavu ziņu detalizÄ“tajÄ skatÄ setting_use_blurhash: Gradientu pamatÄ ir paslÄ“pto vizuÄlo attÄ“lu krÄsas, bet neskaidras visas detaļas setting_use_pending_items: PaslÄ“pt laika skalas atjauninÄjumus aiz klikÅ¡Ä·a, nevis automÄtiski ritini plÅ«smu - username: Tavs lietotÄjvÄrds %{domain} bÅ«s unikÄls whole_word: Ja atslÄ“gvÄrds vai frÄze ir tikai burtciparu, tas tiks lietots tikai tad, ja tas atbilst visam vÄrdam domain_allow: domain: Å is domÄ“ns varÄ“s izgÅ«t datus no Å¡Ä« servera, un no tÄ ienÄkoÅ¡ie dati tiks apstrÄdÄti un saglabÄti diff --git a/config/locales/simple_form.my.yml b/config/locales/simple_form.my.yml index d3594307a2ef868f87abaeb838abd64dd06bd096..7beaa2a00a53feeb8119e35324d265d8cd80cd33 100644 --- a/config/locales/simple_form.my.yml +++ b/config/locales/simple_form.my.yml @@ -59,7 +59,6 @@ my: setting_show_application: ပá€á€¯á€·á€…်á€á€„်ရန်အá€á€½á€€á€º သင်အသုံးပြုသည့် အက်ပလီကေးရှင်းကá€á€¯ သင့်ပá€á€¯á€·á€…်များá အသေးစá€á€á€ºá€€á€¼á€Šá€·á€ºá€›á€¾á€¯á€™á€¾á€¯á€á€½á€„် ပြသမည်ဖြစ်သည် setting_use_blurhash: Gradients မှာ ဖျောက်ထားသောရုပ်ပုံများá အရောင်များကá€á€¯á€¡á€á€¼á€±á€á€¶á€žá€±á€¬á€ºá€œá€Šá€ºá€¸ မည်သည့်အသေးစá€á€á€ºá€¡á€á€»á€€á€ºá€¡á€œá€€á€ºá€€á€á€¯á€™á€†á€á€¯ ရှုပ်ထွေးစေနá€á€¯á€„်ပါသည်ዠsetting_use_pending_items: အပေါ်အောက်လှá€á€™á€ºá€·á€™á€Šá€·á€ºá€¡á€…ား ကလစ်á€á€…်á€á€¯á€”ောက်á€á€½á€„် စာမျက်နှာအပ်ဒá€á€á€ºá€™á€»á€¬á€¸á€€á€á€¯ ဖျောက်ထားပါዠ- username: "%{domain} ရှဠသင့်အသုံးပြုသူအမည်မှာ á€á€°á€Šá€®áမရပါ" whole_word: အဓá€á€€á€…ကားလုံး သá€á€¯á€·á€™á€Ÿá€¯á€á€º စကားစုသည် အက္á€á€›á€¬á€‚á€á€”်းများသာဖြစ်ပါကစကားလုံးá€á€…်á€á€¯á€œá€¯á€¶á€¸á€”ှင့် ကá€á€¯á€€á€ºá€Šá€®á€™á€¾á€žá€¬ အသုံးပြုနá€á€¯á€„်မည်ဖြစ်သည် domain_allow: domain: ဤဒá€á€¯á€™á€á€”်းသည် ဤဆာဗာမှ အá€á€»á€€á€ºá€¡á€œá€€á€ºá€™á€»á€¬á€¸á€€á€á€¯ ရယူနá€á€¯á€„်မည်ဖြစ်ပြီး á€á€„်လာသောအá€á€»á€€á€ºá€¡á€œá€€á€ºá€™á€»á€¬á€¸á€€á€á€¯ စီမံဆောင်ရွက်ပေးပြီး သá€á€™á€ºá€¸á€†á€Šá€ºá€¸á€žá€½á€¬á€¸á€™á€Šá€ºá€–ြစ်သည် diff --git a/config/locales/simple_form.nl.yml b/config/locales/simple_form.nl.yml index 8592857d4c070ed911a9e604db567f14864d6ad9..c2b680ec53fe19cdd68beeca3790a9e581b12f50 100644 --- a/config/locales/simple_form.nl.yml +++ b/config/locales/simple_form.nl.yml @@ -59,7 +59,6 @@ nl: setting_show_application: De toepassing de je gebruikt om berichten te plaatsen wordt in de gedetailleerde weergave van het bericht getoond setting_use_blurhash: Wazige kleurovergangen zijn gebaseerd op de kleuren van de verborgen media, waarmee elk detail verdwijnt setting_use_pending_items: De tijdlijn wordt bijgewerkt door op het aantal nieuwe items te klikken, in plaats van dat deze automatisch wordt bijgewerkt - username: Jouw gebruikersnaam is uniek op %{domain} whole_word: Wanneer het trefwoord of zinsdeel alfanumeriek is, wordt het alleen gefilterd wanneer het hele woord overeenkomt domain_allow: domain: Dit domein is in staat om gegevens van deze server op te halen, en binnenkomende gegevens worden verwerkt en opgeslagen diff --git a/config/locales/simple_form.nn.yml b/config/locales/simple_form.nn.yml index db4007c4f70173aeed7723e83ec12897af744eee..e3b8fa3fcd485a664ed45bd50230a7bdca556801 100644 --- a/config/locales/simple_form.nn.yml +++ b/config/locales/simple_form.nn.yml @@ -57,7 +57,6 @@ nn: setting_show_application: Programmet du brukar for Ã¥ tuta blir vist i den detaljerte visninga av tuta dine setting_use_blurhash: Overgangar er basert pÃ¥ fargane til skjulte grafikkelement, men gjer detaljar utydelege setting_use_pending_items: Gøym tidslineoppdateringar bak eit klikk, i staden for Ã¥ rulla ned automatisk - username: Brukarnamnet ditt vert unikt pÃ¥ %{domain} whole_word: NÃ¥r søkjeordet eller setninga berre er alfanumerisk, nyttast det berre om det samsvarar med heile ordet domain_allow: domain: Dette domenet er i stand til Ã¥ henta data frÃ¥ denne tenaren og innkomande data vert handsama og lagra diff --git a/config/locales/simple_form.no.yml b/config/locales/simple_form.no.yml index 4cf678b83e81355d61dc6edbc06d7fd36607360d..efd451ce57e7321d64749f928f09181212ef87ac 100644 --- a/config/locales/simple_form.no.yml +++ b/config/locales/simple_form.no.yml @@ -57,7 +57,6 @@ setting_show_application: Appen du bruker til Ã¥ publisere innlegg vil bli vist i den detaljerte visningen til innleggene dine setting_use_blurhash: Gradientene er basert pÃ¥ fargene til de skjulte visualitetene, men gjør alle detaljer uklare setting_use_pending_items: Skjul tidslinjeoppdateringer bak et klikk, i stedet for Ã¥ automatisk la strømmen skrolle - username: Brukernavnet ditt vil være unikt pÃ¥ %{domain} whole_word: NÃ¥r søkeordet eller setningen bare er alfanumerisk, aktiveres det bare hvis det samsvarer med hele ordet domain_allow: domain: Dette domenet vil være i stand til Ã¥ hente data fra denne serveren og dets innkommende data vil bli prosessert og lagret diff --git a/config/locales/simple_form.oc.yml b/config/locales/simple_form.oc.yml index 566f4f100b8204a357f6fed40011cc2109557ea2..a3ae020b6b8fce008ee8d66b9f41e8885adf7d5b 100644 --- a/config/locales/simple_form.oc.yml +++ b/config/locales/simple_form.oc.yml @@ -52,7 +52,6 @@ oc: setting_show_application: Lo nom de l’aplicacion qu’utilizatz per publicar serà mostrat dins la vista detalhada de vòstres tuts setting_use_blurhash: Los degradats venon de las colors de l’imatge rescondut en enfoscar los detalhs setting_use_pending_items: Rescondre las actualizacions del flux d’actualitat aprèp un clic allòc de desfilar lo flux automaticament - username: Vòstre nom d’utilizaire serà unic sus %{domain} whole_word: Quand lo mot-clau o frasa es solament alfranumeric, serà pas qu’aplicat se correspond al mot complèt domain_allow: domain: Aqueste domeni poirà recuperar las donadas d’aqueste servidor estant e las donadas venent d’aqueste domeni serà n tractadas e gardadas diff --git a/config/locales/simple_form.pl.yml b/config/locales/simple_form.pl.yml index 48f1fb745f5ab3e68b5598c9bd00c4f06326eb06..43f0990ba9806c5aa6662b7be73d2c940b4f0e44 100644 --- a/config/locales/simple_form.pl.yml +++ b/config/locales/simple_form.pl.yml @@ -59,7 +59,6 @@ pl: setting_show_application: W informacjach o wpisie bÄ™dzie widoczna informacja o aplikacji, z której zostaÅ‚ wysÅ‚any setting_use_blurhash: Gradienty sÄ… oparte na kolorach ukrywanej zawartoÅ›ci, ale uniewidaczniajÄ… wszystkie szczegóły setting_use_pending_items: Ukryj aktualizacje osi czasu za klikniÄ™ciem, zamiast automatycznego przewijania strumienia - username: Twoja nazwa użytkownika bÄ™dzie niepowtarzalna na %{domain} whole_word: JeÅ›li sÅ‚owo lub fraza skÅ‚ada siÄ™ jedynie z liter lub cyfr, filtr bÄ™dzie zastosowany tylko do peÅ‚nych wystÄ…pieÅ„ domain_allow: domain: Ta domena bÄ™dzie mogÅ‚a pobierać dane z serwera, a dane przychodzÄ…ce z niej bÄ™dÄ… przetwarzane i przechowywane diff --git a/config/locales/simple_form.pt-BR.yml b/config/locales/simple_form.pt-BR.yml index bf46305eea9ce40c5a27b748d816b589c79f923a..a8fa1fd01230f33e6bf2e3cc21821d679df6ec2e 100644 --- a/config/locales/simple_form.pt-BR.yml +++ b/config/locales/simple_form.pt-BR.yml @@ -59,7 +59,6 @@ pt-BR: setting_show_application: O aplicativo que você usar para publicar será exibido na visão detalhada das suas publicações setting_use_blurhash: O blur é baseado nas cores da imagem oculta, ofusca a maioria dos detalhes setting_use_pending_items: Ocultar atualizações da linha do tempo atrás de um clique ao invés de rolar automaticamente - username: Seu nome de usuário será único em %{domain} whole_word: Quando a palavra-chave ou frase é inteiramente alfanumérica, ela será aplicada somente se corresponder a palavra inteira domain_allow: domain: Este domÃnio poderá obter dados deste servidor e os dados recebidos dele serão processados e armazenados diff --git a/config/locales/simple_form.pt-PT.yml b/config/locales/simple_form.pt-PT.yml index 4e34c5897bba420b1f1f0fcb192add364db02e70..de2484d6e9c35a75a07b2c09970536d197f7eedc 100644 --- a/config/locales/simple_form.pt-PT.yml +++ b/config/locales/simple_form.pt-PT.yml @@ -59,7 +59,6 @@ pt-PT: setting_show_application: A aplicação que usa para publicar será mostrada na vista pormenorizada das suas publicações setting_use_blurhash: Os gradientes são baseados nas cores das imagens escondidas, mas ofuscam quaisquer pormenores setting_use_pending_items: Ocultar atualizações da cronologia por detrás dum clique, em vez de rolar automaticamente o fluxo - username: O teu nome de utilizador será único em %{domain} whole_word: Quando a palavra-chave ou expressão-chave é somente alfanumérica, ela só será aplicada se corresponder à palavra completa domain_allow: domain: Este domÃnio será capaz de obter dados desta instância e os dados dele recebidos serão processados e armazenados diff --git a/config/locales/simple_form.ro.yml b/config/locales/simple_form.ro.yml index 6ed4905db9e6642161626e00b4b28b456ae3e06f..af3e000ac873b3d0e6e7d957116f639326b2443d 100644 --- a/config/locales/simple_form.ro.yml +++ b/config/locales/simple_form.ro.yml @@ -49,7 +49,6 @@ ro: setting_show_application: AplicaÈ›ia pe care o utilizaÈ›i pentru a posta va fi afiÈ™ată în vizualizarea detaliată a postărilor setting_use_blurhash: GradienÈ›ii sunt bazaÈ›i pe culorile vizualelor ascunse, dar ofuscă orice detalii setting_use_pending_items: Ascunde actualizările cronologice din spatele unui click în loc de a derula automat fluxul - username: Numele tău de utilizator va fi unic pe %{domain} whole_word: Când fraza sau cuvântul este doar alfanumeric, acesta se aplică doar dacă există o potrivire completă domain_allow: domain: Acest domeniu va putea prelua date de pe acest server È™i datele primite de la el vor fi procesate È™i stocate diff --git a/config/locales/simple_form.ru.yml b/config/locales/simple_form.ru.yml index 7e23edf7dddfe454c9bc15bb344733e6f9da9455..908cd645d4b5abc52062a79a23565105f52fbe60 100644 --- a/config/locales/simple_form.ru.yml +++ b/config/locales/simple_form.ru.yml @@ -59,7 +59,6 @@ ru: setting_show_application: При проÑмотре поÑта будет видно из какого Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð¾Ð½ отправлен. setting_use_blurhash: Градиенты оÑнованы на цветах Ñкрытых медиа, но Ñкрывают любые детали. setting_use_pending_items: Показывать Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð² ленте только поÑле клика вмеÑто автоматичеÑкой прокрутки. - username: Ваше Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð±ÑƒÐ´ÐµÑ‚ уникальным на %{domain} whole_word: ЕÑли Ñлово или фраза ÑоÑтоит только из букв и цифр, ÑопоÑтавление произойдёт только по полному Ñовпадению domain_allow: domain: Ðтот домен Ñможет получать данные Ñ Ñтого Ñервера и его входÑщие данные будут обрабатыватьÑÑ Ð¸ Ñохранены diff --git a/config/locales/simple_form.sc.yml b/config/locales/simple_form.sc.yml index 56638352a815d5ef2f54e66f68e0b665aba5bf75..07110da1dd35c225f236cc6164c9c01a52726d6d 100644 --- a/config/locales/simple_form.sc.yml +++ b/config/locales/simple_form.sc.yml @@ -53,7 +53,6 @@ sc: setting_show_application: S'aplicatzione chi impreas pro publicare tuts at a èssere ammustrada in sa visualizatzione de detà lliu de is tuts setting_use_blurhash: Is gradientes sunt basados in subra de is colores de is immà gines cuadas ma imbelant totu is detà llios setting_use_pending_items: Cua is atualizatziones in segus de un'incarcu imbetzes de iscùrrere in automà ticu su flussu de publicatziones - username: Su nòmine de utente tuo at a èssere ùnicu in %{domain} whole_word: Cando sa crae (faeddu o frà sia) siat isceti alfanumèrica, s'at a aplicare isceti si currispondet a su faeddu intreu domain_allow: domain: Custu domìniu at a pòdere recuperare datos dae custu serbidore e is datos in intrada dae cue ant a èssere protzessados e archiviados diff --git a/config/locales/simple_form.sco.yml b/config/locales/simple_form.sco.yml index 0dc4fdd7972023884556b0264a8012e9c790c3a1..85f075a15ff36cbef6bcea397293525af1bc4a3c 100644 --- a/config/locales/simple_form.sco.yml +++ b/config/locales/simple_form.sco.yml @@ -57,7 +57,6 @@ sco: setting_show_application: The application thit ye uise fir tae post wull be displayed in the detailt view o yer posts setting_use_blurhash: Gradients is based aff o the colors o the image thit's hid, but ye cannae see onie details setting_use_pending_items: Plank timeline updates ahin a chap insteid o automatic scrowin o the feed - username: Yer uisernemm wull be a ane aff on %{domain} whole_word: Whan the keywird or phrase is alphanumeric ainly, it wull ainly get applied if it matches the haill wird domain_allow: domain: This domain wull be able tae get data fae this server an data comin in fae it wull get processed an stowed diff --git a/config/locales/simple_form.si.yml b/config/locales/simple_form.si.yml index e107d82ace2ffaaef5d7eac8b29af86dee1b93bf..d62c5a0eb9f582c376848edb41fe25a3b66b05e1 100644 --- a/config/locales/simple_form.si.yml +++ b/config/locales/simple_form.si.yml @@ -57,7 +57,6 @@ si: setting_show_application: ඔබ පළ කිරීමට භà·à·€à·’à¶à· කරන යෙදුම ඔබගේ පළ කිරීම් වල සවිස්à¶à¶»à·à¶à·Šà¶¸à¶š දර්à·à¶±à¶ºà·š පෙන්වනු ඇචsetting_use_blurhash: අනුක්â€à¶»à¶¸à¶« à·ƒà·à¶Ÿà·€à·”ණු දෘà·à·Šâ€à¶ºà·€à¶½ වර්ණ මචපදනම් වන නමුà¶à·Š ඕනෑම විස්à¶à¶»à¶ºà¶šà·Š අපà·à·„à·à¶¯à·’ලි කරයි setting_use_pending_items: සංග්â€à¶»à·„ය ස්වයංක්â€à¶»à·“යව අනුචලනය කරනව෠වෙනුවට ක්ලික් කිරීමක් පිටුපස කà·à¶½à¶»à·šà¶›à· යà·à·€à¶à·Šà¶šà·à¶½à·“න සඟවන්න - username: ඔබගේ පරිà·à·“ලක නà·à¶¸à¶º %{domain}à·„à·’ අද්විà¶à·“ය වනු ඇචwhole_word: මූල පදය à·„à· à·€à·à¶šà·Šâ€à¶º ඛණ්ඩය අක්ෂරà·à¶‚ක පමණක් වන විට, එය යෙදෙන්නේ එය සම්පූර්ණ වචනයට ගà·à¶½à¶´à·š නම් පමණි domain_allow: domain: මෙම වසමට මෙම සේවà·à¶¯à·à¶ºà¶šà¶ºà·™à¶±à·Š දà¶à·Šà¶ ලබ෠ගà·à¶±à·“මට à·„à·à¶šà·’ වන අà¶à¶» එයින් ලà·à¶¶à·™à¶± දà¶à·Šà¶ සකස් කර ගබඩ෠කරනු ලà·à¶¶à·š diff --git a/config/locales/simple_form.sk.yml b/config/locales/simple_form.sk.yml index e8fb86f29b1969f0811ce50b14f633a76dd0adb6..35ebca0bba7e51a4a4f7ad1b1bb382d230de8e04 100644 --- a/config/locales/simple_form.sk.yml +++ b/config/locales/simple_form.sk.yml @@ -42,7 +42,6 @@ sk: setting_show_application: Aplikácia, ktorú použÃvaÅ¡ na pÃsanie prÃspevkov, bude zobrazená v podrobnom náhľade jednotlivých tvojÃch prÃspevkov setting_use_blurhash: Prechody sú založené na farbách skrytých vizuálov, ale zahaľujú akékoľvek podrobnosti setting_use_pending_items: Skry aktualizovanie Äasovej osi tak, aby bola naÄitávaná iba po kliknutÃ, namiesto samostatného posúvania - username: Tvoja prezývka bude unikátna pre server %{domain} whole_word: Ak je kľúÄové slovo, alebo fráza poskladaná iba s pÃsmen a ÄÃsel, bude použité iba ak sa zhoduje s celým výrazom domain_allow: domain: Táto doména bude schopná zÃskavaÅ¥ dáta z tohto servera, a prichádzajúce dáta nÃm budú spracovávané a uložené diff --git a/config/locales/simple_form.sl.yml b/config/locales/simple_form.sl.yml index ac14735a91543ed0414941433f0f987dfda3faa5..9695ad4defb87ea538496bcd1cf3bda56f027d5d 100644 --- a/config/locales/simple_form.sl.yml +++ b/config/locales/simple_form.sl.yml @@ -59,7 +59,6 @@ sl: setting_show_application: Aplikacija, ki jo uporabljate za objavljanje, bo prikazana v podrobnem pogledu vaÅ¡ih objav setting_use_blurhash: Prelivi temeljijo na barvah skrite vizualne slike, vendar zakrivajo vse podrobnosti setting_use_pending_items: Skrij posodobitev Äasovnice za klikom namesto samodejnega posodabljanja - username: VaÅ¡e uporabniÅ¡ko ime bo edinstveno na %{domain} whole_word: Ko je kljuÄna beseda ali fraza samo alfanumeriÄna, se bo uporabljala le, Äe se bo ujemala s celotno besedo domain_allow: domain: Ta domena bo lahko prejela podatke s tega strežnika, dohodni podatki z nje pa bodo obdelani in shranjeni diff --git a/config/locales/simple_form.sq.yml b/config/locales/simple_form.sq.yml index a11037fa92d426ab4a200ca58f36359e002a18f9..ddbebdf57136ef52c9fe30cd2b07ca1dc2e109e4 100644 --- a/config/locales/simple_form.sq.yml +++ b/config/locales/simple_form.sq.yml @@ -59,7 +59,6 @@ sq: setting_show_application: Aplikacioni që përdorni për mesazhe do të shfaqet te pamja e hollësishme për mesazhet tuaj setting_use_blurhash: Gradientët bazohen në ngjyrat e elementëve pamorë të fshehur, por errësojnë çfarëdo hollësie setting_use_pending_items: Fshihi përditësimet e rrjedhës kohore pas një klikimi, në vend të rrëshqitjes automatike nëpër prurje - username: Emri juaj i përdoruesit do të jetë unik në %{domain} whole_word: Kur fjalëkyçi ose fraza është vetëm numerike, do të aplikohet vetëm nëse përputhet me krejt fjalën domain_allow: domain: Kjo përkatësi do të jetë në gjendje të sjellë të dhëna prej këtij shërbyesi dhe të dhënat ardhëse prej tij do të përpunohen dhe depozitohen diff --git a/config/locales/simple_form.sr-Latn.yml b/config/locales/simple_form.sr-Latn.yml index e987145c1378b8ea03f20fee2c20f702a80ce5d5..e268fd20ee6641bee45d0f19ee4fdf01fa5ad22c 100644 --- a/config/locales/simple_form.sr-Latn.yml +++ b/config/locales/simple_form.sr-Latn.yml @@ -59,7 +59,6 @@ sr-Latn: setting_show_application: Aplikacija koju koristite za objavljivanje će biti prikazana u detaljnom prikazu vaÅ¡ih objava setting_use_blurhash: Gradijenti se formiraju na osnovu bojâ skrivenih slika i zamućuju prikaz, prikrivajući detalje setting_use_pending_items: Sakriva ažuriranja vremenske linije iza klika umesto automatskog ažuriranja i pomeranja vremenske linije - username: VaÅ¡ nadimak će biti jedinstven na %{domain} whole_word: Kada je kljuÄna reÄ ili fraza iskljuÄivo alfanumeriÄka, biće primenjena samo ako se podudara sa celom reÄju domain_allow: domain: Ovaj domen će moći da preuzima podatke sa ovog servera i dolazni podaci sa njega će se obraÄ‘ivati i Äuvati diff --git a/config/locales/simple_form.sr.yml b/config/locales/simple_form.sr.yml index 8ee58637703277919f427379a95a834490cda3d4..9c412cd604d56a6d10221aa543940929a8b47e44 100644 --- a/config/locales/simple_form.sr.yml +++ b/config/locales/simple_form.sr.yml @@ -59,7 +59,6 @@ sr: setting_show_application: Ðпликација коју кориÑтите за објављивање ће бити приказана у детаљном приказу ваших објава setting_use_blurhash: Градијенти Ñе формирају на оÑнову бојâ Ñкривених Ñлика и замућују приказ, прикривајући детаље setting_use_pending_items: Сакрива ажурирања временÑке линије иза клика умеÑто аутоматÑког ажурирања и померања временÑке линије - username: Ваш надимак ће бити јединÑтвен на %{domain} whole_word: Када је кључна реч или фраза иÑкључиво алфанумеричка, биће примењена Ñамо ако Ñе подудара Ñа целом речjу domain_allow: domain: Овај домен ће моћи да преузима податке Ñа овог Ñервера и долазни подаци Ñа њега ће Ñе обрађивати и чувати diff --git a/config/locales/simple_form.sv.yml b/config/locales/simple_form.sv.yml index cf914b058375360459056898408a9f653205e463..60847fc94b7d8fd761f450546ebe6e1c781a74e3 100644 --- a/config/locales/simple_form.sv.yml +++ b/config/locales/simple_form.sv.yml @@ -59,7 +59,6 @@ sv: setting_show_application: Applikationen du använder för att göra inlägg kommer visas i detaljvyn för dina inlägg setting_use_blurhash: Gradienter är baserade pÃ¥ färgerna av de dolda objekten men fördunklar alla detaljer setting_use_pending_items: Dölj tidslinjeuppdateringar bakom ett klick istället för att automatiskt bläddra i flödet - username: Ditt användarnamn mÃ¥ste vara unikt pÃ¥ %{domain} whole_word: När sökordet eller frasen endast är alfanumerisk, kommer det endast att tillämpas om det matchar hela ordet domain_allow: domain: Denna domän kommer att kunna hämta data frÃ¥n denna server och inkommande data frÃ¥n den kommer att behandlas och lagras diff --git a/config/locales/simple_form.th.yml b/config/locales/simple_form.th.yml index 345f8c183de2455255e54bea4a71467421bc381b..8fddeaf42ded2da4e77eb3405c7c4257b6d64320 100644 --- a/config/locales/simple_form.th.yml +++ b/config/locales/simple_form.th.yml @@ -59,7 +59,6 @@ th: setting_show_application: จะà¹à¸ªà¸”งà¹à¸à¸›à¸žà¸¥à¸´à¹€à¸„ชันที่คุณใช้ในà¸à¸²à¸£à¹‚พสต์ในมุมมà¸à¸‡à¹‚ดยละเà¸à¸µà¸¢à¸”ขà¸à¸‡à¹‚พสต์ขà¸à¸‡à¸„ุณ setting_use_blurhash: à¸à¸²à¸£à¹„ล่ระดับสีà¸à¸´à¸‡à¸•à¸²à¸¡à¸ªà¸µà¸‚à¸à¸‡à¸ าพที่ซ่à¸à¸™à¸à¸¢à¸¹à¹ˆà¹à¸•à¹ˆà¸—ำให้รายละเà¸à¸µà¸¢à¸”ใด ๆ คลุมเครืภsetting_use_pending_items: ซ่à¸à¸™à¸à¸²à¸£à¸à¸±à¸›à¹€à¸”ตเส้นเวลาไว้หลังà¸à¸²à¸£à¸„ลิà¸à¹à¸—นที่จะเลื่à¸à¸™à¸Ÿà¸µà¸”โดยà¸à¸±à¸•à¹‚นมัติ - username: ชื่à¸à¸œà¸¹à¹‰à¹ƒà¸Šà¹‰à¸‚à¸à¸‡à¸„ุณจะไม่ซ้ำà¸à¸±à¸™à¹ƒà¸™ %{domain} whole_word: เมื่à¸à¸„ำสำคัà¸à¸«à¸£à¸·à¸à¸§à¸¥à¸µà¹€à¸›à¹‡à¸™à¸•à¸±à¸§à¸à¸±à¸à¸©à¸£à¹à¸¥à¸°à¸•à¸±à¸§à¹€à¸¥à¸‚เท่านั้น จะนำไปใช้à¸à¸±à¸šà¸„ำสำคัà¸à¸«à¸£à¸·à¸à¸§à¸¥à¸µà¸«à¸²à¸à¸•à¸£à¸‡à¸à¸±à¸™à¸—ั้งคำเท่านั้น domain_allow: domain: โดเมนนี้จะสามารถดึงข้à¸à¸¡à¸¹à¸¥à¸ˆà¸²à¸à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸à¸£à¹Œà¸™à¸µà¹‰à¹à¸¥à¸°à¸ˆà¸°à¸›à¸£à¸°à¸¡à¸§à¸¥à¸œà¸¥à¹à¸¥à¸°à¸ˆà¸±à¸”เà¸à¹‡à¸šà¸‚้à¸à¸¡à¸¹à¸¥à¸‚าเข้าจาà¸à¹‚ดเมน diff --git a/config/locales/simple_form.tr.yml b/config/locales/simple_form.tr.yml index a2f42e2596d78e623752d4b742af84b962fbb0e9..5867314669d8141f0af9cd6cb827cff54c70f2b9 100644 --- a/config/locales/simple_form.tr.yml +++ b/config/locales/simple_form.tr.yml @@ -59,7 +59,6 @@ tr: setting_show_application: Gönderi gönderimi için kullandığınız uygulama, gönderilerinizin ayrıntılı görünümünde gösterilecektir setting_use_blurhash: Gradyenler gizli görsellerin renklerine dayanır, ancak detayları gizler setting_use_pending_items: Akışı otomatik olarak kaydırmak yerine, zaman çizelgesi güncellemelerini tek bir tıklamayla gizleyin - username: Kullanıcı adınız %{domain} alanında benzersiz olacak whole_word: Anahtar kelime veya kelime öbeÄŸi yalnızca alfasayısal olduÄŸunda, yalnızca tüm sözcükle eÅŸleÅŸirse uygulanır domain_allow: domain: Bu alan adı, bu sunucudan veri alabilecek ve ondan gelen veri iÅŸlenecek ve saklanacaktır diff --git a/config/locales/simple_form.uk.yml b/config/locales/simple_form.uk.yml index be4d4b764cfcb4ae5164173b75a5207b9ec5c570..fa67454d6279caf59fc70c8d44d2b9b951761579 100644 --- a/config/locales/simple_form.uk.yml +++ b/config/locales/simple_form.uk.yml @@ -59,7 +59,6 @@ uk: setting_show_application: ЗаÑтоÑунок, за допомогою Ñкого ви зробили допиÑ, буде показано Ñеред подробиць допиÑу setting_use_blurhash: Градієнти, що базуютьÑÑ Ð½Ð° кольорах прихованих медіа, але роблÑÑ‚ÑŒ нерозрізненними будь-Ñкі деталі setting_use_pending_items: Ðе додавати нові Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð´Ð¾ Ñтрічок миттєво, показувати лише піÑÐ»Ñ Ð´Ð¾Ð´Ð°Ñ‚ÐºÐ¾Ð²Ð¾Ð³Ð¾ ÐºÐ»Ð°Ñ†Ð°Ð½Ð½Ñ - username: Ваше ім'Ñ ÐºÐ¾Ñ€Ð¸Ñтувача буде унікальним у %{domain} whole_word: Якщо пошукове Ñлово або фраза міÑтить лише літери та цифри, воно має збігатиÑÑ Ñ†Ñ–Ð»ÐºÐ¾Ð¼ domain_allow: domain: Цей домен зможе отримувати дані з цього Ñервера. Вхідні дані будуть оброблені та збережені diff --git a/config/locales/simple_form.vi.yml b/config/locales/simple_form.vi.yml index b5da24dd16f994c0dfb661bfcd8b876be5c0db94..d0e7d165bb0caa50189edab037533147bcfab61b 100644 --- a/config/locales/simple_form.vi.yml +++ b/config/locales/simple_form.vi.yml @@ -59,7 +59,6 @@ vi: setting_show_application: Tên ứng dụng bạn dùng để đăng tút sẽ hiện trong chi tiết của tút setting_use_blurhash: Lá»›p phủ má» dá»±a trên mà u sắc của hình ảnh nhạy cảm setting_use_pending_items: Dồn lại toà n bá»™ tút má»›i và chỉ hiển thị khi nhấn và o - username: Tên ngÆ°á»i dùng của bạn sẽ là duy nhất trên %{domain} whole_word: Khi từ khóa hoặc cụm từ là chữ và số, nó sẽ chỉ hiện ra những từ chÃnh xác nhÆ° váºy domain_allow: domain: Máy chủ nà y sẽ tiếp nháºn dữ liệu, rồi sau đó xá» lý và lÆ°u trữ diff --git a/config/locales/simple_form.zh-CN.yml b/config/locales/simple_form.zh-CN.yml index 8de23085ddf3130a74859c2e1a2ad5b23b8588a9..2dc84f11a88907d35eb89e6ec707d48226fec492 100644 --- a/config/locales/simple_form.zh-CN.yml +++ b/config/locales/simple_form.zh-CN.yml @@ -59,7 +59,6 @@ zh-CN: setting_show_application: ä½ ç”¨æ¥å‘表嘟文的应用程åºå°†ä¼šåœ¨ä½ 嘟文的详细内容ä¸æ˜¾ç¤º setting_use_blurhash: æ¸å˜æ˜¯åŸºäºŽæ¨¡ç³ŠåŽçš„éšè—内容生æˆçš„ setting_use_pending_items: å…³é—自动滚动更新,时间轴会在点击åŽæ›´æ–° - username: ä½ çš„ç”¨æˆ·å在 %{domain} 上是唯一的 whole_word: 如果关键è¯åªåŒ…å«å—æ¯å’Œæ•°å—,将åªåœ¨è¯è¯å®Œå…¨åŒ¹é…æ—¶æ‰ä¼šåº”用 domain_allow: domain: 该站点将能够从该æœåŠ¡å™¨ä¸Šæ‹‰å–æ•°æ®ï¼Œå¹¶å¤„ç†å’Œå˜å‚¨æ”¶åˆ°çš„æ•°æ®ã€‚ diff --git a/config/locales/simple_form.zh-HK.yml b/config/locales/simple_form.zh-HK.yml index 02ef592c93b18caf6aee9bef3732680274e11871..d1ccbbe8af1bfb440cf592c45d5d71ef69a1bdbb 100644 --- a/config/locales/simple_form.zh-HK.yml +++ b/config/locales/simple_form.zh-HK.yml @@ -59,7 +59,6 @@ zh-HK: setting_show_application: ä½ ç”¨ä¾†ç™¼è¡¨æ–‡ç« çš„æ‡‰ç”¨ç¨‹å¼ï¼Œå°‡æœƒé¡¯ç¤ºåœ¨ä½ æ–‡ç« çš„è©³ç´°æª¢è¦–ä¸ setting_use_blurhash: 漸變圖樣會基於隱è—媒體內容產生,但所有細節會變得模糊 setting_use_pending_items: 關閉自動滾動更新,時間軸會在點擊後更新 - username: ä½ çš„ä½¿ç”¨è€…å稱在 %{domain} 將是ç¨ä¸€ç„¡äºŒçš„ whole_word: 如果關éµå—或詞組僅有å—æ¯èˆ‡æ•¸å—,則其將åªåœ¨ç¬¦åˆæ•´å€‹å–®å—的時候æ‰æœƒå¥—用 domain_allow: domain: æ¤ç¶²åŸŸå°‡èƒ½å¾žæ¤ç«™ç²å–資料,而æ¤ç«™ç™¼å‡ºçš„數據也會被處ç†å’Œå˜å„²ã€‚ diff --git a/config/locales/simple_form.zh-TW.yml b/config/locales/simple_form.zh-TW.yml index 882f1d3ffc2b9c54d885c54a6d2a2a7e51fd48ea..d2c1213f22073c22d282c49fde9652cda652ecc7 100644 --- a/config/locales/simple_form.zh-TW.yml +++ b/config/locales/simple_form.zh-TW.yml @@ -59,7 +59,6 @@ zh-TW: setting_show_application: 您用來發嘟文的應用程å¼å°‡æœƒåœ¨æ‚¨å˜Ÿæ–‡çš„詳細檢視顯示 setting_use_blurhash: 彩色漸層圖樣是基於隱è—媒體內容é¡è‰²ç”¢ç”Ÿï¼Œæ‰€æœ‰ç´°ç¯€æœƒè®Šå¾—模糊 setting_use_pending_items: 關閉自動æ²å‹•æ›´æ–°ï¼Œæ™‚間軸åªæœƒåœ¨é»žæ“Šå¾Œæ›´æ–° - username: 您的使用者å稱將於 %{domain} 是ç¨ä¸€ç„¡äºŒçš„ whole_word: 如果關éµå—或詞組僅有å—æ¯èˆ‡æ•¸å—,則其將åªåœ¨ç¬¦åˆæ•´å€‹å–®å—的時候æ‰æœƒå¥—用 domain_allow: domain: æ¤ç¶²åŸŸå°‡èƒ½å¤ 攫å–本站資料,而自該網域發出的資料也會於本站處ç†å’Œç•™å˜ã€‚