Add progress indicator to sign-up flow (#24545)
This commit is contained in:
		
							parent
							
								
									955ec252a4
								
							
						
					
					
						commit
						e5c0b16735
					
				
					 76 changed files with 157 additions and 105 deletions
				
			
		|  | @ -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 | ||||
|  |  | |||
|  | @ -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')) | ||||
|  |  | |||
|  | @ -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; | ||||
|   } | ||||
| } | ||||
|  |  | |||
|  | @ -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] | ||||
|  |  | |||
|  | @ -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) | ||||
| 
 | ||||
|  |  | |||
|  | @ -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 'auth/shared/progress', stage: 'confirm' | ||||
| 
 | ||||
|   %h1.title= t('auth.setup.title') | ||||
|   %p.lead= t('auth.setup.email_settings_hint_html', email: content_tag(:strong, @user.email)) | ||||
| 
 | ||||
|   = render 'shared/error_messages', object: @user | ||||
| 
 | ||||
|     .fields-group | ||||
|       %p.hint= t('auth.setup.email_below_hint_html') | ||||
|   %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('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)) | ||||
|     = f.submit t('auth.resend_confirmation'), class: 'button' | ||||
| 
 | ||||
| .form-footer= render 'auth/shared/links' | ||||
|  |  | |||
|  | @ -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 } | ||||
|  |  | |||
							
								
								
									
										25
									
								
								app/views/auth/shared/_progress.html.haml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								app/views/auth/shared/_progress.html.haml
									
									
									
									
									
										Normal file
									
								
							|  | @ -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') | ||||
