diff --git a/.gitlab/ci/pre.yml b/.gitlab/ci/pre.yml index f431fd35b..e03932711 100644 --- a/.gitlab/ci/pre.yml +++ b/.gitlab/ci/pre.yml @@ -86,10 +86,12 @@ # Executed on a dedicated runner. "push to github": <<: *template_pre - tags: - - deploy before_script: - - '' # no RVM present in deploy ENV + - test -d $HOME/.ssh || mkdir $HOME/.ssh + - ssh-keyscan github.com >> $HOME/.ssh/known_hosts + - eval $(ssh-agent -s) + - echo "$PUSH_TO_GITHUB_SSH_PRIVATE_KEY" | ssh-add - + - ssh-add -l script: - git fetch --unshallow - script/build/sync_repo.sh git@github.com:zammad/zammad.git diff --git a/.overcommit.yml b/.overcommit.yml index ec20b597c..8c6e18a53 100644 --- a/.overcommit.yml +++ b/.overcommit.yml @@ -15,10 +15,15 @@ PreCommit: on_warn: fail CoffeeLint: # .coffeelint/rules/* not supported in YAML, specify all rules separately. - flags: ['--reporter=csv', '--rules', './.coffeelint/rules/detect_translatable_string.coffee'] + flags: + [ + '--reporter=csv', + '--rules', + './.coffeelint/rules/detect_translatable_string.coffee', + ] enabled: true on_warn: fail - exclude: public/assets/chat/**/* + exclude: 'public/assets/chat/**/*' CustomScript: enabled: true description: 'Check if translation catalog is up-to-date' diff --git a/Gemfile b/Gemfile index a26357fa1..2cb0cbb4f 100644 --- a/Gemfile +++ b/Gemfile @@ -174,6 +174,7 @@ group :development, :test do # test frameworks gem 'rails-controller-testing' gem 'rspec-rails' + gem 'rspec-retry' gem 'shoulda-matchers' gem 'test-unit' diff --git a/Gemfile.lock b/Gemfile.lock index 8b1de6730..a51c3ad7c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -329,10 +329,10 @@ GEM netrc (0.11.0) nio4r (2.5.8) nio4r (2.5.8-x86_64-linux-musl) - nokogiri (1.13.4) + nokogiri (1.13.6) mini_portile2 (~> 2.8.0) racc (~> 1.4) - nokogiri (1.13.4-x86_64-linux-musl) + nokogiri (1.13.6-x86_64-linux-musl) mini_portile2 (~> 2.8.0) racc (~> 1.4) nori (2.6.0) @@ -422,7 +422,7 @@ GEM rspec-rails (>= 3.0.0) racc (1.6.0) racc (1.6.0-x86_64-linux-musl) - rack (2.2.3) + rack (2.2.3.1) rack-attack (6.6.0) rack (>= 1.0, < 3) rack-livereload (0.3.17) @@ -493,6 +493,8 @@ GEM rspec-expectations (~> 3.10) rspec-mocks (~> 3.10) rspec-support (~> 3.10) + rspec-retry (0.6.2) + rspec-core (> 3.3) rspec-support (3.11.0) rszr (0.5.2) rszr (0.5.2-x86_64-linux-musl) @@ -719,6 +721,7 @@ DEPENDENCIES rchardet (>= 1.8.0) redis rspec-rails + rspec-retry rszr (= 0.5.2) rubocop rubocop-faker diff --git a/app/assets/javascripts/app/controllers/_settings/area_ticket_number.coffee b/app/assets/javascripts/app/controllers/_settings/area_ticket_number.coffee index 77b3f88ef..1861a506d 100644 --- a/app/assets/javascripts/app/controllers/_settings/area_ticket_number.coffee +++ b/app/assets/javascripts/app/controllers/_settings/area_ticket_number.coffee @@ -79,6 +79,11 @@ class App.SettingsAreaTicketNumber extends App.Controller el = $(App.view("settings/#{preferences_setting}")( setting: setting )) + + for form_entry in setting.options['form'] + if form_entry['tag'] is 'boolean' + form_entry['translate'] = true + new App.ControllerForm( el: el.find('.js-formItem'), model: { configure_attributes: setting.options['form'], className: '' } diff --git a/app/assets/javascripts/app/controllers/agent_ticket_create.coffee b/app/assets/javascripts/app/controllers/agent_ticket_create.coffee index 88f907e11..418d95367 100644 --- a/app/assets/javascripts/app/controllers/agent_ticket_create.coffee +++ b/app/assets/javascripts/app/controllers/agent_ticket_create.coffee @@ -246,7 +246,7 @@ class App.TicketCreate extends App.Controller if _.isEmpty(params.ticket_id) && _.isEmpty(params.article_id) if !_.isEmpty(params.customer_id) - @renderQueue(options: params) + @renderQueue(options: _.omit(params, 'id')) return @renderQueue() return diff --git a/app/assets/javascripts/app/controllers/search.coffee b/app/assets/javascripts/app/controllers/search.coffee index 1ec5781c4..515daa8d4 100644 --- a/app/assets/javascripts/app/controllers/search.coffee +++ b/app/assets/javascripts/app/controllers/search.coffee @@ -205,6 +205,7 @@ class App.Search extends App.Controller items.slice(startId+1, endId).find('[name="bulk"]').prop('checked', (-> !@checked)) @lastChecked = e.currentTarget + @bulkForm.updateTicketIdsBulkForm(e) ticket_ids = [] for item in localList diff --git a/app/assets/javascripts/app/controllers/ticket_overview.coffee b/app/assets/javascripts/app/controllers/ticket_overview.coffee index e222558c0..a94a23cbf 100644 --- a/app/assets/javascripts/app/controllers/ticket_overview.coffee +++ b/app/assets/javascripts/app/controllers/ticket_overview.coffee @@ -959,7 +959,7 @@ class Table extends App.Controller ticketListShow.push App.Ticket.find(ticket.id) @overview = App.Overview.find(overview.id) @table.update( - overviewAttributes: @overview.view.s + overviewAttributes: @convertOverviewAttributesToArray(@overview.view.s) objects: ticketListShow groupBy: @overview.group_by groupDirection: @overview.group_direction @@ -977,7 +977,6 @@ class Table extends App.Controller return if !overview && !tickets @view_mode = App.LocalStorage.get("mode:#{@view}", @Session.get('id')) || 's' - console.log 'notice', 'view:', @view, @view_mode App.WebSocket.send(event:'ticket_overview_select', data: { view: @view }) @@ -1107,8 +1106,7 @@ class Table extends App.Controller items.slice(startId+1, endId).find('[name="bulk"]').prop('checked', (-> !@checked)) @lastChecked = e.currentTarget - - @updateTicketIdsBulkForm() + @bulkForm.updateTicketIdsBulkForm(e) callbackIconHeader = (headers) -> attribute = @@ -1178,7 +1176,7 @@ class Table extends App.Controller tableArguments = tableId: "ticket_overview_#{@overview.id}" - overview: @overview.view.s + overview: @convertOverviewAttributesToArray(@overview.view.s) el: @$('.table-overview') model: App.Ticket objects: ticketListShow @@ -1250,10 +1248,14 @@ class Table extends App.Controller bulkAll.prop('indeterminate', true) ) - updateTicketIdsBulkForm: => - items = $('.content.active .table-overview .table').find('[name="bulk"]:checked') - ticket_ids = _.map(items, (el) -> $(el).val() ) - @bulkForm.el.find('input[name=ticket_ids]').val(ticket_ids.join(',')).trigger('change') + convertOverviewAttributesToArray: (overviewAttributes) -> + # Ensure that the given attributes for the overview is an array, + # otherwise some data might not be displayed. + # For more details, see https://github.com/zammad/zammad/issues/3943. + if !Array.isArray(overviewAttributes) + overviewAttributes = [overviewAttributes] + + overviewAttributes renderCustomerNotTicketExistIfNeeded: (ticketListShow) => user = App.User.current() diff --git a/app/assets/javascripts/app/controllers/user.coffee b/app/assets/javascripts/app/controllers/user.coffee index 53f0dce03..9c508de17 100644 --- a/app/assets/javascripts/app/controllers/user.coffee +++ b/app/assets/javascripts/app/controllers/user.coffee @@ -50,6 +50,9 @@ class User extends App.ControllerSubContent @delay(@search, 220, 'search') ) + # App.User.subscribe will clear model data so we use controllerBind (#4040) + @controllerBind('User:create User:update User:touch User:destroy', => @delay(@search, 220, 'search')) + # show last 20 users @search() @@ -182,9 +185,6 @@ class User extends App.ControllerSubContent 'click': edit ) - if !@subscribeId - @subscribeId = App.User.subscribe(=> @delay(@search, 220, 'search')) - search: => role_ids = [] @$('.tab.active').each( (i,d) -> @@ -242,8 +242,4 @@ class User extends App.ControllerSubContent container: @el.closest('.content') ) - release: => - if @subscribeId - App.User.unsubscribe(@subscribeId) - App.Config.set( 'User', { prio: 1000, name: __('Users'), parent: '#manage', target: '#manage/users', controller: User, permission: ['admin.user'] }, 'NavBarAdmin' ) diff --git a/app/assets/javascripts/app/controllers/widget/tag.coffee b/app/assets/javascripts/app/controllers/widget/tag.coffee index c3e528172..38d1f39d6 100644 --- a/app/assets/javascripts/app/controllers/widget/tag.coffee +++ b/app/assets/javascripts/app/controllers/widget/tag.coffee @@ -57,7 +57,7 @@ class App.WidgetTag extends App.Controller source = "#{App.Config.get('api_path')}/tag_search" @$('.js-newTagInput').autocomplete( source: source - minLength: 1 + minLength: 0 response: (e, ui) => return if !ui return if !ui.content diff --git a/app/assets/javascripts/app/controllers/widget/ticket_bulk_form.coffee b/app/assets/javascripts/app/controllers/widget/ticket_bulk_form.coffee index dd2c92734..f436a845f 100644 --- a/app/assets/javascripts/app/controllers/widget/ticket_bulk_form.coffee +++ b/app/assets/javascripts/app/controllers/widget/ticket_bulk_form.coffee @@ -243,3 +243,8 @@ class App.TicketBulkForm extends App.Controller @render() @hide() ) + + updateTicketIdsBulkForm: (e) -> + items = $(e.target).closest('table').find('input[name="bulk"]:checked') + ticket_ids = _.map(items, (el) -> $(el).val() ) + @el.find('input[name=ticket_ids]').val(ticket_ids.join(',')).trigger('change') diff --git a/app/controllers/knowledge_base/public/answers_controller.rb b/app/controllers/knowledge_base/public/answers_controller.rb index aeb970291..fe605cf71 100644 --- a/app/controllers/knowledge_base/public/answers_controller.rb +++ b/app/controllers/knowledge_base/public/answers_controller.rb @@ -13,7 +13,9 @@ class KnowledgeBase::Public::AnswersController < KnowledgeBase::Public::BaseCont private def render_alternative - @alternative = find_answer @knowledge_base.answers.eager_load(translations: :kb_locale), params[:answer], locale: false + answers = @knowledge_base.answers.where(category: params[:category]).eager_load(translations: :kb_locale) + + @alternative = find_answer(answers, params[:answer], locale: false) raise ActiveRecord::RecordNotFound if !@alternative&.translations&.any? diff --git a/app/controllers/tags_controller.rb b/app/controllers/tags_controller.rb index aaf3962cb..0284769e0 100644 --- a/app/controllers/tags_controller.rb +++ b/app/controllers/tags_controller.rb @@ -6,7 +6,8 @@ class TagsController < ApplicationController # GET /api/v1/tag_search?term=abc def search - list = Tag::Item.where('name_downcase LIKE ?', "%#{params[:term].strip.downcase}%").order(name: :asc).limit(params[:limit] || 10) + list = get_tag_list(params[:term], params[:limit] || 10) + results = [] list.each do |item| result = { @@ -95,4 +96,13 @@ class TagsController < ApplicationController render json: {} end + private + + def get_tag_list(term, limit) + if term.blank? + return Tag::Item.left_outer_joins(:tags).group(:id).order('COUNT(tags.tag_item_id) DESC, name ASC').limit(limit) + end + + Tag::Item.where('name_downcase LIKE ?', "%#{term.strip.downcase}%").order(name: :asc).limit(limit) + end end diff --git a/app/controllers/ticket_overviews_controller.rb b/app/controllers/ticket_overviews_controller.rb index ebf027114..1e4290073 100644 --- a/app/controllers/ticket_overviews_controller.rb +++ b/app/controllers/ticket_overviews_controller.rb @@ -9,6 +9,7 @@ class TicketOverviewsController < ApplicationController # get attributes to update attributes_to_change = Ticket::ScreenOptions.attributes_to_change( view: 'ticket_overview', + screen: 'overview_bulk', current_user: current_user, ) render json: attributes_to_change diff --git a/app/jobs/trigger_webhook_job/record_payload/ticket/article.rb b/app/jobs/trigger_webhook_job/record_payload/ticket/article.rb index 4663514a4..9d6568929 100644 --- a/app/jobs/trigger_webhook_job/record_payload/ticket/article.rb +++ b/app/jobs/trigger_webhook_job/record_payload/ticket/article.rb @@ -10,7 +10,7 @@ class TriggerWebhookJob::RecordPayload::Ticket::Article < TriggerWebhookJob::Rec end def add_accounted_time(result) - result['accounted_time'] = record.ticket_time_accounting&.time_unit.to_i + result['accounted_time'] = record.ticket_time_accounting&.time_unit.to_f result end diff --git a/app/models/channel/filter/follow_up_check.rb b/app/models/channel/filter/follow_up_check.rb index 93f450cd3..c1d8d53d1 100644 --- a/app/models/channel/filter/follow_up_check.rb +++ b/app/models/channel/filter/follow_up_check.rb @@ -18,7 +18,10 @@ module Channel::Filter::FollowUpCheck # get ticket# from body if setting.include?('body') - ticket = Ticket::Number.check(mail[:body].html2text) + body = mail[:body] + body = body.html2text if mail[:content_type] == 'text/html' + + ticket = Ticket::Number.check(body) if ticket Rails.logger.debug { "Follow-up for '##{ticket.number}' in body." } mail[:'x-zammad-ticket-id'] = ticket.id diff --git a/app/models/tag/item.rb b/app/models/tag/item.rb index 9686956e2..c45bafa80 100644 --- a/app/models/tag/item.rb +++ b/app/models/tag/item.rb @@ -4,6 +4,10 @@ class Tag::Item < ApplicationModel validates :name, presence: true before_save :fill_namedowncase + has_many :tags, foreign_key: 'tag_item_id', + inverse_of: :tag_item, + dependent: :destroy + =begin lookup by name and create tag item diff --git a/app/models/ticket/article/adds_metadata_email.rb b/app/models/ticket/article/adds_metadata_email.rb index 76e3a6883..1a3e6fcab 100644 --- a/app/models/ticket/article/adds_metadata_email.rb +++ b/app/models/ticket/article/adds_metadata_email.rb @@ -69,6 +69,10 @@ module Ticket::Article::AddsMetadataEmail elsif Setting.get('ticket_define_email_from') == 'AgentName' sender = User.find(created_by_id) realname = "#{sender.firstname} #{sender.lastname}" + + # avoid "-" as realname, see https://github.com/zammad/zammad/issues/3890 + realname = email_address.realname if sender.id == 1 + self.from = Channel::EmailBuild.recipient_line(realname, email_address.email) else self.from = Channel::EmailBuild.recipient_line(email_address.realname, email_address.email) diff --git a/app/models/user.rb b/app/models/user.rb index b9eacd295..0d5e6897f 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -1157,7 +1157,7 @@ raise 'At least one user need to have admin permissions' record[column] = 1 end - record.save! + record.save!(validate: false) rescue => e Rails.logger.error e end diff --git a/app/models/user/updates_ticket_organization.rb b/app/models/user/updates_ticket_organization.rb index bd7a149cc..9e2b7bb7c 100644 --- a/app/models/user/updates_ticket_organization.rb +++ b/app/models/user/updates_ticket_organization.rb @@ -19,9 +19,11 @@ module User::UpdatesTicketOrganization # update last 100 tickets of user tickets = Ticket.where(customer_id: id).limit(100) tickets.each do |ticket| - if ticket.organization_id != organization_id + next if ticket.organization_id == organization_id + + Transaction.execute(disable_notification: true, reset_user_id: true) do ticket.organization_id = organization_id - ticket.save + ticket.save! end end end diff --git a/db/migrate/20220524074118_issue4089_fix_draft_attribute.rb b/db/migrate/20220524074118_issue4089_fix_draft_attribute.rb new file mode 100644 index 000000000..752f77095 --- /dev/null +++ b/db/migrate/20220524074118_issue4089_fix_draft_attribute.rb @@ -0,0 +1,56 @@ +# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/ + +class Issue4089FixDraftAttribute < ActiveRecord::Migration[5.0] + def change + # return if it's a new setup + return if !Setting.exists?(name: 'system_init_done') + + field = ObjectManager::Attribute.find_by(name: 'shared_drafts', object_lookup_id: ObjectLookup.by_name('Group')) + if !field + add_field + return + end + + field.update(editable: false) + end + + def add_field + UserInfo.current_user_id = 1 + ObjectManager::Attribute.add( + force: true, + object: 'Group', + name: 'shared_drafts', + display: 'Shared Drafts', + data_type: 'active', + data_option: { + null: false, + default: true, + permission: ['admin.group'], + }, + editable: false, + active: true, + screens: { + create: { + '-all-' => { + null: true, + }, + }, + edit: { + '-all-': { + null: false, + }, + }, + view: { + '-all-' => { + shown: false, + }, + }, + }, + to_create: false, + to_migrate: false, + to_delete: false, + position: 1400, + ) + ObjectManager::Attribute.migration_execute + end +end diff --git a/db/seeds/object_manager_attributes.rb b/db/seeds/object_manager_attributes.rb index 6617c6718..7fb9c8f81 100644 --- a/db/seeds/object_manager_attributes.rb +++ b/db/seeds/object_manager_attributes.rb @@ -1824,7 +1824,7 @@ ObjectManager::Attribute.add( default: true, permission: ['admin.group'], }, - editable: true, + editable: false, active: true, screens: { create: { diff --git a/i18n/zammad.ar.po b/i18n/zammad.ar.po index dee528460..b5a9eefc6 100644 --- a/i18n/zammad.ar.po +++ b/i18n/zammad.ar.po @@ -3788,6 +3788,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "قم بتحميل وتثبيت البرنامج الإضافي للترحيل%s على مثيل%s الخاص بك." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "مشروع" @@ -6380,7 +6381,9 @@ msgstr "دقيق" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Macros" @@ -8647,6 +8650,7 @@ msgid "Save" msgstr "حفظ" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.bg.po b/i18n/zammad.bg.po index 4523e41c3..91af3890d 100644 --- a/i18n/zammad.bg.po +++ b/i18n/zammad.bg.po @@ -3602,6 +3602,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "" @@ -6025,7 +6026,9 @@ msgstr "" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "" @@ -8232,6 +8235,7 @@ msgid "Save" msgstr "Съхраняване" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "" diff --git a/i18n/zammad.cs.po b/i18n/zammad.cs.po index aab69a724..8c8f49fd7 100644 --- a/i18n/zammad.cs.po +++ b/i18n/zammad.cs.po @@ -3738,6 +3738,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Koncept" @@ -6270,7 +6271,9 @@ msgstr "Makro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Makra" @@ -8534,6 +8537,7 @@ msgid "Save" msgstr "Uložit" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.da.po b/i18n/zammad.da.po index c8aa9bc6b..57ea0487b 100644 --- a/i18n/zammad.da.po +++ b/i18n/zammad.da.po @@ -3708,6 +3708,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Kladde" @@ -6159,7 +6160,9 @@ msgstr "Makro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Makroer" @@ -8404,6 +8407,7 @@ msgid "Save" msgstr "Gem" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.de-de.po b/i18n/zammad.de-de.po index 41205a05a..722dca873 100644 --- a/i18n/zammad.de-de.po +++ b/i18n/zammad.de-de.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: zammad\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2022-05-17 03:05+0000\n" -"Last-Translator: Martin Gruner \n" +"PO-Revision-Date: 2022-06-13 07:28+0000\n" +"Last-Translator: Marcel Herrguth \n" "Language-Team: German \n" "Language: de-de\n" @@ -134,7 +134,7 @@ msgstr "%s-Anmeldeinformationen" #: app/assets/javascripts/app/models/user.coffee msgid "%s ended switch to |%s|!" -msgstr "%s beendete sein Sitzung von |%s|!" +msgstr "%s hat die Übernahme von |%s| beendet!" #: app/assets/javascripts/app/views/integration/exchange_last_import.jst.eco #: app/assets/javascripts/app/views/integration/exchange_summary.jst.eco @@ -183,7 +183,7 @@ msgstr "%s meiner Tickets sind derzeit in Bearbeitung." #: app/assets/javascripts/app/views/dashboard/stats/ticket_escalation.jst.eco msgid "%s of my tickets escalated." -msgstr "%s meiner Tickets sind Eskaliert." +msgstr "%s meiner Tickets sind eskaliert." #: app/assets/javascripts/app/views/ticket_overview/batch_overlay_user_group.jst.eco msgid "%s people" @@ -203,7 +203,7 @@ msgstr "%s wird benötigt!" #: app/assets/javascripts/app/models/user.coffee msgid "%s started a new session" -msgstr "%s startet eine neue Sitzung" +msgstr "%s startete eine neue Sitzung" #: app/assets/javascripts/app/views/import/freshdesk.jst.eco #: app/assets/javascripts/app/views/import/kayako.jst.eco @@ -251,7 +251,7 @@ msgstr "%s Benutzer zu %s Benutzer" #: app/assets/javascripts/app/views/dashboard/stats/ticket_in_process.jst.eco msgid "%s% are currently in process" -msgstr "%s% derzeit in Bearbeitung" +msgstr "%s% sind derzeit in Bearbeitung" #: app/assets/javascripts/app/views/dashboard/stats/ticket_reopen.jst.eco msgid "%s% have been reopened" @@ -661,7 +661,7 @@ msgstr "Eine Notiz hinzufügen" #: app/assets/javascripts/app/controllers/_profile/token_access.coffee #: app/assets/javascripts/app/views/profile/token_access.jst.eco msgid "Add a Personal Access Token" -msgstr "Hinzufügen eines persönlichen Access Token" +msgstr "Hinzufügen eines persönlichen Zugangs-Tokens" #: app/assets/javascripts/app/views/profile/calendar_subscriptions.jst.eco msgid "Add alarm to pending reminder and escalated tickets." @@ -801,7 +801,7 @@ msgstr "Erlauben Sie die Verwendung von E-Mail-Adressen für mehrere Benutzer." #: app/assets/javascripts/app/models/chat.coffee msgid "Allow websites (separated by ;)" -msgstr "Erlaubte Webseiten (separiert durch ;)" +msgstr "Erlaubte Webseiten (getrennt mit ;)" #: app/assets/javascripts/app/views/profile/notification.jst.eco msgid "Also notify via email" @@ -838,7 +838,7 @@ msgstr "Es ist ein Fehler aufgetreten: %s" #: app/assets/javascripts/app/controllers/_integration/monit.coffee #: app/assets/javascripts/app/controllers/_integration/nagios.coffee msgid "An open-source monitoring tool." -msgstr "Ein Open Source Monitoring Tool." +msgstr "Ein Open Source Monitoring-Werkzeug." #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco @@ -1323,7 +1323,7 @@ msgstr "Caller-IDs basierend auf der Caller-ID des Senders blockieren." #: app/assets/javascripts/app/models/chat.coffee msgid "Blocked IPs (separated by ;)" -msgstr "Blockierte IP (getrennt mit ;)" +msgstr "Blockierte IPs (getrennt mit ;)" #: app/assets/javascripts/app/models/chat.coffee msgid "Blocked countries" @@ -2030,7 +2030,7 @@ msgstr "Verfassen Sie Ihre Nachricht…" #: app/assets/javascripts/app/models/job.coffee #: app/assets/javascripts/app/models/trigger.coffee msgid "Conditions for affected objects" -msgstr "Bedingung für zu verarbeitende Objekte" +msgstr "Bedingungen für zu verarbeitende Objekte" #: app/assets/javascripts/app/models/overview.coffee msgid "Conditions for shown Tickets" @@ -2744,7 +2744,7 @@ msgstr "Definieren Sie die maximale Payloadgröße für Elasticsearch." #: db/seeds/settings.rb msgid "Define pipeline name for Elasticsearch." -msgstr "Definieren Sie den Pipelinenamen für Elasticsearch." +msgstr "Definieren Sie den Pipeline-Namen für Elasticsearch." #: db/seeds/settings.rb msgid "" @@ -2826,8 +2826,7 @@ msgstr "" #: db/seeds/settings.rb msgid "Defines Zendesk endpoint authentication user." -msgstr "" -"Definiert den Benutzernamen für die Zendesk-Endpunkt-Authentifizierung." +msgstr "Definiert den Benutzernamen für die Zendesk-Endpunkt-Authentifizierung." #: db/seeds/settings.rb msgid "" @@ -3582,7 +3581,7 @@ msgstr "Lösche zuerst alle vorhandenen Datensätze." #: db/seeds/schedulers.rb msgid "Delete obsolete classic IMAP backup." -msgstr "Lösche obsoletes klassische IMAP-Sicherung." +msgstr "Lösche obsolete klassische IMAP-Sicherung." #: db/seeds/schedulers.rb msgid "Delete old 'RecentView' entries." @@ -3590,7 +3589,7 @@ msgstr "Bereinigung alter 'RecentView'-Einträge." #: db/seeds/schedulers.rb msgid "Delete old activity stream entries." -msgstr "Lösche alte Aktivitätenstream-Einträge." +msgstr "Lösche alte Einträge im Aktivitäts-Verlauf." #: db/seeds/schedulers.rb msgid "Delete old online notification entries." @@ -3836,6 +3835,7 @@ msgstr "" "%s Instanz." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Entwurf" @@ -4318,7 +4318,7 @@ msgstr "Person oder Organisation/Firma eingeben" #: app/assets/javascripts/app/views/integration/smime_private_key_add.jst.eco msgid "Enter Private Key Secret" -msgstr "Privaten Schlüssel eingeben" +msgstr "Passwort für privaten Schlüssel eingeben" #: app/assets/javascripts/app/views/ticket_zoom/title.jst.eco msgid "Enter Title…" @@ -4421,7 +4421,7 @@ msgstr "Eskalation am (Schließzeit)" #: app/assets/javascripts/app/models/ticket.coffee msgid "Escalation at (First Response Time)" -msgstr "Eskalation am (Reaktionszeit)" +msgstr "Eskalation am (Erste Reaktionszeit)" #: app/assets/javascripts/app/models/ticket.coffee msgid "Escalation at (Update Time)" @@ -6359,7 +6359,7 @@ msgstr "Lokation einer externen chat.css-Datei." #: app/assets/javascripts/app/views/login.jst.eco msgid "Log in to %s" -msgstr "Mit %s anmelden" +msgstr "Bei %s anmelden" #: app/assets/javascripts/app/models/user.coffee #: app/assets/javascripts/app/views/maintenance.jst.eco @@ -6400,7 +6400,9 @@ msgstr "Makro" msgid "Macro group restrictions do not cover all tickets" msgstr "Die Makro-Gruppenbeschränkungen gelten nicht für alle Tickets" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Makros" @@ -6462,7 +6464,7 @@ msgstr "" #: app/views/mailer/application.html.erb msgid "Manage your notification settings" -msgstr "Benachrichtigungseinstellungen verwalten" +msgstr "Benachrichtigungs-Einstellungen verwalten" #: app/assets/javascripts/app/views/api.jst.eco #: app/assets/javascripts/app/views/calendar/index.jst.eco @@ -8638,6 +8640,7 @@ msgid "Save" msgstr "Speichern" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "Entwurf speichern" @@ -9474,7 +9477,7 @@ msgstr "System" #: db/seeds/settings.rb msgid "System Address Display Name" -msgstr "System-Anzeigename" +msgstr "Anzeigename für System-Adresse" #: db/seeds/settings.rb msgid "System Init Done" @@ -12815,7 +12818,7 @@ msgstr "" #: app/assets/javascripts/app/views/settings/ticket_hook_position.jst.eco msgid "|Left| means |[Ticket#12345] Some Subject|" -msgstr "|link| bedeutet |[Ticket#12345] Some Ein Betreff |" +msgstr "|links| bedeutet |[Ticket#12345] Ein Betreff |" #: app/assets/javascripts/app/views/settings/ticket_hook_position.jst.eco msgid "" @@ -12823,9 +12826,9 @@ msgid "" "should enable \"postmaster___follow___up___search___in\" to recognize follow-" "ups based on email headers and/or body." msgstr "" -"|kein| bedeutet |Ein Betreff| (ohne Ticketnummer). In diesen Fall sollte die " -"Einstellung \"postmaster___follow___up___search___in\" aktiviert werden um " -"Nachfragen anhand der E-Mail-Kopfzeilen und/oder des E-Mail-Textes zu " +"|keine| bedeutet |Ein Betreff| (ohne Ticketnummer). In diesen Fall sollte " +"die Einstellung \"postmaster___follow___up___search___in\" aktiviert werden " +"um Nachfragen anhand der E-Mail-Kopfzeilen und/oder des E-Mail-Textes zu " "erkennen." #: app/assets/javascripts/app/views/settings/ticket_hook_position.jst.eco diff --git a/i18n/zammad.el.po b/i18n/zammad.el.po index 3c5b34894..1c8ff6bcb 100644 --- a/i18n/zammad.el.po +++ b/i18n/zammad.el.po @@ -3832,6 +3832,7 @@ msgstr "" "Kατεβάστε και εγκαταστήστε την προσθήκη μετεγκατάστασης στην περίπτωσή σας" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Πρόχειρο" @@ -6468,7 +6469,9 @@ msgstr "Μακροεντολή" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Μακροεντολές" @@ -8744,6 +8747,7 @@ msgid "Save" msgstr "Αποθήκευση" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.en-ca.po b/i18n/zammad.en-ca.po index 8a549c3e4..a32d98f48 100644 --- a/i18n/zammad.en-ca.po +++ b/i18n/zammad.en-ca.po @@ -3538,6 +3538,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "" @@ -5943,7 +5944,9 @@ msgstr "" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "" @@ -8138,6 +8141,7 @@ msgid "Save" msgstr "" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "" diff --git a/i18n/zammad.en-gb.po b/i18n/zammad.en-gb.po index 7434f5f73..6d28f52de 100644 --- a/i18n/zammad.en-gb.po +++ b/i18n/zammad.en-gb.po @@ -3538,6 +3538,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "" @@ -5943,7 +5944,9 @@ msgstr "" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "" @@ -8138,6 +8141,7 @@ msgid "Save" msgstr "" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "" diff --git a/i18n/zammad.es-ca.po b/i18n/zammad.es-ca.po index 34b979c98..d79d99ed2 100644 --- a/i18n/zammad.es-ca.po +++ b/i18n/zammad.es-ca.po @@ -3783,6 +3783,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "Descarrega i instala el Plugin de migració %s a la teva instancia %s" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Esborrany" @@ -6383,7 +6384,9 @@ msgstr "Macro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Macro" @@ -8651,6 +8654,7 @@ msgid "Save" msgstr "Guardar" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.es-co.po b/i18n/zammad.es-co.po index 0ded160dc..d39a74511 100644 --- a/i18n/zammad.es-co.po +++ b/i18n/zammad.es-co.po @@ -3835,6 +3835,7 @@ msgstr "" "Descargue e instale el complemento de migración de %s en su instancia de %s." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Borrador" @@ -6403,7 +6404,9 @@ msgstr "Macro" msgid "Macro group restrictions do not cover all tickets" msgstr "Las restricciones de macrogrupos no cubren todos los boletos" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "macros" @@ -8639,6 +8642,7 @@ msgid "Save" msgstr "Guardar" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "Guardar borrador" diff --git a/i18n/zammad.es-es.po b/i18n/zammad.es-es.po index d8149ca36..0b152ab1b 100644 --- a/i18n/zammad.es-es.po +++ b/i18n/zammad.es-es.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: zammad\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2022-05-13 11:42+0000\n" -"Last-Translator: ait0rn00b \n" +"PO-Revision-Date: 2022-05-26 03:31+0000\n" +"Last-Translator: Arturo \n" "Language-Team: Spanish \n" "Language: es-es\n" @@ -1411,6 +1411,10 @@ msgid "" "Zammad can support your agents by opening either a new ticket dialogue or " "the user profile upon picking up a new call." msgstr "" +"Por medio de la asignación de los usuarios SIP de Placetel de sus agentes a " +"sus cuentas de usuario en Zammad, Zammad puede apoyar a sus agentes abriendo " +"un nuevo diálogo de ticket o el perfil de usuario al atender una nueva " +"llamada." #: app/assets/javascripts/app/views/integration/sipgate.jst.eco msgid "" @@ -3763,6 +3767,7 @@ msgstr "" "Descargue e instale el Plugin de migración de %s en su instancia de %s." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Borrador" @@ -6392,7 +6397,9 @@ msgstr "Macro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Macros" @@ -8669,6 +8676,7 @@ msgid "Save" msgstr "Guardar" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.es-mx.po b/i18n/zammad.es-mx.po index 40ced241a..a121a1fee 100644 --- a/i18n/zammad.es-mx.po +++ b/i18n/zammad.es-mx.po @@ -3687,6 +3687,7 @@ msgstr "" "Descargue e instale el complemento de migración de %s en su instancia de %s." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Sequía" @@ -6199,7 +6200,9 @@ msgstr "Macro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Macros" @@ -8405,6 +8408,7 @@ msgid "Save" msgstr "Guardar" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "Guardar borrador" diff --git a/i18n/zammad.et.po b/i18n/zammad.et.po index 5bad48a71..dbe6e6f4e 100644 --- a/i18n/zammad.et.po +++ b/i18n/zammad.et.po @@ -3546,6 +3546,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Mustand" @@ -5965,7 +5966,9 @@ msgstr "Makro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Makrod" @@ -8164,6 +8167,7 @@ msgid "Save" msgstr "Salvesta" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "Salvesta Mustand" diff --git a/i18n/zammad.fa-ir.po b/i18n/zammad.fa-ir.po index 57c90280b..626dc8773 100644 --- a/i18n/zammad.fa-ir.po +++ b/i18n/zammad.fa-ir.po @@ -3551,6 +3551,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "پیش‌نویس" @@ -5984,7 +5985,9 @@ msgstr "ماکرو" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "ماکروها" @@ -8182,6 +8185,7 @@ msgid "Save" msgstr "ذخیره" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "ذخیره پیش‌نویس" diff --git a/i18n/zammad.fi.po b/i18n/zammad.fi.po index ffb3aa2dd..7af347ccd 100644 --- a/i18n/zammad.fi.po +++ b/i18n/zammad.fi.po @@ -3677,6 +3677,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Luonnos" @@ -6129,7 +6130,9 @@ msgstr "Macro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Macros" @@ -8390,6 +8393,7 @@ msgid "Save" msgstr "Tallenna" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.fr-ca.po b/i18n/zammad.fr-ca.po index a4b0dd8db..0894dfe86 100644 --- a/i18n/zammad.fr-ca.po +++ b/i18n/zammad.fr-ca.po @@ -3800,6 +3800,7 @@ msgstr "" "Téléchargez et installez le greffon de migration %s sur votre instance %s." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Brouillon" @@ -6417,7 +6418,9 @@ msgstr "Macro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Macros" @@ -8690,6 +8693,7 @@ msgid "Save" msgstr "Sauvegarder" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.fr-fr.po b/i18n/zammad.fr-fr.po index 855edd11c..583c754eb 100644 --- a/i18n/zammad.fr-fr.po +++ b/i18n/zammad.fr-fr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: zammad\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2022-04-29 05:45+0000\n" -"Last-Translator: Ludovic \n" +"PO-Revision-Date: 2022-06-01 03:30+0000\n" +"Last-Translator: Guillaume Lasserre \n" "Language-Team: French \n" "Language: fr-fr\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.12\n" +"X-Generator: Weblate 4.12.1\n" #. Default date format to use for the current locale. #. These placeholders are supported: @@ -1034,10 +1034,8 @@ msgstr "Affecter un temps d'attente maximal" #: app/assets/javascripts/app/models/_application_model.coffee #: app/assets/javascripts/app/models/group.coffee -#, fuzzy -#| msgid "Assignment Timeout" msgid "Assignment timeout" -msgstr "Affecter un temps d'attente maximal" +msgstr "‎Délai d’expiration de l’affectation‎" #: app/assets/javascripts/app/models/group.coffee #: db/seeds/object_manager_attributes.rb @@ -1803,10 +1801,8 @@ msgid "Check 'Channel' streams." msgstr "Connecter des canaux" #: db/seeds/schedulers.rb -#, fuzzy -#| msgid "Connect Channels" msgid "Check channels." -msgstr "Connecter des canaux" +msgstr "Vérifier les canaux" #: lib/search_index_backend.rb msgid "Check the response and payload for detailed information:" @@ -3603,9 +3599,8 @@ msgid "Delete obsolete classic IMAP backup." msgstr "Supprimer les configurations IMAP classiques de secours obsolètes." #: db/seeds/schedulers.rb -#, fuzzy msgid "Delete old 'RecentView' entries." -msgstr "Supprimer les anciennes entrées de \"VueRécente\"." +msgstr "Supprimer les anciennes entrées de \"RecentView\"." #: db/seeds/schedulers.rb msgid "Delete old activity stream entries." @@ -3853,6 +3848,7 @@ msgstr "" "Télécharger et installer le Plugin de Migration %s pour votre instance %s." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Brouillon" @@ -4581,10 +4577,9 @@ msgid "Extended Search" msgstr "Recherche étendue" #: lib/search_index_backend.rb -#, fuzzy msgid "Extract zammad-attachment information from arrays" msgstr "" -"Extraire les informations des pièces-jointes de zammad depuis des tableaux" +"Extraire les informations des pièces jointes de Zammad depuis des tableaux" #: app/assets/javascripts/app/controllers/_channel/facebook.coffee #: app/assets/javascripts/app/controllers/_profile/linked_accounts.coffee @@ -4613,9 +4608,8 @@ msgstr "Impossible de trouver la sauvegarde sur le canal !" #: app/assets/javascripts/app/controllers/_channel/google.coffee #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee -#, fuzzy msgid "Failed to roll back the migration of the channel!" -msgstr "L'annulation de la migration du canal a échoué!" +msgstr "L'annulation de la migration du canal a échoué !" #: app/assets/javascripts/app/controllers/user_profile.coffee #, fuzzy @@ -6507,7 +6501,9 @@ msgstr "" "Les restrictions concernant les groupes macro ne couvrent pas tous les " "tickets" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Macros" @@ -8776,6 +8772,7 @@ msgid "Save" msgstr "Sauver" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.he-il.po b/i18n/zammad.he-il.po index 61a0ee724..eced65267 100644 --- a/i18n/zammad.he-il.po +++ b/i18n/zammad.he-il.po @@ -3728,6 +3728,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "הורד והתקן את הפלאגין %s Migration במקרה של מופע %s." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "טיוטה" @@ -6242,7 +6243,9 @@ msgstr "מאקרו" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "מקרו" @@ -8503,6 +8506,7 @@ msgid "Save" msgstr "שמור" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.hi-in.po b/i18n/zammad.hi-in.po index 940a44d19..2388074f8 100644 --- a/i18n/zammad.hi-in.po +++ b/i18n/zammad.hi-in.po @@ -3638,6 +3638,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "अपने% s उदाहरण पर% s माइग्रेशन प्लगइन डाउनलोड और इंस्टॉल करें" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "प्रारूप" @@ -6077,7 +6078,9 @@ msgstr "Macro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Macros" @@ -8328,6 +8331,7 @@ msgid "Save" msgstr "सुरक्षित करे" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.hr.po b/i18n/zammad.hr.po index 4b63e5b73..62307a1b3 100644 --- a/i18n/zammad.hr.po +++ b/i18n/zammad.hr.po @@ -3605,6 +3605,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "" @@ -6048,7 +6049,9 @@ msgstr "" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Macros" @@ -8273,6 +8276,7 @@ msgid "Save" msgstr "Spremi" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "" diff --git a/i18n/zammad.hu.po b/i18n/zammad.hu.po index aaf2b34a9..7f00a8846 100644 --- a/i18n/zammad.hu.po +++ b/i18n/zammad.hu.po @@ -3655,6 +3655,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Piszkozat" @@ -6106,7 +6107,9 @@ msgstr "Macro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Makrók" @@ -8351,6 +8354,7 @@ msgid "Save" msgstr "Mentés" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.is.po b/i18n/zammad.is.po index eab179828..ca7fc8216 100644 --- a/i18n/zammad.is.po +++ b/i18n/zammad.is.po @@ -3689,6 +3689,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Drög" @@ -6220,7 +6221,9 @@ msgstr "Fjölvi" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Fjölvar" @@ -8479,6 +8482,7 @@ msgid "Save" msgstr "Vista" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.it-it.po b/i18n/zammad.it-it.po index f84c2ed70..0181d8e87 100644 --- a/i18n/zammad.it-it.po +++ b/i18n/zammad.it-it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: zammad\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2022-05-19 08:48+0000\n" +"PO-Revision-Date: 2022-06-07 18:10+0000\n" "Last-Translator: Marco Badan \n" "Language-Team: Italian \n" @@ -54,8 +54,8 @@ msgid "" msgstr "" "\"Database\" memorizza gli allegati nel database (sconsigliato per " "memorizzare molti dati). \"Filesystem\" memorizza i file su disco. Puoi " -"passare da un modulo all'altro anche su sistemi già in uso senza perdita di " -"dati." +"passare da una modalità all'altra anche su sistemi già in uso senza perdita " +"di dati." #: app/assets/javascripts/app/views/telegram/bot_add.jst.eco #: app/assets/javascripts/app/views/telegram/bot_edit.jst.eco @@ -100,7 +100,7 @@ msgstr "" #: app/assets/javascripts/app/models/ticket_article.coffee msgid "%s created article for |%s|" -msgstr "%s ha creato un articolo per |%s|" +msgstr "%s ha creato una nota per |%s|" #: app/assets/javascripts/app/models/data_privacy_task.coffee msgid "%s created data privacy task to delete user ID |%s|" @@ -218,7 +218,7 @@ msgstr "%s è passato a |%s|!" #: app/assets/javascripts/app/models/ticket_article.coffee msgid "%s updated article for |%s|" -msgstr "%s ha aggiornato un articolo per |%s|" +msgstr "%s ha aggiornato una nota per |%s|" #: app/assets/javascripts/app/models/data_privacy_task.coffee msgid "%s updated data privacy task to delete user ID |%s|" @@ -665,7 +665,9 @@ msgstr "Aggiungi un token di accesso personale" #: app/assets/javascripts/app/views/profile/calendar_subscriptions.jst.eco msgid "Add alarm to pending reminder and escalated tickets." -msgstr "Aggiungi allarme a promemoria in sospeso e ticket in escalation." +msgstr "" +"Aggiungi allarme ai ticket in sospeso con promemoria e ai ticket in " +"escalation." #: app/assets/javascripts/app/views/channel/form.jst.eco msgid "Add attachment option to upload." @@ -967,15 +969,15 @@ msgstr "Sei sicuro?" #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee msgid "Article" -msgstr "Articolo" +msgstr "Nota" #: db/seeds/settings.rb msgid "Article - visibility confirmation dialog" -msgstr "Articolo - Finestra Conferma visibilità" +msgstr "Nota - Finestra Conferma visibilità" #: lib/excel_sheet/ticket.rb msgid "Article Count" -msgstr "Numero articoli" +msgstr "Numero note" #: app/models/ticket.rb msgid "" @@ -987,11 +989,11 @@ msgstr "" #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/delete.coffee msgid "Article could not be deleted." -msgstr "Non è stato possibile cancellare l'articolo." +msgstr "Non è stato possibile eliminare la nota." #: app/assets/javascripts/app/models/ticket.coffee msgid "Article#" -msgstr "Articolo#" +msgstr "Nota#" #: db/seeds/object_manager_attributes.rb msgid "Assign Follow-Ups" @@ -1406,6 +1408,10 @@ msgid "" "Zammad can support your agents by opening either a new ticket dialogue or " "the user profile upon picking up a new call." msgstr "" +"Mappando gli utenti Placetel SIP con i relativi agenti sui loro account " +"utente Zammad, Zammad può supportare i tuoi agenti aprendo una nuova " +"finestra di dialogo ticket o il profilo utente quando rispondono a una nuova " +"chiamata." #: app/assets/javascripts/app/views/integration/sipgate.jst.eco msgid "" @@ -1413,6 +1419,10 @@ msgid "" "can support your agents by opening either a new ticket dialogue or the user " "profile upon picking up a new call." msgstr "" +"Mappando gli utenti sipgate dei tuoi agenti sui loro account utente di " +"Zammad, Zammad può supportare i tuoi agenti quando rispondono a una nuova " +"chiamata aprendo una nuova finestra di dialogo del ticket o il profilo " +"utente." #: app/assets/javascripts/app/controllers/_ui_element/postmaster_match.coffee #: app/assets/javascripts/app/controllers/agent_ticket_create.coffee @@ -1496,10 +1506,8 @@ msgid "Caller ID of outbound calls can be changed as well." msgstr "Anche l'ID chiamante per le chiamate in uscita può essere modificato." #: app/assets/javascripts/app/views/integration/cti.jst.eco -#, fuzzy -#| msgid "Caller log" msgid "Caller Log Filter" -msgstr "Registro chiamate" +msgstr "Filtro registro chiamate" #: app/assets/javascripts/app/views/integration/cti.jst.eco #: app/assets/javascripts/app/views/integration/placetel.jst.eco @@ -1542,7 +1550,7 @@ msgstr "Impossibile unire il ticket a sé stesso!" #: lib/sessions/event/spool.rb msgid "Can't send spool, session not authenticated" -msgstr "" +msgstr "Impossibile inviare lo spool, sessione non autenticata" #: app/assets/javascripts/app/controllers/_profile/password.coffee #: app/assets/javascripts/app/controllers/password_reset_verify.coffee @@ -1703,8 +1711,6 @@ msgid "Channel - Facebook" msgstr "Canale - Facebook" #: db/seeds/permissions.rb -#, fuzzy -#| msgid "Channel - Formular" msgid "Channel - Form" msgstr "Canale - Form" @@ -1773,20 +1779,14 @@ msgid "Chatting Customers" msgstr "Cliente in Chat" #: db/seeds/schedulers.rb -#, fuzzy -#| msgid "Check Channels" msgid "Check 'Channel' streams." -msgstr "Controlla canali" +msgstr "Controlla gli stream \"Canale\"." #: db/seeds/schedulers.rb -#, fuzzy -#| msgid "Check Channels" msgid "Check channels." -msgstr "Controlla canali" +msgstr "Controlla i canali." #: lib/search_index_backend.rb -#, fuzzy -#| msgid "Check the response and payload for detailed information: " msgid "Check the response and payload for detailed information:" msgstr "" "Controlla la risposta e il contenuto del messaggio per informazioni " @@ -1798,6 +1798,9 @@ msgid "" "Check this box if you want to customise how options are sorted. If the box " "is not checked, values are sorted in alphabetical order." msgstr "" +"Seleziona questa casella se desideri personalizzare l'ordinamento delle " +"opzioni. Se la casella non è selezionata, i valori vengono ordinati in " +"ordine alfabetico." #: app/assets/javascripts/app/controllers/_integration/check_mk.coffee msgid "Checkmk" @@ -1862,40 +1865,28 @@ msgid "City" msgstr "Città" #: db/seeds/schedulers.rb -#, fuzzy -#| msgid "Cleanup Cti::Log" msgid "Clean up 'Cti::Log'." -msgstr "Pulizia Cti::Log" +msgstr "Pulizia 'Cti::Log'." #: db/seeds/schedulers.rb -#, fuzzy -#| msgid "Cleanup HttpLog" msgid "Clean up 'HttpLog'." -msgstr "Pulizia HttpLog" +msgstr "Pulizia 'HttpLog'." #: db/seeds/schedulers.rb -#, fuzzy -#| msgid "Cleanup ActiveJob locks." msgid "Clean up ActiveJob locks." msgstr "Pulizia lock ActiveJob." #: db/seeds/schedulers.rb -#, fuzzy -#| msgid "Cleanup closed sessions." msgid "Clean up closed sessions." -msgstr "Pulisci sessioni chiuse." +msgstr "Pulisci sessioni terminate." #: db/seeds/schedulers.rb -#, fuzzy -#| msgid "Cleanup dead sessions." msgid "Clean up dead sessions." msgstr "Pulisci sessioni abbandonate." #: db/seeds/schedulers.rb -#, fuzzy -#| msgid "Cleanup expired sessions" msgid "Clean up expired sessions." -msgstr "Pulisci sessioni scadute" +msgstr "Pulisci sessioni scadute." #: app/assets/javascripts/app/controllers/_integration/clearbit.coffee #: app/assets/javascripts/app/views/integration/clearbit.jst.eco @@ -1950,7 +1941,7 @@ msgstr "Chiudi e marca come spam" #: lib/excel_sheet/ticket.rb msgid "Close Diff In Min" -msgstr "" +msgstr "Differenza chiusura in minuti" #: lib/excel_sheet/ticket.rb msgid "Close Escalation At" @@ -1958,13 +1949,11 @@ msgstr "Chiudi escalation il" #: lib/excel_sheet/ticket.rb msgid "Close In Min" -msgstr "" +msgstr "Chiuso in minuti" #: db/seeds/schedulers.rb -#, fuzzy -#| msgid "Closed chat sessions where participients are offline." msgid "Close chat sessions where participants are offline." -msgstr "Sessioni chat chiuse dove i partecipanti sono scollegati." +msgstr "Chiudi le sessioni di chat in cui i partecipanti sono offline." #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee msgid "Close current tab" @@ -2086,10 +2075,8 @@ msgstr "Finestra di conferma/invio" #: app/assets/javascripts/app/controllers/tag.coffee #: app/assets/javascripts/app/controllers/taskbar_widget.coffee #: app/assets/javascripts/app/views/agent_ticket_view/bulk.jst.eco -#, fuzzy -#| msgid "Configuration" msgid "Confirmation" -msgstr "Configurazione" +msgstr "Conferma" #: app/assets/javascripts/app/views/knowledge_base/delete.coffee msgid "Confirmation failed." @@ -2176,16 +2163,12 @@ msgid "Content" msgstr "Contenuto" #: app/assets/javascripts/app/controllers/idoit_object_selector.coffee -#, fuzzy -#| msgid "%s object(s) are created." msgid "Content could not be loaded." -msgstr "%s oggetto(i) creato(i)." +msgstr "Impossibile caricare il contenuto." #: app/models/store.rb -#, fuzzy -#| msgid "%s object(s) are created." msgid "Content preview could not be generated." -msgstr "%s oggetto(i) creato(i)." +msgstr "Impossibile generare l'anteprima del contenuto." #: app/assets/javascripts/app/controllers/knowledge_base/content_controller.coffee msgid "Content was changed since loading" @@ -2220,18 +2203,14 @@ msgid "Contributing Translations" msgstr "Contribuisci alla traduzione" #: lib/sessions/event/chat_transfer.rb -#, fuzzy -#| msgid "Conversation transfered into other chat. Please stay tuned." msgid "Conversation is transferred into another chat. Please stay tuned." msgstr "" -"La conversazione è stata trasferita all'altra chat. Per favore resta in " -"collegamento." +"La conversazione è stata trasferita all'altra chat. Per favore resta " +"collegato." #: app/assets/javascripts/app/views/twitter/list.jst.eco -#, fuzzy -#| msgid "Conversion of retweets into tickets is turned off" msgid "Conversion of retweets into tickets is turned off." -msgstr "La conversione dei retweet in ticket è disattivata" +msgstr "La conversione dei retweet in ticket è disattivata." #: app/assets/javascripts/app/controllers/_plugin/electron_events.coffee msgid "Copy" @@ -2264,9 +2243,9 @@ msgid "" "on an action, it is possible to hide or restrict fields or to change the " "obligation to fill them in." msgstr "" -"I flussi principali sono azioni o restrizioni di selezione nei form. " -"Dipendentemente dall'azione, è possibile nascondere o limitare i campi, o " -"modificare l'obbligatorietà degli stessi." +"I flussi principali sono azioni o restrizioni di selezione nei form. A " +"seconda dell'azione, è possibile nascondere o limitare i campi, o modificare " +"l'obbligatorietà degli stessi." #: app/controllers/reports_controller.rb msgid "Could not find active reporting profile." @@ -2423,8 +2402,6 @@ msgid "Create a translation" msgstr "Crea una traduzione" #: db/seeds/permissions.rb -#, fuzzy -#| msgid "Create and setup %s" msgid "Create and set up %s" msgstr "Crea e configura %s" @@ -2613,11 +2590,9 @@ msgstr "" #: app/assets/javascripts/app/models/organization.coffee #: db/seeds/object_manager_attributes.rb -#, fuzzy -#| msgid "Customers in the organization can view each other items." msgid "Customers in the organization can view each other's items." msgstr "" -"I Customer nell'organizzazione possono visualizzare gli altri articoli." +"I clienti dell'organizzazione possono visualizzare gli elementi degli altri." #: app/assets/javascripts/app/controllers/_plugin/electron_events.coffee msgid "Cut" @@ -2637,12 +2612,10 @@ msgid "Data Privacy" msgstr "Privacy dei dati" #: app/assets/javascripts/app/controllers/data_privacy.coffee -#, fuzzy msgid "DataPrivacyTask" msgstr "DataPrivacyTask" #: app/assets/javascripts/app/controllers/data_privacy.coffee -#, fuzzy msgid "DataPrivacyTasks" msgstr "DataPrivacyTask" @@ -2651,10 +2624,8 @@ msgid "Database" msgstr "Database" #: app/assets/javascripts/app/views/object_manager/index.jst.eco -#, fuzzy -#| msgid "Database Update required" msgid "Database Update Required" -msgstr "aggiornamento database richiesto" +msgstr "Aggiornamento database richiesto" #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee @@ -2702,10 +2673,8 @@ msgid "Decryption failed!" msgstr "Decifrazione fallita!" #: app/assets/javascripts/app/controllers/ticket_zoom/article_view.coffee -#, fuzzy -#| msgid "Registration successful!" msgid "Decryption was successful." -msgstr "Registrazione avvenuta!" +msgstr "La decrittazione è riuscita." #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee #: app/assets/javascripts/app/views/calendar/index.jst.eco @@ -2732,13 +2701,11 @@ msgstr "Default alla registrazione" #: db/seeds/settings.rb msgid "Default calendar tickets subscriptions" -msgstr "" +msgstr "Calendario predefinito per le sottoscrizioni ai ticket" #: app/assets/javascripts/app/views/integration/cti.jst.eco #: app/assets/javascripts/app/views/integration/placetel.jst.eco #: app/assets/javascripts/app/views/integration/sipgate.jst.eco -#, fuzzy -#| msgid "Default caller id for outbound calls." msgid "Default caller ID for outbound calls." msgstr "ID chiamante predefinito per le chiamate in uscita." @@ -2798,16 +2765,17 @@ msgid "" "agents to it. By this, Zammad can support your agents by showing them only " "relevant call entries and notifications." msgstr "" +"Definisce le code o le destinazioni delle chiamate (qualunque cosa si adatti " +"al tuo PBX) e mappa i tuoi agenti su di esso. In questo modo, Zammad può " +"supportare i tuoi agenti mostrando loro solo chiamate e notifiche rilevanti." #: db/seeds/settings.rb msgid "Defines Elasticsearch index name." msgstr "Definisce il nome dell'indice Elasticsearch." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Defines Freshdesk endpoint authentication key." msgid "Defines Freshdesk endpoint authentication API key." -msgstr "Definisce la chiave di autenticazione per l'endpoint Freshdesk." +msgstr "Definisce la chiave di autenticazione per l'endpoint di Freshdesk." #: db/seeds/settings.rb msgid "Defines HTTP basic auth password of Elasticsearch." @@ -2819,16 +2787,12 @@ msgid "Defines HTTP basic auth user of Elasticsearch." msgstr "Definisce l'utente per l'autenticazione HTTP basic di Elasticsearch." #: db/seeds/settings.rb -#, fuzzy -#| msgid "" -#| "Defines HTTP basic authentication user (only if OTRS is protected via " -#| "HTTP basic auth)." msgid "" "Defines HTTP basic authentication password (only if OTRS is protected via " "HTTP basic auth)." msgstr "" -"Definisce l'utente per l'autenticazione HTTP basic (solo se OTRS è protetto " -"dall'autenticazione HTTP basic)." +"Definisce la password di autenticazione di base HTTP (solo se OTRS è " +"protetto tramite l'autenticazione di base HTTP)." #: db/seeds/settings.rb msgid "" @@ -2843,58 +2807,43 @@ msgid "Defines Kayako endpoint authentication password." msgstr "Definisce la password per l'autenticazione dell'endpoint Kayako." #: db/seeds/settings.rb -#, fuzzy msgid "Defines Kayako endpoint authentication user." -msgstr "Definisce il mittente delle email di notifica." +msgstr "Definisce l'utente di autenticazione dell'endpoint di Kayako." #: db/seeds/settings.rb msgid "Defines OTRS endpoint authentication key." msgstr "Definisce la chiave di autenticazione per l'endpoint OTRS." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Defines Zendesk endpoint authentication key." msgid "Defines Zendesk endpoint authentication API key." -msgstr "Definisce la chiave di autenticazione per l'endpoint Zendesk." +msgstr "Definisce la chiave API di autenticazione per l'endpoint di Zendesk." #: db/seeds/settings.rb msgid "Defines Zendesk endpoint authentication user." msgstr "Definisce l'utente di autenticazione per l'endpoint Zendesk." #: db/seeds/settings.rb -#, fuzzy -#| msgid "" -#| "Defines Freshdesk endpoint to import users, ticket, states and articles." msgid "" "Defines a Freshdesk endpoint to import users, tickets, states, and articles." msgstr "" -"Definisce l'endpoint Freshdesk da cui importare utenti, ticket, stati e " -"articoli." +"Definisce l'endpoint Freshdesk da cui importare utenti, ticket, stati e note." #: db/seeds/settings.rb -#, fuzzy -#| msgid "" -#| "Defines Kayako endpoint to import users, ticket, states and articles." msgid "" "Defines a Kayako endpoint to import users, tickets, states, and articles." -msgstr "" -"Definisce l'endpoint Kayako per importare utenti, ticket, stati e articoli." +msgstr "Definisce l'endpoint Kayako per importare utenti, ticket, stati e note." #: db/seeds/settings.rb -#, fuzzy -#| msgid "" -#| "Defines Zendesk endpoint to import users, ticket, states and articles." msgid "" "Defines a Zendesk endpoint to import users, tickets, states, and articles." msgstr "" -"Definisce per l'endpoint Zendesk per importare utenti, ticket, stati e " -"articoli." +"Definisce l'endpoint Zendesk per importare utenti, ticket, stati e note." #: db/seeds/settings.rb -#, fuzzy -#| msgid "A list of active import backends that get scheduled automatically." msgid "Defines a dashboard stats backend that gets scheduled automatically." -msgstr "Una lista di importazioni attive che vengono eseguite automaticamente." +msgstr "" +"Definisce un backend per le statistiche della dashboard pianificate " +"automaticamente." #: db/seeds/settings.rb msgid "" @@ -2913,25 +2862,22 @@ msgstr "" "da un singolo indirizzo IP, all'ora." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Defines limit of tickets per day via web form." msgid "" "Defines a limit for how many tickets can be created via web form per day." -msgstr "Determina il limite di ticket al giorno dal form web." +msgstr "" +"Definisce un limite per il numero di ticket che possono essere creati " +"tramite form web al giorno." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Number of failed logins after account will be deactivated." msgid "Defines after how many failed logins accounts will be deactivated." -msgstr "Numero di accessi non riusciti dopo la disattivazione dell'account." +msgstr "" +"Definisce dopo quanti accessi non riusciti verranno disattivati gli account." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Defines OTRS endpoint to import users, tickets, states and articles." msgid "" "Defines an OTRS endpoint to import users, tickets, states, and articles." msgstr "" -"Definisce l'endpoint di OTRS per importare utenti, ticket, stati e articoli." +"Definisce l'endpoint di OTRS per importare utenti, ticket, stati e note." #: db/seeds/settings.rb msgid "Defines attachment extensions which will be ignored by Elasticsearch." @@ -2960,11 +2906,11 @@ msgstr "" "risposte e ticket di tipo email)." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Defines if a customer can create tickets via the web interface." msgid "" "Defines how the last customer contact time of tickets should be calculated." -msgstr "Definisci se un cliente può aprire un ticket dall'interfaccia web." +msgstr "" +"Definisce come calcolare data e ora dell'ultimo contatto del cliente nel " +"ticket." #: db/seeds/settings.rb msgid "" @@ -3018,15 +2964,15 @@ msgstr "Definisce se Nagios (http://www.nagios.org) è abilitato o meno." #: db/seeds/settings.rb msgid "Defines if Placetel (http://www.placetel.de) is enabled or not." -msgstr "" +msgstr "Definisce se Placetel (http://www.placetel.de) è abilitato o meno." #: db/seeds/settings.rb msgid "Defines if S/MIME encryption is enabled or not." -msgstr "" +msgstr "Definisce se la crittografia S/MIME è abilitata o meno." #: db/seeds/settings.rb msgid "Defines if Slack (http://www.slack.org) is enabled or not." -msgstr "" +msgstr "Definisce se Slack (http://www.slack.org) è abilitato o meno." #: db/seeds/settings.rb msgid "Defines if a customer can create tickets via the web interface." @@ -3034,15 +2980,15 @@ msgstr "Definisci se un cliente può aprire un ticket dall'interfaccia web." #: db/seeds/settings.rb msgid "Defines if application is in init mode." -msgstr "" +msgstr "Definisce se l'applicazione è in modalità init." #: db/seeds/settings.rb msgid "Defines if application is used as online service." -msgstr "" +msgstr "Definisce se l'applicazione viene utilizzata come servizio online." #: db/seeds/settings.rb msgid "Defines if generic CTI integration is enabled or not." -msgstr "" +msgstr "Definisce se l'integrazione CTI generica è abilitata o meno." #: db/seeds/settings.rb msgid "Defines if i-doit (http://www.i-doit) is enabled or not." @@ -3050,47 +2996,58 @@ msgstr "" #: db/seeds/settings.rb msgid "Defines if sipgate.io (http://www.sipgate.io) is enabled or not." -msgstr "" +msgstr "Definisce se sipgate.io (http://www.sipgate.io) è abilitato o meno." #: db/seeds/settings.rb msgid "" "Defines if the GitHub (http://www.github.com) integration is enabled or not." msgstr "" +"Definisce se l'integrazione con GitHub (http://www.github.com) è abilitata o " +"meno." #: db/seeds/settings.rb msgid "" "Defines if the GitLab (http://www.gitlab.com) integration is enabled or not." msgstr "" +"Definisce se l'integrazione con GitLab (http://www.gitlab.com) è abilitata o " +"meno." #: db/seeds/settings.rb msgid "" "Defines if the agent has to accept a confirmation dialog when changing the " "article visibility to \"public\"." msgstr "" +"Definisce se l'agente deve accettare una finestra di conferma quando cambia " +"la visibilità della nota in \"pubblica\"." #: db/seeds/settings.rb msgid "" "Defines if the application is in developer mode (all users have the same " "password and password reset will work without email delivery)." msgstr "" +"Definisce se l'applicazione è in modalità sviluppatore (tutti gli utenti " +"hanno la stessa password e la reimpostazione della password funzionerà senza " +"l'invio della mail)." #: db/seeds/settings.rb msgid "" "Defines if the core workflow communication should run over ajax instead of " "websockets." msgstr "" +"Definisce se la comunicazione del flusso di lavoro principale deve essere " +"eseguita su ajax anziché su websocket." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Display of the e-mail in the result of the user/organization widget." msgid "" "Defines if the email should be displayed in the result of the user/" "organization widget." -msgstr "Mostra l'email nel widget dell'utente/organizzazione." +msgstr "" +"Definisce se l'email deve essere visualizzata nel risultato del widget " +"utente/organizzazione." #: db/seeds/settings.rb msgid "Defines if tickets can be created via web form." -msgstr "" +msgstr "Definisce se i biglietti possono essere creati tramite modulo web." #: db/seeds/settings.rb msgid "Defines if tickets should be closed if service is recovered." @@ -3099,7 +3056,7 @@ msgstr "" #: db/seeds/settings.rb msgid "Defines karma levels." -msgstr "" +msgstr "Definisce i livelli di karma." #: db/seeds/settings.rb msgid "Defines postmaster filter for filters managed via admin interface." @@ -3113,45 +3070,34 @@ msgid "" "itself and will set the article sender." msgstr "" "Definisce il filtro postmaster per verificare se l'email è stata generata da " -"Zammad stesso, e imposterà il mittente dell'articolo." +"Zammad stesso, e imposterà il mittente della nota." #: db/seeds/settings.rb -#, fuzzy -#| msgid "" -#| "Define postmaster filter to check if email is a own created notification " -#| "email, then ignore it to prevent email loops." msgid "" "Defines postmaster filter to check if the email is a self-created " "notification email, then ignore it to prevent email loops." msgstr "" "Definisce un filtro di postmaster per verificare se l'email è stata generata " -"internamente, per ignorarla ed evitare un ciclo infinito." +"internamente, per ignorarla ed evitare un ciclo infinito di email." #: db/seeds/settings.rb msgid "Defines postmaster filter to handle secure mailing." msgstr "Definisce il filtro postmaster per gestire l'invio sicuro di mail." #: db/seeds/settings.rb -#, fuzzy -#| msgid "" -#| "Defines postmaster filter to identify jira mails for correct follow-ups." msgid "" "Defines postmaster filter to identify Jira mails for correct follow-ups." msgstr "" "Definisce il filtro postmaster per identificare le email di Jira e " -"associarle correttamente come risposte." +"associarle alle risposte corrette." #: db/seeds/settings.rb -#, fuzzy -#| msgid "" -#| "Defines postmaster filter to identify service now mails for correct " -#| "follow-ups." msgid "" "Defines postmaster filter to identify ServiceNow mails for correct follow-" "ups." msgstr "" "Definisce il filtro postmaster per identificare le email di ServiceNow e " -"associarle come risposte." +"associarle alle risposte corrette." #: db/seeds/settings.rb msgid "" @@ -3184,40 +3130,28 @@ msgstr "" "attuale del ticket." #: db/seeds/settings.rb -#, fuzzy -#| msgid "" -#| "Defines postmaster filter to identify postmaster bounced - disable " -#| "sending notification on permanent deleivery failed." msgid "" "Defines postmaster filter to identify postmaster bounces; and disables " "sending notification if delivery fails permanently." msgstr "" -"Definisce il filtro postmaster per identificare le email rimbalzate - " +"Definisce il filtro postmaster per identificare le email non recapitate; e " "disabilita l'invio se l'errore è permanente." #: db/seeds/settings.rb -#, fuzzy -#| msgid "" -#| "Defines postmaster filter to identify postmaster bounced - to handle it " -#| "as follow-up of the original ticket." msgid "" "Defines postmaster filter to identify postmaster bounces; and handles them " "as follow-up of the original tickets" msgstr "" -"Definisce il filtro postmaster per identificare le email rimbalzate - per " -"gestirle come risposta del ticket originale." +"Definisce il filtro postmaster per identificare le email rimbalzate: e le " +"gestisce come risposta del ticket originale" #: db/seeds/settings.rb -#, fuzzy -#| msgid "" -#| "Defines postmaster filter to identify postmaster bounced - reopen ticket " -#| "on permanent temporary failed." msgid "" "Defines postmaster filter to identify postmaster bounces; and reopens " "tickets if delivery fails permanently." msgstr "" -"Definisce il filtro postmaster per identificare le email rimbalzate - riapre " -"il ticket in caso la consegna non è possibile in modo definitivo." +"Definisce il filtro postmaster per identificare le email rimbalzate; riapre " +"il ticket se la consegna non è possibile in modo definitivo." #: db/seeds/settings.rb msgid "Defines postmaster filter to identify sender user." @@ -3245,10 +3179,6 @@ msgstr "" "www.nagios.org)." #: db/seeds/settings.rb -#, fuzzy -#| msgid "" -#| "Defines postmaster filter to remove X-Zammad headers from not trusted " -#| "sources." msgid "" "Defines postmaster filter to remove X-Zammad headers from untrustworthy " "sources." @@ -3277,6 +3207,9 @@ msgid "" "Defines postmaster filter which sets the articles visibility to internal if " "it is a rely to an internal article or the last outgoing email is internal." msgstr "" +"Definisce il filtro postmaster che imposta la visibilità delle note su " +"interna se si tratta di una risposta ad una nota interna o se l'ultima email " +"in uscita è interna." #: db/seeds/settings.rb msgid "Defines postmaster filter." @@ -3295,14 +3228,10 @@ msgid "Defines sync transaction backend." msgstr "Definisce le transazioni di sincronizzazione nel backend." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Defines the CSS font information for HTML Emails." msgid "Defines the CSS font information for HTML emails." -msgstr "Definisce le informazion sul font CSS per le email HTML." +msgstr "Definisce le informazioni sui font CSS per le email HTML." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Defines the cti config." msgid "Defines the CTI config." msgstr "Definisce la configurazione CTI." @@ -3319,10 +3248,8 @@ msgid "Defines the Exchange config." msgstr "Definisce la configurazione di Exchange." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Define the http protocol of your instance." msgid "Defines the HTTP protocol of your instance." -msgstr "Scegli il protocollo HTTP di questa installazione." +msgstr "Definisce il protocollo HTTP della tua installazione." #: db/seeds/settings.rb msgid "Defines the LDAP config." @@ -3337,28 +3264,20 @@ msgid "Defines the S/MIME config." msgstr "Definisce la configurazione S/MIME." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Defines the slack config." msgid "Defines the Slack config." msgstr "Definisce la configurazione di Slack." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Defines the Exchange config." msgid "Defines the agent limit." -msgstr "Definisce la configurazione di Exchange." +msgstr "Definisce il limite di agenti." #: db/seeds/settings.rb -#, fuzzy -#| msgid "" -#| "Defines the backend for geo IP lookups. Shows also location of an IP " -#| "address if an IP address is shown." msgid "" "Defines the backend for geo IP lookups. Also shows location of an IP address " "if it is traceable." msgstr "" -"Definisce il back-end per le ricerche geografiche IP. Mostra anche la " -"posizione di un indirizzo IP." +"Definisce il back-end per le ricerche geografiche di IP. Mostra anche la " +"posizione di un indirizzo IP, se tracciabile." #: db/seeds/settings.rb msgid "" @@ -3384,34 +3303,32 @@ msgstr "" #: db/seeds/settings.rb msgid "Defines the default calendar tickets subscription settings." msgstr "" +"Definisce le impostazioni di sottoscrizione ai ticket nel calendario " +"predefinito." #: db/seeds/settings.rb msgid "Defines the default screen." -msgstr "" +msgstr "Definisce la schermata predefinita." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Defines the system default language." msgid "Defines the default system language." -msgstr "Definizione della lingua predefinita del sistema." +msgstr "Definisce la lingua predefinita del sistema." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Defines the system default timezone." msgid "Defines the default system timezone." msgstr "Definisce il fuso orario predefinito del sistema." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Default visibility for new note." msgid "Defines the default visibility for new notes." -msgstr "Visibilità predefinita per una nuova nota." +msgstr "Definisce la visibilità predefinita per una nuova nota." #: db/seeds/settings.rb msgid "" "Defines the duration of customer activity (in seconds) on a call until the " "user profile dialog is shown." msgstr "" +"Definisce la durata dell'attività del cliente (in secondi) su una chiamata " +"finché non viene visualizzata la finestra di dialogo del profilo utente." #: db/seeds/settings.rb msgid "" @@ -3429,14 +3346,12 @@ msgid "Defines the group of created tickets." msgstr "Definisce il gruppo di ticket creati." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Defines limit of tickets per day via web form." msgid "Defines the group of tickets created via web form." -msgstr "Determina il limite di ticket al giorno dal form web." +msgstr "Definisce il gruppo per i ticket creati tramite form web." #: db/seeds/settings.rb msgid "Defines the i-doit config." -msgstr "" +msgstr "Definisce la configurazione di i-doit." #: db/seeds/settings.rb msgid "Defines the karma levels." @@ -3444,7 +3359,7 @@ msgstr "Definisce i livelli di karma." #: db/seeds/settings.rb msgid "Defines the log levels for various logging actions of the Sequencer." -msgstr "" +msgstr "Definisce i livelli di log per varie azioni del Sequencer." #: db/seeds/settings.rb msgid "Defines the logo of the application, shown in the web interface." @@ -3455,16 +3370,12 @@ msgid "Defines the maximum accepted email size in MB." msgstr "Definisce la dimensione massima consentita (in MB) per le email." #: db/seeds/settings.rb -#, fuzzy -#| msgid "" -#| "Defines the name of the application, shown in the web interface, tabs and " -#| "title bar of the web browser." msgid "" "Defines the name of the application, shown in the web interface, tabs, and " "title bar of the web browser." msgstr "" -"Definisce il back-end per le ricerche geografiche IP. Mostra anche la " -"posizione di un indirizzo IP." +"Definisce il nome dell'applicazione, visualizzato nell'interfaccia Web, " +"nelle schede e nella barra del browser Web." #: db/seeds/settings.rb msgid "Defines the port of the websocket server." @@ -3517,10 +3428,8 @@ msgid "Defines the sipgate.io config." msgstr "Definisce la configurazione di sipgate.io." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Defines the state of auto closed tickets." msgid "Defines the state of auto-closed tickets." -msgstr "Definisce lo stati dei ticket chiusi in automatico." +msgstr "Definisce lo stato dei ticket chiusi automaticamente." #: db/seeds/settings.rb msgid "" @@ -3540,57 +3449,58 @@ msgstr "" "ticket." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Define timeframe where a own created note can get deleted." msgid "Defines the timeframe during which a self-created note can be deleted." msgstr "" -"Definisce l'intervallo di tempo entro cui una propria nota può essere " -"eliminata." +"Definisce l'intervallo di tempo durante il quale è possibile eliminare una " +"nota creata." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Defines the karma levels." msgid "Defines the token for Placetel." -msgstr "Definisce i livelli di karma." +msgstr "Definisce il token per Placetel." #: db/seeds/settings.rb msgid "" "Defines the transaction backend to detect customer signatures in emails." -msgstr "" +msgstr "Definisce il back-end per rilevare le firme dei clienti nelle e-mail." #: db/seeds/settings.rb msgid "Defines the transaction backend to execute triggers." -msgstr "" +msgstr "Definisce il back-end per eseguire i trigger." #: db/seeds/settings.rb msgid "Defines the transaction backend to send agent notifications." -msgstr "" +msgstr "Definisce il back-end per inviare le notifiche dell'agente." #: db/seeds/settings.rb msgid "Defines the transaction backend which creates the karma score." -msgstr "" +msgstr "Definisce il backend della transazioni che crea il punteggio karma." #: db/seeds/settings.rb msgid "" "Defines the transaction backend which detects caller IDs in objects and " "stores them for CTI lookups." msgstr "" +"Definisce il back-end che rileva gli ID chiamante negli oggetti e li " +"archivia per le ricerche CTI." #: db/seeds/settings.rb msgid "" "Defines the transaction backend which posts messages to Slack (http://www." "slack.com)." msgstr "" +"Definisce il back-end che invia i messaggi a Slack (https://www.slack.com)." #: db/seeds/settings.rb msgid "" "Defines the transaction backend which will enrich customer and organization " "information from Clearbit (http://www.clearbit.com)." msgstr "" +"Definisce il back-end che arricchirà le informazioni sui clienti e " +"sull'organizzazione da Clearbit (https://www.clearbit.com)." #: db/seeds/settings.rb msgid "Defines transaction backend." -msgstr "" +msgstr "Definisce il back-end transazionale." #: app/assets/javascripts/app/controllers/_application_controller/table.coffee #: app/assets/javascripts/app/controllers/_manage/knowledge_base.coffee @@ -3654,10 +3564,8 @@ msgid "Delete obsolete classic IMAP backup." msgstr "Elimina il salvataggio su IMAP, ora obsoleto." #: db/seeds/schedulers.rb -#, fuzzy -#| msgid "Delete old token entries." msgid "Delete old 'RecentView' entries." -msgstr "Cancellazione vecchi token." +msgstr "Cancella i vecchi record 'RecentView'." #: db/seeds/schedulers.rb msgid "Delete old activity stream entries." @@ -3700,10 +3608,8 @@ msgid "Deletion Task" msgstr "Eliminazione task" #: app/assets/javascripts/app/controllers/knowledge_base/delete_action.coffee -#, fuzzy -#| msgid "Decryption failed!" msgid "Deletion failed." -msgstr "Decifrazione fallita!" +msgstr "Eliminazione fallita." #: app/assets/javascripts/app/views/ticket_zoom/article_view_delivery_failed.jst.eco msgid "Delivery failed" @@ -3748,16 +3654,12 @@ msgstr "Gruppo di destinazione" #: app/assets/javascripts/app/views/integration/cti.jst.eco #: app/assets/javascripts/app/views/integration/placetel.jst.eco #: app/assets/javascripts/app/views/integration/sipgate.jst.eco -#, fuzzy -#| msgid "Destination caller id" msgid "Destination caller ID" msgstr "ID chiamante di destinazione" #: app/assets/javascripts/app/views/integration/cti.jst.eco -#, fuzzy -#| msgid "Destination caller id" msgid "Destination caller ID or queue" -msgstr "ID chiamante di destinazione" +msgstr "ID chiamante di destinazione o coda" #: db/seeds/settings.rb msgid "Developer System" @@ -3775,7 +3677,7 @@ msgstr "Dispositivi" #: app/assets/javascripts/app/views/profile/language.jst.eco msgid "Did you know? You can help translating %s at:" -msgstr "" +msgstr "Lo sai? Puoi aiutare a tradurre %s in:" #: db/seeds/settings.rb msgid "Digit required" @@ -3849,10 +3751,8 @@ msgstr "Non firmare le email" #: app/assets/javascripts/app/controllers/knowledge_base/delete_action.coffee #: app/assets/javascripts/app/controllers/knowledge_base/sidebar/attachments.coffee -#, fuzzy -#| msgid "Sure to delete this object?" msgid "Do you really want to delete \"%s\"?" -msgstr "Vuoi eliminare questo oggetto?" +msgstr "Vuoi davvero eliminare \"%s\"?" #: app/assets/javascripts/app/views/ticket_shared_draft_modal.coffee msgid "Do you really want to delete this draft?" @@ -3860,16 +3760,12 @@ msgstr "Vuoi davvero eliminare questa bozza?" #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_destroy_confirm.coffee #: app/assets/javascripts/app/controllers/tag.coffee -#, fuzzy -#| msgid "Sure to delete this object?" msgid "Do you really want to delete this object?" -msgstr "Vuoi eliminare questo oggetto?" +msgstr "Vuoi davvero eliminare questo oggetto?" #: app/assets/javascripts/app/controllers/_application_controller/article_public_confirm.coffee -#, fuzzy -#| msgid "Sure to delete this object?" msgid "Do you really want to set the visibility of this article to \"public\"?" -msgstr "Vuoi eliminare questo oggetto?" +msgstr "Vuoi davvero impostare la visibilità di questa nota su \"pubblica\"?" #: db/seeds/object_manager_attributes.rb msgid "Domain" @@ -3915,6 +3811,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "Scarica e installa il plugin di migrazione %s sulla tua istanza %s." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Bozza" @@ -3933,15 +3830,10 @@ msgid "Drop files here" msgstr "Trascina i file qui" #: app/assets/javascripts/app/controllers/login.coffee -#, fuzzy -#| msgid "Due to inactivity you are automatically logged out." msgid "Due to inactivity, you have been automatically logged out." -msgstr "Sarai scollegato automaticamente per inattività." +msgstr "Sei stato disconnesso automaticamente per inattività." #: app/assets/javascripts/app/controllers/_plugin/session_timeout.coffee -#, fuzzy -#| msgid "" -#| "Due to inactivity are automatically logged out within the next 30 seconds." msgid "" "Due to inactivity, you will be automatically logged out within the next 30 " "seconds." @@ -4106,8 +3998,6 @@ msgid "Email Outbound" msgstr "Email in uscita" #: app/assets/javascripts/app/controllers/email_verify.coffee -#, fuzzy -#| msgid "Unable to verify email. Please contact your administrator." msgid "Email could not be verified. Please contact your administrator." msgstr "" "Impossibile verificare l'email. Per favore, contatta il tuo amministratore." @@ -4118,20 +4008,18 @@ msgid "" "Email sending and receiving could not be verified. Please check your " "settings." msgstr "" +"Impossibile verificare l'invio e la ricezione dell'email. Controlla le tue " +"impostazioni." #: app/assets/javascripts/app/controllers/user_profile.coffee -#, fuzzy -#| msgid "Email sent to \"%s\". Please let the user verify his email address." msgid "Email sent to \"%s\". Please let the user verify their email account." msgstr "" -"Email inviata a \"%s\". Per favore fai verificare all'utente l'indirizzo " -"email." +"Email inviata a \"%s\". Per favore fai verificare l'indirizzo email " +"all'utente." #: app/assets/javascripts/app/controllers/signup.coffee -#, fuzzy -#| msgid "Email sent to \"%s\". Please verify your email address." msgid "Email sent to \"%s\". Please verify your email account." -msgstr "Email inviata a \"%s\". Per favore verifica l'indirizzo email." +msgstr "Email inviata a \"%s\". Per favore verifica il tuo indirizzo email." #: app/assets/javascripts/app/views/knowledge_base/public_menu_manager.jst.eco #: app/assets/javascripts/app/views/knowledge_base/search_field_panel.jst.eco @@ -4163,17 +4051,13 @@ msgstr "" "e la password per l'utente di autenticazione." #: app/assets/javascripts/app/views/api.jst.eco -#, fuzzy -#| msgid "" -#| "Enable REST API using tokens (not username/email address and password). " -#| "Each user needs to create own access tokens in user profile." msgid "" "Enable REST API using tokens (not username/email address and password). All " "users need to create their own access tokens in the user profile." msgstr "" "Abilita API REST utilizzando token (non nome utente / indirizzo email e " -"password). Ogni utente deve creare i propri token di accesso nel profilo " -"utente." +"password). Tutti gli utenti devono creare i propri token di accesso nel " +"profilo utente." #: db/seeds/settings.rb msgid "" @@ -4188,9 +4072,8 @@ msgid "Enable Ticket creation" msgstr "Abilita la creazione dei Ticket" #: db/seeds/settings.rb -#, fuzzy msgid "Enable auto assignment for following matching tickets." -msgstr "Abilita l'assegnamento automatico per i ticket che corrispondono." +msgstr "Abilita l'assegnazione automatica per i seguenti ticket corrispondenti." #: app/assets/javascripts/app/views/settings/ticket_auto_assignment.jst.eco msgid "Enable automatic assignment the first time an agent opens a ticket." @@ -4318,14 +4201,12 @@ msgstr "" "su [%s] (%s)." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Enables user authentication via %s." msgid "Enables user authentication via GitHub." -msgstr "Abilita l'autenticazione utente via %s." +msgstr "Abilita l'autenticazione utente via GitHub." #: db/seeds/settings.rb msgid "Enables user authentication via GitLab." -msgstr "" +msgstr "Abilita autenticazione utente tramite GitLab." #: db/seeds/settings.rb msgid "Enables user authentication via Google." @@ -4345,7 +4226,7 @@ msgstr "" #: db/seeds/settings.rb msgid "Enables user authentication via Weibo." -msgstr "" +msgstr "Abilita autenticazione utente tramite Weibo." #: db/seeds/settings.rb msgid "Enables users to create their own account via web interface." @@ -4359,20 +4240,20 @@ msgstr "Crittografia" #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee msgid "Encrypt email (if not possible, discard notification)" -msgstr "" +msgstr "Crittografa email (se non possibile, elimina la notifica)" #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee msgid "Encrypt email (if not possible, send notification anyway)" -msgstr "" +msgstr "Crittografa email (se non possibile, invia comunque la notifica)" #: app/assets/javascripts/app/views/ticket_zoom/article_view.jst.eco msgid "Encrypted" -msgstr "" +msgstr "Crittografata" #: app/assets/javascripts/app/views/integration/smime_group.jst.eco #: app/assets/javascripts/app/views/ticket_zoom/article_view.jst.eco msgid "Encryption" -msgstr "" +msgstr "Crittografia" #: app/assets/javascripts/app/models/webhook.coffee #: app/assets/javascripts/app/views/integration/check_mk.jst.eco @@ -4389,14 +4270,12 @@ msgstr "Endpoint" #: app/assets/javascripts/app/views/integration/cti.jst.eco #: app/assets/javascripts/app/views/integration/placetel.jst.eco #: app/assets/javascripts/app/views/integration/sipgate.jst.eco -#, fuzzy -#| msgid "Expert Settings" msgid "Endpoint Settings" -msgstr "Impostazioni avanzate" +msgstr "Impostazioni endpoint" #: db/seeds.rb msgid "English (United States)" -msgstr "" +msgstr "Inglese (Stati Uniti)" #: app/assets/javascripts/app/views/ticket_zoom/article_new.jst.eco msgid "Enter Note or" @@ -4410,7 +4289,7 @@ msgstr "Inserisci una Persona o Azienda/Organizzazione" #: app/assets/javascripts/app/views/integration/smime_private_key_add.jst.eco msgid "Enter Private Key Secret" -msgstr "" +msgstr "Inserisci chiave privata segreta" #: app/assets/javascripts/app/views/ticket_zoom/title.jst.eco msgid "Enter Title…" @@ -4425,7 +4304,7 @@ msgstr "Inserisci le tue credenziali" #: app/assets/javascripts/app/views/import/freshdesk.jst.eco #: app/assets/javascripts/app/views/import/kayako.jst.eco msgid "Enter the Subdomain of your %s system" -msgstr "" +msgstr "Inserisci il sottodominio del tuo sistema %s" #: app/assets/javascripts/app/views/import/zendesk.jst.eco msgid "Enter the URL of your %s system" @@ -4440,14 +4319,14 @@ msgstr "" "collegare i due sistemi" #: app/assets/javascripts/app/controllers/_ui_element/timezone.coffee -#, fuzzy -#| msgid "Enter timezone..." msgid "Enter time zone" -msgstr "Inserire Fuso Orario" +msgstr "Inserisci il fuso orario" #: app/assets/javascripts/app/views/import/freshdesk.jst.eco msgid "Enter your %s API token gained from your account profile settings." msgstr "" +"Inserisci il token API %s ottenuto dalle impostazioni del profilo del tuo " +"account." #: app/assets/javascripts/app/views/facebook/app_config.jst.eco #: app/assets/javascripts/app/views/google/app_config.jst.eco @@ -4463,6 +4342,8 @@ msgid "" "Enter your email address and password from your %s account which should be " "used for the import." msgstr "" +"Inserisci il tuo indirizzo e-mail e password dal tuo account %s che dovrebbe " +"essere utilizzato per l'importazione." #: app/assets/javascripts/app/views/import/zendesk.jst.eco msgid "" @@ -4482,21 +4363,19 @@ msgstr "Inserisci il tuo nome utente o la tua email" #: app/assets/javascripts/app/controllers/ticket_zoom.coffee #: app/assets/javascripts/app/controllers/widget/error_modal.coffee msgid "Error" -msgstr "" +msgstr "Errore" #: app/controllers/getting_started_controller.rb msgid "Error during execution of auto wizard." msgstr "" #: db/seeds/overviews.rb -#, fuzzy -#| msgid "Escalation Times" msgid "Escalated Tickets" -msgstr "Escalation Times" +msgstr "Ticket in escalation" #: lib/excel_sheet/ticket.rb msgid "Escalation At" -msgstr "" +msgstr "In escalation a" #: app/assets/javascripts/app/lib/app_post/popover_provider/escalation_popover_provider.coffee #: app/assets/javascripts/app/views/sla/index.jst.eco @@ -4550,6 +4429,21 @@ msgid "" "Whatever it is, you can do it with triggers: actions that watch tickets for " "certain changes, and then fire off whenever those changes occur." msgstr "" +"Ogni volta che un cliente crea un nuovo ticket, riceve automaticamente un'e-" +"mail di conferma per assicurargli che la sua richiesta è stata inviata " +"correttamente. Questo comportamento è integrato in Zammad, ma è anche " +"altamente personalizzabile e puoi impostare altre azioni automatizzate " +"proprio come questa.\n" +"\n" +"Forse vuoi impostare una priorità più alta su qualsiasi ticket con la parola " +"\"urgente\" nel titolo. Forse vuoi evitare di inviare e-mail di risposta " +"automatica ai clienti di determinate organizzazioni. Forse vuoi " +"contrassegnare un ticket come \"in sospeso\" ogni volta che qualcuno " +"aggiunge una nota interna.\n" +"\n" +"Qualunque cosa sia, puoi farlo con i trigger: azioni che controllano i " +"ticket per determinate modifiche e quindi si attivano ogni volta che si " +"verificano tali modifiche." #: app/assets/javascripts/app/views/api.jst.eco msgid "Example" @@ -4562,11 +4456,11 @@ msgstr "File CSV di esempio da scaricare." #: app/assets/javascripts/app/controllers/webhook.coffee #: app/assets/javascripts/app/controllers/widget/payload_example.coffee msgid "Example Payload" -msgstr "" +msgstr "Payload di esempio" #: app/assets/javascripts/app/views/integration/check_mk.jst.eco msgid "Examples" -msgstr "" +msgstr "Esempi" #: app/assets/javascripts/app/controllers/_manage/ticket_auto_assignment.coffee msgid "Exception users" @@ -4576,15 +4470,15 @@ msgstr "Utenti esenti" #: app/assets/javascripts/app/views/integration/exchange.jst.eco #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco msgid "Exchange" -msgstr "" +msgstr "Exchange" #: db/seeds/settings.rb msgid "Exchange config" -msgstr "" +msgstr "Configurazione Exchange" #: db/seeds/settings.rb msgid "Exchange integration" -msgstr "" +msgstr "Integrazione Exchange" #: app/assets/javascripts/app/controllers/_integration/exchange.coffee msgid "Exchange integration for contacts management." @@ -4597,13 +4491,11 @@ msgstr "Esegui modifica sull'oggetto" #: db/seeds/schedulers.rb msgid "Execute import jobs." -msgstr "" +msgstr "Esegui lavori di importazione." #: db/seeds/schedulers.rb -#, fuzzy -#| msgid "Execute changes on objects" msgid "Execute planned jobs." -msgstr "Esegui modifica sull'oggetto" +msgstr "Esegui lavori pianificati." #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee msgid "Execution Time" @@ -4646,25 +4538,26 @@ msgstr "Facebook" #: app/assets/javascripts/app/controllers/_channel/facebook.coffee msgid "Facebook Account" -msgstr "" +msgstr "Account Facebook" #: db/seeds/settings.rb msgid "Facebook App Credentials" -msgstr "" +msgstr "Credenziali App Facebook" #: app/assets/javascripts/app/views/data_privacy/index.jst.eco msgid "Failed Tasks" -msgstr "" +msgstr "Task falliti" #: app/controllers/channels_google_controller.rb #: app/controllers/channels_microsoft365_controller.rb msgid "Failed to find backup on channel!" -msgstr "" +msgstr "Impossibile trovare il backup sul canale!" #: app/assets/javascripts/app/controllers/_channel/google.coffee #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee msgid "Failed to roll back the migration of the channel!" msgstr "" +"Impossibile ripristinare lo stato precedente alla migrazione del canale!" #: app/assets/javascripts/app/controllers/user_profile.coffee msgid "Failed to send email to \"%s\". Please contact an administrator." @@ -4690,11 +4583,11 @@ msgstr "La funzione è disabilitata, contatta un amministratore!" #: app/controllers/integration/placetel_controller.rb #: app/controllers/integration/sipgate_controller.rb msgid "Feature not configured, please contact your admin!" -msgstr "" +msgstr "Funzione non configurata, contatta il tuo amministratore!" #: app/controllers/users_controller.rb msgid "Feature not enabled!" -msgstr "" +msgstr "Funzione non abilitata!" #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee #: app/assets/javascripts/app/controllers/report.coffee @@ -4717,11 +4610,11 @@ msgstr "Feedback Form" #: app/assets/javascripts/app/controllers/_settings/area_logo.coffee #: app/assets/javascripts/app/controllers/getting_started/base.coffee msgid "File too big, max. %s MB allowed." -msgstr "" +msgstr "File troppo grande, max. %s MB consentiti." #: db/seeds/settings.rb msgid "Filesystem" -msgstr "" +msgstr "File system" #: app/assets/javascripts/app/controllers/_channel/email.coffee #: app/assets/javascripts/app/controllers/_channel/google.coffee @@ -4732,14 +4625,12 @@ msgid "Filter" msgstr "Filtro" #: app/assets/javascripts/app/views/search/index.jst.eco -#, fuzzy -#| msgid "Find what you search. E. g. \"search phrase\"" msgid "Find what you're looking for, e.g. \"search phrase\"" msgstr "Trova ciò che cerchi. Es. \"cerca frase\"" #: app/assets/javascripts/app/views/integration/smime_list.jst.eco msgid "Fingerprint" -msgstr "" +msgstr "Impronta digitale" #: app/assets/javascripts/app/views/dashboard/first_steps_clues_content.jst.eco #: app/assets/javascripts/app/views/getting_started/email_pre_configured.jst.eco @@ -4748,19 +4639,19 @@ msgstr "Fine" #: lib/excel_sheet/ticket.rb msgid "First Response At" -msgstr "" +msgstr "Prima risposta alle" #: lib/excel_sheet/ticket.rb msgid "First Response Diff In Min" -msgstr "" +msgstr "Differenza in minuti prima Risposta" #: lib/excel_sheet/ticket.rb msgid "First Response Escalation At" -msgstr "" +msgstr "Escalation prima risposta a" #: lib/excel_sheet/ticket.rb msgid "First Response In Min" -msgstr "" +msgstr "Prima risposta in minuti" #: app/assets/javascripts/app/views/generic/sla_times.jst.eco #: app/assets/javascripts/app/views/popover/escalation.jst.eco @@ -4778,8 +4669,6 @@ msgstr "Primi Passi" #: app/assets/javascripts/app/models/user.coffee #: db/seeds/object_manager_attributes.rb -#, fuzzy -#| msgid "Firstname" msgid "First name" msgstr "Nome" @@ -4807,12 +4696,12 @@ msgstr "Cartella" #: app/assets/javascripts/app/views/integration/exchange.jst.eco #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco msgid "Folders" -msgstr "" +msgstr "Cartelle" #: app/assets/javascripts/app/models/group.coffee #: db/seeds/object_manager_attributes.rb msgid "Follow-up for closed ticket possible or not." -msgstr "" +msgstr "Follow-up per ticket chiuso possibile o meno." #: app/assets/javascripts/app/models/group.coffee #: db/seeds/object_manager_attributes.rb @@ -4821,38 +4710,30 @@ msgstr "Follow-up possibile" #: app/assets/javascripts/app/lib/app_post/iconset_picker.coffee msgid "Font Awesome" -msgstr "" +msgstr "Font Awesome" #: app/assets/javascripts/app/views/channel/chat.jst.eco msgid "Font size" msgstr "Dimensione del carattere" #: app/assets/javascripts/app/controllers/knowledge_base/public_menu_manager.coffee -#, fuzzy -#| msgid "Footer Note" msgid "Footer Menu" -msgstr "Nota a piede" +msgstr "Menu footer" #: app/assets/javascripts/app/models/knowledge_base.coffee msgid "Footer Note" msgstr "Nota a piede" #: app/assets/javascripts/app/views/dashboard.jst.eco -#, fuzzy -#| msgid "E. g. recent changed tickets, users or organizations." msgid "For example, recently changed tickets, users, or organizations." -msgstr "Per esempio. recenti biglietti modificati, utenti o organizzazioni." +msgstr "Per esempio, ticket modificati di recente, utenti o organizzazioni." #: app/assets/javascripts/app/views/profile/token_access_created.jst.eco -#, fuzzy -#| msgid "" -#| "For security reasons, the API token is shown only once. You'll need to " -#| "copy it somewhere safe before continuing." msgid "" "For security reasons, the API token is shown only once. You'll need to save " "it somewhere secure before continuing." msgstr "" -"Per motivi di sicurezza, il token API viene mostrato solo una volta. Copialo " +"Per motivi di sicurezza, il token API viene mostrato solo una volta. Salvalo " "da qualche parte al sicuro prima di continuare." #: app/assets/javascripts/app/views/login.jst.eco @@ -4870,7 +4751,7 @@ msgstr "Form" #: app/assets/javascripts/app/models/object_manager_attribute.coffee msgid "Format" -msgstr "" +msgstr "Formattazione" #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee msgid "Format as //strikethrough//" @@ -4914,7 +4795,7 @@ msgstr "Frequenza" #: app/assets/javascripts/app/controllers/import_freshdesk.coffee msgid "Freshdesk" -msgstr "" +msgstr "Freshdesk" #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee msgid "Fri" @@ -4940,10 +4821,8 @@ msgid "Frontend" msgstr "Frontend" #: app/assets/javascripts/app/models/group.coffee -#, fuzzy -#| msgid "Full Name" msgid "Full" -msgstr "Nome Completo" +msgstr "Completo" #: app/assets/javascripts/app/views/getting_started/email.jst.eco msgid "Full Name" @@ -4955,40 +4834,38 @@ msgstr "Fully Qualified Domain Name" #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee msgid "GET" -msgstr "" +msgstr "GET" #: app/assets/javascripts/app/views/integration/ldap.jst.eco msgid "GID" -msgstr "" +msgstr "GID" #: app/models/channel/driver/sms/massenversand.rb msgid "Gateway" -msgstr "" +msgstr "Gateway" #: app/assets/javascripts/app/controllers/ticket_zoom.coffee #: app/assets/javascripts/app/lib/app_post/ajax.coffee msgid "General communication error, maybe internet is not available!" -msgstr "" +msgstr "Errore di comunicazione generale, forse Internet non è disponibile!" #: db/seeds/schedulers.rb msgid "Generate 'Session' data." -msgstr "" +msgstr "Genera dati 'Session'." #: app/assets/javascripts/app/controllers/api.coffee msgid "Generate Access Token for |%s|" -msgstr "" +msgstr "Genera Access Token per |%s|" #: app/assets/javascripts/app/controllers/api.coffee msgid "Generate Token" -msgstr "" +msgstr "Genera token" #: db/seeds/schedulers.rb msgid "Generate user-based stats." -msgstr "" +msgstr "Genera statistiche basate sugli utenti." #: app/assets/javascripts/app/controllers/_integration/cti.coffee -#, fuzzy -#| msgid "Generic API to integrate VoIP service provider with realtime push." msgid "Generic API to integrate VoIP service provider with real-time push." msgstr "" "API generiche per integrare fornitori di servizi VoIP con push in tempo " @@ -5020,10 +4897,8 @@ msgid "GitHub" msgstr "" #: db/seeds/settings.rb -#, fuzzy -#| msgid "Twitter App Credentials" msgid "GitHub App Credentials" -msgstr "Credenziali App Twitter" +msgstr "Credenziali App GitHub" #: db/seeds/settings.rb msgid "GitHub config" @@ -5211,10 +5086,8 @@ msgid "Group selection for Ticket creation" msgstr "Selezione del gruppo per la creazione dei Tickets" #: db/seeds/settings.rb -#, fuzzy -#| msgid "Group selection for Ticket creation" msgid "Group selection for ticket creation" -msgstr "Selezione del gruppo per la creazione dei Tickets" +msgstr "Selezione del gruppo per la creazione del ticket" #: app/assets/javascripts/app/controllers/group.coffee #: app/assets/javascripts/app/models/macro.coffee @@ -5276,10 +5149,8 @@ msgid "Header Link Color" msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/public_menu_manager.coffee -#, fuzzy -#| msgid "Header Color" msgid "Header Menu" -msgstr "Colore intestazione" +msgstr "Menu Header" #: app/assets/javascripts/app/views/monitoring.jst.eco msgid "Health Check" @@ -5309,47 +5180,34 @@ msgid "" msgstr "" #: app/assets/javascripts/app/controllers/_dashboard/first_steps_clues.coffee -#, fuzzy -#| msgid "" -#| "Here you can create new tickets. Also if you have the permissions you can " -#| "create new customers and organizations." msgid "" "Here you can create new tickets. Also, if you have the permission, you can " "create new customers and organizations." msgstr "" -"Qui puoi creare nuovi ticket. Inoltre, se disponi delle autorizzazioni, puoi " -"creare nuovi utenti e organizzazioni." +"Qui puoi creare nuovi ticket. Inoltre, se disponi dei permessi, puoi creare " +"nuovi utenti e organizzazioni." #: app/assets/javascripts/app/controllers/customer_ticket_create.coffee msgid "Here you can create one." msgstr "Qui puoi crearne uno." #: app/assets/javascripts/app/controllers/_dashboard/first_steps_clues.coffee -#, fuzzy -#| msgid "" -#| "Here you can search for tickets, customers and organizations. Use the " -#| "wildcard §*§ to find everything. E. g. §smi*§ or §rosent*l§. You also can " -#| "use ||double quotes|| for searching phrases §\"some phrase\"§." msgid "" "Here you can search for tickets, customers, and organizations. Use the " "asterisk §*§ to find anything, e.g. §smi*§ or §rosent*l§. You also can use ||" "quotation marks|| for searching phrases: §\"some phrase\"§." msgstr "" "Qui puoi cercare i ticket, utenti e organizzazioni. Usa il carattere jolly " -"§*§ per trovare qualsiasi cosa. Per esempio. §smi*§ o §rosato*l§. Puoi anche " -"usare i ||doppi apici|| per cercare frasi intere, ad esempio: §\"qualsiasi " +"§*§ per trovare qualsiasi cosa. Per esempio. §smi*§ o §roseo*l§. Puoi anche " +"usare le ||virgolette|| per cercare frasi intere, ad esempio: §\"qualsiasi " "cosa\"§." #: app/assets/javascripts/app/controllers/_dashboard/first_steps_clues.coffee -#, fuzzy -#| msgid "" -#| "Here you can sign out, change the frontend language and see your last " -#| "viewed items." msgid "" "Here you can sign out, change the frontend language, and see your last " "viewed items." msgstr "" -"Qui puoi uscire, cambiare la lingua del frontend e vedere le tue ultime " +"Qui puoi scollegarti, cambiare la lingua del frontend e vedere le tue ultime " "visualizzazioni." #: app/assets/javascripts/app/views/object_manager/attribute.jst.eco @@ -5357,14 +5215,10 @@ msgid "Here you define which authorization has access to the attribute." msgstr "Qui definisci quale autorizzazione ha accesso all'attributo." #: app/assets/javascripts/app/controllers/_dashboard/first_steps_clues.coffee -#, fuzzy -#| msgid "" -#| "Here you find your ticket overviews for open, assigned and escalated " -#| "tickets." msgid "" "Here you find your ticket overviews for open, assigned, and escalated " "tickets." -msgstr "Qui trovi la panoramica dei ticket aperti, assegnati ed escalati." +msgstr "Qui trovi la panoramica dei ticket aperti, assegnati ed in escalation." #: app/assets/javascripts/app/controllers/_dashboard/first_steps_clues.coffee msgid "Here you see a quick overview of your and other agents' performance." @@ -5447,15 +5301,12 @@ msgid "How can we help you? Search for an answer or a topic…" msgstr "Come possiamo aiutarti? Cerca una risposta o un argomento…" #: app/assets/javascripts/app/controllers/_dashboard/stats/ticket_waiting_time.coffee -#, fuzzy -#| msgid "" -#| "How long has each customer had to wait, on average, to get a response " -#| "from you today?" msgid "" "How long did each customer have to wait, on average, to get a response from " "you today?" msgstr "" -"Quanto tempo, in media, un cliente deve attendere per ricevere una risposta?" +"Quanto tempo, in media, un cliente deve attendere per ricevere una risposta " +"da te oggi?" #: app/assets/javascripts/app/controllers/_dashboard/stats/ticket_escalation.coffee msgid "" @@ -5525,14 +5376,10 @@ msgid "Icon Set" msgstr "Set di icone" #: app/assets/javascripts/app/controllers/_integration/slack.coffee -#, fuzzy -#| msgid "Icon Url" msgid "Icon URL" -msgstr "Url icona" +msgstr "URL icona" #: app/assets/javascripts/app/controllers/_channel/chat.coffee -#, fuzzy -#| msgid "Identifier of the chat-topic." msgid "Identifier of the chat topic." msgstr "Identificatore dell'argomento chat." @@ -5554,10 +5401,6 @@ msgstr "" #: app/assets/javascripts/app/controllers/_integration/icinga.coffee #: app/assets/javascripts/app/controllers/_integration/monit.coffee #: app/assets/javascripts/app/controllers/_integration/nagios.coffee -#, fuzzy -#| msgid "" -#| "If the host and service is recovered again, the ticket will be closed " -#| "automatically." msgid "" "If the host and service have recovered, the ticket can be closed " "automatically." @@ -5566,10 +5409,6 @@ msgstr "" "chiuso automaticamente." #: db/seeds/settings.rb -#, fuzzy -#| msgid "" -#| "If the sender is an agent, set the first user in the recipient list as a " -#| "customer." msgid "" "If the sender is an agent, set the first user in the recipient list as the " "customer." @@ -5608,10 +5447,6 @@ msgstr "" "necessario eseguire il seguente comando da console." #: app/assets/javascripts/app/views/channel/chat.jst.eco -#, fuzzy -#| msgid "" -#| "If you want to open the chat by the press of a button set the option " -#| "§show§ to §false§ and add the class §open-zammad-chat§ to the button." msgid "" "If you want to open the chat by clicking a button, set the option §show§ to " "§false§ and add the class §open-zammad-chat§ to the button." @@ -5789,7 +5624,7 @@ msgstr "" #: app/assets/javascripts/app/views/generic/ticket_perform_action/notification.jst.eco msgid "Include attachments of the article?" -msgstr "" +msgstr "Includere allegati della nota?" #: app/assets/javascripts/app/views/integration/smime_list.jst.eco msgid "Including private key." @@ -5867,10 +5702,8 @@ msgid "Information" msgstr "" #: app/models/store.rb -#, fuzzy -#| msgid "%s object(s) are created." msgid "Inline content could not be generated." -msgstr "%s oggetto(i) creato(i)." +msgstr "Impossibile generare contenuto in linea." #: app/assets/javascripts/app/views/translation/index.jst.eco msgid "Inline translation" @@ -5895,16 +5728,12 @@ msgid "Inserts a mention for a user" msgstr "" #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee -#, fuzzy -#| msgid "Delete Knowledge Base" msgid "Inserts knowledge base answer" -msgstr "Elimina knowledge base" +msgstr "Inserisci risposta nella knowledge base" #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee -#, fuzzy -#| msgid "New text module" msgid "Inserts text module" -msgstr "Nuovo modulo di testo" +msgstr "Inserisci modulo di testo" #: app/assets/javascripts/app/views/package.jst.eco msgid "Install Package" @@ -6031,10 +5860,8 @@ msgid "Invalid password, it must be at least %s characters long!" msgstr "Password non valida, deve essere lunga almeno %s caratteri!" #: lib/password_policy/max_length.rb -#, fuzzy -#| msgid "Invalid password, it must be at least %s characters long!" msgid "Invalid password, it must be shorter than %s characters!" -msgstr "Password non valida, deve essere lunga almeno %s caratteri!" +msgstr "Password non valida, deve essere più corta di %s caratteri!" #: lib/password_policy/digit.rb msgid "Invalid password, it must contain at least 1 digit!" @@ -6162,9 +5989,6 @@ msgid "June" msgstr "Giugno" #: app/assets/javascripts/app/views/translation/index.jst.eco -#, fuzzy -#| msgid "" -#| "Just click into the marker and update the words just in place. Enjoy!" msgid "" "Just click into the highlighted area and update the words right there. Enjoy!" msgstr "" @@ -6223,16 +6047,12 @@ msgid "Knowledge Base Reader" msgstr "" #: db/seeds/settings.rb -#, fuzzy -#| msgid "Knowledge Base" msgid "Knowledge Base active" -msgstr "Knowledge Base" +msgstr "Knowledge Base attiva" #: db/seeds/settings.rb -#, fuzzy -#| msgid "Knowledge Base" msgid "Knowledge Base active publicly" -msgstr "Knowledge Base" +msgstr "Knowledge Base attiva pubblicamente" #: db/seeds/settings.rb msgid "Knowledge Base multilingual support" @@ -6311,8 +6131,6 @@ msgstr "Ultimo contatto (cliente)" #: app/assets/javascripts/app/models/user.coffee #: db/seeds/object_manager_attributes.rb -#, fuzzy -#| msgid "Lastname" msgid "Last name" msgstr "Cognome" @@ -6393,10 +6211,8 @@ msgid "Link Related Answer" msgstr "Collega risposta" #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee -#, fuzzy -#| msgid "Templates" msgid "Link Template" -msgstr "Modelli" +msgstr "Link Template" #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_git_issue.coffee msgid "Link issue" @@ -6419,7 +6235,7 @@ msgstr "Ticket associati" #: app/assets/javascripts/app/controllers/_profile/linked_accounts.coffee msgid "LinkedIn" -msgstr "" +msgstr "LinkedIn" #: db/seeds/settings.rb msgid "LinkedIn App Credentials" @@ -6516,7 +6332,9 @@ msgstr "Macro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Macro" @@ -6571,10 +6389,8 @@ msgstr "" "le applicazioni che hai autorizzato a utilizzare il tuo account." #: app/views/mailer/application.html.erb -#, fuzzy -#| msgid "Manage your notifications settings" msgid "Manage your notification settings" -msgstr "Gestisci le impostazioni delle notifiche" +msgstr "Gestisci le tue impostazioni delle notifiche" #: app/assets/javascripts/app/views/api.jst.eco #: app/assets/javascripts/app/views/calendar/index.jst.eco @@ -6630,8 +6446,6 @@ msgstr "" #: app/assets/javascripts/app/models/chat.coffee #: app/assets/javascripts/app/views/channel/topics.jst.eco -#, fuzzy -#| msgid "Max. clients in waitlist" msgid "Max. clients on waitlist" msgstr "Max. clienti in attesa" @@ -6718,10 +6532,8 @@ msgid "Method (AJAX endpoint)" msgstr "" #: app/assets/javascripts/app/controllers/_profile/linked_accounts.coffee -#, fuzzy -#| msgid "Macros" msgid "Microsoft" -msgstr "Macro" +msgstr "Microsoft" #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee #: app/assets/javascripts/app/views/microsoft365/index.jst.eco @@ -6908,8 +6720,6 @@ msgid "Multiselect" msgstr "auto selezione" #: db/seeds/overviews.rb -#, fuzzy -#| msgid "My assigned Tickets" msgid "My Assigned Tickets" msgstr "Ticket assegnati a me" @@ -6918,26 +6728,20 @@ msgid "My Organization Tickets" msgstr "Ticket della mia Società" #: db/seeds/overviews.rb -#, fuzzy -#| msgid "My pending reached Tickets" msgid "My Pending Reached Tickets" -msgstr "Miei ticket aggiunti in attesa" +msgstr "I Miei ticket in sospeso con promemoria raggiunto" #: db/seeds/overviews.rb -#, fuzzy -#| msgid "My replacement Tickets" msgid "My Replacement Tickets" -msgstr "I miei Tickets sostitutivi" +msgstr "I miei Tickets come supplente" #: app/assets/javascripts/app/views/dashboard.jst.eco msgid "My Stats" msgstr "Le mie statistiche" #: db/seeds/overviews.rb -#, fuzzy -#| msgid "My subscribed Tickets" msgid "My Subscribed Tickets" -msgstr "I miei Tickets sottoscritti" +msgstr "I miei ticket sottoscritti" #: app/assets/javascripts/app/views/profile/calendar_subscriptions.jst.eco #: app/assets/javascripts/app/views/profile/notification.jst.eco @@ -6950,10 +6754,8 @@ msgid "My handling time: %s minutes" msgstr "Tempo di gestione: %s minuti" #: app/assets/javascripts/app/views/dashboard/stats/ticket_in_process.jst.eco -#, fuzzy -#| msgid "Your tickets in process" msgid "My tickets in process" -msgstr "I tuoi ticket in lavorazione" +msgstr "I miei ticket in lavorazione" #: app/assets/javascripts/app/controllers/_integration/nagios.coffee msgid "Nagios" @@ -7021,7 +6823,7 @@ msgstr "Nome del pulsante di invio del form" #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee msgid "Navigate through article" -msgstr "Spostati attraverso l'articolo" +msgstr "Naviga attraverso l'articolo" #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee msgid "Navigation" @@ -7033,7 +6835,7 @@ msgstr "" #: app/controllers/concerns/creates_ticket_articles.rb msgid "Need at least an 'article body' field." -msgstr "" +msgstr "È necessario almeno un campo \"article body\"." #: app/controllers/application_controller/handles_devices.rb msgid "Need fingerprint param!" @@ -7233,10 +7035,8 @@ msgid "No Entries" msgstr "Nessuna Voce" #: lib/external_credential/facebook.rb -#, fuzzy -#| msgid "No %s configured." msgid "No Facebook app configured!" -msgstr "Nessun %s configurato." +msgstr "Nessuna app Facebook non configurata!" #: lib/external_credential/google.rb msgid "No Google app configured!" @@ -7264,10 +7064,8 @@ msgid "No Thanks!" msgstr "No grazie!" #: lib/external_credential/twitter.rb -#, fuzzy -#| msgid "Not configured" msgid "No Twitter app configured!" -msgstr "Non configurato" +msgstr "Nessuna app Twitter configurata!" #: app/assets/javascripts/app/controllers/knowledge_base/sidebar/answers.coffee msgid "No answers" @@ -7644,10 +7442,8 @@ msgstr "" "Disponibile solo per gli utenti che sono in sostituzione di altri utenti." #: app/assets/javascripts/app/models/overview.coffee -#, fuzzy -#| msgid "Only available for Users with shared Organization" msgid "Only available for Users with shared Organizations" -msgstr "Disponibile solo per gli utenti con aziende condivise" +msgstr "Disponibile solo per gli utenti con organizzazioni condivise" #: app/assets/javascripts/app/controllers/_integration/slack.coffee msgid "Only for these groups." @@ -7711,10 +7507,8 @@ msgid "Options" msgstr "Opzioni" #: app/assets/javascripts/app/views/getting_started/intro.jst.eco -#, fuzzy -#| msgid "migrate from another system" msgid "Or migrate from another system." -msgstr "migrazione da un altro sistema" +msgstr "O migra da un altro sistema." #: app/assets/javascripts/app/controllers/ticket_overview.coffee #: app/assets/javascripts/app/models/overview.coffee @@ -7791,10 +7585,8 @@ msgstr "Formattazione Originale" #: app/assets/javascripts/app/views/integration/cti.jst.eco #: app/assets/javascripts/app/views/integration/placetel.jst.eco #: app/assets/javascripts/app/views/integration/sipgate.jst.eco -#, fuzzy -#| msgid "Expert Settings" msgid "Other Settings" -msgstr "Impostazioni avanzate" +msgstr "Altre impostazioni" #: app/assets/javascripts/app/controllers/_profile/out_of_office.coffee #: app/assets/javascripts/app/views/profile/out_of_office.jst.eco @@ -7844,10 +7636,8 @@ msgid "Overviews" msgstr "Panoramiche" #: app/assets/javascripts/app/controllers/overview.coffee -#, fuzzy -#| msgid "Overview are …" msgid "Overviews are …" -msgstr "Le panoramiche sono…" +msgstr "Le panoramiche sono …" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee msgid "Overwrite Draft" @@ -7942,8 +7732,6 @@ msgid "Password for proxy connection." msgstr "Password per connessione proxy." #: db/seeds/settings.rb -#, fuzzy -#| msgid "Password needs to contain 2 lower and 2 upper characters." msgid "Password needs to contain 2 lower case and 2 upper case characters." msgstr "La password deve contenere 2 caratteri minuscoli e 2 maiuscoli." @@ -7985,11 +7773,11 @@ msgstr "Incolla qui dentro i dati CSV" #: db/seeds/overviews.rb msgid "Pending Reached Tickets" -msgstr "Ticket in sospeso con promemoria passato" +msgstr "Ticket in sospeso con promemoria raggiunto" #: app/assets/javascripts/app/models/ticket.coffee msgid "Pending reminder reached for ticket |%s|" -msgstr "Promemoria raggiunto per il ticket |%s|" +msgstr "Promemoria raggiunto per il ticket in sospeso |%s|" #: app/assets/javascripts/app/models/ticket.coffee #: db/seeds/object_manager_attributes.rb @@ -8058,10 +7846,8 @@ msgid "Placetel" msgstr "Placetel" #: db/seeds/settings.rb -#, fuzzy -#| msgid "Placetel" msgid "Placetel Token" -msgstr "Placetel" +msgstr "Token Placetel" #: db/seeds/settings.rb msgid "Placetel config" @@ -8080,16 +7866,12 @@ msgid "Please add categories and/or answers" msgstr "" #: app/assets/javascripts/app/views/customer_not_ticket_exists.jst.eco -#, fuzzy -#| msgid "Please click the button below to create your first one." msgid "Please click on the button below to create your first one." msgstr "Per creare il tuo primo ticket, fai clic sul pulsante qui sotto." #: app/assets/javascripts/app/views/signup/verify.jst.eco -#, fuzzy -#| msgid "Please click the link in the verification email." msgid "Please click on the link in the verification email." -msgstr "Per cortesia, fai click sul link nella mail di verifica." +msgstr "Per cortesia, clicca sul link nella mail di verifica." #: app/assets/javascripts/app/controllers/_profile/out_of_office.coffee msgid "Please contact your administrator." @@ -8106,10 +7888,8 @@ msgid "Please enter a text." msgstr "" #: app/assets/javascripts/app/views/ticket_zoom/time_accounting.jst.eco -#, fuzzy -#| msgid "Please enter your time which you want to account." msgid "Please enter the time you want to record." -msgstr "Si prega di inserire il tempo che si desidera contabilizzare." +msgstr "Inserisci il tempo che desideri contabilizzare." #: app/models/knowledge_base.rb msgid "Please enter valid path or domain" @@ -8233,20 +8013,16 @@ msgid "Proceed" msgstr "Processato" #: db/seeds/schedulers.rb -#, fuzzy -#| msgid "Enable ticket auto assignment." msgid "Process automatic ticket unassignments." -msgstr "Abilita l'assegnamento automatico dei ticket." +msgstr "Elabora disassegnazioni automatiche dei ticket." #: db/seeds/schedulers.rb msgid "Process pending tickets." -msgstr "Processa ticket in sospeso." +msgstr "Elabora ticket in sospeso." #: db/seeds/schedulers.rb -#, fuzzy -#| msgid "Ticket escalation" msgid "Process ticket escalations." -msgstr "Ticket escalation" +msgstr "Elabora le escalation dei ticket." #: db/seeds/settings.rb msgid "Product Name" @@ -8307,10 +8083,8 @@ msgid "Publish" msgstr "Pubblica" #: app/assets/javascripts/app/controllers/_application_controller/article_public_confirm.coffee -#, fuzzy -#| msgid "Article" msgid "Publish Article" -msgstr "Articolo" +msgstr "Pubblica articolo" #: app/assets/javascripts/app/views/popover/kb_generic.jst.eco msgid "Published at" @@ -8349,10 +8123,8 @@ msgid "Read" msgstr "" #: app/assets/javascripts/app/views/report/time_range_picker.jst.eco -#, fuzzy -#| msgid "Realtime" msgid "Real-time" -msgstr "Tempo Reale" +msgstr "Tempo reale" #: app/assets/javascripts/app/views/google/list.jst.eco #: app/assets/javascripts/app/views/microsoft365/list.jst.eco @@ -8369,17 +8141,13 @@ msgid "Recent Customer Tickets" msgstr "Tickets più recenti" #: app/assets/javascripts/app/views/widget/http_log.jst.eco -#, fuzzy -#| msgid "Recent logs" msgid "Recent Logs" -msgstr "Logs recenti" +msgstr "Log Recenti" #: app/assets/javascripts/app/views/agent_ticket_merge.jst.eco #: app/assets/javascripts/app/views/link/ticket/add.jst.eco -#, fuzzy -#| msgid "Recent viewed Tickets" msgid "Recently Viewed Tickets" -msgstr "Ultimi tickets visionati" +msgstr "Ticket visionati di recente" #: app/assets/javascripts/app/controllers/_plugin/navigation.coffee msgid "Recently viewed" @@ -8483,7 +8251,7 @@ msgstr "Sostituzione" #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee msgid "Reply to last article" -msgstr "Rispondi all'ultimo intervento" +msgstr "Rispondi all'ultima nota" #: app/assets/javascripts/app/views/ticket_zoom/article_view.jst.eco msgid "Reply-To" @@ -8561,8 +8329,6 @@ msgid "Reset changes" msgstr "Ripristina le modifiche" #: app/assets/javascripts/app/controllers/translation.coffee -#, fuzzy -#| msgid "Reseting changes…" msgid "Resetting changes…" msgstr "Ripristino modifiche…" @@ -8596,10 +8362,8 @@ msgid "Retweets" msgstr "" #: app/assets/javascripts/app/views/twitter/list.jst.eco -#, fuzzy -#| msgid "Retweets are converted to Tickets" msgid "Retweets are converted into tickets." -msgstr "Retweets sono convertiti in Tickets" +msgstr "I retweet sono convertiti in ticket." #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee #: app/assets/javascripts/app/controllers/role.coffee @@ -8725,10 +8489,8 @@ msgstr "" #: app/assets/javascripts/app/controllers/_channel/email.coffee #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee -#, fuzzy -#| msgid "SLA" msgid "SSL" -msgstr "SLA" +msgstr "SSL" #: app/assets/javascripts/app/models/webhook.coffee msgid "SSL Verify" @@ -8779,6 +8541,7 @@ msgid "Save" msgstr "Salva" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "Salva bozza" @@ -8807,10 +8570,8 @@ msgstr "Salva condizioni" #: app/assets/javascripts/app/controllers/_integration/gitlab.coffee #: app/assets/javascripts/app/controllers/_integration/idoit.coffee #: app/assets/javascripts/app/controllers/ticket_zoom.coffee -#, fuzzy -#| msgid "Confirmation failed." msgid "Saving failed." -msgstr "Conferma fallita." +msgstr "Salvataggio fallito." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee msgid "Schedule for" @@ -8830,10 +8591,8 @@ msgid "Schedulers" msgstr "Pianificazioni" #: app/assets/javascripts/app/controllers/job.coffee -#, fuzzy -#| msgid "Scheduler are …" msgid "Schedulers are …" -msgstr "Pianificazione è…" +msgstr "Le pianificazioni sono…" #: app/assets/javascripts/app/views/object_manager/screens.jst.eco msgid "Screen" @@ -9022,10 +8781,8 @@ msgid "Sender based on Reply-To header" msgstr "Mittente basato sull'header Reply-To" #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee -#, fuzzy -#| msgid "Reply to last article" msgid "Sender of last article" -msgstr "Rispondi all'ultimo intervento" +msgstr "Mittente dell'ultima nota" #: app/assets/javascripts/app/views/widget/invite_user.jst.eco msgid "Sending…" @@ -9056,10 +8813,8 @@ msgstr "" #: app/assets/javascripts/app/controllers/_integration/exchange.coffee #: app/assets/javascripts/app/controllers/_integration/ldap.coffee #: app/assets/javascripts/app/controllers/_integration/smime.coffee -#, fuzzy -#| msgid "Confirmation failed." msgid "Server operation failed." -msgstr "Conferma fallita." +msgstr "Operazione server non riuscita." #: app/assets/javascripts/app/views/integration/index.jst.eco msgid "Service" @@ -9098,7 +8853,7 @@ msgstr "" #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee msgid "Set article to internal/public" -msgstr "Impostare l'articolo su interno/pubblico" +msgstr "Impostare la nota come interna/pubblica" #: app/assets/javascripts/app/views/calendar/index.jst.eco msgid "Set as Default" @@ -9115,11 +8870,9 @@ msgstr "" #: app/assets/javascripts/app/views/integration/cti.jst.eco #: app/assets/javascripts/app/views/integration/placetel.jst.eco #: app/assets/javascripts/app/views/integration/sipgate.jst.eco -#, fuzzy -#| msgid "Set caller id of outbound calls based on destination caller id." msgid "Set caller ID of outbound calls based on destination caller ID." msgstr "" -"Imposta l'ID del chiamante delle chiamate in uscita in base all'id del " +"Imposta l'ID del chiamante delle chiamate in uscita in base all'ID del " "chiamante di destinazione." #: db/seeds/settings.rb @@ -9133,8 +8886,6 @@ msgstr "" #: app/assets/javascripts/app/views/integration/cti.jst.eco #: app/assets/javascripts/app/views/integration/placetel.jst.eco #: app/assets/javascripts/app/views/integration/sipgate.jst.eco -#, fuzzy -#| msgid "Set outbound caller id" msgid "Set outbound caller ID" msgstr "Imposta l'ID del chiamante in uscita" @@ -9145,29 +8896,22 @@ msgid "" msgstr "" #: app/assets/javascripts/app/views/getting_started/intro.jst.eco -#, fuzzy -#| msgid "Setup new System" msgid "Set up a new system" -msgstr "Imposta un nuovo Sistema" +msgstr "Imposta un nuovo sistema" #: app/assets/javascripts/app/views/getting_started/channel.jst.eco msgid "Set up the communication channels you want to use with your Zammad." msgstr "Imposta i canali di comunicazione che desideri utilizzare con Zammad." #: db/seeds/settings.rb -#, fuzzy -#| msgid "" -#| "Set/overwrite sender/from of email based on reply-to header. Useful to " -#| "set correct customer if email is received from a third party system on " -#| "behalf of a customer." msgid "" "Set/overwrite sender/from of email based on \"Reply-To\" header. Useful to " "set correct customer if email is received from a third-party system on " "behalf of a customer." msgstr "" -"Imposta / sovrascrivi il mittente / di e-mail in base all'intestazione di " -"risposta. Utile per impostare il cliente corretto se l'e-mail viene ricevuta " -"da un sistema di terze parti per conto di un cliente." +"Imposta / sovrascrivi il mittente / campo da delle email in base " +"all'intestazione \"Reply-To\". Utile per impostare il cliente corretto se " +"l'e-mail viene ricevuta da un sistema di terze parti per conto di un cliente." #: app/assets/javascripts/app/controllers/_channel/email.coffee #: app/assets/javascripts/app/controllers/_channel/google.coffee @@ -9312,10 +9056,8 @@ msgid "Signature" msgstr "Firma" #: app/assets/javascripts/app/controllers/ticket_zoom/article_view.coffee -#, fuzzy -#| msgid "Resend verification email" msgid "Signature verification failed!" -msgstr "Invia nuovamente email di verifica" +msgstr "Verifica della firma fallita!" #: app/assets/javascripts/app/controllers/_channel/email.coffee #: app/assets/javascripts/app/controllers/_channel/google.coffee @@ -9335,12 +9077,16 @@ msgstr "" msgid "" "Since you didn't respond in the last %s minutes your conversation got closed." msgstr "" +"Dato che non hai risposto negli ultimi %s minuti, la tua conversazione è " +"stata chiusa." #: public/assets/chat/views/customer_timeout.eco msgid "" "Since you didn't respond in the last %s minutes your conversation with " "%s got closed." msgstr "" +"Dato che non hai risposto negli ultimi %s minuti, la tua conversazione con " +"%s è stata chiusa." #: app/assets/javascripts/app/views/integration/sipgate.jst.eco msgid "Sipgate" @@ -9749,10 +9495,8 @@ msgid "Text missing" msgstr "Testo mancante" #: app/assets/javascripts/app/controllers/text_module.coffee -#, fuzzy -#| msgid "Text modules" msgid "Text module" -msgstr "Modelli di testo" +msgstr "Modello di testo" #: app/assets/javascripts/app/controllers/text_module.coffee msgid "Text modules" @@ -9803,10 +9547,8 @@ msgid "The MIME type of the resized image is invalid." msgstr "" #: app/assets/javascripts/app/controllers/_channel/telegram.coffee -#, fuzzy -#| msgid "%s object(s) are created." msgid "The Telegram bot could not be saved." -msgstr "%s oggetto(i) creato(i)." +msgstr "Impossibile salvare il bot di Telegram." #: lib/telegram.rb msgid "The Telegram file is larger than the allowed 20 MB." @@ -9818,7 +9560,7 @@ msgstr "L'URL di questa installazione di Zammad." #: app/controllers/ticket_articles_controller.rb msgid "The article does not belong to the specified ticket." -msgstr "" +msgstr "La nota non appartiene al ticket specificato." #: app/assets/javascripts/app/views/getting_started/auto_wizard_enabled.jst.eco msgid "The auto wizard is enabled. Please use the provided auto wizard url." @@ -9864,16 +9606,12 @@ msgid "The chat is turned off." msgstr "La chat è disattivata." #: app/assets/javascripts/app/views/channel/chat.jst.eco -#, fuzzy -#| msgid "" -#| "The chat will show up once the connection to the server got established " -#| "and if there is someone online to chat with." msgid "" "The chat will show up once the connection to the server got established and " "if there is an operator online to chat with." msgstr "" "La chat verrà visualizzata una volta stabilita la connessione al server e se " -"c'è qualcuno online con cui chattare." +"c'è un operatore online con cui chattare." #: app/assets/javascripts/app/controllers/_plugin/maintenance.coffee msgid "The configuration of Zammad has changed, please reload your browser." @@ -9923,17 +9661,15 @@ msgstr "" #: app/controllers/ticket_articles_controller.rb msgid "The file does not belong to the specified article." -msgstr "" +msgstr "Il file non appartiene alla nota specificata." #: app/assets/javascripts/app/views/generic/object_import/imported.jst.eco msgid "The following changes have been made:" msgstr "Sono state apportate le seguenti modifiche:" #: app/assets/javascripts/app/views/generic/object_import/import_try.jst.eco -#, fuzzy -#| msgid "The following changes are made:" msgid "The following changes will be made:" -msgstr "Vengono apportate le seguenti modifiche:" +msgstr "Verranno apportate le seguenti modifiche:" #: app/assets/javascripts/app/controllers/_application_controller/_modal.coffee msgid "" @@ -9962,10 +9698,8 @@ msgstr "" #: app/assets/javascripts/app/controllers/_integration/smime.coffee #: app/assets/javascripts/app/controllers/widget/import.coffee #: app/assets/javascripts/app/controllers/widget/import_try_result.coffee -#, fuzzy -#| msgid "The import was successful." msgid "The import failed." -msgstr "L'importazione ha avuto successo." +msgstr "L'importazione è fallita." #: app/assets/javascripts/app/views/generic/object_import/imported.jst.eco msgid "The import was successful." @@ -9984,10 +9718,8 @@ msgid "" msgstr "" #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_git_issue.coffee -#, fuzzy -#| msgid "%s object(s) are created." msgid "The issue could not be saved." -msgstr "%s oggetto(i) creato(i)." +msgstr "Impossibile salvare la richiesta." #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_new.coffee #: app/assets/javascripts/app/controllers/_channel/_email_signature.coffee @@ -9996,10 +9728,8 @@ msgstr "%s oggetto(i) creato(i)." #: app/assets/javascripts/app/controllers/data_privacy.coffee #: app/assets/javascripts/app/controllers/object_manager.coffee #: app/assets/javascripts/app/lib/app_post/user_organization_autocompletion.coffee -#, fuzzy -#| msgid "%s object(s) are created." msgid "The object could not be created." -msgstr "%s oggetto(i) creato(i)." +msgstr "Impossibile creare l'oggetto." #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_edit.coffee #: app/assets/javascripts/app/controllers/_channel/sms.coffee @@ -10009,10 +9739,8 @@ msgstr "%s oggetto(i) creato(i)." #: app/assets/javascripts/app/controllers/object_manager.coffee #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_idoit.coffee #: app/assets/javascripts/app/models/setting.coffee -#, fuzzy -#| msgid "%s object(s) are updated." msgid "The object could not be updated." -msgstr "%s oggetto(i) aggiornato(i)." +msgstr "Impossibile aggiornare l'oggetto." #: app/assets/javascripts/app/controllers/knowledge_base/agent_controller.coffee msgid "The page is not available anymore" @@ -10028,11 +9756,10 @@ msgstr "" #: app/assets/javascripts/app/controllers/_profile/password.coffee #: app/assets/javascripts/app/controllers/password_reset_verify.coffee -#, fuzzy -#| msgid "Unable to verify email. Please contact your administrator." msgid "The password could not be set. Please contact your administrator." msgstr "" -"Impossibile verificare l'email. Per favore, contatta il tuo amministratore." +"Impossibile impostare la password. Per favore, contatta il tuo " +"amministratore." #: app/assets/javascripts/app/views/knowledge_base/delete.coffee msgid "The request could not be processed." @@ -10092,10 +9819,8 @@ msgid "The sign-in failed. Please contact the Support team." msgstr "" #: app/assets/javascripts/app/controllers/ticket_zoom/article_view.coffee -#, fuzzy -#| msgid "The test run was successful." msgid "The signature was successfully verified." -msgstr "L'esecuzione dei test ha avuto esito positivo." +msgstr "La firma è stata verificata con successo." #: app/assets/javascripts/app/views/generic/object_import/import_try.jst.eco msgid "The test run was successful." @@ -10117,17 +9842,13 @@ msgstr "" "AS." #: app/assets/javascripts/app/controllers/agent_ticket_merge.coffee -#, fuzzy -#| msgid "%s object(s) are created." msgid "The tickets could not be merged." -msgstr "%s oggetto(i) creato(i)." +msgstr "Impossibile unire i ticket." #: app/controllers/getting_started_controller.rb #: app/controllers/settings_controller.rb -#, fuzzy -#| msgid "%s object(s) are created." msgid "The uploaded image could not be processed." -msgstr "%s oggetto(i) creato(i)." +msgstr "Impossibile elaborare l'immagine caricata." #: lib/external_credential/microsoft365.rb msgid "The user's 'preferred_username' could not be extracted from 'id_token'." @@ -10161,14 +9882,10 @@ msgstr "" "viene aggiornato non appena il numero attualmente noto è superato." #: app/assets/javascripts/app/views/channel/chat.jst.eco -#, fuzzy -#| msgid "There can be several reasons for the chat to not show up:" msgid "There are several possible reasons why the chat won't show up:" msgstr "Possono esserci diverse ragioni per cui la chat non compaia:" #: app/assets/javascripts/app/views/channel/chat.jst.eco -#, fuzzy -#| msgid "There are too many people in queue for the chat." msgid "There are too many people in the chat queue." msgstr "Ci sono troppe persone in coda per la chat." @@ -10189,16 +9906,12 @@ msgid "There is no match for your search." msgstr "" #: app/assets/javascripts/app/views/data_privacy/preview.jst.eco -#, fuzzy -#| msgid "" -#| "There is no rollback of this deletion possible. If you are absolutely " -#| "sure to do this, then type in \"%s\" into the input." msgid "" "There is no rollback of this deletion possible. If you are sure that you " "wish to proceed, please type \"%s\" into the input." msgstr "" "Non è possibile annullare questa cancellazione. Se sei assolutamente certo " -"di volerla fare allora scrivi \"%s\" qui sotto." +"di voler procedere allora scrivi \"%s\" qui sotto." #: app/assets/javascripts/app/controllers/_manage/security.coffee msgid "Third-party Applications" @@ -10209,15 +9922,11 @@ msgid "This category is empty" msgstr "" #: app/assets/javascripts/app/controllers/_channel/chat.coffee -#, fuzzy -#| msgid "" -#| "This class gets added to the button on initialization and gets removed " -#| "once the chat connection got established." msgid "" "This class gets added to the button on initialization and will be removed " "once the chat connection is established." msgstr "" -"Questa classe viene aggiunta al pulsante in inizializzazione e viene rimossa " +"Questa classe viene aggiunta al pulsante in inizializzazione e verrà rimossa " "una volta stabilita la connessione alla chat." #: app/assets/javascripts/app/controllers/_ui_element/holiday_selector.coffee @@ -10253,12 +9962,10 @@ msgstr "" "sotto e aprilo tramite un programma di posta, se desideri vederlo." #: app/assets/javascripts/app/views/object_manager/index.jst.eco -#, fuzzy -#| msgid "This might take some time where the system can't be used." msgid "This might take some time during which the system can't be used." msgstr "" -"Questo potrebbe richiedere diverso tempo in cui il sistema non può essere " -"utilizzato." +"Questo potrebbe richiedere del tempo durante il quale il sistema non può " +"essere utilizzato." #: app/views/knowledge_base/public/_top_banner.html.erb msgid "This page is invisible to the public." @@ -10287,10 +9994,6 @@ msgstr "" "Questo servizio permette a Zammad di comunicare con il tuo server LDAP." #: app/assets/javascripts/app/controllers/_integration/check_mk.coffee -#, fuzzy -#| msgid "" -#| "This service receives http requests or emails from %s and creates tickets " -#| "with host and service." msgid "" "This service receives HTTP requests or emails from %s and creates tickets " "with host and service." @@ -10436,10 +10139,8 @@ msgid "Ticket escalation" msgstr "Ticket escalation" #: app/assets/javascripts/app/lib/mixins/ticket_mass_updatable.coffee -#, fuzzy -#| msgid "Tickets assigned to me: %s of %s" msgid "Ticket failed to save: %s" -msgstr "Ticket assegnati a me: %s su %s" +msgstr "Impossibile salvare il ticket: %s su %s" #: app/assets/javascripts/app/controllers/_profile/notification.coffee msgid "Ticket reminder reached" @@ -10450,10 +10151,8 @@ msgid "Ticket update" msgstr "Ticket aggiornato" #: app/assets/javascripts/app/models/ticket.coffee -#, fuzzy -#| msgid "Ticket |%s| is escalated!" msgid "Ticket |%s| has escalated!" -msgstr "Ticket |%s| è stato aggravato!" +msgstr "Il ticket |%s| è in escalation!" #: app/assets/javascripts/app/models/ticket.coffee msgid "Ticket |%s| was merged into another ticket" @@ -10825,10 +10524,8 @@ msgid "URL (AJAX endpoint)" msgstr "" #: app/controllers/first_steps_controller.rb db/seeds/overviews.rb -#, fuzzy -#| msgid "Unassigned & Open" msgid "Unassigned & Open Tickets" -msgstr "Non Assegnati e Aperti" +msgstr "Ticket non assegnati e aperti" #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco #: app/assets/javascripts/app/views/google/list.jst.eco @@ -11035,10 +10732,12 @@ msgid "" "Use the start time of the last customer thread (which may consist of " "multiple articles)." msgstr "" +"Utilizza l'ora di inizio dell'ultimo thread del cliente (che può essere " +"costituito da più note)." #: db/seeds/settings.rb msgid "Use the time of the very last customer article." -msgstr "" +msgstr "Usa il tempo dell'ultima nota del cliente." #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee msgid "Used anywhere" @@ -11058,7 +10757,7 @@ msgstr "Utilizzato nelle viste oggetto" #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee msgid "Used when composing a Ticket article" -msgstr "" +msgstr "Utilizzato durante la composizione di un nota del ticket" #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee msgid "Used when composing a text" @@ -11110,20 +10809,16 @@ msgstr "Preferenze Utente" #: app/assets/javascripts/app/controllers/getting_started/admin.coffee #: app/assets/javascripts/app/controllers/signup.coffee -#, fuzzy -#| msgid "%s object(s) are created." msgid "User could not be created." -msgstr "%s oggetto(i) creato(i)." +msgstr "Impossibile creare l'utente." #: lib/external_credential/google.rb msgid "User email could not be extracted from 'id_token'." msgstr "" #: db/seeds/settings.rb -#, fuzzy -#| msgid "Allow to use email address for muliple users." msgid "User email for multiple users" -msgstr "Consenti di usare un indirizzo email per più utenti." +msgstr "Email utente per più utenti" #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco msgid "User filter" @@ -11317,10 +11012,8 @@ msgid "Visible to everyone" msgstr "Visibile a tutti" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee -#, fuzzy -#| msgid "Visible to agents & editors" msgid "Visible to readers & editors" -msgstr "Visibile a operatori ed editor" +msgstr "Visibile a lettori ed editor" #: app/assets/javascripts/app/controllers/_integration/placetel.coffee #: app/assets/javascripts/app/controllers/_integration/sipgate_io.coffee @@ -11349,6 +11042,8 @@ msgid "" "We are sorry, it takes longer as expected to get an empty slot. Please try " "again later or send us an email. Thank you!" msgstr "" +"Siamo spiacenti, ci vuole più tempo del previsto per ottenere uno spazio " +"libero. Riprova più tardi o inviaci un'e-mail. Grazie!" #: app/assets/javascripts/app/views/import/otrs.jst.eco msgid "" @@ -11369,16 +11064,12 @@ msgstr "" #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco #: app/assets/javascripts/app/views/getting_started/email.jst.eco -#, fuzzy -#| msgid "" -#| "We have already found %s email(s) in your mailbox. Zammad will move it " -#| "all from your mailbox into Zammad." msgid "" "We have already found %s email(s) in your mailbox. We will move them all " "from your mailbox into Zammad." msgstr "" -"Abbiamo già trovato %s email nella tua cassetta. Zammad le sposterà tutte in " -"Zammad." +"Abbiamo già trovato %s email nella tuo account di posta. Zammad le sposterà " +"tutte in Zammad." #: app/assets/javascripts/app/views/cti/not_configured.jst.eco msgid "We support" @@ -11445,6 +11136,13 @@ msgid "" "an HTTP(S) endpoint and relevant security settings, then configure a trigger " "to perform it." msgstr "" +"I webhook semplificano l'invio di informazioni sugli eventi all'interno di " +"Zammad a sistemi di terze parti tramite HTTP(S).\n" +"\n" +"Puoi utilizzare i webhook in Zammad per inviare dati di ticket, articoli e " +"allegati ogni volta che viene eseguito un trigger. Crea e configura il tuo " +"webhook con un endpoint HTTP(S) e le relative impostazioni di sicurezza, " +"quindi configura un trigger per eseguirlo." #: app/assets/javascripts/app/controllers/_ui_element/richtext_additions/link_button.coffee msgid "Weblink" @@ -11478,10 +11176,8 @@ msgid "Week" msgstr "Settimana" #: app/assets/javascripts/app/controllers/_ui_element/time_range.coffee -#, fuzzy -#| msgid "Week" msgid "Week(s)" -msgstr "Settimana" +msgstr "Settimana/e" #: app/assets/javascripts/app/controllers/_profile/linked_accounts.coffee msgid "Weibo" @@ -11582,10 +11278,8 @@ msgid "Will be published" msgstr "Sarà pubblicato" #: app/views/knowledge_base/public/_top_banner.html.erb -#, fuzzy -#| msgid "Will be published" msgid "Will be published on" -msgstr "Sarà pubblicato" +msgstr "Sarà pubblicato il" #: db/seeds/settings.rb msgid "Will be shown in the app and is included in email footers." @@ -11630,18 +11324,14 @@ msgid "With your current configuration the following will happen" msgstr "" #: app/assets/javascripts/app/views/settings/ticket_number.jst.eco -#, fuzzy -#| msgid "" -#| "|Increment| increments the ticket number, the SystemID and the counter " -#| "are used with \"SystemID.Counter\" format (e.g. 1010138, 1010139)." msgid "" "With |Date| the ticket numbers will be generated by the current date, the " "SystemID, and the counter. The format will be \"Year.Month.Day.SystemID." "Counter\" (e.g. 201206231010138, 201206231010139)." msgstr "" -"|Increment| incrementa il numero del ticket, il SystemID e il contatore " -"vengono utilizzati con il formato \"SystemID.Counter\" (ad esempio 1010138, " -"1010139)." +"Con |Data| il numero del ticket sarà generato dalla data corrente, dal " +"SystemID e dal contatore. Il formato sarà \"Year.Month.Day.SystemID.Counter\"" +" (per esempio 201206231010138, 201206231010139)." #: app/assets/javascripts/app/controllers/email_verify.coffee msgid "Woo hoo! Your email address has been verified!" @@ -11703,14 +11393,12 @@ msgstr "" #: app/assets/javascripts/app/views/google/index.jst.eco #: app/assets/javascripts/app/views/microsoft365/index.jst.eco #: app/assets/javascripts/app/views/twitter/index.jst.eco -#, fuzzy -#| msgid "" -#| "You can connect %s with Zammad. You need to connect your Zammad with %s " -#| "first." msgid "" "You can connect %s with Zammad. But first, you will have to connect your " "Zammad with %s." -msgstr "Puoi connettere con %s. Prima però devi collegarmi con %s." +msgstr "" +"Puoi connettere %s con Zammad. Prima però devi collegare il tuo Zammad con " +"%s." #: app/assets/javascripts/app/models/overview.coffee msgid "" @@ -11747,14 +11435,11 @@ msgstr "" #: app/assets/javascripts/app/views/microsoft365/app_config.jst.eco #: app/assets/javascripts/app/views/telegram/bot_add.jst.eco #: app/assets/javascripts/app/views/twitter/app_config.jst.eco -#, fuzzy -#| msgid "" -#| "The tutorial on how to manage a %s is hosted on our online documentation " -#| "%l." msgid "" "You can find a tutorial on how to manage a %s in our online documentation %l." msgstr "" -"Il tutorial su come gestire un %s è ospitato sulla nostra documentazione %l." +"Puoi trovare un tutorial su come gestire un %s nella nostra documentazione " +"online %l." #: app/assets/javascripts/app/views/profile/token_access.jst.eco msgid "" @@ -11880,24 +11565,14 @@ msgstr "" #: app/assets/javascripts/app/controllers/agent_ticket_create.coffee #: app/assets/javascripts/app/controllers/ticket_zoom/article_new.coffee -#, fuzzy -#| msgid "" -#| "You use %s in text but no attachment is attached. Do you want to continue?" msgid "" "You used %s in the text but no attachment could be found. Do you want to " "continue?" msgstr "" -"Rilevata la parola allegato nel testo, ma nessun file è stato allegato. Vuoi " +"Hai usato %s nel testo ma non è stato trovato nessun allegato. Vuoi " "continuare?" #: app/assets/javascripts/app/views/karma/index.jst.eco -#, fuzzy -#| msgid "" -#| "You |accumulate positive Karma| when you regularly answer and close " -#| "tickets on time and when you use advanced features such as text modules, " -#| "ticket reminders or tagging tickets. Zammad |Karma will decrease| when " -#| "you have re-opend tickets, escalated tickets or tickets that are two or " -#| "more days overdue." msgid "" "You |accumulate positive Karma| when you regularly answer and close tickets " "on time and when you use advanced features such as text modules, ticket " @@ -11907,20 +11582,15 @@ msgid "" msgstr "" "Tu |accumuli Karma positivo| quando rispondi e chiudi regolarmente i ticket " "in tempo e quando utilizzi funzionalità avanzate come moduli di testo, " -"promemoria dei ticket o tag dei ticket. Il Karma di Zammad |diminuirà| in " -"caso di riapertura dei ticket, ticket in escalation o ticket scaduti da due " -"o più giorni." +"promemoria o tag. Il Karma di Zammad |diminuirà| in caso di ticket riaperti, " +"in escalation o scaduti da due o più giorni." #: app/assets/javascripts/app/views/login.jst.eco -#, fuzzy -#| msgid "" -#| "You're already registered with your email address if you've been in touch " -#| "with our support team." msgid "" "You're already registered with your email address if you've been in touch " "with our Support team." msgstr "" -"Sei già registrato con il tuo indirizzo di email se hai già interagito col " +"Sei già registrato con il tuo indirizzo email se hai già interagito col " "nostro team di supporto." #: app/assets/javascripts/app/controllers/_ui_element/richtext_additions/embed_video_button.coffee @@ -11928,10 +11598,8 @@ msgid "YouTube or Vimeo address" msgstr "" #: app/assets/javascripts/app/controllers/_integration/clearbit.coffee -#, fuzzy -#| msgid "API Key" msgid "Your API key." -msgstr "Chiave API" +msgstr "La tua chiave API." #: app/controllers/first_steps_controller.rb msgid "Your Email Configuration" @@ -11965,16 +11633,12 @@ msgid "Your Zammad has the following email address:" msgstr "" #: app/assets/javascripts/app/controllers/_plugin/user_signup_check.coffee -#, fuzzy -#| msgid "" -#| "Your account has not been verified. Please click the link in the " -#| "verification email." msgid "" "Your account has not been verified. Please click on the link in the " "verification email." msgstr "" -"Il tuo account non è stato verificato. Fai clic sul link contenuto " -"nell'email di verifica." +"Il tuo account non è stato verificato. Fai clic sul link presente nell'email " +"di verifica." #: app/assets/javascripts/app/views/facebook/app_config.jst.eco #: app/assets/javascripts/app/views/google/app_config.jst.eco @@ -12002,16 +11666,12 @@ msgid "Your karma is |%s|." msgstr "Il tuo karma è |%s|." #: app/assets/javascripts/app/controllers/customer_ticket_create.coffee -#, fuzzy -#| msgid "" -#| "Currently no overview is assigned to your roles. Please contact your " -#| "administrator." msgid "" "Your user role is not allowed to create new tickets. Please contact your " "administrator." msgstr "" -"Attualmente non c'è nessuna panoramica assegnata ai tuoi ruoli. Per favore " -"contatta l'amministratore." +"Il tuo ruolo utente non è autorizzato a creare nuovi ticket. Contatta il tuo " +"amministratore." #: app/assets/javascripts/app/views/integration/clearbit.jst.eco #: app/assets/javascripts/app/views/integration/exchange.jst.eco @@ -12022,27 +11682,19 @@ msgid "Zammad" msgstr "" #: app/assets/javascripts/app/views/channel/chat.jst.eco -#, fuzzy -#| msgid "" -#| "Zammad Chat requires jQuery. If you don't already use it on your website " -#| "include it like this:" msgid "" "Zammad Chat requires jQuery. If you don't already use it on your website, " "you can add it like this:" msgstr "" "La chat di Zammad ha come requisito jQuery. Se già non lo utilizzi nel tuo " -"sito devi includerlo in questo modo:" +"sito, devi includerlo in questo modo:" #: app/assets/javascripts/app/views/channel/form.jst.eco -#, fuzzy -#| msgid "" -#| "Zammad Chat requires jQuery. If you don't already use it on your website " -#| "include it like this:" msgid "" "Zammad Forms requires jQuery. If you don't already use it on your website, " "you can add it like this:" msgstr "" -"La chat di Zammad ha come requisito jQuery. Se già non lo utilizzi nel tuo " +"I form di Zammad hanno come requisito jQuery. Se già non lo utilizzi nel tuo " "sito devi includerlo in questo modo:" #: db/seeds/community_user_resources.rb @@ -12082,16 +11734,12 @@ msgstr "" #: app/assets/javascripts/app/views/generic/login_preview.jst.eco #: app/assets/javascripts/app/views/login.jst.eco -#, fuzzy -#| msgid "" -#| "Zammad is currently in maintenance mode. Only administrators can login. " -#| "Please wait until the maintenance window is over." msgid "" "Zammad is currently in maintenance mode. Only administrators can log in. " "Please wait until the maintenance window is over." msgstr "" "Zammad è attualmente in modalità di manutenzione. Solo gli amministratori " -"possono accedere. Attendere che la sessionedi manutenzione sia terminata." +"possono accedere. Attendi che la manutenzione sia terminata." #: app/assets/javascripts/app/controllers/_plugin/maintenance.coffee msgid "Zammad is restarting…" @@ -12195,9 +11843,8 @@ msgstr "prima (relativo)" #: app/assets/javascripts/app/views/generic/sla_times.jst.eco #: app/assets/javascripts/app/views/sla/index.jst.eco -#, fuzzy msgid "between agent updates" -msgstr "Ultimo aggiornamento" +msgstr "tra aggiornamenti degli agenti" #: app/assets/javascripts/app/controllers/cti.coffee msgid "busy" @@ -12208,9 +11855,8 @@ msgid "by" msgstr "da" #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee -#, fuzzy msgid "changed to" -msgstr "Modificato" +msgstr "modificato in" #: db/seeds/ticket_article_types.rb msgid "chat" @@ -12371,9 +12017,8 @@ msgid "example macro" msgstr "" #: db/seeds/ticket_article_types.rb -#, fuzzy msgid "facebook direct-message" -msgstr "messaggi diretti twitter" +msgstr "messaggio diretto di facebook" #: db/seeds/ticket_article_types.rb msgid "facebook feed comment" @@ -12637,10 +12282,8 @@ msgid "note" msgstr "note" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee -#, fuzzy -#| msgid "no" msgid "now" -msgstr "no" +msgstr "adesso" #: db/seeds/ticket_state_types.rb db/seeds/ticket_states.rb msgid "open" @@ -12665,7 +12308,7 @@ msgstr "in sospeso" #: db/seeds/ticket_state_types.rb msgid "pending action" -msgstr "" +msgstr "azione pendente" #: db/seeds/ticket_states.rb msgid "pending close" @@ -12673,7 +12316,7 @@ msgstr "in attesa di chiusura" #: db/seeds/ticket_state_types.rb db/seeds/ticket_states.rb msgid "pending reminder" -msgstr "in attesa di" +msgstr "in sospeso" #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/phone_reply.coffee #: db/seeds/ticket_article_types.rb @@ -12681,10 +12324,8 @@ msgid "phone" msgstr "telefono" #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee -#, fuzzy -#| msgid "Public" msgid "public" -msgstr "Pubblico" +msgstr "pubblico" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee msgid "published" @@ -12792,10 +12433,8 @@ msgid "show more" msgstr "" #: db/seeds/settings.rb -#, fuzzy -#| msgid "Placetel" msgid "sipgate.io Token" -msgstr "Placetel" +msgstr "token sipgate.io" #: db/seeds/settings.rb msgid "sipgate.io alternative FQDN" @@ -12958,15 +12597,11 @@ msgid "yes" msgstr "sì" #: app/assets/javascripts/app/views/settings/ticket_number.jst.eco -#, fuzzy -#| msgid "" -#| "|Increment| increments the ticket number, the SystemID and the counter " -#| "are used with \"SystemID.Counter\" format (e.g. 1010138, 1010139)." msgid "" "|Increment| increases the ticket number. The SystemID and the counter are " "used with \"SystemID.Counter\" format (e.g. 1010138, 1010139)." msgstr "" -"|Increment| incrementa il numero del ticket, il SystemID e il contatore " +"|Increment| incrementa il numero del ticket. Il SystemID e il contatore " "vengono utilizzati con il formato \"SystemID.Counter\" (ad esempio 1010138, " "1010139)." @@ -12975,11 +12610,6 @@ msgid "|Left| means |[Ticket#12345] Some Subject|" msgstr "|Left| means |[Ticket#12345] Some Subject|" #: app/assets/javascripts/app/views/settings/ticket_hook_position.jst.eco -#, fuzzy -#| msgid "" -#| "|None| means |Some Subject| (without ticket number). In the last case you " -#| "should enable \"postmaster___follow___up___search___in\" to recognize " -#| "followups based on email headers and/or body." msgid "" "|None| means |Some Subject| (without ticket number), in which case you " "should enable \"postmaster___follow___up___search___in\" to recognize follow-" @@ -12995,22 +12625,16 @@ msgid "|Right| means |Some Subject [Ticket#12345]|" msgstr "|Destra| significa |Oggetto [Ticket#12345]|" #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee -#, fuzzy -#| msgid "...add object link URL" msgid "…add object link URL" -msgstr "... aggiungi l'URL all'oggetto" +msgstr "... aggiungi l'URL del link dell'oggetto" #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee -#, fuzzy -#| msgid "...add object title" msgid "…add object title" msgstr "... aggiungi il titolo all'oggetto" #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee -#, fuzzy -#| msgid "...of whole textarea" msgid "…of whole text area" -msgstr "... dell'intera area di testo" +msgstr "…dell'intera area di testo" #: app/assets/javascripts/app/views/dashboard/stats/ticket_waiting_time.jst.eco msgid "∅ Waiting time today" diff --git a/i18n/zammad.ja.po b/i18n/zammad.ja.po index 1d8a6b50c..944fc6a2d 100644 --- a/i18n/zammad.ja.po +++ b/i18n/zammad.ja.po @@ -3755,6 +3755,7 @@ msgstr "" "い。" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "下書き" @@ -6302,7 +6303,9 @@ msgstr "マクロ" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "マクロ" @@ -8568,6 +8571,7 @@ msgid "Save" msgstr "保存" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.ko-kr.po b/i18n/zammad.ko-kr.po index 4135a1cdf..e13e66619 100644 --- a/i18n/zammad.ko-kr.po +++ b/i18n/zammad.ko-kr.po @@ -3755,6 +3755,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "다운로드하여 %s 예에서 %s 마이그레이션 플러그인을 설치합니다." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "초안" @@ -6295,7 +6296,9 @@ msgstr "매크로" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "매크로" @@ -8553,6 +8556,7 @@ msgid "Save" msgstr "저장" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.lt.po b/i18n/zammad.lt.po index b51b53924..10b6025e2 100644 --- a/i18n/zammad.lt.po +++ b/i18n/zammad.lt.po @@ -3620,6 +3620,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Ruošinys" @@ -6057,7 +6058,9 @@ msgstr "" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "" @@ -8290,6 +8293,7 @@ msgid "Save" msgstr "Išsaugoti" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.lv.po b/i18n/zammad.lv.po index d540ad8e1..ea5772f86 100644 --- a/i18n/zammad.lv.po +++ b/i18n/zammad.lv.po @@ -3547,6 +3547,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "" @@ -5960,7 +5961,9 @@ msgstr "" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "" @@ -8161,6 +8164,7 @@ msgid "Save" msgstr "Saglabāt" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "" diff --git a/i18n/zammad.ms-my.po b/i18n/zammad.ms-my.po index 3b54725c4..786fb362d 100644 --- a/i18n/zammad.ms-my.po +++ b/i18n/zammad.ms-my.po @@ -3607,6 +3607,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "" @@ -6034,7 +6035,9 @@ msgstr "" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Makro" @@ -8259,6 +8262,7 @@ msgid "Save" msgstr "Simpan" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "" diff --git a/i18n/zammad.nl-nl.po b/i18n/zammad.nl-nl.po index f29e90153..1dc82b0e4 100644 --- a/i18n/zammad.nl-nl.po +++ b/i18n/zammad.nl-nl.po @@ -3777,6 +3777,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "Download en installeer de %s Migration Plugin op uw %'s instance." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Concept" @@ -6325,7 +6326,9 @@ msgstr "Macro" msgid "Macro group restrictions do not cover all tickets" msgstr "Macrogroepsbeperkingen dekken niet alle tickets" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Macro's" @@ -8556,6 +8559,7 @@ msgid "Save" msgstr "Opslaan" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "Concept opslaan" diff --git a/i18n/zammad.no-no.po b/i18n/zammad.no-no.po index d1570000a..00d65b270 100644 --- a/i18n/zammad.no-no.po +++ b/i18n/zammad.no-no.po @@ -3800,6 +3800,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "Download and install the %s Migration Plugin on your %s instance." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Utkast" @@ -6399,7 +6400,9 @@ msgstr "Makro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Makroer" @@ -8665,6 +8668,7 @@ msgid "Save" msgstr "Lagre" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.pl.po b/i18n/zammad.pl.po index a7e3cb470..04dec01c3 100644 --- a/i18n/zammad.pl.po +++ b/i18n/zammad.pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: zammad\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2022-05-19 08:49+0000\n" +"PO-Revision-Date: 2022-06-17 07:36+0000\n" "Last-Translator: MBekspert \n" "Language-Team: Polish \n" @@ -95,7 +95,9 @@ msgstr "%s temu" #: app/assets/javascripts/app/models/data_privacy_task.coffee msgid "%s completed data privacy task to delete user ID |%s|" -msgstr "%s utworzono zadanie prywatności danych - usunięcie użytkownika ID[%s]" +msgstr "" +"%s ukończono zadanie prywatności danych - usunięcie identyfikatora " +"użytkownika [%s]" #: app/assets/javascripts/app/models/ticket_article.coffee msgid "%s created article for |%s|" @@ -103,7 +105,9 @@ msgstr "%s stworzył artykuł dla |%s|" #: app/assets/javascripts/app/models/data_privacy_task.coffee msgid "%s created data privacy task to delete user ID |%s|" -msgstr "%s utworzył zadanie prywatności danych - usunięcie użytkownika ID |%s|" +msgstr "" +"%s utworzył zadanie prywatności danych - usunięcie identyfikatora " +"użytkownika |%s|" #: app/assets/javascripts/app/models/group.coffee msgid "%s created group |%s|" @@ -158,11 +162,11 @@ msgstr "%s obiekt został utworzony." #: app/assets/javascripts/app/views/generic/object_import/imported.jst.eco msgid "%s object(s) have been updated." -msgstr "%s obiekt został zaktualizowany." +msgstr "%s obiekt(y) został zaktualizowany." #: app/assets/javascripts/app/views/generic/object_import/imported.jst.eco msgid "%s object(s) were deleted." -msgstr "%s obiekty zostały usunięte." +msgstr "%s obiekt(y) zostały usunięte." #: app/assets/javascripts/app/views/generic/object_import/import_try.jst.eco msgid "%s object(s) will be created." @@ -170,7 +174,7 @@ msgstr "%s obiekt(y) utworzono." #: app/assets/javascripts/app/views/generic/object_import/import_try.jst.eco msgid "%s object(s) will be deleted." -msgstr "%s obiekty będą usunięte." +msgstr "%s obiekt(y) będą usunięte." #: app/assets/javascripts/app/views/generic/object_import/import_try.jst.eco msgid "%s object(s) will be updated." @@ -182,7 +186,7 @@ msgstr "%s moich zgłoszeń jest teraz przetwarzana." #: app/assets/javascripts/app/views/dashboard/stats/ticket_escalation.jst.eco msgid "%s of my tickets escalated." -msgstr "%s przeterminowanych zgłoszeń." +msgstr "%s moich zgłoszeń zostalo eskalowanych." #: app/assets/javascripts/app/views/ticket_overview/batch_overlay_user_group.jst.eco msgid "%s people" @@ -494,7 +498,7 @@ msgstr "Konto nie zwerifikowane" #: app/assets/javascripts/app/models/ticket.coffee #: app/assets/javascripts/app/views/ticket_zoom/time_unit.jst.eco msgid "Accounted Time" -msgstr "czas wykonywania zadania w minutach" +msgstr "Czas wykonywania zadania (w minutach)" #: app/assets/javascripts/app/controllers/_channel/email.coffee #: app/assets/javascripts/app/controllers/_channel/google.coffee @@ -1021,12 +1025,12 @@ msgstr "Mandatariusz" #: db/seeds/object_manager_attributes.rb msgid "Assignment Timeout" -msgstr "Timeout dla zadania" +msgstr "Limit czasu przydziału" #: app/assets/javascripts/app/models/_application_model.coffee #: app/assets/javascripts/app/models/group.coffee msgid "Assignment timeout" -msgstr "Timeout dla zadania" +msgstr "Limit czasu przydziału" #: app/assets/javascripts/app/models/group.coffee #: db/seeds/object_manager_attributes.rb @@ -1624,7 +1628,7 @@ msgstr "Certyfikaty i klucze prywatne" #: app/assets/javascripts/app/views/integration/exchange.jst.eco #: app/assets/javascripts/app/views/integration/ldap.jst.eco msgid "Change" -msgstr "Zmiana" +msgstr "Edycja" #: db/seeds/permissions.rb msgid "Change %s" @@ -1925,7 +1929,7 @@ msgstr "Zamknij" #: db/seeds/macros.rb msgid "Close & Tag as Spam" -msgstr "Zamknij & Oznacz jako Spam" +msgstr "Zamknij & oznacz jako Spam" #: lib/excel_sheet/ticket.rb msgid "Close Diff In Min" @@ -2071,11 +2075,11 @@ msgstr "Potwierdzenie nie powiodło się." #: lib/search_index_backend.rb msgid "Conflicting date ranges" -msgstr "" +msgstr "Sprzeczne zakresy dat" #: app/controllers/reports_controller.rb msgid "Conflicting date ranges. Please check your selected report profile." -msgstr "" +msgstr "Sprzeczne zakresy dat. Sprawdź wybrany profil raportu." #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco #: app/assets/javascripts/app/views/getting_started/email.jst.eco @@ -2099,12 +2103,12 @@ msgstr "Połącz z Facebook" #: app/assets/javascripts/app/controllers/_channel/google.coffee #: app/assets/javascripts/app/views/google/index.jst.eco msgid "Connect Google App" -msgstr "" +msgstr "Połącz aplikację Google" #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee #: app/assets/javascripts/app/views/microsoft365/index.jst.eco msgid "Connect Microsoft 365 App" -msgstr "" +msgstr "Połącz aplikację Microsoft 365" #: app/assets/javascripts/app/controllers/_channel/twitter.coffee #: app/assets/javascripts/app/views/twitter/index.jst.eco @@ -2113,7 +2117,7 @@ msgstr "Połacz z  Twitter " #: public/assets/chat/views/loader.eco msgid "Connecting" -msgstr "" +msgstr "Łączenie" #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco @@ -2122,21 +2126,21 @@ msgstr "Łączę …" #: public/assets/chat/chat-no-jquery.coffee public/assets/chat/chat.coffee msgid "Connection lost" -msgstr "" +msgstr "Utracono połączenie" #: public/assets/chat/chat-no-jquery.coffee public/assets/chat/chat.coffee msgid "Connection re-established" -msgstr "" +msgstr "Przywrócono połączenie" #: lib/search_index_backend.rb msgid "Connection refused" -msgstr "" +msgstr "Połączenie odrzucone" #: app/controllers/import_freshdesk_controller.rb #: app/controllers/import_otrs_controller.rb #: app/controllers/import_zendesk_controller.rb lib/email_helper/probe.rb msgid "Connection refused!" -msgstr "" +msgstr "Połączenie odrzucone!" #: app/assets/javascripts/app/controllers/_settings/area_proxy.coffee msgid "Connection test successful" @@ -2158,11 +2162,11 @@ msgstr "Nie udało się wygenerować podglądu treści." #: app/assets/javascripts/app/controllers/knowledge_base/content_controller.coffee msgid "Content was changed since loading" -msgstr "" +msgstr "Treść została zmieniona od momentu załadowania" #: app/assets/javascripts/app/models/core_workflow.coffee msgid "Context" -msgstr "" +msgstr "Kontekst" #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco #: app/assets/javascripts/app/views/channel/email_notification_wizard.jst.eco @@ -2186,11 +2190,11 @@ msgstr "Kontynuuj sesje" #: app/assets/javascripts/app/views/translation/index.jst.eco msgid "Contributing Translations" -msgstr "" +msgstr "Współtworzenie tłumaczeń" #: lib/sessions/event/chat_transfer.rb msgid "Conversation is transferred into another chat. Please stay tuned." -msgstr "" +msgstr "Rozmowa zostanie przeniesiona do innego czatu. Proszę poczekać." #: app/assets/javascripts/app/views/twitter/list.jst.eco msgid "Conversion of retweets into tickets is turned off." @@ -2198,7 +2202,7 @@ msgstr "Konwersja retweetów na zgłoszenia jest wyłączona." #: app/assets/javascripts/app/controllers/_plugin/electron_events.coffee msgid "Copy" -msgstr "" +msgstr "Kopiuj" #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee msgid "Copy current object number (e. g. Ticket#) to clipboard" @@ -2210,15 +2214,15 @@ msgstr "Kopiuj do schowka: Ctrl+C, Enter" #: db/seeds/permissions.rb msgid "Core Workflow" -msgstr "" +msgstr "Podstawowy przepływ pracy" #: db/seeds/settings.rb msgid "Core Workflow Ajax Mode" -msgstr "" +msgstr "Podstawowy tryb pracy Ajax" #: app/assets/javascripts/app/controllers/core_workflow.coffee msgid "Core Workflows" -msgstr "" +msgstr "Podstawowe przepływy pracy" #: app/assets/javascripts/app/controllers/core_workflow.coffee #: app/assets/javascripts/app/models/core_workflow.coffee @@ -2233,43 +2237,44 @@ msgstr "" #: app/controllers/reports_controller.rb msgid "Could not find active reporting profile." -msgstr "" +msgstr "Nie udało się znaleźć aktywnego profilu raportowania." #: app/controllers/channels_twitter_controller.rb msgid "Could not find external_credential 'twitter'!" -msgstr "" +msgstr "Nie można znaleźć external_credential „twitter”!" #: app/controllers/channels_twitter_controller.rb msgid "Could not find external_credential in cache!" -msgstr "" +msgstr "Nie można znaleźć external_credential w pamięci podręcznej!" #: app/controllers/channels_twitter_controller.rb msgid "Could not find external_credential[:consumer_secret] in cache!" msgstr "" +"Nie można znaleźć external_credential[:consumer_secret] w pamięci podręcznej!" #: app/controllers/links_controller.rb msgid "Could not find object!" -msgstr "" +msgstr "Nie można znaleźć obiektu!" #: app/controllers/tickets_controller.rb msgid "Could not find source ticket!" -msgstr "" +msgstr "Nie można znaleźć zgłoszenia źródłowego!" #: app/controllers/tickets_controller.rb msgid "Could not find target ticket number!" -msgstr "" +msgstr "Nie można znaleźć docelowego numeru zgłoszenia!" #: lib/static_assets.rb msgid "Could not read raw logo!" -msgstr "" +msgstr "Nie udało się odczytać logo!" #: app/assets/javascripts/app/views/knowledge_base/new_controller.coffee msgid "Couldn't create Knowledge Base" -msgstr "" +msgstr "Nie udało się utworzyć bazy wiedzy" #: app/assets/javascripts/app/controllers/knowledge_base/public_menu_form.coffee msgid "Couldn't save changes" -msgstr "" +msgstr "Nie udało się zapisać zmian" #: app/assets/javascripts/app/views/tag/table.jst.eco msgid "Count" @@ -2307,7 +2312,7 @@ msgstr "Stwórz Admina" #: lib/excel_sheet/ticket.rb msgid "Create Channel" -msgstr "" +msgstr "Utwórz kanał" #: app/models/report.rb msgid "Create Channels" @@ -2315,7 +2320,7 @@ msgstr "Utwórz kanały" #: app/assets/javascripts/app/views/knowledge_base/new_controller.coffee msgid "Create Knowledge Base" -msgstr "" +msgstr "Utwórz bazę wiedzy" #: app/controllers/first_steps_controller.rb msgid "Create Macros" @@ -2349,6 +2354,28 @@ msgid "" "\n" "To select placeholders from a list, just enter \"::\"." msgstr "" +"Twórz moduły tekstowe, aby **spędzać mniej czasu na pisaniu odpowiedzi**. " +"Moduły tekstowe mogą zawierać inteligentne zmienne, takie jak imię i " +"nazwisko użytkownika lub adres e-mail.\n" +"\n" +"Przykłady fragmentów to:\n" +"\n" +"* Witaj Pani #{ticket.customer.lastname},\n" +"* Witaj Panie #{ticket.customer.lastname},\n" +"* Witaj #{ticket.customer.firstname},\n" +"* Nazywam się #{user.firstname},\n" +"\n" +"Oczywiście możesz też używać fragmentów wielowierszowych.\n" +"\n" +"Dostępne obiekty to:\n" +"* bilet (np. stan.biletu, grupa.biletu)\n" +"* klient.biletu (np. klient.biletu.imię, klient.biletu.nazwisko)\n" +"* właściciel.biletu (np. właściciel.biletu.imię, właściciel.biletu.nazwisko)" +"\n" +"* organizacja.biletów (np. nazwa.organizacji.biletów)\n" +"* użytkownik (np. użytkownik.imię, użytkownik.e-mail)\n" +"\n" +"Aby wybrać symbole zastępcze z listy, wystarczy wpisać „::”." #: app/controllers/first_steps_controller.rb msgid "Create a Test Ticket" @@ -2376,7 +2403,7 @@ msgstr "Stwórz nowego Klienta" #: app/assets/javascripts/app/lib/app_post/_object_organization_autocompletion.coffee msgid "Create new object" -msgstr "" +msgstr "Utwórz nowy obiekt" #: app/assets/javascripts/app/views/generic/object_import/index.jst.eco msgid "Create new records" @@ -2423,7 +2450,7 @@ msgstr "Utworzone" #: app/assets/javascripts/app/views/time_accounting/by_ticket.jst.eco #: lib/excel_sheet/ticket.rb msgid "Created At" -msgstr "" +msgstr "Utworzono w" #: app/assets/javascripts/app/models/knowledge_base_answer_translation.coffee #: app/assets/javascripts/app/models/organization.coffee @@ -2454,11 +2481,11 @@ msgstr "Stworzone przez" #: app/assets/javascripts/app/controllers/core_workflow.coffee msgid "Creation mask" -msgstr "" +msgstr "Maska tworzenia" #: app/assets/javascripts/app/controllers/_profile/avatar.coffee msgid "Crop Image" -msgstr "" +msgstr "Przytnij zdjęcie" #: app/assets/javascripts/app/views/monitoring.jst.eco msgid "Current Status" @@ -2480,25 +2507,27 @@ msgstr "Obecne hasło" #: app/controllers/users_controller.rb msgid "Current password is wrong!" -msgstr "" +msgstr "Aktualne hasło jest błędne!" #: app/controllers/users_controller.rb msgid "Current password needed!" -msgstr "" +msgstr "Potrzebne aktualne hasło!" #: app/controllers/application_controller/has_user.rb msgid "Current user has no permission to use 'From'/'X-On-Behalf-Of'!" -msgstr "" +msgstr "Bieżący użytkownik nie ma uprawnień do używania „Od”/„X-w imieniu”!" #: app/assets/javascripts/app/controllers/ticket_overview.coffee msgid "" "Currently no overview is assigned to your roles. Please contact your " "administrator." msgstr "" +"Obecnie do Twoich ról nie jest przypisany żaden przegląd. Skontaktuj się z " +"administratorem." #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee msgid "Custom" -msgstr "" +msgstr "Niestandardowe" #: app/assets/javascripts/app/controllers/_manage/knowledge_base.coffee #: app/assets/javascripts/app/models/knowledge_base.coffee @@ -2507,7 +2536,7 @@ msgstr "Niestandardowy adres URL" #: lib/knowledge_base/server_snippet.rb msgid "Custom address is not set" -msgstr "" +msgstr "Adres niestandardowy nie jest ustawiony" #: app/assets/javascripts/app/controllers/_application_controller/form.coffee #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee @@ -2554,7 +2583,7 @@ msgstr "Klienci w organizacji mogą przeglądać swoje zgłoszenia nawzajem." #: app/assets/javascripts/app/controllers/_plugin/electron_events.coffee msgid "Cut" -msgstr "" +msgstr "Wytnij" #: app/assets/javascripts/app/controllers/_dashboard/first_steps_clues.coffee #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee @@ -2571,15 +2600,15 @@ msgstr "Prywatność danych" #: app/assets/javascripts/app/controllers/data_privacy.coffee msgid "DataPrivacyTask" -msgstr "" +msgstr "Zadanie prywatności danych" #: app/assets/javascripts/app/controllers/data_privacy.coffee msgid "DataPrivacyTasks" -msgstr "" +msgstr "Zadania prywatności danych" #: db/seeds/settings.rb msgid "Database" -msgstr "" +msgstr "Baza danych" #: app/assets/javascripts/app/views/object_manager/index.jst.eco msgid "Database Update Required" @@ -2597,11 +2626,11 @@ msgstr "Data & Czas" #: db/seeds/settings.rb msgid "Date (Year.Month.Day.SystemID.Counter)" -msgstr "" +msgstr "Data (Rok.Miesiąc.Dzień.SystemID.Licznik)" #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee msgid "Datetime" -msgstr "" +msgstr "Data i godzina" #: app/assets/javascripts/app/views/generic/timer.jst.eco #: app/assets/javascripts/app/views/report/time_range_picker.jst.eco @@ -2610,7 +2639,7 @@ msgstr "Dzień" #: app/assets/javascripts/app/controllers/_ui_element/time_range.coffee msgid "Day(s)" -msgstr "Dzień(dni)" +msgstr "Dzień (dni)" #: app/assets/javascripts/app/views/generic/timeplan.jst.eco msgid "Days" @@ -2628,7 +2657,7 @@ msgstr "Grudzień" #: app/assets/javascripts/app/controllers/ticket_zoom/article_view.coffee msgid "Decryption failed!" -msgstr "" +msgstr "Odszyfrowanie nie powiodło się!" #: app/assets/javascripts/app/controllers/ticket_zoom/article_view.coffee msgid "Decryption was successful." @@ -2647,11 +2676,11 @@ msgstr "Domyślny" #: app/assets/javascripts/app/views/integration/smime.jst.eco msgid "Default Behavior" -msgstr "" +msgstr "Zachowanie domyślne" #: db/seeds/settings.rb msgid "Default Screen" -msgstr "" +msgstr "Ekran domyślny" #: app/assets/javascripts/app/models/role.coffee msgid "Default at Signup" @@ -2659,7 +2688,7 @@ msgstr "Domyślne przy Zakładaniu Konta" #: db/seeds/settings.rb msgid "Default calendar tickets subscriptions" -msgstr "" +msgstr "Domyślne subskrypcje kalendarza zgłoszeń" #: app/assets/javascripts/app/views/integration/cti.jst.eco #: app/assets/javascripts/app/views/integration/placetel.jst.eco @@ -2669,15 +2698,15 @@ msgstr "Domyślny identyfikator rozmówcy dla połączeń wychodzących." #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee msgid "Default time diff (hours)" -msgstr "" +msgstr "Domyślna różnica czasu (godziny)" #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee msgid "Default time diff (minutes)" -msgstr "" +msgstr "Domyślna różnica czasu (minuty)" #: db/seeds/settings.rb msgid "Default type for a new ticket" -msgstr "" +msgstr "Domyślny typ dla nowego zgłoszenia" #: app/assets/javascripts/app/views/settings/ticket_auto_assignment.jst.eco #: db/seeds/settings.rb @@ -2690,29 +2719,32 @@ msgstr "" #: db/seeds/settings.rb msgid "Define max. attachment size for Elasticsearch." -msgstr "" +msgstr "Określ maks. rozmiar załącznika dla Elasticsearch." #: db/seeds/settings.rb msgid "Define max. payload size for Elasticsearch." -msgstr "" +msgstr "Określ maks. rozmiar ładunku dla Elasticsearch." #: db/seeds/settings.rb msgid "Define pipeline name for Elasticsearch." -msgstr "" +msgstr "Zdefiniuj nazwę potoku dla Elasticsearch." #: db/seeds/settings.rb msgid "" "Define postmaster filter to check if follow-ups get created (based on admin " "settings)." msgstr "" +"Zdefiniuj filtr postmastera, aby sprawdzić, czy tworzone są follow-upy (na " +"podstawie ustawień administratora)." #: db/seeds/settings.rb msgid "Define postmaster filter to import archive mailboxes." msgstr "" +"Zdefiniuj filtr postmaster, aby zaimportować archiwalne skrzynki pocztowe." #: db/seeds/settings.rb msgid "Define postmaster filter." -msgstr "" +msgstr "Zdefiniuj filtr postmastera." #: app/assets/javascripts/app/views/integration/cti.jst.eco msgid "" @@ -2720,10 +2752,14 @@ msgid "" "agents to it. By this, Zammad can support your agents by showing them only " "relevant call entries and notifications." msgstr "" +"Zdefiniuj kolejki lub miejsca docelowe połączeń (cokolwiek pasuje do Twojej " +"centrali PBX) i przypisz do nich swoich agentów. Dzięki temu Zammad może " +"wspierać Twoich agentów, pokazując im tylko odpowiednie wpisy połączeń i " +"powiadomienia." #: db/seeds/settings.rb msgid "Defines Elasticsearch index name." -msgstr "" +msgstr "Definiuje nazwę indeksu Elasticsearch." #: db/seeds/settings.rb msgid "Defines Freshdesk endpoint authentication API key." @@ -2731,27 +2767,31 @@ msgstr "Definiuje klucz API uwierzytelniania punktu końcowego Freshdesk." #: db/seeds/settings.rb msgid "Defines HTTP basic auth password of Elasticsearch." -msgstr "" +msgstr "Definiuje podstawowe hasło uwierzytelniania HTTP Elasticsearch." #: db/seeds/settings.rb msgid "Defines HTTP basic auth user of Elasticsearch." -msgstr "" +msgstr "Definiuje użytkownika podstawowego uwierzytelniania HTTP Elasticsearch." #: db/seeds/settings.rb msgid "" "Defines HTTP basic authentication password (only if OTRS is protected via " "HTTP basic auth)." msgstr "" +"Definiuje hasło podstawowego uwierzytelniania HTTP (tylko jeśli OTRS jest " +"chroniony przez podstawowe uwierzytelnianie HTTP)." #: db/seeds/settings.rb msgid "" "Defines HTTP basic authentication user (only if OTRS is protected via HTTP " "basic auth)." msgstr "" +"Definiuje użytkownika podstawowego uwierzytelniania HTTP (tylko jeśli OTRS " +"jest chroniony przez podstawowe uwierzytelnianie HTTP)." #: db/seeds/settings.rb msgid "Defines Kayako endpoint authentication password." -msgstr "" +msgstr "Definiuje hasło uwierzytelniania punktu końcowego Kayako." #: db/seeds/settings.rb msgid "Defines Kayako endpoint authentication user." @@ -2759,7 +2799,7 @@ msgstr "Definiuje użytkownika uwierzytelniania punktu końcowego Kayako." #: db/seeds/settings.rb msgid "Defines OTRS endpoint authentication key." -msgstr "" +msgstr "Definiuje klucz uwierzytelniania punktu końcowego OTRS." #: db/seeds/settings.rb msgid "Defines Zendesk endpoint authentication API key." @@ -2767,43 +2807,57 @@ msgstr "Definiuje klucz API uwierzytelniania punktu końcowego Zendesk." #: db/seeds/settings.rb msgid "Defines Zendesk endpoint authentication user." -msgstr "" +msgstr "Definiuje użytkownika uwierzytelniającego punkt końcowy Zendesk." #: db/seeds/settings.rb msgid "" "Defines a Freshdesk endpoint to import users, tickets, states, and articles." msgstr "" +"Definiuje punkt końcowy Freshdesk do importowania użytkowników, zgłoszeń, " +"stanów i artykułów." #: db/seeds/settings.rb msgid "" "Defines a Kayako endpoint to import users, tickets, states, and articles." msgstr "" +"Definiuje punkt końcowy Kayako do importowania użytkowników, zgłoszeń, " +"stanów i artykułów." #: db/seeds/settings.rb msgid "" "Defines a Zendesk endpoint to import users, tickets, states, and articles." msgstr "" +"Definiuje punkt końcowy Zendesk do importowania użytkowników, zgłoszeń, " +"stanów i artykułów." #: db/seeds/settings.rb msgid "Defines a dashboard stats backend that gets scheduled automatically." msgstr "" +"Definiuje zaplecze statystyk pulpitu nawigacyjnego, które jest automatycznie " +"zaplanowane." #: db/seeds/settings.rb msgid "" "Defines a limit for how many tickets can be created via web form from one IP " "address per day." msgstr "" +"Określa limit liczby zgłoszeń, które można utworzyć za pośrednictwem " +"formularza internetowego z jednego adresu IP dziennie." #: db/seeds/settings.rb msgid "" "Defines a limit for how many tickets can be created via web form from one IP " "address per hour." msgstr "" +"Określa limit liczby zgłoszeń, które można utworzyć za pośrednictwem " +"formularza internetowego z jednego adresu IP na godzinę." #: db/seeds/settings.rb msgid "" "Defines a limit for how many tickets can be created via web form per day." msgstr "" +"Określa limit liczby zgłoszeń, które można utworzyć za pomocą formularza " +"internetowego dziennie." #: db/seeds/settings.rb msgid "Defines after how many failed logins accounts will be deactivated." @@ -2813,14 +2867,18 @@ msgstr "Określa, po ilu nieudanych logowaniach konta zostaną dezaktywowane." msgid "" "Defines an OTRS endpoint to import users, tickets, states, and articles." msgstr "" +"Definiuje punkt końcowy OTRS do importowania użytkowników, zgłoszeń, stanów " +"i artykułów." #: db/seeds/settings.rb msgid "Defines attachment extensions which will be ignored by Elasticsearch." msgstr "" +"Definiuje rozszerzenia załączników, które będą ignorowane przez " +"Elasticsearch." #: db/seeds/settings.rb msgid "Defines endpoint of Elasticsearch." -msgstr "" +msgstr "Definiuje punkt końcowy Elasticsearch." #: db/seeds/settings.rb msgid "" @@ -2850,56 +2908,60 @@ msgid "" "Defines how to reach websocket server. \"websocket\" is default on " "production, \"websocketPort\" is for CI" msgstr "" +"Definiuje sposób dotarcia do serwera websocket. \"Websocket\" jest domyślnie " +"w środowisku produkcyjnym, \"websocketPort\" jest dla CI" #: db/seeds/settings.rb msgid "Defines if Checkmk (https://checkmk.com/) is enabled or not." -msgstr "" +msgstr "Określa, czy Checkmk (https://checkmk.com/) jest włączony, czy nie." #: db/seeds/settings.rb msgid "Defines if Clearbit (http://www.clearbit.com) is enabled or not." -msgstr "" +msgstr "Określa, czy Clearbit (http://www.clearbit.com) jest włączony, czy nie." #: db/seeds/settings.rb msgid "Defines if Exchange is enabled or not." -msgstr "" +msgstr "Określa, czy Exchange jest włączony, czy nie." #: db/seeds/settings.rb msgid "Defines if Icinga (http://www.icinga.org) is enabled or not." -msgstr "" +msgstr "Określa, czy Icinga (http://www.icinga.org) jest włączona, czy nie." #: db/seeds/settings.rb msgid "" "Defines if Knowledge Base navbar button is enabled for users without " "Knowledge Base permission." msgstr "" +"Określa, czy przycisk paska nawigacyjnego bazy wiedzy jest włączony dla " +"użytkowników bez uprawnień bazy wiedzy." #: db/seeds/settings.rb msgid "Defines if Knowledge Base navbar button is enabled." -msgstr "" +msgstr "Określa, czy włączony jest przycisk paska nawigacyjnego bazy wiedzy." #: db/seeds/settings.rb msgid "Defines if LDAP is enabled or not." -msgstr "" +msgstr "Określa, czy LDAP jest włączone, czy nie." #: db/seeds/settings.rb msgid "Defines if Monit (https://mmonit.com/monit/) is enabled or not." -msgstr "" +msgstr "Określa, czy Monit (https://mmonit.com/monit/) jest włączony, czy nie." #: db/seeds/settings.rb msgid "Defines if Nagios (http://www.nagios.org) is enabled or not." -msgstr "" +msgstr "Określa, czy Nagios (http://www.nagios.org) jest włączony, czy nie." #: db/seeds/settings.rb msgid "Defines if Placetel (http://www.placetel.de) is enabled or not." -msgstr "" +msgstr "Określa, czy Placetel (http://www.placetel.de) jest włączony, czy nie." #: db/seeds/settings.rb msgid "Defines if S/MIME encryption is enabled or not." -msgstr "" +msgstr "Określa, czy szyfrowanie S/MIME jest włączone, czy nie." #: db/seeds/settings.rb msgid "Defines if Slack (http://www.slack.org) is enabled or not." -msgstr "" +msgstr "Określa, czy Slack (http://www.slack.org) jest włączony, czy nie." #: db/seeds/settings.rb msgid "Defines if a customer can create tickets via the web interface." @@ -2907,61 +2969,75 @@ msgstr "Definiuje czy klient może tworzyć zgłoszenia przez interfejs Web." #: db/seeds/settings.rb msgid "Defines if application is in init mode." -msgstr "" +msgstr "Określa, czy aplikacja jest w trybie init." #: db/seeds/settings.rb msgid "Defines if application is used as online service." -msgstr "" +msgstr "Określa, czy aplikacja jest używana jako usługa online." #: db/seeds/settings.rb msgid "Defines if generic CTI integration is enabled or not." -msgstr "" +msgstr "Określa, czy ogólna integracja CTI jest włączona, czy nie." #: db/seeds/settings.rb msgid "Defines if i-doit (http://www.i-doit) is enabled or not." -msgstr "" +msgstr "Określa, czy i-doit (http://www.i-doit) jest włączony, czy nie." #: db/seeds/settings.rb msgid "Defines if sipgate.io (http://www.sipgate.io) is enabled or not." -msgstr "" +msgstr "Określa, czy sipgate.io (http://www.sipgate.io) jest włączone, czy nie." #: db/seeds/settings.rb msgid "" "Defines if the GitHub (http://www.github.com) integration is enabled or not." msgstr "" +"Określa, czy integracja z GitHub (http://www.github.com) jest włączona, czy " +"nie." #: db/seeds/settings.rb msgid "" "Defines if the GitLab (http://www.gitlab.com) integration is enabled or not." msgstr "" +"Określa, czy integracja z GitLab (http://www.gitlab.com) jest włączona, czy " +"nie." #: db/seeds/settings.rb msgid "" "Defines if the agent has to accept a confirmation dialog when changing the " "article visibility to \"public\"." msgstr "" +"Określa, czy agent musi zaakceptować okno dialogowe potwierdzenia podczas " +"zmiany widoczności artykułu na \"publiczny\"." #: db/seeds/settings.rb msgid "" "Defines if the application is in developer mode (all users have the same " "password and password reset will work without email delivery)." msgstr "" +"Określa, czy aplikacja jest w trybie programisty (wszyscy użytkownicy mają " +"to samo hasło, a resetowanie hasła będzie działać bez dostarczania poczty " +"e-mail)." #: db/seeds/settings.rb msgid "" "Defines if the core workflow communication should run over ajax instead of " "websockets." msgstr "" +"Określa, czy główna komunikacja przepływu pracy powinna przebiegać przez " +"ajax zamiast przez gniazda sieciowe." #: db/seeds/settings.rb msgid "" "Defines if the email should be displayed in the result of the user/" "organization widget." msgstr "" +"Określa, czy wiadomość e-mail ma być wyświetlana w wyniku widżetu uż" +"ytkownika/organizacji." #: db/seeds/settings.rb msgid "Defines if tickets can be created via web form." msgstr "" +"Określa, czy zgłoszenia można tworzyć za pomocą formularza internetowego." #: db/seeds/settings.rb msgid "Defines if tickets should be closed if service is recovered." @@ -2971,115 +3047,151 @@ msgstr "" #: db/seeds/settings.rb msgid "Defines karma levels." -msgstr "" +msgstr "Definiuje poziomy karmy." #: db/seeds/settings.rb msgid "Defines postmaster filter for filters managed via admin interface." msgstr "" +"Definiuje filtr postmaster dla filtrów zarządzanych przez interfejs " +"administratora." #: db/seeds/settings.rb msgid "" "Defines postmaster filter to check if email has been created by Zammad " "itself and will set the article sender." msgstr "" +"Definiuje filtr postmaster, aby sprawdzić, czy wiadomość e-mail została " +"utworzona przez samego Zammad i ustawi nadawcę artykułu." #: db/seeds/settings.rb msgid "" "Defines postmaster filter to check if the email is a self-created " "notification email, then ignore it to prevent email loops." msgstr "" +"Definiuje filtr postmaster, aby sprawdzić, czy wiadomość e-mail jest " +"samodzielnie utworzoną wiadomością e-mail z powiadomieniem, a następnie " +"zignorować ją, aby zapobiec pętlom wiadomości e-mail." #: db/seeds/settings.rb msgid "Defines postmaster filter to handle secure mailing." -msgstr "" +msgstr "Definiuje filtr postmaster do obsługi bezpiecznej poczty." #: db/seeds/settings.rb msgid "" "Defines postmaster filter to identify Jira mails for correct follow-ups." -msgstr "" +msgstr "Definiuje filtr postmaster do obsługi bezpiecznej metody." #: db/seeds/settings.rb msgid "" "Defines postmaster filter to identify ServiceNow mails for correct follow-" "ups." msgstr "" +"Definiuje filtr postmaster do identyfikowania wiadomości ServiceNow dla " +"poprawnych działań następczych." #: db/seeds/settings.rb msgid "" "Defines postmaster filter to identify auto responses to prevent auto replies " "from Zammad." msgstr "" +"Definiuje filtr postmaster w celu identyfikacji automatycznych odpowiedzi, " +"aby zapobiec automatycznym odpowiedziom z Zammad." #: db/seeds/settings.rb msgid "" "Defines postmaster filter to identify follow-up ticket for merged tickets." msgstr "" +"Definiuje filtr postmaster w celu identyfikacji zgłoszenia uzupełniającego " +"dla zgłoszeń scalonych." #: db/seeds/settings.rb msgid "" "Defines postmaster filter to identify follow-ups (based on admin settings)." msgstr "" +"Definiuje filtr postmaster w celu identyfikacji działań następczych (na " +"podstawie ustawień administratora)." #: db/seeds/settings.rb msgid "" "Defines postmaster filter to identify out-of-office emails for follow-up " "detection and keeping current ticket state." msgstr "" +"Definiuje filtr postmaster do identyfikowania wiadomości e-mail poza biurem " +"w celu wykrywania działań następczych i utrzymywania aktualnego stanu " +"zgłoszenia." #: db/seeds/settings.rb msgid "" "Defines postmaster filter to identify postmaster bounces; and disables " "sending notification if delivery fails permanently." msgstr "" +"Definiuje filtr postmastera do identyfikacji odrzuceń postmastera; i wyłącza " +"wysyłanie powiadomień, jeśli dostarczanie nie powiedzie się na stałe." #: db/seeds/settings.rb msgid "" "Defines postmaster filter to identify postmaster bounces; and handles them " "as follow-up of the original tickets" msgstr "" +"Definiuje filtr postmastera do identyfikacji odrzuceń postmastera; i " +"traktuje je jako kontynuację oryginalnych biletów" #: db/seeds/settings.rb msgid "" "Defines postmaster filter to identify postmaster bounces; and reopens " "tickets if delivery fails permanently." msgstr "" +"Definiuje filtr postmastera do identyfikacji odrzuceń postmastera; i " +"ponownie otwiera bilety, jeśli dostawa trwale nie powiedzie się." #: db/seeds/settings.rb msgid "Defines postmaster filter to identify sender user." -msgstr "" +msgstr "Definiuje filtr postmastera do identyfikacji użytkownika nadawcy." #: db/seeds/settings.rb msgid "" "Defines postmaster filter to manage Icinga (http://www.icinga.org) emails." msgstr "" +"Definiuje filtr postmaster do zarządzania wiadomościami e-mail Icinga " +"(http://www.icinga.org)." #: db/seeds/settings.rb msgid "" "Defines postmaster filter to manage Monit (https://mmonit.com/monit/) emails." msgstr "" +"Definiuje filtr postmaster do zarządzania wiadomościami e-mail Monit " +"(https://mmonit.com/monit/)." #: db/seeds/settings.rb msgid "" "Defines postmaster filter to manage Nagios (http://www.nagios.org) emails." msgstr "" +"Definiuje filtr postmaster do zarządzania wiadomościami e-mail Nagios " +"(http://www.nagios.org)." #: db/seeds/settings.rb msgid "" "Defines postmaster filter to remove X-Zammad headers from untrustworthy " "sources." msgstr "" +"Definiuje filtr postmaster, aby usunąć nagłówki X-Zammad z niewiarygodnych " +"źródeł." #: db/seeds/settings.rb msgid "" "Defines postmaster filter to set the owner (based on group follow up " "assignment)." msgstr "" +"Definiuje filtr postmastera, aby ustawić właściciela (na podstawie " +"przypisania kontrolnego grupy)." #: db/seeds/settings.rb msgid "" "Defines postmaster filter to set the sender/from of emails based on reply-to " "header." msgstr "" +"Definiuje filtr postmaster, aby ustawić nadawcę/od e-maili na podstawie " +"nagłówka odpowiedzi do." #: db/seeds/settings.rb msgid "" @@ -3089,7 +3201,7 @@ msgstr "" #: db/seeds/settings.rb msgid "Defines postmaster filter." -msgstr "" +msgstr "Definiuje filtr postmastera." #: db/seeds/settings.rb msgid "Defines pretty date format." @@ -3395,7 +3507,7 @@ msgstr "Kasuj" #: app/assets/javascripts/app/controllers/_profile/avatar.coffee msgid "Delete Avatar?" -msgstr "" +msgstr "Usunąć awatar?" #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_customer.coffee msgid "Delete Customer" @@ -3539,7 +3651,7 @@ msgstr "Urządzenia" #: app/assets/javascripts/app/views/profile/language.jst.eco msgid "Did you know? You can help translating %s at:" -msgstr "" +msgstr "Czy wiesz, że możesz pomóc w tłumaczeniu %s na stronie:" #: db/seeds/settings.rb msgid "Digit required" @@ -3605,11 +3717,11 @@ msgstr "Nazwa wyświetlana" #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee msgid "Do not encrypt email" -msgstr "" +msgstr "Nie szyfruj wiadomości e-mail" #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee msgid "Do not sign email" -msgstr "" +msgstr "Nie podpisuj wiadomości e-mail" #: app/assets/javascripts/app/controllers/knowledge_base/delete_action.coffee #: app/assets/javascripts/app/controllers/knowledge_base/sidebar/attachments.coffee @@ -3646,11 +3758,11 @@ msgstr "" #: app/assets/javascripts/app/controllers/_integration/ldap.coffee msgid "Don't synchronize" -msgstr "" +msgstr "Nie synchronizuj" #: app/assets/javascripts/app/controllers/ticket_zoom/article_image_view.coffee msgid "Download" -msgstr "" +msgstr "Pobierz" #: app/assets/javascripts/app/views/import/otrs.jst.eco msgid "Download %s Migration Plugin" @@ -3658,21 +3770,22 @@ msgstr "Pobierz wtyczkę migracji %s" #: app/assets/javascripts/app/views/report/download_button.jst.eco msgid "Download %s record(s)" -msgstr "" +msgstr "Pobierz %s rekord(y)" #: app/assets/javascripts/app/views/integration/smime_list.jst.eco msgid "Download Certificate" -msgstr "" +msgstr "Pobierz certyfikat" #: app/assets/javascripts/app/views/integration/smime_list.jst.eco msgid "Download Private Key" -msgstr "" +msgstr "Pobierz klucz prywatny" #: app/assets/javascripts/app/views/import/otrs.jst.eco msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "Pobierz i zainstaluj wtyczkę %s Migration Plugin na instancji %s." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Szkic" @@ -3800,11 +3913,11 @@ msgstr "E-Mail" #: app/models/report.rb msgid "Email (in)" -msgstr "" +msgstr "E-mail (przychodzący)" #: app/models/report.rb msgid "Email (out)" -msgstr "" +msgstr "E-mail (wychodzący)" #: db/seeds/settings.rb msgid "Email - full quote" @@ -4136,7 +4249,7 @@ msgstr "Wpisz tekst lub" #: app/assets/javascripts/app/controllers/ticket_customer.coffee #: db/seeds/object_manager_attributes.rb msgid "Enter Person or Organization/Company" -msgstr "Wpisz osobę lub firmę" +msgstr "Wpisz osobę lub organizację/firmę" #: app/assets/javascripts/app/views/integration/smime_private_key_add.jst.eco msgid "Enter Private Key Secret" @@ -4282,10 +4395,11 @@ msgstr "" "wysoce konfigurowalne i możesz skonfigurować inne automatyczne działania, " "takie jak to.\n" "\n" -"Może chcesz nadać wyższy priorytet dla dowolnego zgłoszenia ze słowem „pilne”" -" w tytule. Być może chcesz uniknąć wysyłania automatycznych odpowiedzi do " -"klientów z niektórych organizacji. Może chcesz oznaczyć zgłoszenie jako " -"„oczekujące”, gdy ktoś doda do zgłoszenia wewnętrzną notatkę.\n" +"Może chcesz nadać wyższy priorytet dla dowolnego zgłoszenia ze słowem " +"„pilne” w tytule. Być może chcesz uniknąć wysyłania automatycznych " +"odpowiedzi do klientów z niektórych organizacji. Może chcesz oznaczyć " +"zgłoszenie jako „oczekujące”, gdy ktoś doda do zgłoszenia wewnętrzną " +"notatkę.\n" "\n" "Cokolwiek to jest, możesz to zrobić za pomocą wyzwalaczy: akcji, które " "obserwują zgłoszenia na określone zmiany, a następnie uruchamiają się, gdy " @@ -5156,7 +5270,7 @@ msgid "" "How many escalated tickets do you have open? (Mr. Bubbles gets grumpy if you " "have too many…)" msgstr "" -"Ile masz eskalowanych biletów? (Pan Bubbles robi się zrzędliwy, jeśli masz " +"Ile masz eskalowanych zgłoszeń? (Pan Bubbles robi się zrzędliwy, jeśli masz " "za dużo…)" #: app/assets/javascripts/app/controllers/_dashboard/stats/ticket_channel_distribution.coffee @@ -6146,7 +6260,7 @@ msgstr "" #: app/assets/javascripts/app/views/maintenance.jst.eco #: db/seeds/object_manager_attributes.rb msgid "Login" -msgstr "Zaloguj się" +msgstr "Login" #: app/controllers/application_controller/authenticates.rb msgid "" @@ -6181,7 +6295,9 @@ msgstr "Makro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Macra" @@ -6574,7 +6690,7 @@ msgstr "Zgłoszenia Mojej Organizacji" #: db/seeds/overviews.rb msgid "My Pending Reached Tickets" -msgstr "Moje Zgłoszenia czas oczekiwania minął" +msgstr "Moje zgłoszenia oczekujące na realizację" #: db/seeds/overviews.rb msgid "My Replacement Tickets" @@ -7458,7 +7574,7 @@ msgstr "Wychodzące" #: app/assets/javascripts/app/controllers/agent_ticket_create.coffee msgid "Outbound Call" -msgstr "Rozmowa Wychodząca" +msgstr "Połączenie wychodzące" #: app/assets/javascripts/app/controllers/overview.coffee #: app/assets/javascripts/app/models/group.coffee @@ -7618,7 +7734,7 @@ msgstr "Wklej zawartość pliku CSV" #: db/seeds/overviews.rb msgid "Pending Reached Tickets" -msgstr "Czas oczekiwania minął" +msgstr "Oczekujące na realizację" #: app/assets/javascripts/app/models/ticket.coffee msgid "Pending reminder reached for ticket |%s|" @@ -7966,7 +8082,7 @@ msgstr "" #: app/assets/javascripts/app/models/group.coffee msgid "Read" -msgstr "" +msgstr "Odczyt" #: app/assets/javascripts/app/views/report/time_range_picker.jst.eco msgid "Real-time" @@ -7979,7 +8095,7 @@ msgstr "" #: app/assets/javascripts/app/controllers/agent_ticket_create.coffee msgid "Received Call" -msgstr "Otrzymanych Połączeń" +msgstr "Połączenie odebrane" #: app/assets/javascripts/app/views/agent_ticket_merge.jst.eco #: app/assets/javascripts/app/views/link/ticket/add.jst.eco @@ -8093,7 +8209,7 @@ msgstr "Wskaźnik wznowionych" #: app/assets/javascripts/app/views/profile/out_of_office.jst.eco msgid "Replacement" -msgstr "Zastepstwo" +msgstr "Zastępstwo" #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee msgid "Reply to last article" @@ -8298,7 +8414,7 @@ msgstr "SLA" #: app/assets/javascripts/app/models/sla.coffee msgid "SLA Times" -msgstr "SLA czasy" +msgstr "Czasy SLA" #: app/assets/javascripts/app/controllers/sla.coffee msgid "SLAs" @@ -8388,6 +8504,7 @@ msgid "Save" msgstr "Zapisz" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "Zapisz Szkic" @@ -9236,7 +9353,7 @@ msgstr "" #: app/assets/javascripts/app/controllers/taskbar_widget.coffee msgid "Tab has changed, do you really want to close it?" -msgstr "Zgłoszenie zostało zmienione czy na pewno chcesz je zamknąć ?" +msgstr "Zgłoszenie zostało zmienione czy na pewno chcesz je zamknąć?" #: app/assets/javascripts/app/controllers/_ui_element/postmaster_set.coffee msgid "Tag" @@ -9512,10 +9629,8 @@ msgid "The following changes have been made:" msgstr "Zostały wykonane następujące zmiany:" #: app/assets/javascripts/app/views/generic/object_import/import_try.jst.eco -#, fuzzy -#| msgid "The following changes are made:" msgid "The following changes will be made:" -msgstr "Następujące zmiany zostały dokonane:" +msgstr "Wprowadzone zostaną następujące zmiany:" #: app/assets/javascripts/app/controllers/_application_controller/_modal.coffee msgid "" @@ -9544,10 +9659,8 @@ msgstr "" #: app/assets/javascripts/app/controllers/_integration/smime.coffee #: app/assets/javascripts/app/controllers/widget/import.coffee #: app/assets/javascripts/app/controllers/widget/import_try_result.coffee -#, fuzzy -#| msgid "The import was successful." msgid "The import failed." -msgstr "Import został wykonany pomyślnie." +msgstr "Import nie powiódł się." #: app/assets/javascripts/app/views/generic/object_import/imported.jst.eco msgid "The import was successful." @@ -9566,10 +9679,8 @@ msgid "" msgstr "" #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_git_issue.coffee -#, fuzzy -#| msgid "%s Object(s) are created." msgid "The issue could not be saved." -msgstr "%s Obiekt(y) utworzono." +msgstr "Nie udało się zapisać problemu." #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_new.coffee #: app/assets/javascripts/app/controllers/_channel/_email_signature.coffee @@ -9578,10 +9689,8 @@ msgstr "%s Obiekt(y) utworzono." #: app/assets/javascripts/app/controllers/data_privacy.coffee #: app/assets/javascripts/app/controllers/object_manager.coffee #: app/assets/javascripts/app/lib/app_post/user_organization_autocompletion.coffee -#, fuzzy -#| msgid "%s Object(s) are created." msgid "The object could not be created." -msgstr "%s Obiekt(y) utworzono." +msgstr "Nie można utworzyć obiektu." #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_edit.coffee #: app/assets/javascripts/app/controllers/_channel/sms.coffee @@ -9591,10 +9700,8 @@ msgstr "%s Obiekt(y) utworzono." #: app/assets/javascripts/app/controllers/object_manager.coffee #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_idoit.coffee #: app/assets/javascripts/app/models/setting.coffee -#, fuzzy -#| msgid "%s Object(s) are updated." msgid "The object could not be updated." -msgstr "%s Obiekt(y) zaktualizowano." +msgstr "Nie można zaktualizować obiektu." #: app/assets/javascripts/app/controllers/knowledge_base/agent_controller.coffee msgid "The page is not available anymore" @@ -9671,10 +9778,8 @@ msgid "The sign-in failed. Please contact the Support team." msgstr "" #: app/assets/javascripts/app/controllers/ticket_zoom/article_view.coffee -#, fuzzy -#| msgid "The test run was successful." msgid "The signature was successfully verified." -msgstr "Testowe działanie wykonane pomyślnie." +msgstr "Podpis został pomyślnie zweryfikowany." #: app/assets/javascripts/app/views/generic/object_import/import_try.jst.eco msgid "The test run was successful." @@ -9695,17 +9800,13 @@ msgstr "" "AS." #: app/assets/javascripts/app/controllers/agent_ticket_merge.coffee -#, fuzzy -#| msgid "%s Object(s) are created." msgid "The tickets could not be merged." -msgstr "%s Obiekt(y) utworzono." +msgstr "Nie udało się połączyć zgłoszeń." #: app/controllers/getting_started_controller.rb #: app/controllers/settings_controller.rb -#, fuzzy -#| msgid "%s Object(s) are created." msgid "The uploaded image could not be processed." -msgstr "%s Obiekt(y) utworzono." +msgstr "Przesłany obraz nie mógł zostać przetworzony." #: lib/external_credential/microsoft365.rb msgid "The user's 'preferred_username' could not be extracted from 'id_token'." @@ -9739,16 +9840,12 @@ msgstr "" "przekroczeniu aktualnie znanej liczby." #: app/assets/javascripts/app/views/channel/chat.jst.eco -#, fuzzy -#| msgid "There can be several reasons for the chat to not show up:" msgid "There are several possible reasons why the chat won't show up:" -msgstr "Może być kilka powodów:" +msgstr "Istnieje kilka możliwych powodów, dla których czat się nie pojawia:" #: app/assets/javascripts/app/views/channel/chat.jst.eco -#, fuzzy -#| msgid "There are too many people in queue for the chat." msgid "There are too many people in the chat queue." -msgstr "W kolejce jest za dużo ludzi." +msgstr "W kolejce czatu jest zbyt wiele osób." #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee msgid "There is an existing draft. Do you want to overwrite it?" @@ -9767,16 +9864,12 @@ msgid "There is no match for your search." msgstr "" #: app/assets/javascripts/app/views/data_privacy/preview.jst.eco -#, fuzzy -#| msgid "" -#| "There is no rollback of this deletion possible. If you are absolutely " -#| "sure to do this, then type in \"%s\" into the input." msgid "" "There is no rollback of this deletion possible. If you are sure that you " "wish to proceed, please type \"%s\" into the input." msgstr "" -"Nie będzie możliwe cofnięcie tego skasowanie. Jeśli jesteś pewien, to wpisz " -"\"%s\" w polu wejścia." +"Nie ma możliwości wycofania tego usunięcia. Jeśli jesteś pewien, że chcesz " +"kontynuować, wpisz „%s” w polu wejściowym." #: app/assets/javascripts/app/controllers/_manage/security.coffee msgid "Third-party Applications" @@ -9787,16 +9880,12 @@ msgid "This category is empty" msgstr "Ta kategoria jest pusta" #: app/assets/javascripts/app/controllers/_channel/chat.coffee -#, fuzzy -#| msgid "" -#| "This class gets added to the button on initialization and gets removed " -#| "once the chat connection got established." msgid "" "This class gets added to the button on initialization and will be removed " "once the chat connection is established." msgstr "" -"Ta klasa jest dodawana do guzika podczas inicjalizacji czatu i jest usuwana " -"po ustanowieniu połączenia." +"Ta klasa zostaje dodana do przycisku podczas inicjalizacji i zostanie " +"usunięta po nawiązaniu połączenia czatu." #: app/assets/javascripts/app/controllers/_ui_element/holiday_selector.coffee msgid "This entry already exists!" @@ -9825,10 +9914,10 @@ msgid "" msgstr "" #: app/assets/javascripts/app/views/object_manager/index.jst.eco -#, fuzzy -#| msgid "This might take some time where the system can't be used." msgid "This might take some time during which the system can't be used." -msgstr "Może to zająć trochę czasu, kiedy system nie może być używany." +msgstr "" +"Może to zająć trochę czasu, podczas którego system nie będzie mógł być " +"używany." #: app/views/knowledge_base/public/_top_banner.html.erb msgid "This page is invisible to the public." @@ -9855,16 +9944,12 @@ msgid "This service enables Zammad to connect with your LDAP server." msgstr "Usługa ta umożliwia Zammadowi połączenie się z serwerem LDAP." #: app/assets/javascripts/app/controllers/_integration/check_mk.coffee -#, fuzzy -#| msgid "" -#| "This service receives http requests or emails from %s and creates tickets " -#| "with host and service." msgid "" "This service receives HTTP requests or emails from %s and creates tickets " "with host and service." msgstr "" -"Usługa ta odbiera żądania http lub e-maile od %s i tworzy bilety z hostem i " -"usługą." +"Ta usługa odbiera żądania HTTP lub wiadomości e-mail od %s i tworzy " +"zgłoszenia z hostem i usługą." #: app/assets/javascripts/app/controllers/_integration/icinga.coffee #: app/assets/javascripts/app/controllers/_integration/monit.coffee @@ -9900,10 +9985,8 @@ msgid "This ticket was merged into" msgstr "To zgłoszenie zostało złączone z" #: app/assets/javascripts/app/views/widget/mention.jst.eco -#, fuzzy -#| msgid "User has no access and will not recieve notifications." msgid "This user has no access and will not receive notifications." -msgstr "Użytkownik nie ma dostępu i nie będzie otrzymywać powiadomień." +msgstr "Ten użytkownik nie ma dostępu i nie będzie otrzymywać powiadomień." #: app/assets/javascripts/app/controllers/user.coffee msgid "" @@ -10007,10 +10090,8 @@ msgid "Ticket escalation" msgstr "Przeterminowane Zgłoszenie" #: app/assets/javascripts/app/lib/mixins/ticket_mass_updatable.coffee -#, fuzzy -#| msgid "Tickets assigned to me: %s of %s" msgid "Ticket failed to save: %s" -msgstr "Przydzielone do mnie: %s z %s" +msgstr "Zgłoszenie nie zostało zapisane: %s" #: app/assets/javascripts/app/controllers/_profile/notification.coffee msgid "Ticket reminder reached" @@ -10078,7 +10159,7 @@ msgstr "Zgłoszenia użytkownika" #: app/assets/javascripts/app/views/profile/out_of_office.jst.eco msgid "Till" -msgstr "Do góry" +msgstr "Do" #: app/assets/javascripts/app/views/cti/caller_log.jst.eco #: app/assets/javascripts/app/views/generic/sla_times.jst.eco @@ -10196,16 +10277,12 @@ msgid "To select placeholders from a list, just enter \"::\"." msgstr "Aby wybrać pola wyboru z listy, po prostu wpisz \"::\"." #: app/assets/javascripts/app/controllers/_integration/slack.coffee -#, fuzzy -#| msgid "" -#| "To set up this service you need to create a new |\"Incoming webhook\"| in " -#| "your %s integration panel, and enter the web hook URL below." msgid "" "To set up this service you need to create a new |\"Incoming webhook\"| in " "your %s integration panel and enter the webhook URL below." msgstr "" -"Aby skonfigurować tę usługę musisz utworzyć nowy |\"Incoming webhook\"| w " -"panelu integracyjnym %s i wpisać poniżej adres URL haka internetowego." +"Aby skonfigurować tę usługę, musisz utworzyć nowy |\"Przychodzący webhook\"| " +"w panelu integracyjnym %s i wprowadź poniżej adres URL webhooka." #: db/seeds/roles.rb msgid "To work on Tickets." @@ -10292,12 +10369,12 @@ msgstr "" #: app/assets/javascripts/app/controllers/_integration/slack.coffee #: app/assets/javascripts/app/controllers/trigger.coffee msgid "Trigger" -msgstr "Triggery" +msgstr "Wyzwalacz" #: app/assets/javascripts/app/controllers/trigger.coffee #: db/seeds/permissions.rb msgid "Triggers" -msgstr "Triggery" +msgstr "Wyzwalacze" #: app/assets/javascripts/app/controllers/trigger.coffee msgid "Triggers are …" @@ -10305,7 +10382,7 @@ msgstr "Wyzwalacze to…" #: app/assets/javascripts/app/lib/app_post/websocket.coffee msgid "Trying to reconnect…" -msgstr "" +msgstr "Próbuję ponownie się połączyć…" #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee msgid "Tue" @@ -10401,10 +10478,8 @@ msgid "URL (AJAX endpoint)" msgstr "" #: app/controllers/first_steps_controller.rb db/seeds/overviews.rb -#, fuzzy -#| msgid "Unassigned & Open" msgid "Unassigned & Open Tickets" -msgstr "Nieprzydzielone i Otwarte" +msgstr "Nieprzypisane i Otwarte" #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco #: app/assets/javascripts/app/views/google/list.jst.eco @@ -10683,10 +10758,8 @@ msgstr "Ustawienia użytkownika" #: app/assets/javascripts/app/controllers/getting_started/admin.coffee #: app/assets/javascripts/app/controllers/signup.coffee -#, fuzzy -#| msgid "%s Object(s) are created." msgid "User could not be created." -msgstr "%s Obiekt(y) utworzono." +msgstr "Nie udało się utworzyć użytkownika." #: lib/external_credential/google.rb msgid "User email could not be extracted from 'id_token'." @@ -10788,10 +10861,8 @@ msgid "Verification Email not found in mailbox." msgstr "" #: app/assets/javascripts/app/controllers/_plugin/user_signup_check.coffee -#, fuzzy -#| msgid "When notification is being sent." msgid "Verification email could not be sent." -msgstr "Gdy wysyłane jest powiadomienie." +msgstr "Nie udało się wysłać e-maila weryfikacyjnego." #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco #: app/assets/javascripts/app/views/getting_started/email.jst.eco @@ -10890,10 +10961,8 @@ msgid "Visible to everyone" msgstr "Widoczne dla wszystkich" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee -#, fuzzy -#| msgid "Visible to agents & editors" msgid "Visible to readers & editors" -msgstr "Widoczny dla agentów i redaktorów" +msgstr "Widoczne dla czytelników i redaktorów" #: app/assets/javascripts/app/controllers/_integration/placetel.coffee #: app/assets/javascripts/app/controllers/_integration/sipgate_io.coffee @@ -10926,25 +10995,14 @@ msgstr "" "ponownie później lub wyślij nam e-mail. Dziękuję Ci!" #: app/assets/javascripts/app/views/import/otrs.jst.eco -#, fuzzy -#| msgid "" -#| "We detected OTRS BPM processes which can't get imported into Zammad, " -#| "since we currently don't support these kind of workflows." msgid "" "We detected OTRS BPM processes that can't get imported into Zammad since we " "currently don't support this kind of workflows." msgstr "" -"Wykryliśmy procesy OTRS BPM, które nie mogą zostać zaimportowane do Zammadu, " -"ponieważ obecnie nie obsługujemy tego typu procesów." +"Wykryliśmy procesy OTRS BPM, których nie można zaimportować do Zammad, " +"ponieważ obecnie nie obsługujemy tego rodzaju przepływów pracy." #: app/assets/javascripts/app/views/import/otrs.jst.eco -#, fuzzy -#| msgid "" -#| "We found a lot of dynamic fields which are not common in Zammad, as we " -#| "follow a different approach to ticket attributes. Zammad uses also tags " -#| "in addition to custom fields to classify tickets. This difference can " -#| "create a new philosophy of your ticket attributes / tags compared to your " -#| "current use of dynamic fields in OTRS." msgid "" "We found a lot of dynamic fields which are not common in Zammad, as we take " "a different approach to ticket attributes. Zammad also uses tags in addition " @@ -10952,11 +11010,11 @@ msgid "" "philosophy of your ticket attributes / tags compared to your current use of " "dynamic fields in OTRS." msgstr "" -"Znaleźliśmy wiele dynamicznych pól, które nie są powszechne w Zammadzie, " -"ponieważ stosujemy inne podejście do atrybutów biletów. Zammad oprócz " -"własnych pól klasyfikacji biletów używa także znaczników. Różnica ta może " -"stworzyć nową filozofię atrybutów / tagów twoich biletów w porównaniu z " -"używaniem dynamicznych pól w OTRS." +"Znaleźliśmy wiele pól dynamicznych, które nie są powszechne w Zammad, " +"ponieważ mamy inne podejście do atrybutów zgłoszeń. Zammad używa również " +"tagów oprócz pól niestandardowych do klasyfikowania zgłoszeń. Ta różnica " +"może stworzyć nową filozofię atrybutów / tagów zgłoszenia w porównaniu do " +"obecnego wykorzystania pól dynamicznych w OTRS." #: app/assets/javascripts/app/controllers/_channel/email.coffee #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee @@ -11063,10 +11121,8 @@ msgid "Week" msgstr "Tydzień" #: app/assets/javascripts/app/controllers/_ui_element/time_range.coffee -#, fuzzy -#| msgid "Week" msgid "Week(s)" -msgstr "Tydzień" +msgstr "Tygodni/a" #: app/assets/javascripts/app/controllers/_profile/linked_accounts.coffee msgid "Weibo" @@ -11169,10 +11225,8 @@ msgid "Will be published" msgstr "Będzie opublikowany" #: app/views/knowledge_base/public/_top_banner.html.erb -#, fuzzy -#| msgid "Will be published" msgid "Will be published on" -msgstr "Będzie opublikowany" +msgstr "Zostanie opublikowany w dniu" #: db/seeds/settings.rb msgid "Will be shown in the app and is included in email footers." @@ -11328,15 +11382,11 @@ msgstr "" #: app/assets/javascripts/app/views/microsoft365/app_config.jst.eco #: app/assets/javascripts/app/views/telegram/bot_add.jst.eco #: app/assets/javascripts/app/views/twitter/app_config.jst.eco -#, fuzzy -#| msgid "" -#| "The tutorial on how to manage a %s is hosted on our online documentation " -#| "%l." msgid "" "You can find a tutorial on how to manage a %s in our online documentation %l." msgstr "" -"Samouczek dotyczący zarządzania% s znajduje się w naszej dokumentacji online" -"% l." +"Samouczek dotyczący zarządzania %s można znaleźć w naszej dokumentacji " +"online %l." #: app/assets/javascripts/app/views/profile/token_access.jst.eco msgid "" @@ -11467,13 +11517,6 @@ msgid "" msgstr "Użyłeś %s w treści ale nie dodałeś załącznika. Na pewno kontynuować?" #: app/assets/javascripts/app/views/karma/index.jst.eco -#, fuzzy -#| msgid "" -#| "You |accumulate positive Karma| when you regularly answer and close " -#| "tickets on time and when you use advanced features such as text modules, " -#| "ticket reminders or tagging tickets. Zammad |Karma will decrease| when " -#| "you have re-opend tickets, escalated tickets or tickets that are two or " -#| "more days overdue." msgid "" "You |accumulate positive Karma| when you regularly answer and close tickets " "on time and when you use advanced features such as text modules, ticket " @@ -11481,23 +11524,19 @@ msgid "" "opened tickets, escalated tickets, or tickets that are two or more days " "overdue." msgstr "" -"Zwiększasz swoją pozytywną Karmę jesli regularnie odpowiadasz na zgłoszenia " -"i zamykasz je na czas oraz kiedy używasz funkcji takich jak moduły tekstowe, " -"przypomnienia czy poprawnie tagujesz zgłoszenia. Twoja Karma zmniejsza się " -"kiedy obsługiwane przez Ciebie zgłoszenia są otwierane powtórnie, kiedy są " -"eskalowane lub kiedy są przeterminowane więcej niż o dwa dni." +"|Zbierasz pozytywną Karmę| kiedy regularnie odbierasz i zamykasz zgłoszenia " +"na czas oraz kiedy korzystasz z zaawansowanych funkcji, takich jak moduły " +"tekstowe, przypomnienia o zgłoszeniach czy tagowanie zgłoszeń. Zammad |Karma " +"zmniejszy się| gdy masz ponownie otwarte zgłoszenia, eskalowane zgłoszenia " +"lub zgłoszenia opóźnione o co najmniej dwa dni." #: app/assets/javascripts/app/views/login.jst.eco -#, fuzzy -#| msgid "" -#| "You're already registered with your email address if you've been in touch " -#| "with our support team." msgid "" "You're already registered with your email address if you've been in touch " "with our Support team." msgstr "" -"Twój adres e-mail jest zarejestrowany, jeśli skontaktowałeś się z naszym " -"zespołem pomocy technicznej." +"Jesteś już zarejestrowany przy użyciu swojego adresu e-mail, jeśli " +"kontaktowałeś się z naszym zespołem pomocy technicznej." #: app/assets/javascripts/app/controllers/_ui_element/richtext_additions/embed_video_button.coffee msgid "YouTube or Vimeo address" @@ -11587,28 +11626,20 @@ msgid "Zammad" msgstr "" #: app/assets/javascripts/app/views/channel/chat.jst.eco -#, fuzzy -#| msgid "" -#| "Zammad Chat requires jQuery. If you don't already use it on your website " -#| "include it like this:" msgid "" "Zammad Chat requires jQuery. If you don't already use it on your website, " "you can add it like this:" msgstr "" -"Zammad Czat wymaga jQuery. Jeżeli nie jest już wykorzystywany dodaj do kodu " -"strony:" +"Zammad Chat wymaga jQuery. Jeśli nie używasz go jeszcze w swojej witrynie, " +"możesz go dodać w ten sposób:" #: app/assets/javascripts/app/views/channel/form.jst.eco -#, fuzzy -#| msgid "" -#| "Zammad Chat requires jQuery. If you don't already use it on your website " -#| "include it like this:" msgid "" "Zammad Forms requires jQuery. If you don't already use it on your website, " "you can add it like this:" msgstr "" -"Zammad Czat wymaga jQuery. Jeżeli nie jest już wykorzystywany dodaj do kodu " -"strony:" +"Zammad Forms wymaga jQuery. Jeśli nie używasz go jeszcze w swojej witrynie, " +"możesz go dodać w ten sposób:" #: db/seeds/community_user_resources.rb msgid "Zammad Foundation" @@ -11647,16 +11678,12 @@ msgstr "" #: app/assets/javascripts/app/views/generic/login_preview.jst.eco #: app/assets/javascripts/app/views/login.jst.eco -#, fuzzy -#| msgid "" -#| "Zammad is currently in maintenance mode. Only administrators can login. " -#| "Please wait until the maintenance window is over." msgid "" "Zammad is currently in maintenance mode. Only administrators can log in. " "Please wait until the maintenance window is over." msgstr "" -"Zammad jest w trybie konserwacji. Tylko użytkownicy z prawami Administratora " -"mogą się zalogować. Proszę zaczekać aż okno konserwacji zostanie zamknięte." +"Zammad jest obecnie w trybie konserwacji. Tylko administratorzy mogą się " +"zalogować. Poczekaj na zakończenie okresu konserwacji." #: app/assets/javascripts/app/controllers/_plugin/maintenance.coffee msgid "Zammad is restarting…" @@ -11715,28 +11742,20 @@ msgid "archived" msgstr "" #: app/models/transaction/notification.rb -#, fuzzy -#| msgid "Assigned" msgid "are assigned" -msgstr "przydzielone" +msgstr "są przypisane" #: app/models/transaction/notification.rb -#, fuzzy -#| msgid "Mentions Group" msgid "are in group" -msgstr "Wspomina o grupie" +msgstr "są w grupie" #: app/models/transaction/notification.rb -#, fuzzy -#| msgid "Unsubscribe" msgid "are subscribed" -msgstr "Nie obserwuj" +msgstr "są subskrybowane" #: app/models/transaction/notification.rb -#, fuzzy -#| msgid "Out of office replacement" msgid "are the out-of-office replacement of the owner" -msgstr "Zastępstwo" +msgstr "są zastępstwem właściciela poza biurem" #: app/assets/javascripts/app/views/ticket_overview/batch_overlay.jst.eco msgid "assign tickets" @@ -11760,9 +11779,8 @@ msgstr "przed (względnie)" #: app/assets/javascripts/app/views/generic/sla_times.jst.eco #: app/assets/javascripts/app/views/sla/index.jst.eco -#, fuzzy msgid "between agent updates" -msgstr "Ostatnie Aktualizacje" +msgstr "między aktualizacjami agentów" #: app/assets/javascripts/app/controllers/cti.coffee msgid "busy" @@ -11773,9 +11791,8 @@ msgid "by" msgstr "przez" #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee -#, fuzzy msgid "changed to" -msgstr "Zmienione" +msgstr "zmienić na" #: db/seeds/ticket_article_types.rb msgid "chat" @@ -11841,12 +11858,12 @@ msgstr "utworzone" #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee msgid "current user" -msgstr "aktualny urzytkownik" +msgstr "aktualny użytkownik" #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee msgid "current user organization" -msgstr "Organizacja aktualnego użytkownika" +msgstr "organizacja aktualnego użytkownika" #: lib/calendar_subscriptions/tickets.rb msgid "customer" @@ -11936,9 +11953,8 @@ msgid "example macro" msgstr "" #: db/seeds/ticket_article_types.rb -#, fuzzy msgid "facebook direct-message" -msgstr "twitter direct-message" +msgstr "bezpośrednia wiadomość na Facebooku" #: db/seeds/ticket_article_types.rb msgid "facebook feed comment" @@ -12202,10 +12218,8 @@ msgid "note" msgstr "notatka" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee -#, fuzzy -#| msgid "no" msgid "now" -msgstr "nie" +msgstr "teraz" #: db/seeds/ticket_state_types.rb db/seeds/ticket_states.rb msgid "open" @@ -12246,10 +12260,8 @@ msgid "phone" msgstr "telefon" #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee -#, fuzzy -#| msgid "Public" msgid "public" -msgstr "Publiczny" +msgstr "publiczny" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee msgid "published" @@ -12357,10 +12369,8 @@ msgid "show more" msgstr "pokaż więcej" #: db/seeds/settings.rb -#, fuzzy -#| msgid "Placetel" msgid "sipgate.io Token" -msgstr "Placetel" +msgstr "sipgate.io Token" #: db/seeds/settings.rb msgid "sipgate.io alternative FQDN" diff --git a/i18n/zammad.pt-br.po b/i18n/zammad.pt-br.po index 460a26fe9..606493a5b 100644 --- a/i18n/zammad.pt-br.po +++ b/i18n/zammad.pt-br.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: zammad\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2022-04-28 03:30+0000\n" -"Last-Translator: Victor Cezario \n" +"PO-Revision-Date: 2022-06-01 03:30+0000\n" +"Last-Translator: Danniel Macedo \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt-br\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.12\n" +"X-Generator: Weblate 4.12.1\n" #. Default date format to use for the current locale. #. These placeholders are supported: @@ -372,6 +372,16 @@ msgid "" "If you have customers with different business hours, you can create multiple " "calendars. Tickets are linked to calendars using **SLAs**." msgstr "" +"Um **calendário** é necessário para calcular os encaminhamentos com base no " +"horário comercial e enviar notificações de encaminhamento.\n" +"\n" +"Defina um calendário **\"padrão\"** válido em todo o sistema. As " +"notificações de escalação só serão enviadas aos seus agentes durante o " +"horário comercial definido.\n" +"\n" +"Se você tiver clientes com horários comerciais diferentes, poderá criar " +"vários calendários. Os ingressos são vinculados a calendários usando " +"**SLAs**." #: app/controllers/getting_started_controller.rb msgid "A URL looks like this: https://zammad.example.com" @@ -910,7 +920,7 @@ msgstr "Aplicar" #: app/assets/javascripts/app/views/ticket_shared_draft_modal.coffee msgid "Apply Shared Draft" -msgstr "" +msgstr "Aplicar Rascunho Compartilhado" #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee #: app/assets/javascripts/app/controllers/report.coffee @@ -3673,6 +3683,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "Baixe e instale o %s Plugins de Migração em sua %s instância %s." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Esboço" @@ -6181,7 +6192,9 @@ msgstr "Macro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Macros" @@ -8405,6 +8418,7 @@ msgid "Save" msgstr "Salvar" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.pt-pt.po b/i18n/zammad.pt-pt.po index 9fd654bd9..3fc9ccdce 100644 --- a/i18n/zammad.pt-pt.po +++ b/i18n/zammad.pt-pt.po @@ -3805,6 +3805,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "Baixe e instale o Plugin de Migração% s na sua instância% s." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Rascunho" @@ -6432,7 +6433,9 @@ msgstr "Macro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Macros" @@ -8708,6 +8711,7 @@ msgid "Save" msgstr "Guardar" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.ro-ro.po b/i18n/zammad.ro-ro.po index 732a9acdf..2caf028a7 100644 --- a/i18n/zammad.ro-ro.po +++ b/i18n/zammad.ro-ro.po @@ -3771,6 +3771,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "Descărcați și instalați pluginul de migrare %s pe instanța %s." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "" @@ -6331,7 +6332,9 @@ msgstr "Macro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Macros" @@ -8596,6 +8599,7 @@ msgid "Save" msgstr "Salvează" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "" diff --git a/i18n/zammad.ru.po b/i18n/zammad.ru.po index 38c1481e6..a661ff79c 100644 --- a/i18n/zammad.ru.po +++ b/i18n/zammad.ru.po @@ -3821,6 +3821,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "Скачайте и установите модуль переноса %s на свой экземпляр %s." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Черновик" @@ -6395,7 +6396,9 @@ msgstr "Макрос" msgid "Macro group restrictions do not cover all tickets" msgstr "Ограничения группы макросов не распространяются на все заявки" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Макросы" @@ -8635,6 +8638,7 @@ msgid "Save" msgstr "Сохранить" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "Сохранить черновик" diff --git a/i18n/zammad.rw.po b/i18n/zammad.rw.po index 50ff79771..dfb276087 100644 --- a/i18n/zammad.rw.po +++ b/i18n/zammad.rw.po @@ -3778,6 +3778,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "Shyiramo plugin %s yo kwimura muri instance %s" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Inyandikomushinga" @@ -6368,7 +6369,9 @@ msgstr "bigari" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "bigari" @@ -8631,6 +8634,7 @@ msgid "Save" msgstr "bika" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.sk.po b/i18n/zammad.sk.po index 70f642b92..570ec1875 100644 --- a/i18n/zammad.sk.po +++ b/i18n/zammad.sk.po @@ -3691,6 +3691,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "" @@ -6153,7 +6154,9 @@ msgstr "" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Makrá" @@ -8386,6 +8389,7 @@ msgid "Save" msgstr "Ulož" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "" diff --git a/i18n/zammad.sl.po b/i18n/zammad.sl.po index 8406a0e85..9ce3b2436 100644 --- a/i18n/zammad.sl.po +++ b/i18n/zammad.sl.po @@ -3759,6 +3759,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "" @@ -6194,7 +6195,9 @@ msgstr "Ukaz" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Ukazi" @@ -8445,6 +8448,7 @@ msgid "Save" msgstr "Shrani" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "" diff --git a/i18n/zammad.sr-latn-rs.po b/i18n/zammad.sr-latn-rs.po index a1094b7fa..d19382f34 100644 --- a/i18n/zammad.sr-latn-rs.po +++ b/i18n/zammad.sr-latn-rs.po @@ -3750,6 +3750,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "Download and install the %s Migration Plugin on your %s instance." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Draft" @@ -6301,7 +6302,9 @@ msgstr "Makro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Makroi" @@ -8562,6 +8565,7 @@ msgid "Save" msgstr "Sačuvaj" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.sv-se.po b/i18n/zammad.sv-se.po index 766d0ccf9..abe803159 100644 --- a/i18n/zammad.sv-se.po +++ b/i18n/zammad.sv-se.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: zammad\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2022-05-06 03:30+0000\n" -"Last-Translator: Thomas \n" +"PO-Revision-Date: 2022-06-13 07:28+0000\n" +"Last-Translator: Louise Forsen \n" "Language-Team: Swedish \n" "Language: sv-se\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.12\n" +"X-Generator: Weblate 4.12.1\n" #. Default date format to use for the current locale. #. These placeholders are supported: @@ -52,6 +52,10 @@ msgid "" "filesystem. You can switch between the modules even on a system that is " "already in production without any loss of data." msgstr "" +"\"Databas\" lagrar alla bilagor i databasen (rekommenderas ej för lagring av " +"stora mängder data). \"Filsystem\" lagrar datan i filsystemet. Du kan växla " +"mellan modulerna utan att förlora någon data även om systemet redan är i " +"produktion." #: app/assets/javascripts/app/views/telegram/bot_add.jst.eco #: app/assets/javascripts/app/views/telegram/bot_edit.jst.eco @@ -109,28 +113,22 @@ msgid "%s created organization |%s|" msgstr "%s skapade organisation |%s|" #: app/assets/javascripts/app/models/role.coffee -#, fuzzy -#| msgid "%s created Group |%s|" msgid "%s created role |%s|" -msgstr "%s skapade Grupp |%s| " +msgstr "%s skapade grupp |%s|" #: app/assets/javascripts/app/models/ticket.coffee -#, fuzzy -#| msgid "%s created Ticket |%s|" msgid "%s created ticket |%s|" -msgstr "%s skapade Ärende |%s| " +msgstr "%s skapade ärende |%s|" #: app/assets/javascripts/app/models/user.coffee -#, fuzzy -#| msgid "%s created User |%s|" msgid "%s created user |%s|" -msgstr "%s skapade Användare |%s|" +msgstr "%s skapade användare |%s|" #: app/assets/javascripts/app/views/import/freshdesk.jst.eco #: app/assets/javascripts/app/views/import/kayako.jst.eco #: app/assets/javascripts/app/views/import/zendesk.jst.eco msgid "%s credentials" -msgstr "%s uppgifter " +msgstr "%s uppgifter" #: app/assets/javascripts/app/models/user.coffee msgid "%s ended switch to |%s|!" @@ -139,7 +137,7 @@ msgstr "%s slutförde byte till |%s|!" #: app/assets/javascripts/app/views/integration/exchange_last_import.jst.eco #: app/assets/javascripts/app/views/integration/exchange_summary.jst.eco msgid "%s folders" -msgstr "" +msgstr "%s mappar" #: app/assets/javascripts/app/views/integration/ldap_last_import.jst.eco #: app/assets/javascripts/app/views/integration/ldap_summary.jst.eco @@ -151,49 +149,35 @@ msgstr "%s grupper till %s roll-tilldelningar" #: app/assets/javascripts/app/views/google/list.jst.eco #: app/assets/javascripts/app/views/microsoft365/list.jst.eco msgid "%s is inactive, please select an active one." -msgstr "" +msgstr "%s är inaktiv, välj en aktiv." #: app/assets/javascripts/app/views/generic/object_import/imported.jst.eco -#, fuzzy -#| msgid "%s Object(s) have been created." msgid "%s object(s) have been created." -msgstr "%s Objekt har skapats." +msgstr "%s objekt har skapats." #: app/assets/javascripts/app/views/generic/object_import/imported.jst.eco -#, fuzzy -#| msgid "%s Object(s) have been updated." msgid "%s object(s) have been updated." -msgstr "%s Objekt uppdaterades." +msgstr "%s objekt uppdaterades." #: app/assets/javascripts/app/views/generic/object_import/imported.jst.eco -#, fuzzy -#| msgid "%s Object(s) were deleted." msgid "%s object(s) were deleted." -msgstr "%s Objekt raderades." +msgstr "%s objekt raderades." #: app/assets/javascripts/app/views/generic/object_import/import_try.jst.eco -#, fuzzy -#| msgid "%s Object(s) are created." msgid "%s object(s) will be created." -msgstr "%s Objekt har skapats." +msgstr "%s objekt kommer att skapas." #: app/assets/javascripts/app/views/generic/object_import/import_try.jst.eco -#, fuzzy -#| msgid "%s Object(s) were deleted." msgid "%s object(s) will be deleted." -msgstr "%s Objekt raderades." +msgstr "%s objekt kommer att raderas." #: app/assets/javascripts/app/views/generic/object_import/import_try.jst.eco -#, fuzzy -#| msgid "%s Object(s) are updated." msgid "%s object(s) will be updated." -msgstr "%s Objekt är uppdaterade." +msgstr "%s objekt kommer att uppdateras." #: app/assets/javascripts/app/views/dashboard/stats/ticket_in_process.jst.eco -#, fuzzy -#| msgid "%s of your tickets are currently in process." msgid "%s of my tickets are currently in process." -msgstr "%s av dina ärenden är för närvarande i bearbetning." +msgstr "%s av mina ärenden är under bearbetning." #: app/assets/javascripts/app/views/dashboard/stats/ticket_escalation.jst.eco msgid "%s of my tickets escalated." @@ -208,6 +192,8 @@ msgid "" "%s recommends using OAuth. %s announced it's going to drop Basic " "Authentication support in the future." msgstr "" +"%s rekommenderar att OAuth används. %s har meddelat att Basic Authentication " +"inte kommer att stödjas i framtiden." #: app/assets/javascripts/app/controllers/agent_ticket_merge.coffee msgid "%s required!" @@ -220,17 +206,15 @@ msgstr "%s startade en session" #: app/assets/javascripts/app/views/import/freshdesk.jst.eco #: app/assets/javascripts/app/views/import/kayako.jst.eco msgid "%s subdomain" -msgstr "" +msgstr "%s underdomän" #: app/assets/javascripts/app/models/user.coffee msgid "%s switched to |%s|!" -msgstr "%s bytte till |%s|! " +msgstr "%s bytte till |%s|!" #: app/assets/javascripts/app/models/ticket_article.coffee -#, fuzzy -#| msgid "%s created Article for |%s|" msgid "%s updated article for |%s|" -msgstr "%s skapade en artikel åt |%s|" +msgstr "%s uppdaterade en artikel åt |%s|" #: app/assets/javascripts/app/models/data_privacy_task.coffee #, fuzzy @@ -239,16 +223,12 @@ msgid "%s updated data privacy task to delete user ID |%s|" msgstr "%s startade GDRP-uppgiften att radera |%s|" #: app/assets/javascripts/app/models/group.coffee -#, fuzzy -#| msgid "%s updated Group |%s|" msgid "%s updated group |%s|" -msgstr "%s uppdatera Grupp |%s| " +msgstr "%s uppdaterade grupp |%s|" #: app/assets/javascripts/app/models/organization.coffee -#, fuzzy -#| msgid "%s updated Organization |%s|" msgid "%s updated organization |%s|" -msgstr "%s uppdaterade Organisation |%s| " +msgstr "%s uppdaterade organisation |%s|" #: app/assets/javascripts/app/models/role.coffee #, fuzzy @@ -430,7 +410,7 @@ msgstr "" #: app/assets/javascripts/app/views/dashboard/first_steps_test_ticket_finish.jst.eco msgid "" "A test ticket has been created, you can find it in your overview \"%s\" %l." -msgstr "Ett testärende har skapats, du hittar det i din översikt \"%s\" %l. " +msgstr "Ett testärende har skapats och du hittar det i din översikt \"%s\" %l." #: app/assets/javascripts/app/controllers/_integration/cti.coffee msgid "A user is required!" @@ -467,7 +447,7 @@ msgstr "API token" #: db/seeds/permissions.rb msgid "Access to %s" -msgstr "Åtkomst till %s " +msgstr "Åtkomst till %s" #: db/seeds/permissions.rb msgid "Access to Agent Tickets based on Group Access" @@ -2010,13 +1990,13 @@ msgstr "" #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee msgid "Close current tab" -msgstr "Stäng nuvarande tabb" +msgstr "Stäng nuvarande flik" #: app/assets/javascripts/app/models/macro.coffee #: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #: db/seeds/settings.rb msgid "Close tab" -msgstr "Stäng tabb" +msgstr "Stäng flik" #: app/assets/javascripts/app/models/macro.coffee #: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco @@ -3795,6 +3775,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "Hämta och installera %s Migrationsplugin på din %s instans." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Utkast" @@ -6331,10 +6312,8 @@ msgstr "Ladda" #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_idoit.coffee #: app/assets/javascripts/app/controllers/widget/payload_example.coffee #: app/assets/javascripts/app/models/knowledge_base_answer_translation.coffee -#, fuzzy -#| msgid "Loading..." msgid "Loading failed." -msgstr "Laddar..." +msgstr "Sidan kunde inte laddas." #: app/assets/javascripts/app/lib/app_post/task_manager.coffee #: app/assets/javascripts/app/lib/base/jquery.textmodule.js @@ -6408,7 +6387,9 @@ msgstr "Macro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Macros" @@ -7691,16 +7672,15 @@ msgstr "Expertinställningar" #: app/assets/javascripts/app/views/profile/out_of_office.jst.eco #: db/seeds/permissions.rb msgid "Out of Office" -msgstr "Frånvaruhantering" +msgstr "Frånvarohantering" #: app/assets/javascripts/app/controllers/_dashboard/stats/ticket_load_measure.coffee msgid "Out of all open tickets (company-wide), how many are assigned to you?" -msgstr "" -"Av alla öppna ärenden (hela-företaget), hur många är tilldelade till dig?" +msgstr "Hur många av alla öppna ärenden i din organisation har tilldelats dig?" #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee msgid "Out of office replacement" -msgstr "Frånvaro ersättare" +msgstr "Ersättare" #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco #: app/assets/javascripts/app/views/channel/sms_account_overview.jst.eco @@ -8680,6 +8660,7 @@ msgid "Save" msgstr "Spara" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" @@ -10383,11 +10364,11 @@ msgstr "" #: app/assets/javascripts/app/controllers/ticket_link_add.coffee msgid "Ticket# is needed!" -msgstr "" +msgstr "Ärendenummer behövs" #: app/assets/javascripts/app/models/ticket_article.coffee msgid "TicketID" -msgstr "" +msgstr "Ärende-ID" #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee #: app/assets/javascripts/app/controllers/widget/user.coffee diff --git a/i18n/zammad.th.po b/i18n/zammad.th.po index d89804908..ad505183c 100644 --- a/i18n/zammad.th.po +++ b/i18n/zammad.th.po @@ -3584,6 +3584,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "" @@ -5991,7 +5992,9 @@ msgstr "" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "" @@ -8186,6 +8189,7 @@ msgid "Save" msgstr "" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "" diff --git a/i18n/zammad.tr.po b/i18n/zammad.tr.po index 981bf0308..f34767e65 100644 --- a/i18n/zammad.tr.po +++ b/i18n/zammad.tr.po @@ -3782,6 +3782,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "Download and install the %s Migration Plugin on your %s instance." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Draft" @@ -6390,7 +6391,9 @@ msgstr "Macro" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Makrolar" @@ -8666,6 +8669,7 @@ msgid "Save" msgstr "Kaydet" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.uk.po b/i18n/zammad.uk.po index 311fe8ea1..c1077b67a 100644 --- a/i18n/zammad.uk.po +++ b/i18n/zammad.uk.po @@ -3772,6 +3772,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "Завантажте і встановіть плагін міграції %s на Вашому екземплярі %s." #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "Чернетка" @@ -6350,7 +6351,9 @@ msgstr "Макрос" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "Макрос" @@ -8619,6 +8622,7 @@ msgid "Save" msgstr "Зберегти" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.vi.po b/i18n/zammad.vi.po index a453eea98..b800f13d3 100644 --- a/i18n/zammad.vi.po +++ b/i18n/zammad.vi.po @@ -3653,6 +3653,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "" @@ -6094,7 +6095,9 @@ msgstr "" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "" @@ -8335,6 +8338,7 @@ msgid "Save" msgstr "Lưu" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Save Draft" msgstr "" diff --git a/i18n/zammad.zh-cn.po b/i18n/zammad.zh-cn.po index 8214ac915..7e1aaff5d 100644 --- a/i18n/zammad.zh-cn.po +++ b/i18n/zammad.zh-cn.po @@ -3684,6 +3684,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "在您的 %s 系統上下載並安裝 %s 遷移插件" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "草稿" @@ -6244,7 +6245,9 @@ msgstr "宏处理" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "宏处理" @@ -8505,6 +8508,7 @@ msgid "Save" msgstr "保存" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/i18n/zammad.zh-tw.po b/i18n/zammad.zh-tw.po index 2f444a54d..533dd2848 100644 --- a/i18n/zammad.zh-tw.po +++ b/i18n/zammad.zh-tw.po @@ -3784,6 +3784,7 @@ msgid "Download and install the %s Migration Plugin on your %s instance." msgstr "在您的 %s 系統上下載並安裝 %s 遷移插件。" #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco msgid "Draft" msgstr "草稿" @@ -6355,7 +6356,9 @@ msgstr "巨集" msgid "Macro group restrictions do not cover all tickets" msgstr "" -#: app/assets/javascripts/app/controllers/macro.coffee db/seeds/permissions.rb +#: app/assets/javascripts/app/controllers/macro.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco +#: db/seeds/permissions.rb msgid "Macros" msgstr "巨集" @@ -8620,6 +8623,7 @@ msgid "Save" msgstr "儲存" #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee +#: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco #, fuzzy #| msgid "Draft" msgid "Save Draft" diff --git a/lib/excel_sheet.rb b/lib/excel_sheet.rb index 69d8afc62..e8a0b577c 100644 --- a/lib/excel_sheet.rb +++ b/lib/excel_sheet.rb @@ -156,10 +156,11 @@ class ExcelSheet record end case object[:data_type] - when 'boolean', 'select' - if object[:data_option] && object[:data_option]['options'] && object[:data_option]['options'][value] - value = object[:data_option]['options'][value] + when 'boolean', %r{^(multi|tree_)?select$} + if object[:data_option].present? && object[:data_option]['options'].present? + value = ObjectManager::Attribute.data_options_hash(object[:data_option]['options'])[value] end + @worksheet.write_string(@current_row, @current_column, value) if value.present? when 'datetime' @worksheet.write_date_time(@current_row, @current_column, timestamp_in_localtime(value), @format_time) if value.present? diff --git a/spec/db/migrate/issue_4089_fix_draft_attribute_spec.rb b/spec/db/migrate/issue_4089_fix_draft_attribute_spec.rb new file mode 100644 index 000000000..3e23ae48c --- /dev/null +++ b/spec/db/migrate/issue_4089_fix_draft_attribute_spec.rb @@ -0,0 +1,32 @@ +# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/ + +require 'rails_helper' + +RSpec.describe Issue4089FixDraftAttribute, type: :db_migration do + def field + ObjectManager::Attribute.find_by(name: 'shared_drafts', object_lookup_id: ObjectLookup.by_name('Group')) + end + + context 'when field does not exist', db_strategy: :reset do + before do + field.destroy + ObjectManager::Attribute.migration_execute + migrate + end + + it 'does create the field and set it not editable' do + expect(field.reload.editable).to be(false) + end + end + + context 'when field does exist' do + before do + field.update(editable: true) + migrate + end + + it 'does set the field to not editable' do + expect(field.reload.editable).to be(false) + end + end +end diff --git a/spec/jobs/trigger_webhook_job/record_payload/ticket/article_spec.rb b/spec/jobs/trigger_webhook_job/record_payload/ticket/article_spec.rb index b2018d03d..62ac2554f 100644 --- a/spec/jobs/trigger_webhook_job/record_payload/ticket/article_spec.rb +++ b/spec/jobs/trigger_webhook_job/record_payload/ticket/article_spec.rb @@ -24,6 +24,15 @@ RSpec.describe TriggerWebhookJob::RecordPayload::Ticket::Article do end end + describe 'Webhhok transfers "accounted_time" of an article as integer instead of float/double #4127' do + let(:entry) { create(:ticket_time_accounting, ticket_id: record.ticket.id, ticket_article_id: record.id, time_unit: 3.33) } + + it "stores value as 'accounted_time' key" do + entry + expect(generate['accounted_time']).to eq(3.33) + end + end + context 'when Article has stored attachments' do before do diff --git a/spec/models/channel/email_parser_spec.rb b/spec/models/channel/email_parser_spec.rb index 08d32c975..9550ff98c 100644 --- a/spec/models/channel/email_parser_spec.rb +++ b/spec/models/channel/email_parser_spec.rb @@ -632,6 +632,20 @@ RSpec.describe Channel::EmailParser, type: :model do include_examples 'adds message to ticket' end + context 'in visible text with a linebreak' do + let(:raw_mail) { <<~RAW.chomp } + From: me@example.com + To: customer@example.com + Subject: no reference + + Lorem ipsum dolor #{ticket_ref} + consetetur sadipscing elitr + sed diam nonumy eirmod + RAW + + include_examples 'adds message to ticket' + end + context 'as part of a larger word' do let(:ticket_ref) { "Foo#{Setting.get('ticket_hook')}#{Setting.get('ticket_hook_divider')}#{ticket.number}bar" } diff --git a/spec/models/ticket/article_spec.rb b/spec/models/ticket/article_spec.rb index a1e8f3914..384bc121a 100644 --- a/spec/models/ticket/article_spec.rb +++ b/spec/models/ticket/article_spec.rb @@ -34,7 +34,7 @@ RSpec.describe Ticket::Article, type: :model do describe 'Setting of ticket_define_email_from' do subject(:article) do - create(:ticket_article, sender_name: 'Agent', type_name: 'email') + create(:ticket_article, created_by: created_by, sender_name: 'Agent', type_name: 'email') end context 'when AgentName' do @@ -42,9 +42,22 @@ RSpec.describe Ticket::Article, type: :model do Setting.set('ticket_define_email_from', 'AgentName') end - it 'sets the from based on the setting' do - expect(article.reload.from).to eq("\"#{article.created_by.firstname} #{article.created_by.lastname}\" <#{article.ticket.group.email_address.email}>") + context 'with real sender' do + let(:created_by) { create(:user) } + + it 'sets the from to the realname of the user' do + expect(article.reload.from).to eq("\"#{article.created_by.firstname} #{article.created_by.lastname}\" <#{article.ticket.group.email_address.email}>") + end end + + context 'with no real sender (e.g. trigger or scheduler)' do + let(:created_by) { User.find(1) } + + it 'sets the from to realname of the mail address)' do + expect(article.reload.from).to eq("\"#{article.ticket.group.email_address.realname}\" <#{article.ticket.group.email_address.email}>") + end + end + end end diff --git a/spec/models/ticket_spec.rb b/spec/models/ticket_spec.rb index 16b195f35..eedd77423 100644 --- a/spec/models/ticket_spec.rb +++ b/spec/models/ticket_spec.rb @@ -1487,43 +1487,6 @@ RSpec.describe Ticket, type: :model do end end - describe 'Associations:' do - describe '#organization' do - subject(:ticket) { build(:ticket, customer: customer, organization: nil) } - - let(:customer) { create(:customer, :with_org) } - - context 'on creation' do - it 'automatically adopts the organization of its #customer' do - expect { ticket.save } - .to change(ticket, :organization).to(customer.organization) - end - end - - context 'on update of #customer.organization' do - context 'to nil' do - it 'automatically updates to #customer’s new value' do - ticket.save - - expect { customer.update(organization: nil) } - .to change { ticket.reload.organization }.to(nil) - end - end - - context 'to a different organization' do - let(:new_org) { create(:organization) } - - it 'automatically updates to #customer’s new value' do - ticket.save - - expect { customer.update(organization: new_org) } - .to change { ticket.reload.organization }.to(new_org) - end - end - end - end - end - describe '.search' do shared_examples 'search permissions' do diff --git a/spec/models/user/updates_ticket_organization_spec.rb b/spec/models/user/updates_ticket_organization_spec.rb new file mode 100644 index 000000000..769a201ca --- /dev/null +++ b/spec/models/user/updates_ticket_organization_spec.rb @@ -0,0 +1,52 @@ +# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/ + +require 'rails_helper' + +RSpec.describe User::UpdatesTicketOrganization, type: :model do + subject(:ticket) { build(:ticket, customer: customer, organization: nil) } + + let(:customer) { create(:customer, :with_org) } + + context 'when ticket is created' do + it 'automatically adopts the organization of its #customer' do + expect { ticket.save } + .to change(ticket, :organization).to(customer.organization) + end + end + + context 'when #customer.organization is updated' do + context 'when set to nil' do + it 'automatically updates to #customer’s new value' do + ticket.save + + expect { customer.update(organization: nil) } + .to change { ticket.reload.organization }.to(nil) + end + end + + context 'when #customer.organization is updated to a different organization' do + let(:old_org) { customer.organization } + let(:new_org) { create(:organization) } + + it 'automatically updates to #customer’s new value' do + ticket.save + + expect { customer.update(organization: new_org) } + .to change { ticket.reload.organization }.to(new_org) + end + + it 'has made all changes with user id 1' do + expect(ticket.updated_by.id).to eq 1 + end + + # https://github.com/zammad/zammad/issues/3952 + it 'does not send notifications' do + allow(NotificationFactory::Mailer).to receive(:send) + + customer.update(organization: old_org) + + expect(NotificationFactory::Mailer).not_to have_received(:send) + end + end + end +end diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb index 253a180c5..df598b21d 100644 --- a/spec/models/user_spec.rb +++ b/spec/models/user_spec.rb @@ -1009,14 +1009,14 @@ RSpec.describe User, type: :model do 'Trigger' => { 'created_by_id' => 0, 'updated_by_id' => 0 }, 'Translation' => { 'created_by_id' => 0, 'updated_by_id' => 0 }, 'ObjectManager::Attribute' => { 'created_by_id' => 0, 'updated_by_id' => 0 }, - 'User' => { 'created_by_id' => 1, 'out_of_office_replacement_id' => 1, 'updated_by_id' => 1 }, + 'User' => { 'created_by_id' => 2, 'out_of_office_replacement_id' => 1, 'updated_by_id' => 2 }, 'Organization' => { 'created_by_id' => 0, 'updated_by_id' => 0 }, 'Macro' => { 'created_by_id' => 0, 'updated_by_id' => 0 }, 'CoreWorkflow' => { 'created_by_id' => 0, 'updated_by_id' => 0 }, 'Mention' => { 'created_by_id' => 1, 'updated_by_id' => 0, 'user_id' => 1 }, 'Channel' => { 'created_by_id' => 0, 'updated_by_id' => 0 }, 'Role' => { 'created_by_id' => 0, 'updated_by_id' => 0 }, - 'History' => { 'created_by_id' => 5 }, + 'History' => { 'created_by_id' => 6 }, 'Webhook' => { 'created_by_id' => 0, 'updated_by_id' => 0 }, 'Overview' => { 'created_by_id' => 1, 'updated_by_id' => 0 }, 'ActivityStream' => { 'created_by_id' => 0 }, @@ -1055,6 +1055,11 @@ RSpec.describe User, type: :model do create(:'chat/agent') chat_agent_user = create(:'chat/agent', created_by_id: user.id, updated_by_id: user.id) + # invalid user (by email) which has been updated by the user which + # will get deleted (#3935) + invalid_user = build(:user, email: 'abc', created_by_id: user.id, updated_by_id: user.id) + invalid_user.save!(validate: false) + # move ownership objects group = create(:group, created_by_id: user.id) job = create(:job, updated_by_id: user.id) @@ -1108,6 +1113,7 @@ RSpec.describe User, type: :model do .and change(user_created_by, :out_of_office_replacement_id).to(1) expect { draft_start.reload }.to change(draft_start, :created_by_id).to(1) expect { draft_zoom.reload }.to change(draft_zoom, :created_by_id).to(1) + expect { invalid_user.reload }.to change(invalid_user, :created_by_id).to(1) end it 'does delete cache after user deletion' do diff --git a/spec/requests/knowledge_base_public/answers_spec.rb b/spec/requests/knowledge_base_public/answers_spec.rb index 7026868f0..2e1eed324 100644 --- a/spec/requests/knowledge_base_public/answers_spec.rb +++ b/spec/requests/knowledge_base_public/answers_spec.rb @@ -35,4 +35,39 @@ RSpec.describe 'KnowledgeBase public answers', type: :request do end end end + + describe '#render_alternative' do + context 'when a translation is available' do + before { create(:knowledge_base_translation, kb_locale: alternative_locale) } + + it 'returns OK for published answer' do + get help_answer_path(alternative_locale.system_locale.locale, category, published_answer) + expect(response).to have_http_status :ok + end + + it 'returns NOT FOUND for draft answer' do + get help_answer_path(alternative_locale.system_locale.locale, category, draft_answer) + expect(response).to have_http_status :not_found + end + + # https://github.com/zammad/zammad/issues/3931 + context 'when the category has been updated' do + let(:new_category) { create(:knowledge_base_category, knowledge_base: knowledge_base) } + + it 'returns NOT FOUND for published answer if old category is used' do + published_answer.update! category_id: new_category.id + + get help_answer_path(alternative_locale.system_locale.locale, category, published_answer) + expect(response).to have_http_status :not_found + end + + it 'returns OK for published answer if new category is used' do + published_answer.update! category_id: new_category.id + + get help_answer_path(alternative_locale.system_locale.locale, new_category, published_answer) + expect(response).to have_http_status :ok + end + end + end + end end diff --git a/spec/requests/tag_spec.rb b/spec/requests/tag_spec.rb index 52866f87d..fd1deb72f 100644 --- a/spec/requests/tag_spec.rb +++ b/spec/requests/tag_spec.rb @@ -100,6 +100,18 @@ RSpec.describe Tag, type: :request do include_examples 'no tag found using', search_term: '1foobar' include_examples 'no tag found using', search_term: 'foobar2' end + + context 'without search term' do + before do + create_list(:tag, 2, tag_item: tags.last) + create_list(:tag, 1, tag_item: tags.first) + end + + it 'most used is on first place without search term' do + get '/api/v1/tag_search', params: { term: '' } + expect(json_response.first['value']).to eq(tags.last.name) + end + end end end end diff --git a/spec/support/capybara/driven_by.rb b/spec/support/capybara/driven_by.rb index 3374fc668..a79122a7b 100644 --- a/spec/support/capybara/driven_by.rb +++ b/spec/support/capybara/driven_by.rb @@ -3,6 +3,8 @@ require_relative './set_up' RSpec.configure do |config| + capybara_examples_performed = 0 + config.before(:each, type: :system) do |example| Capybara.register_server :puma_wrapper do |app, port, host, **_options| @@ -39,12 +41,15 @@ RSpec.configure do |config| end config.after(:each, type: :system) do + capybara_examples_performed += 1 + # End the main capybara session only from time to time, to speed up tests and make + # sure memory consumption does not rise too much. # Make sure additional sessions (from using_sessions) are always ended # after every test and not kept alive. Selenium will automatically close # idle sessions which can cause 404 errors later. # (see https://github.com/teamcapybara/capybara/issues/2237) Capybara.send(:session_pool).reverse_each do |_mode, session| - if !session.eql?(Capybara.current_session) + if !session.eql?(Capybara.current_session) || (capybara_examples_performed % 100).zero? session.quit end end @@ -56,7 +61,8 @@ RSpec.configure do |config| # WebMock makes it impossible to have persistent http connections to Selenium, # which may cause overhead and Net::OpenTimeout errors. WebMock.disable! if !use_vcr - example.run + # rspec-retry + example.run_with_retry retry: 3, exceptions_to_retry: [Net::OpenTimeout, Net::ReadTimeout] WebMock.enable! if !use_vcr end end diff --git a/spec/support/rspec_retry.rb b/spec/support/rspec_retry.rb new file mode 100644 index 000000000..d9b4662b0 --- /dev/null +++ b/spec/support/rspec_retry.rb @@ -0,0 +1,11 @@ +# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/ + +require 'rspec/retry' + +RSpec.configure do |config| + # show retry status in spec process + config.verbose_retry = true + # show exception that triggers a retry if verbose_retry is set to true + config.display_try_failure_messages = true + # The list of exceptions to fail on should be configured in the individual :run_with_retry calls. +end diff --git a/spec/system/overview_spec.rb b/spec/system/overview_spec.rb index 015b2a1d8..352832266 100644 --- a/spec/system/overview_spec.rb +++ b/spec/system/overview_spec.rb @@ -324,4 +324,36 @@ RSpec.describe 'Overview', type: :system do end end end + + context 'when only one attribute is visible', authenticated_as: :user do + let(:user) { create(:agent, groups: [group]) } + let(:group) { create(:group, name: 'aaa') } + let(:ticket) { create(:ticket, group: group, customer: user) } + + let(:view) { { 's' => %w[title] } } + let(:condition) do + { + 'ticket.customer_id' => { + operator: 'is', + value: user.id + } + } + end + let(:overview) { create(:overview, condition: condition, view: view) } + + let(:overview_table_head_selector) { 'div.table-overview table.table thead' } + let(:expected_header_text) { 'TITLE' } + + before do + ticket + + visit "ticket/view/#{overview.link}" + end + + it 'shows only the title column' do + within :active_content, overview_table_head_selector do + expect(page).to have_css('th.js-tableHead[data-column-key="title"]', text: expected_header_text) + end + end + end end diff --git a/spec/system/search_spec.rb b/spec/system/search_spec.rb index beb95fece..e4b086aeb 100644 --- a/spec/system/search_spec.rb +++ b/spec/system/search_spec.rb @@ -232,4 +232,69 @@ RSpec.describe 'Search', type: :system, authenticated: true, searchindex: true d end end end + + describe 'Searches display all groups and owners on bulk selections #4054', authenticated_as: :authenticate do + let(:group1) { create(:group) } + let(:group2) { create(:group) } + let(:agent1) { create(:agent, groups: [group1]) } + let(:agent2) { create(:agent, groups: [group2]) } + let(:agent_all) { create(:agent, groups: [group1, group2]) } + let(:ticket1) { create(:ticket, group: group1, title: '4054 group 1') } + let(:ticket2) { create(:ticket, group: group2, title: '4054 group 2') } + + def authenticate + agent1 && agent2 && agent_all + ticket1 && ticket2 + agent_all + end + + def check_owner_empty + expect(page).to have_select('owner_id', text: '-', visible: :all) + expect(page).to have_no_select('owner_id', text: agent1.fullname, visible: :all) + expect(page).to have_no_select('owner_id', text: agent2.fullname, visible: :all) + end + + def click_ticket(ticket) + page.find(".js-tableBody tr.item[data-id='#{ticket.id}'] td.js-checkbox-field").click + end + + def check_owner_agent1_shown + expect(page).to have_select('owner_id', text: agent1.fullname) + expect(page).to have_no_select('owner_id', text: agent2.fullname) + end + + def check_owner_agent2_shown + expect(page).to have_no_select('owner_id', text: agent1.fullname) + expect(page).to have_select('owner_id', text: agent2.fullname) + end + + def check_owner_field + check_owner_empty + click_ticket(ticket1) + check_owner_agent1_shown + click_ticket(ticket1) + click_ticket(ticket2) + check_owner_agent2_shown + end + + context 'when search is used' do + before do + visit '#search/4054' + end + + it 'does show the correct owner selection for each bulk action' do + check_owner_field + end + end + + context 'when ticket overview is used' do + before do + visit '#ticket/view/all_unassigned' + end + + it 'does show the correct owner selection for each bulk action' do + check_owner_field + end + end + end end diff --git a/spec/system/ticket/create_spec.rb b/spec/system/ticket/create_spec.rb index 004fe7d06..f3207188d 100644 --- a/spec/system/ticket/create_spec.rb +++ b/spec/system/ticket/create_spec.rb @@ -946,4 +946,16 @@ RSpec.describe 'Ticket Create', type: :system do wait.until { page.find("input[name='#{field_name}']", visible: :all).value == '' } end end + + describe 'Wrong default values in ticket create when creating from user profile #4088' do + let(:customer) { create(:customer) } + + before do + visit "ticket/create/customer/#{customer.id}" + end + + it 'does show the default state when creating a ticket from a user profile' do + expect(page).to have_select('state_id', selected: 'open') + end + end end diff --git a/spec/system/ticket/update/full_quote_header_spec.rb b/spec/system/ticket/update/full_quote_header_spec.rb index 655336710..cab6851f0 100644 --- a/spec/system/ticket/update/full_quote_header_spec.rb +++ b/spec/system/ticket/update/full_quote_header_spec.rb @@ -365,10 +365,16 @@ RSpec.describe 'Ticket > Update > Full Quote Header', current_user_id: -> { curr end def timestamp_reply + format_string = if Capybara.current_driver == :zammad_firefox + '%A, %B %1d, %Y at %1I:%M:%S %p' + else + '%A, %B %1d, %Y, %1I:%M:%S %p' + end + expected .created_at .in_time_zone('Europe/London') - .strftime('%A, %B %1d, %Y, %1I:%M:%S %p') + .strftime(format_string) end def timestamp_forward diff --git a/test/integration/geo_ip_test.rb b/test/integration/geo_ip_test.rb index f0f20e0ce..6c9c609f7 100644 --- a/test/integration/geo_ip_test.rb +++ b/test/integration/geo_ip_test.rb @@ -28,11 +28,11 @@ class GeoIpTest < ActiveSupport::TestCase result = Service::GeoIp.location('195.65.29.254') assert(result) assert_equal('Switzerland', result['country_name']) - assert_equal('Niederhasli', result['city_name']) + assert_equal('Effretikon / Watt', result['city_name']) assert_equal('CH', result['country_code']) assert_equal('EU', result['continent_code']) - assert_equal(47.4823, result['latitude']) - assert_equal(8.4823, result['longitude']) + assert_equal(47.4288, result['latitude']) + assert_equal(8.7025, result['longitude']) result = Service::GeoIp.location('134.109.140.74') assert(result) @@ -49,8 +49,8 @@ class GeoIpTest < ActiveSupport::TestCase assert_equal('Halle', result['city_name']) assert_equal('DE', result['country_code']) assert_equal('EU', result['continent_code']) - assert_equal(51.4825, result['latitude']) - assert_equal(11.9772, result['longitude']) + assert_equal(51.5036, result['latitude']) + assert_equal(11.9594, result['longitude']) result = Service::GeoIp.location('169.229.216.200') assert(result) @@ -58,7 +58,7 @@ class GeoIpTest < ActiveSupport::TestCase assert_equal('Oakland', result['city_name']) assert_equal('US', result['country_code']) assert_equal('NA', result['continent_code']) - assert_equal(37.8376, result['latitude']) - assert_equal(-122.2398, result['longitude']) + assert_equal(37.7428, result['latitude']) + assert_equal(-122.1745, result['longitude']) end end diff --git a/test/unit/html_sanitizer_test.rb b/test/unit/html_sanitizer_test.rb index 0b530ae42..93ec7b0a4 100644 --- a/test/unit/html_sanitizer_test.rb +++ b/test/unit/html_sanitizer_test.rb @@ -76,8 +76,8 @@ tt p://6 6.000146.0x7.147/">XSS', true), 'CLICKME'), 'CLICKME') assert_equal(HtmlSanitizer.strict('CLICKME', true), 'CLICKME') assert_equal(HtmlSanitizer.strict(''), '') - assert_equal(HtmlSanitizer.strict(''), '') - assert_equal(HtmlSanitizer.strict('><image xlink:href="'), '') + assert_equal(HtmlSanitizer.strict(''), '<![>') + assert_equal(HtmlSanitizer.strict('><image xlink:href="'), '<![CDATA[>') assert_equal(HtmlSanitizer.strict(''), '') assert_equal(HtmlSanitizer.strict(''), '') assert_equal(HtmlSanitizer.strict(''), '')