|  | @ -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: | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -59,7 +59,6 @@ ar: | |||
|         setting_show_application: سيُعرَض اسم التطبيق الذي تستخدمه عند النشر في العرض المفصّل لمنشوراتك | ||||
|         setting_use_blurhash: الألوان التدرّجية مبنية على ألوان المرئيات المخفية ولكنها تحجب كافة التفاصيل | ||||
|         setting_use_pending_items: إخفاء تحديثات الخط وراء نقرة بدلًا مِن التمرير التلقائي للتدفق | ||||
|         username: اسم المستخدم الخاص بك سوف يكون فريدا مِن نوعه على %{domain} | ||||
|         whole_word: إذا كانت الكلمة أو العبارة مكونة من أرقام وحروف فقط سوف يتم تطبيقها فقط عند مطابقة الكلمة ككل | ||||
|       domain_allow: | ||||
|         domain: سيكون بإمكان هذا النطاق جلب البيانات من هذا الخادم ومعالجة وتخزين البيانات الواردة منه | ||||
|  |  | |||
|  | @ -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: | ||||
|  |  | |||
|  | @ -59,7 +59,6 @@ be: | |||
|         setting_show_application: Праграма, праз якую вы ствараеце допісы, будзе паказвацца ў падрабязнасцях пра допісы | ||||
|         setting_use_blurhash: Градыенты заснаваны на колерах схаваных выяў, але размываюць дэталі | ||||
|         setting_use_pending_items: Схаваць абнаўленні стужкі за клікам замест аўтаматычнага пракручвання стужкі | ||||
|         username: Ваша імя карыстальніка будзе ўнікальным на %{domain} | ||||
|         whole_word: Калі ключавое слова ці фраза складаецца толькі з літар і лічбаў, яно будзе ўжытае толькі калі супадае з усім словам | ||||
|       domain_allow: | ||||
|         domain: Гэты дамен зможа атрымліваць даныя з гэтага сервера. Даныя з гэтага дамену будуць апрацаваныя ды захаваныя | ||||
|  |  | |||
|  | @ -59,7 +59,6 @@ bg: | |||
|         setting_show_application: Приложението, което ползвате за публикуване, ще се показва в подробностите на публикацията ви | ||||
|         setting_use_blurhash: Преливането е въз основа на цветовете на скритите визуализации, но се замъгляват подробностите | ||||
|         setting_use_pending_items: Да се показват обновявания на часовата ос само след щракване вместо автоматично превъртане на инфоканала | ||||
|         username: Вашето потребителско име ще е неповторимо в %{domain} | ||||
|         whole_word: Ако ключовата дума или фраза е само буквеноцифрена, то ще се приложи само, ако съвпадне с цялата дума | ||||
|       domain_allow: | ||||
|         domain: Домейнът ще може да извлича данни от този сървър и входящите данни от него ще се обработят и съхранят | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -51,7 +51,6 @@ ckb: | |||
|         setting_show_application: بەرنامەیەک کە بە یارمەتیت توت دەکەیت، لە دیمەنی وردی توتەکان پیشان دەدرێت | ||||
|         setting_use_blurhash: سێبەرەکان لە سەر بنەمای ڕەنگەکانی بەکارهاتوو لە وێنە داشاراوەکان دروست دەبن بەڵام وردەزانیاری وێنە تێیدا ڕوون نییە | ||||
|         setting_use_pending_items: لەجیاتی ئەوەی بە خۆکارانە کێشان هەبێت لە نووسراوەکان بە کرتەیەک بەڕۆژبوونی پێرستی نووسراوەکان بشارەوە | ||||
|         username: ناوی بەکارهێنەری ئێوە لەسەر %{domain} یەکتا دەبێت | ||||
|         whole_word: کاتێک کلیلوشە بریتییە لە ژمارە و پیت، تنەها کاتێک پەیدا دەبێت کە لەگەڵ گشتی وشە لە نێو دەقەکە هاوئاهەنگ بێت، نە تەنها لەگەڵ بەشێک لە وشە | ||||
|       domain_allow: | ||||
|         domain: ئەم دۆمەینە دەتوانێت دراوە لە ئەم ڕاژە وەربگرێت و دراوەی ئەم دۆمەینە لێرە ڕێکدەخرین و پاشکەوت دەکرێن | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -59,7 +59,6 @@ el: | |||
|         setting_show_application: Η εφαρμογή που χρησιμοποιείς για να στέλνεις τα τουτ σου θα εμφανίζεται στις αναλυτικές λεπτομέρειες τους | ||||
|         setting_use_blurhash: Οι χρωματισμοί βασίζονται στα χρώματα του κρυμμένου πολυμέσου αλλά θολώνουν τις λεπτομέρειες | ||||
|         setting_use_pending_items: Εμφάνιση ενημερώσεων ροής μετά από κλικ αντί για αυτόματη κύλισή τους | ||||
|         username: Το όνομα χρήστη σου θα είναι μοναδικό στο %{domain} | ||||
|         whole_word: Όταν η λέξη ή η φράση κλειδί είναι μόνο αλφαριθμητική, θα εφαρμοστεί μόνο αν ταιριάζει με ολόκληρη τη λέξη | ||||
|       domain_allow: | ||||
|         domain: Ο τομέας αυτός θα επιτρέπεται να ανακτά δεδομένα από αυτό τον διακομιστή και τα εισερχόμενα δεδομένα θα επεξεργάζονται και θα αποθηκεύονται | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -59,7 +59,6 @@ fa: | |||
|         setting_show_application: برنامهای که به کمک آن فرسته میزنید، در جزئیات فرسته شما نمایش خواهد یافت | ||||
|         setting_use_blurhash: سایهها بر اساس رنگهای بهکاررفته در تصویر پنهانشده ساخته میشوند ولی جزئیات تصویر در آنها آشکار نیست | ||||
|         setting_use_pending_items: به جای پیشرفتن خودکار در فهرست، بهروزرسانی فهرست نوشتهها را پشت یک کلیک پنهان کن | ||||
|         username: نام کاربری شما روی %{domain} یکتا خواهد بود | ||||
|         whole_word: اگر کلیدواژه فقط دارای حروف و اعداد باشد، تنها وقتی پیدا میشود که با کل یک واژه در متن منطبق باشد، نه با بخشی از یک واژه | ||||
|       domain_allow: | ||||
|         domain: این دامین خواهد توانست دادهها از این سرور را دریافت کند و دادههای از این دامین در اینجا پردازش و ذخیره خواهند شد | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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" | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -59,7 +59,6 @@ he: | |||
|         setting_show_application: היישום בו נעשה שימוש כדי לחצרץ יופיע בתצוגה המפורטת של החצרוץ | ||||
|         setting_use_blurhash: הגראדיינטים מבוססים על תוכן התמונה המוסתרת, אבל מסתירים את כל הפרטים | ||||
|         setting_use_pending_items: הסתר עדכוני פיד מאחורי קליק במקום לגלול את הפיד אוטומטית | ||||
|         username: שם המשתמש שלך יהיה ייחודי ב- %{domain} | ||||
|         whole_word: אם מילת מפתח או ביטוי הם אלפאנומריים בלבד, הם יופעלו רק אם נמצאה התאמה למילה שלמה | ||||
|       domain_allow: | ||||
|         domain: דומיין זה יוכל לייבא מידע משרת זה והמידע המגיע ממנו יעובד ויאופסן | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -49,7 +49,6 @@ hy: | |||
|         setting_show_application: Գրառման մանրամասներում կերեւայ թէ որ ծրագրով ես հրապարակել այն | ||||
|         setting_use_blurhash: Կտորները հիմնուում են թաքցուած վիզուալի վրայ՝ խամրեցնելով դետալները | ||||
|         setting_use_pending_items: Թաքցնել հոսքի թարմացումները կտտոի ետեւում՝ աւտօմատ թարմացուող հոսքի փոխարէն | ||||
|         username: Քո օգտանունը պէտք է եզակի լինի %{domain}-ում։ | ||||
|         whole_word: Եթէ բանալի բառը կամ արտայայտութիւնը պարունակում է միայն այբբենական նիշեր եւ թուեր, ապա այն կիրառուելու է ամբողջ բառի հետ համընկնելու դէպքում միայն | ||||
|       domain_allow: | ||||
|         domain: Այս տիրոյթը կարող է ստանալ տուեալներ այս սպասարկչից եւ ստացուող տուեալները կարող են օգտագործուել եւ պահուել | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -59,7 +59,6 @@ ja: | |||
|         setting_show_application: 投稿するのに使用したアプリが投稿の詳細ビューに表示されるようになります | ||||
|         setting_use_blurhash: ぼかしはメディアの色を元に生成されますが、細部は見えにくくなっています | ||||
|         setting_use_pending_items: 新着があってもタイムラインを自動的にスクロールしないようにします | ||||
|         username: あなたのユーザー名は%{domain}の中で重複していない必要があります | ||||
|         whole_word: キーワードまたはフレーズが英数字のみの場合、単語全体と一致する場合のみ適用されるようになります | ||||
|       domain_allow: | ||||
|         domain: 登録するとこのサーバーからデータを受信したり、このドメインから受信するデータを処理して保存できるようになります | ||||
|  |  | |||
|  | @ -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: | ||||
|  |  | |||
|  | @ -59,7 +59,6 @@ ko: | |||
|         setting_show_application: 당신이 게시물을 작성하는데에 사용한 앱이 게시물의 상세정보에 표시 됩니다 | ||||
|         setting_use_blurhash: 그라디언트는 숨겨진 내용의 색상을 기반으로 하지만 상세 내용은 보이지 않게 합니다 | ||||
|         setting_use_pending_items: 타임라인의 새 게시물을 자동으로 보여 주는 대신, 클릭해서 나타내도록 합니다 | ||||
|         username: 당신의 사용자명은 %{domain} 안에서 유일해야 합니다 | ||||
|         whole_word: 키워드가 영문과 숫자로만 이루어 진 경우, 단어 전체에 매칭 되었을 때에만 작동하게 합니다 | ||||
|       domain_allow: | ||||
|         domain: 이 도메인은 이 서버에서 데이터를 가져갈 수 있고 이 도메인에서 보내진 데이터는 처리되고 저장 됩니다 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -59,7 +59,6 @@ my: | |||
|         setting_show_application: ပို့စ်တင်ရန်အတွက် သင်အသုံးပြုသည့် အက်ပလီကေးရှင်းကို သင့်ပို့စ်များ၏ အသေးစိတ်ကြည့်ရှုမှုတွင် ပြသမည်ဖြစ်သည် | ||||
|         setting_use_blurhash: Gradients မှာ ဖျောက်ထားသောရုပ်ပုံများ၏ အရောင်များကိုအခြေခံသော်လည်း မည်သည့်အသေးစိတ်အချက်အလက်ကိုမဆို ရှုပ်ထွေးစေနိုင်ပါသည်။ | ||||
|         setting_use_pending_items: အပေါ်အောက်လှိမ့်မည့်အစား ကလစ်တစ်ခုနောက်တွင် စာမျက်နှာအပ်ဒိတ်များကို ဖျောက်ထားပါ။ | ||||
|         username: "%{domain} ရှိ သင့်အသုံးပြုသူအမည်မှာ တူညီ၍မရပါ" | ||||
|         whole_word: အဓိကစကားလုံး သို့မဟုတ် စကားစုသည် အက္ခရာဂဏန်းများသာဖြစ်ပါကစကားလုံးတစ်ခုလုံးနှင့် ကိုက်ညီမှသာ အသုံးပြုနိုင်မည်ဖြစ်သည် | ||||
|       domain_allow: | ||||
|         domain: ဤဒိုမိန်းသည် ဤဆာဗာမှ အချက်အလက်များကို ရယူနိုင်မည်ဖြစ်ပြီး ဝင်လာသောအချက်အလက်များကို စီမံဆောင်ရွက်ပေးပြီး သိမ်းဆည်းသွားမည်ဖြစ်သည် | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -59,7 +59,6 @@ ru: | |||
|         setting_show_application: При просмотре поста будет видно из какого приложения он отправлен. | ||||
|         setting_use_blurhash: Градиенты основаны на цветах скрытых медиа, но скрывают любые детали. | ||||
|         setting_use_pending_items: Показывать обновления в ленте только после клика вместо автоматической прокрутки. | ||||
|         username: Ваше имя пользователя будет уникальным на %{domain} | ||||
|         whole_word: Если слово или фраза состоит только из букв и цифр, сопоставление произойдёт только по полному совпадению | ||||
|       domain_allow: | ||||
|         domain: Этот домен сможет получать данные с этого сервера и его входящие данные будут обрабатываться и сохранены | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -57,7 +57,6 @@ si: | |||
|         setting_show_application: ඔබ පළ කිරීමට භාවිතා කරන යෙදුම ඔබගේ පළ කිරීම් වල සවිස්තරාත්මක දර්ශනයේ පෙන්වනු ඇත | ||||
|         setting_use_blurhash: අනුක්රමණ සැඟවුණු දෘශ්යවල වර්ණ මත පදනම් වන නමුත් ඕනෑම විස්තරයක් අපැහැදිලි කරයි | ||||
|         setting_use_pending_items: සංග්රහය ස්වයංක්රීයව අනුචලනය කරනවා වෙනුවට ක්ලික් කිරීමක් පිටුපස කාලරේඛා යාවත්කාලීන සඟවන්න | ||||
|         username: ඔබගේ පරිශීලක නාමය %{domain}හි අද්විතීය වනු ඇත | ||||
|         whole_word: මූල පදය හෝ වාක්ය ඛණ්ඩය අක්ෂරාංක පමණක් වන විට, එය යෙදෙන්නේ එය සම්පූර්ණ වචනයට ගැලපේ නම් පමණි | ||||
|       domain_allow: | ||||
|         domain: මෙම වසමට මෙම සේවාදායකයෙන් දත්ත ලබා ගැනීමට හැකි වන අතර එයින් ලැබෙන දත්ත සකස් කර ගබඩා කරනු ලැබේ | ||||
|  |  | |||
|  | @ -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é | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -59,7 +59,6 @@ sr: | |||
|         setting_show_application: Апликација коју користите за објављивање ће бити приказана у детаљном приказу ваших објава | ||||
|         setting_use_blurhash: Градијенти се формирају на основу бојâ скривених слика и замућују приказ, прикривајући детаље | ||||
|         setting_use_pending_items: Сакрива ажурирања временске линије иза клика уместо аутоматског ажурирања и померања временске линије | ||||
|         username: Ваш надимак ће бити јединствен на %{domain} | ||||
|         whole_word: Када је кључна реч или фраза искључиво алфанумеричка, биће примењена само ако се подудара са целом речjу | ||||
|       domain_allow: | ||||
|         domain: Овај домен ће моћи да преузима податке са овог сервера и долазни подаци са њега ће се обрађивати и чувати | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -59,7 +59,6 @@ th: | |||
|         setting_show_application: จะแสดงแอปพลิเคชันที่คุณใช้ในการโพสต์ในมุมมองโดยละเอียดของโพสต์ของคุณ | ||||
|         setting_use_blurhash: การไล่ระดับสีอิงตามสีของภาพที่ซ่อนอยู่แต่ทำให้รายละเอียดใด ๆ คลุมเครือ | ||||
|         setting_use_pending_items: ซ่อนการอัปเดตเส้นเวลาไว้หลังการคลิกแทนที่จะเลื่อนฟีดโดยอัตโนมัติ | ||||
|         username: ชื่อผู้ใช้ของคุณจะไม่ซ้ำกันใน %{domain} | ||||
|         whole_word: เมื่อคำสำคัญหรือวลีเป็นตัวอักษรและตัวเลขเท่านั้น จะนำไปใช้กับคำสำคัญหรือวลีหากตรงกันทั้งคำเท่านั้น | ||||
|       domain_allow: | ||||
|         domain: โดเมนนี้จะสามารถดึงข้อมูลจากเซิร์ฟเวอร์นี้และจะประมวลผลและจัดเก็บข้อมูลขาเข้าจากโดเมน | ||||
|  |  | |||
|  | @ -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 | ||||
|  |  | |||
|  | @ -59,7 +59,6 @@ uk: | |||
|         setting_show_application: Застосунок, за допомогою якого ви зробили допис, буде показано серед подробиць допису | ||||
|         setting_use_blurhash: Градієнти, що базуються на кольорах прихованих медіа, але роблять нерозрізненними будь-які деталі | ||||
|         setting_use_pending_items: Не додавати нові повідомлення до стрічок миттєво, показувати лише після додаткового клацання | ||||
|         username: Ваше ім'я користувача буде унікальним у %{domain} | ||||
|         whole_word: Якщо пошукове слово або фраза містить лише літери та цифри, воно має збігатися цілком | ||||
|       domain_allow: | ||||
|         domain: Цей домен зможе отримувати дані з цього сервера. Вхідні дані будуть оброблені та збережені | ||||
|  |  | |||
|  | @ -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ữ | ||||
|  |  | |||
|  | @ -59,7 +59,6 @@ zh-CN: | |||
|         setting_show_application: 你用来发表嘟文的应用程序将会在你嘟文的详细内容中显示 | ||||
|         setting_use_blurhash: 渐变是基于模糊后的隐藏内容生成的 | ||||
|         setting_use_pending_items: 关闭自动滚动更新,时间轴会在点击后更新 | ||||
|         username: 你的用户名在 %{domain} 上是唯一的 | ||||
|         whole_word: 如果关键词只包含字母和数字,将只在词语完全匹配时才会应用 | ||||
|       domain_allow: | ||||
|         domain: 该站点将能够从该服务器上拉取数据,并处理和存储收到的数据。 | ||||
|  |  | |||
|  | @ -59,7 +59,6 @@ zh-HK: | |||
|         setting_show_application: 你用來發表文章的應用程式,將會顯示在你文章的詳細檢視中 | ||||
|         setting_use_blurhash: 漸變圖樣會基於隱藏媒體內容產生,但所有細節會變得模糊 | ||||
|         setting_use_pending_items: 關閉自動滾動更新,時間軸會在點擊後更新 | ||||
|         username: 你的使用者名稱在 %{domain} 將是獨一無二的 | ||||
|         whole_word: 如果關鍵字或詞組僅有字母與數字,則其將只在符合整個單字的時候才會套用 | ||||
|       domain_allow: | ||||
|         domain: 此網域將能從此站獲取資料,而此站發出的數據也會被處理和存儲。 | ||||
|  |  | |||
|  | @ -59,7 +59,6 @@ zh-TW: | |||
|         setting_show_application: 您用來發嘟文的應用程式將會在您嘟文的詳細檢視顯示 | ||||
|         setting_use_blurhash: 彩色漸層圖樣是基於隱藏媒體內容顏色產生,所有細節會變得模糊 | ||||
|         setting_use_pending_items: 關閉自動捲動更新,時間軸只會在點擊後更新 | ||||
|         username: 您的使用者名稱將於 %{domain} 是獨一無二的 | ||||
|         whole_word: 如果關鍵字或詞組僅有字母與數字,則其將只在符合整個單字的時候才會套用 | ||||
|       domain_allow: | ||||
|         domain: 此網域將能夠攫取本站資料,而自該網域發出的資料也會於本站處理和留存。 | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue